     * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1800px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 220px;  
    height: auto;
    
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3.2rem;
    align-items: center;
    margin-left: 300px;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #1a73e8;
}

.whatsapp-btn {
    background: green;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
.whatsapp-icon {
  font-size: 20px;
}

.whatsapp-btn:hover {
    background: green;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 244, 78, 0.3);
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 95%;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 2s infinite;
    transition: transform 0.9s ease;
}

.whatsapp-float:hover {
    transform: scale(1.2);
    background-color: #1ebe5d;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgb(246, 246, 246);
    }

}

.nav-links li {
    position: relative;
}

.home-link::after {
    content: '\f0d7';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-links li:hover .home-link::after {
    transform: rotate(180deg);
}

.mega-dropdown {
    position: absolute;
    top: 170%;
    left: 380%;
    transform: translateX(-50%);
    background: white;
    width: 95vw;
    max-width: 1200px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%) translateY(20px);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
    z-index: 1000;
}

.nav-links li:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-dropdown-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 300px;
    gap: 2rem;
    padding: 2.5rem;
}

.dropdown-column h3 {
    color: #1e3c72;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.dropdown-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    border-radius: 2px;
}

.dropdown-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-links li {
    margin-bottom: 0.75rem;
}

.dropdown-links a {
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.dropdown-links a:hover {
    background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
    color: #1e3c72;
    transform: translateX(5px);
    padding-left: 1rem;
}

.dropdown-links i {
    margin-right: 0.75rem;
    width: 18px;
    color: #000000;
    font-size: 0.9rem;
}

.featured-section {
    background-color: #f2f2f2;
    border-radius: 12px;
    padding: 1.5rem;
}

.featured-section h3 {
    color: #1e3c72;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.featured-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.featured-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.featured-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 1rem;
}

.featured-info h4 {
    color: #1e3c72;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.featured-info p {
    color: #666;
    font-size: 0.8rem;
}

.view-all-btn {
    display: inline-block;
    background-color:rgba(0, 123, 254, 0.934);
    color: white !important; 
    padding: 0.75rem 1.5rem;
    border-radius: 27px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #346ccd);
}

.view-all-btn i {
    color: white;
}

.footer {
    background: #fff;
    padding: 60px 40px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 110px;
    line-height: 1.8em;
    margin-right: 100px;        
    padding: 0 10px;   
    width: 100%;
}

.footer-column {
  min-width: 20px;

}

.footer-logo {
  width: 200px;
  margin-bottom: 20px;

}

.footer-text {
  font-size: 16spx;
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-icons i {
  font-size: 20px;
  margin-right: 15px;
  color: #357ae8;
  transition: color 0.3s;
}

.social-icons i:nth-child(2) {
  color: #e4405f;
}
.social-icons i:nth-child(3) {
  color: #1da1f2;
}
.social-icons i:nth-child(4) {
  color: #21759b;
}

.social-icons i:hover {
  opacity: 0.7;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-column p {
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.5;
}

.Iicon {
  color: #4285f4;
  margin-right: 10px;
}

.footer-links {
  display: grid;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 5px;
}

.footer-links a {
  text-decoration: none;
  color: inherit; 
  transition: color 0.1s ease;
}


.footer-links li {
  margin-bottom: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-links li:hover {
  color: #1a73e8;
}

.footer-hours {
  text-align: center;
  margin-top: 40px;
}

.footer-hours h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
}

.footer-hours h3::after {
  content: '';
  display: block;
  height: 2px;
  width: 50px;
  background-color: #1a73e8;
  margin: 8px auto 0;
}

.main-container {
    display: grid;
    grid-template-columns: 280px 1fr 300px;
    gap: 2rem;
    max-width: 1400px;
    margin: 10px auto 2rem auto;
    padding: 0 1rem;
}

/* Left Sidebar - Categories */
.categories-sidebar {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border: none;
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    border-radius: 12px 12px 0 0;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.back-button:hover {
    background: #e9ecef;
    color: #212529;
}

.categories-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e1e5e9;
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
}

.category-item {
    border-bottom: 1px solid #f1f3f4;
}

.category-toggle {
    width: 100%;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 500;
    color: #495057;
    transition: all 0.3s ease;
}

.category-toggle:hover {
    background: #f8f9fa;
    color: #212529;
}

.category-toggle.active {
    background: #e3f2fd;
    color: #1976d2;
}

.category-icon {
    transition: transform 0.3s ease;
}

.category-toggle.active .category-icon {
    transform: rotate(90deg);
}

.subcategories {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafbfc;
}

.subcategories.active {
    max-height: 300px;
}

.subcategory-item {
    padding: 0.75rem 2.5rem;
    display: block;
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.subcategory-item:hover {
    background: #f1f3f4;
    color: #495057;
}

/* Center - Product Details */
.product-details-container {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.product-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #212529;
    padding: 2rem 2rem 1.5rem 2rem;
    border-bottom: 1px solid #e1e5e9;
}

.product-main-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2rem;
    align-items: start;
}

.product-image {
    width: 100%;
    height: 200px;
     background-color: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.product-image i {
    font-size: 4rem;
    color: #adb5bd;
}

.product-info {
    display: grid;
    margin-top: 20px;
    grid-template-columns: 150px 1fr; 
    gap: 1rem 1rem; 
    align-items: center;
}

.info-item {
    display: contents; 
}

.info-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 0.9rem;
    color: #212529;
    font-weight: 500;
}

.info-value.price {
    font-weight: 500;
    font-size: 0.9rem;
    color: #212529;
}

.product-full-width {
    grid-column: 1 / -1;
    margin-top: 1rem;
}

.description-section {
    margin-bottom: 2rem;
}

.section-label {
    font-size: 1rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 1rem;
    display: block;
}

.description-content {
    margin: auto;
}

.description-content ul {
    margin: 0;
    padding-left: 1.2rem;
}

.description-content li {
    margin-bottom: 0.6rem;
    color: #495057;
    font-size: 0.95rem;
}

.specification-section {
    margin-bottom: 1rem;
}

.specification-image {
    width: 100%;
    height: 500px;
    max-width: 900px;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.specification-placeholder {
    width: 100%;
    height: 250px;
    background-color: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: #6c757d;
}

.specification-placeholder i {
    font-size: 2.5rem;
}

.specification-placeholder span {
    font-size: 0.9rem;
    font-weight: 500;
}

.product-actions {
    padding: 2rem;
    border-top: 1px solid #e1e5e9;
    background-color: #ffffff;
    text-align: center;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

.whatsapp-btn i {
    font-size: 1.3rem;
}

.contact-info {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #6c757d;
    font-style: italic;
}

/* Right Sidebar - Other Products */
.products-sidebar {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.products-sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e1e5e9;
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.carousel-container {
    position: relative;
    overflow: hidden;
}

.products-carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.product-slide {
    min-width: 100%;
    padding: 1.5rem;
}

.sidebar-product-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f3f4;
    margin-bottom: 1.5rem;
}

.sidebar-product-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.sidebar-product-image {
    width: 100%;
    height: 120px;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sidebar-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.sidebar-product-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #212529;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.sidebar-product-info p {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0;
}

.sidebar-product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1976d2;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sidebar-product-link:hover {
    color: #1565c0;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    border-top: 1px solid #f1f3f4;
}

.carousel-btn {
    background: #f8f9fa;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #495057;
    transition: all 0.3s ease;
}

.carousel-btn:hover:not(:disabled) {
    background: #e9ecef;
    color: #212529;
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 0.5rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #1976d2;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .categories-sidebar,
    .products-sidebar {
        position: relative;
        top: auto;
        order: 2;
    }
    
    .product-details-container {
        order: 1;
    }
}

@media (max-width: 768px) {
    .main-container {
        padding: 0 0.5rem;
        margin-top: 70px;
    }
    
    .product-title {
        padding: 1.5rem;
        font-size: 1.5rem;
    }
    
    .product-main-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .product-image {
        height: 250px;
    }
    
    .categories-sidebar,
    .products-sidebar {
        display: none;
    }
    
    .main-container {
        grid-template-columns: 1fr;
    }
}