 .product-image {
     transition: transform 0.3s ease;
 }

 .product-image:hover {
     transform: scale(1.03);
 }

 .gradient-bg {
     background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
 }

 .specs-table tr:nth-child(even) {
     background-color: #f8fafc;
 }

 .specs-table tr:hover {
     background-color: #f1f5f9;
 }

 .tab-content {
     display: none;
 }

 .tab-content.active {
     display: block;
     animation: fadeIn 0.5s ease;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 .dropdown:hover .dropdown-menu {
     display: block;
 }