/* EXACT SAME STYLES FROM HOMEPAGE - style.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Header Styles - EXACT SAME AS HOMEPAGE */
header.header {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(175, 106, 76, 0.1);
}

.logo-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 30px;
}

.logo-nav > a {
    display: inline-block;
    line-height: 0;
}

.logo {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 12px;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
    border-radius: 25px;
}

.nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #AF6A4C, #D4956B);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav a.active,
.nav a:hover {
    color: #AF6A4C;
    background: rgba(175, 106, 76, 0.1);
    transform: translateY(-2px);
}

.nav a.active::before,
.nav a:hover::before {
    width: 80%;
}

/* All other gradient-text should be solid dark brown */
.gradient-text:not(.product-title) {
    color: #8B4513 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    animation: none !important;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Remove neon glow from other elements */
.neon-glow:not(.product-title) {
    text-shadow: none !important;
    animation: none !important;
}

/* M
obile Navigation - Same as Homepage */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(175, 106, 76, 0.1);
}

.hamburger:hover {
    background: rgba(175, 106, 76, 0.2);
    transform: scale(1.05);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #AF6A4C;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 80px 30px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    display: block;
    padding: 15px 20px;
    margin: 10px 0;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: #AF6A4C;
    background: rgba(175, 106, 76, 0.1);
    transform: translateX(10px);
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #AF6A4C;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(175, 106, 76, 0.1);
    transform: rotate(90deg);
}

/* Product Page Layout */
.product-page {
    background: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    max-width: 100vw;
}

.product-detail-section {
    padding: 40px 0 80px 0;
    background: #ffffff;
}

.product-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    overflow-x: hidden;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Product Header - Visible by default */
.product-header {
    margin-bottom: 40px;
    text-align: left;
}

/* Desktop layout - clean and structured (above 1024px) */
@media (min-width: 1024px) {
    .product-container {
        align-items: flex-start;
        flex-wrap: wrap;
    }
    
    /* Title at TOP - full width across page */
    .product-container > .product-header {
        width: 100%;
        text-align: left;
        margin-bottom: 0 !important;
        order: -1;
    }
    
    .product-container > .product-header .product-title {
        font-size: 3.2em !important;
        margin-bottom: 5px;
        line-height: 1.1;
        font-weight: 900;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #333;
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15), 0 0 30px rgba(175, 106, 76, 0.3) !important;
        background: linear-gradient(45deg, #2C2C2C, #AF6A4C, #D4A574, #AF6A4C, #2C2C2C) !important;
        background-size: 300% 300% !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        animation: gradientShift 4s ease-in-out infinite !important;
    }
    
    .product-container > .product-header .product-subtitle {
        font-size: 1.2em;
        line-height: 1.1;
        font-weight: 500;
        margin-bottom: -10px;
    }
    
    .product-container > .product-header .product-rating {
        display: none;
    }
    
    /* Left column - vertical layout */
    .product-images {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-top: -40px;
        padding-top: 0;
    }
    
    .product-info {
        margin-top: -40px;
    }
    
    /* Image below title - full width */
    .product-images .main-image-container {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .product-images .thumbnail-list {
        display: none;
    }
    
    /* Product Specifications at bottom */
    .product-images .specifications {
        width: 100%;
        margin-top: auto;
    }
    
    /* Hide duplicate header in right column */
    .product-info .product-header {
        display: none !important;
    }
    
    /* Right column layout */
    .product-info {
        display: flex;
        flex-direction: column;
        padding-bottom: 20px;
    }
    
    .product-info .product-description {
        margin-bottom: 30px;
    }
    
    .product-info .features-section {
        margin-bottom: 30px;
    }
    
    /* Make feature boxes smaller in desktop */
    .product-info .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-info .feature-item {
        padding: 15px;
    }
    
    .product-info .feature-icon {
        font-size: 2em;
        margin-bottom: 8px;
    }
    
    .product-info .feature-item h4 {
        font-size: 0.95em;
        margin: 8px 0;
    }
    
    .product-info .feature-item p {
        font-size: 0.85em;
    }
    
    /* Align tech-specs with left side table - add space above */
    .product-info .tech-specs {
        margin-top: 50px;
        margin-bottom: 0;
    }
    
    .product-info .product-actions {
        margin-top: 30px;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

/* Product Images */
.product-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 120px;
}

.thumbnail-list {
    display: none;
}

.thumbnail {
    display: none;
}

.main-image-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Product Info */
.product-info {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 2px solid #AF6A4C;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}



.product-header {
    margin-bottom: 40px;
    text-align: left;
}

.product-subtitle {
    color: #8B543C;
    font-size: 0.9em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 20px;
}

/* Hide product rating stars and text */
.product-rating {
    display: none !important;
}

/* Section Headings - Dark Brown Color */
.product-description h2,
.features-section h2,
.tech-specs h2,
.size-options h3,
.applications h3,
.specifications h3,
.installation-guide h2,
.quality-section h2,
.related-products h2 {
    font-size: 2.5em;
    color: #8B4513;
    margin-bottom: 25px;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1.1;
    text-transform: uppercase;
}

/* Features Section */
.features-section {
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.feature-item h4 {
    margin: 10px 0;
    font-size: 1.1em;
    font-weight: 700;
    color: #8B4513;
}

.feature-item p {
    color: #8B4513;
    font-size: 0.9em;
    line-height: 1.4;
}

/* Feature List Styling */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #8B543C;
    line-height: 1.5;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #AF6A4C;
    font-weight: bold;
    font-size: 1.1em;
}

/* Technical Specifications */
.tech-specs {
    margin: 30px 0;
    padding: 25px;
    background: #ffffff;
    border-radius: 15px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.spec-label {
    font-weight: 700;
    font-size: 1em;
    color: #8B4513;
}

.spec-value {
    color: #8B4513;
    font-weight: 500;
}

/* Size Options */
.size-options {
    margin-bottom: 40px;
}

.size-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.size-btn {
    padding: 10px 20px;
    border: 2px solid #ddd;
    background: white;
    color: #8B543C;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.size-btn:hover,
.size-btn.active {
    border-color: #AF6A4C;
    color: #AF6A4C;
    background: white;
}

/* Applications */
.applications {
    margin: 25px 0;
}

.application-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.app-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #ffffff;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.app-item:hover {
    background: #ffffff;
}

.app-icon {
    font-size: 1.5em;
}

/* Specifications Table */
.specifications {
    margin-bottom: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Specifications inside product-images (left side) */
.product-images .specifications {
    margin-top: 20px;
    margin-bottom: 0;
    flex-grow: 0;
}

.spec-table {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(175, 106, 76, 0.1);
}

.spec-header {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 1fr 1fr;
    background: linear-gradient(45deg, #AF6A4C, #D4956B);
    color: white !important;
    font-weight: 600;
    padding: 15px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.spec-header span,
.spec-header.five-col span,
.spec-header.six-col span,
.specifications .spec-header span,
.spec-table .spec-header span {
    color: white !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: white !important;
    background-clip: unset !important;
}

.spec-row {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 1fr 1fr;
    padding: 12px 20px;
    border-bottom: 1px solid #ffffff;
    transition: all 0.3s ease;
    color: #8B4513;
    text-align: center;
    align-items: center;
}

/* 5-column layout for pantry and tall units */
.spec-header.five-col {
    grid-template-columns: 1fr 1.3fr 0.9fr 0.8fr 1fr;
    text-align: center;
}

.spec-row.five-col {
    grid-template-columns: 1fr 1.3fr 0.9fr 0.8fr 1fr;
    text-align: center;
    align-items: center;
}

/* 6-column layout for pull-out products */
.spec-header.six-col {
    grid-template-columns: 0.9fr 1.4fr 0.9fr 0.9fr 0.8fr 1.1fr;
    text-align: center;
}

.spec-row.six-col {
    grid-template-columns: 0.9fr 1.4fr 0.9fr 0.9fr 0.8fr 1.1fr;
    text-align: center;
    align-items: center;
}

.spec-row span {
    color: #8B543C;
}

.spec-row:hover {
    background: #ffffff;
    color: #AF6A4C;
}

.spec-row:last-child {
    border-bottom: none;
}

/* Action Buttons */
.product-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
    padding: 20px 0;
}

.action-btn {
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-btn.primary {
    display: none !important;
}

.action-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(175, 106, 76, 0.4);
}

.product-actions > a {
    display: inline-block;
    text-decoration: none;
}

.action-btn.secondary {
    background: white;
    color: #AF6A4C;
    border: 2px solid #AF6A4C;
}

.action-btn.secondary:hover {
    background: #AF6A4C;
    color: white;
    transform: translateY(-3px);
}

.action-btn.tertiary {
    background: #ffffff;
    color: #8B543C;
    border: 2px solid #AF6A4C;
}

.action-btn.tertiary:hover {
    background: #AF6A4C;
    color: white;
    border-color: #AF6A4C;
    transform: translateY(-3px);
}

/* Installation Guide */
.installation-guide {
    padding: 60px 20px;
    background: #ffffff;
}

.guide-container {
    max-width: 1200px;
    margin: 0 auto;
}

.installation-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 2em;
    font-weight: 900;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(175, 106, 76, 0.1);
}

.step-content h4 {
    margin-bottom: 10px;
    font-size: 1.2em;
    font-weight: 700;
}

.step-content p {
    color: #8B543C;
    line-height: 1.5;
}

/* Quality Section */
.quality-section {
    padding: 60px 20px;
    background: #ffffff;
}

.quality-container {
    max-width: 1200px;
    margin: 0 auto;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.quality-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.quality-item:hover {
    transform: translateY(-5px);
}

.quality-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.quality-item h4 {
    margin: 15px 0;
    font-size: 1.3em;
    font-weight: 700;
}

.quality-item p {
    color: #8B543C;
    line-height: 1.5;
}

/* 
Related Products */
.related-products {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.related-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    transform: perspective(1000px) rotateX(0deg);
}

.related-item:hover {
    transform: perspective(1000px) rotateX(-10deg) translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), 0 15px 30px rgba(175, 106, 76, 0.3);
}

.related-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-item:hover img {
    transform: scale(1.1);
}

.related-item h3 {
    padding: 20px 20px 10px 20px;
    font-size: 1.2em;
    font-weight: 700;
    margin: 0;
}

.related-item p {
    padding: 0 20px 20px 20px;
    color: #8B543C;
    line-height: 1.6;
    margin: 0;
}

.related-btn {
    background: linear-gradient(45deg, #AF6A4C, #D4A574);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin: 0 20px 20px 20px;
}

.related-btn:hover {
    transform: scale(1.05);
}

/* Footer - EXACT SAME AS HOMEPAGE */
footer.footer {
    background: linear-gradient(135deg, #AF6A4C 0%, #8B543C 100%);
    color: #fff;
    padding: 80px 0 40px 0;
    position: relative;
    overflow: hidden;
}

footer.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4A574, #AF6A4C, #D4A574);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: -200% 0; }
    50% { background-position: 200% 0; }
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
    align-items: stretch;
    padding: 0 40px;
    position: relative;
}

.about-us {
    flex: 1 1 280px;
    min-width: 260px;
    position: relative;
    margin-right: auto;
    padding: 0 30px 0 15px;
}

.opening-hours {
    flex: 1 1 280px;
    min-width: 260px;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-us h3 {
    margin-bottom: 20px;
    font-size: 1.3em;
    font-weight: bold;
    letter-spacing: 1.2px;
    word-spacing: 2.5px;
}

.about-us p {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.7;
    letter-spacing: 0.8px;
    word-spacing: 2px;
    text-align: left;
    padding-bottom: 0;
}

.opening-hours h3 {
    margin-bottom: 25px;
    font-size: 1.8em;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    text-align: center;
}

.opening-hours h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #D4A574, #fff);
    border-radius: 2px;
}

.opening-hours p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    text-align: center;
}

.opening-hours p strong {
    color: #D4A574;
    font-weight: 600;
}

.qr-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
    gap: 25px;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.qr-social::after {
    content: '';
    position: absolute;
    right: -18px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #5D3A2A, transparent);
    display: none;
}

.qr-codes {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.qr-item {
    position: relative;
    transition: transform 0.3s ease;
}

.qr-item:hover {
    transform: translateY(-5px);
}

.qr-img {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.qr-item:hover .qr-img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 8px 16px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.social-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-row a {
    display: inline-block;
    width: 55px;
    height: 55px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-row a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
    transition: left 0.5s ease;
}

.social-row a:hover {
    transform: translateY(-8px) scale(1.15);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.social-row a:hover::before {
    left: 100%;
}

.social-row img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: brightness(0) saturate(100%) invert(100%);
    position: relative;
    z-index: 2;
}

.social-row a:hover img {
    filter: brightness(0) saturate(100%) invert(100%);
    transform: scale(1.1);
}

.social-row a:hover {
    transform: scale(1.1);
}

/* Facebook hover - blue */
.social-row a[href*="facebook"]:hover img {
    filter: brightness(0) saturate(100%) invert(24%) sepia(94%) saturate(4718%) hue-rotate(213deg) brightness(91%) contrast(101%);
}

/* Instagram hover - gradient effect simulation with pink */
.social-row a[href*="instagram"]:hover img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(96%) saturate(4456%) hue-rotate(317deg) brightness(100%) contrast(105%);
}

/* Email hover - darker theme color */
.social-row a[href*="mailto"]:hover img {
    filter: brightness(0) saturate(100%) invert(25%) sepia(25%) saturate(1500%) hue-rotate(346deg) brightness(85%) contrast(95%);
}

/* Location/Maps hover - green */
.social-row a[href*="maps"]:hover img {
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%);
}

/* 
Mobile Responsiveness */
@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }
    .nav {
        display: none;
    }
    .product-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 30px;
    }
    .product-images {
        position: static;
        flex-direction: row;
        align-items: flex-start;
    }
    .thumbnail-list {
        flex-direction: row;
        order: 2;
        margin-top: 20px;
    }
    .main-image-container {
        order: 1;
        transform: none;
    }
    .main-image-container img {
        height: 400px;
    }
    .product-info {
        padding: 30px;
    }
    .product-title {
        font-size: 3.5em;
    }
}

@media (max-width: 768px) {
    /* Reduce header size */
    .logo {
        height: 60px !important;
        width: auto;
    }
    
    .logo-nav {
        padding: 10px 15px !important;
    }
    
    header.header {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    body {
        margin: 0;
        padding: 0;
        width: 100%;
        background: white;
    }
    
    .product-page {
        margin: 0;
        padding: 0;
        width: 100%;
        background: white;
    }
    
    .product-detail-section {
        padding: 0;
        margin: 0;
        background: white;
        width: 100%;
    }
    .product-container {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
        max-width: 100%;
        width: 100%;
    }
    
    /* Flatten all children to be direct flex items */
    .product-container > * {
        display: contents;
    }
    
    /* MOBILE LAYOUT ORDER:
       1. Title
       2. Image + Dots
       3. Product Overview
       4. Product Specifications
       5. Premium Features (2x2 grid)
       6. Technical Specifications
       7. Action Buttons
    */
    
    /* 1. Title at top */
    .product-header {
        order: 1;
        padding: 12px 15px;
        background: white;
        text-align: left;
        margin: 0;
        border-bottom: none;
        display: block !important;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* 2. Image */
    .main-image-container {
        order: 2;
        background: white;
        display: block !important;
        padding: 15px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .main-image-container img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    /* 2. Dots below image */
    .thumbnail-list {
        order: 2;
        background: white;
        border-bottom: none;
        display: flex !important;
        padding: 0 15px 15px 15px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* 3. Product Overview */
    .product-description {
        order: 3;
        padding: 15px;
        background: white;
        border-bottom: none;
        display: block !important;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .product-description p {
        text-align: justify;
        line-height: 1.6;
        margin-bottom: 12px;
    }
    
    /* 4. Product Specifications */
    .specifications {
        order: 4;
        padding: 15px;
        background: white;
        border-bottom: none;
        display: block !important;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* 5. Premium Features (2x2 grid) */
    .features-section {
        order: 5;
        padding: 15px;
        background: white;
        border-bottom: none;
        display: block !important;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* 6. Technical Specifications */
    .tech-specs {
        order: 6;
        padding: 15px;
        background: white;
        border-bottom: none;
        display: block !important;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* 7. Action Buttons */
    .product-actions {
        order: 7;
        padding: 15px;
        background: white;
        border-bottom: none;
        display: flex !important;
        flex-direction: column;
        gap: 10px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        background: white;
        position: sticky;
        bottom: 0;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 100;
        display: flex !important;
    }
    
    /* H1 - Product Title */
    h1.product-title {
        font-size: 1.6em;
        color: #333;
        font-weight: 700;
        margin-bottom: 8px;
        text-align: left;
        letter-spacing: 0.3px;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        hyphens: auto;
        text-transform: none;
        text-shadow: none;
        background: linear-gradient(45deg, #2C2C2C, #AF6A4C, #D4A574, #AF6A4C, #2C2C2C);
        background-size: 300% 300%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientShift 4s ease-in-out infinite;
        padding: 0 5px;
    }
    
    .product-subtitle {
        font-size: 1em;
        margin-bottom: 8px;
        text-align: left;
        color: #565959;
        font-weight: 400;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 5px;
    }
    
    .product-rating {
        display: none;
    }
    
    /* H2 - Section Headings (Product Overview, etc.) */
    .product-description h2,
    .features-section h2,
    .specifications h3,
    .tech-specs h2 {
        font-size: 1.6em;
        color: #0F1111;
        font-weight: 700;
        margin-bottom: 15px;
        text-align: left;
        letter-spacing: 0;
        line-height: 1.3;
        text-transform: none;
        text-shadow: none;
        background: none;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: unset;
        background-clip: unset;
        animation: none;
    }
    
    /* Paragraph text under Product Overview */
    .product-description p {
        font-size: 1.15em;
        line-height: 1.6;
        color: #565959;
        text-align: left;
        margin-bottom: 12px;
    }
    
    /* Fit to screen - Product Specifications table */
    .specifications {
        width: 100%;
        overflow-x: auto;
    }
    
    .spec-table {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        overflow-x: auto;
        box-sizing: border-box;
    }
    
    /* Fit to screen - Technical Specifications */
    .tech-specs {
        width: 100%;
    }
    
    .specs-grid {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .spec-item {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    
    /* Full-screen image */
    .main-image-container {
        transform: none;
        border-radius: 0;
        margin-bottom: 0;
        box-shadow: none;
        background: white;
        padding: 0;
        width: 100%;
    }
    
    .main-image-container img {
        height: 100vw;
        max-height: 450px;
        border-radius: 0;
        width: 100%;
        object-fit: contain;
        background: white;
    }
    
    .thumbnail-list {
        flex-direction: row;
        justify-content: center;
        gap: 6px;
        padding: 15px;
    }
    
    .thumbnail {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ffffff;
        border: none;
        padding: 0;
        overflow: hidden;
    }
    
    .thumbnail img {
        display: none;
    }
    
    .thumbnail.active {
        background: #AF6A4C;
        width: 8px;
        height: 8px;
    }
    
    /* 2x2 Grid for Premium Features */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        gap: 12px;
    }
    
    .feature-item {
        padding: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Further reduce header on small phones */
    .logo {
        height: 50px !important;
    }
    
    .logo-nav {
        padding: 8px 12px !important;
    }
    
    /* H1 - Product Title */
    h1.product-title {
        font-size: 1.4em;
        color: #333;
        line-height: 1.2;
        letter-spacing: 0.2px;
        font-weight: 700;
        text-transform: none;
        text-shadow: none;
        background: linear-gradient(45deg, #2C2C2C, #AF6A4C, #D4A574, #AF6A4C, #2C2C2C);
        background-size: 300% 300%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientShift 4s ease-in-out infinite;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        hyphens: auto;
        padding: 0 5px;
    }
    
    .product-subtitle {
        font-size: 0.9em;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 5px;
    }
    
    .product-header {
        padding: 15px;
    }
    
    /* Image section - full screen fit */
    .main-image-container {
        padding: 0;
    }
    
    .main-image-container img {
        height: 100vw;
        max-height: 400px;
    }
    
    .thumbnail-list {
        padding: 12px;
    }
    
    .thumbnail {
        width: 7px;
        height: 7px;
    }
    
    .thumbnail.active {
        width: 7px;
        height: 7px;
    }
    
    /* Section padding */
    .product-description,
    .features-section,
    .size-options,
    .specifications,
    .tech-specs {
        padding: 15px;
    }
    
    /* H2 - Section Headings */
    .product-description h2,
    .features-section h2,
    .specifications h3,
    .tech-specs h2 {
        font-size: 1.5em;
        color: #0F1111;
        font-weight: 700;
        margin-bottom: 12px;
    }
    
    /* Paragraph text */
    .product-description p {
        font-size: 1.1em;
        line-height: 1.6;
        color: #565959;
    }
    
    .product-description h2,
    .features-section h2,
    .tech-specs h2,
    .size-options h3,
    .applications h3,
    .specifications h3 {
        font-size: 1.5em;
        color: #0F1111;
        font-weight: 700;
        letter-spacing: 0;
        line-height: 1.3;
        text-transform: none;
        text-shadow: none;
        background: none;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: unset;
        background-clip: unset;
        animation: none;
        margin-bottom: 12px;
    }
    
    .product-description p {
        font-size: 1.1em;
        line-height: 1.6;
        color: #565959;
    }
    
    /* 2x2 Grid for Premium Features on mobile */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .feature-item {
        padding: 15px;
        text-align: center;
    }
    
    .feature-item h4 {
        font-size: 1.05em;
        color: #0F1111;
        background: none;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: unset;
        background-clip: unset;
        margin-bottom: 5px;
    }
    
    .feature-item p {
        font-size: 0.95em;
        color: #565959;
    }
    
    .feature-icon {
        font-size: 2.8em;
        margin-bottom: 8px;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .spec-item {
        padding: 12px;
        font-size: 1.05em;
    }
    
    .spec-label {
        font-size: 1.05em;
    }
    
    .spec-value {
        font-size: 1.05em;
    }
    
    .application-list {
        grid-template-columns: 1fr;
    }
    
    .installation-steps {
        grid-template-columns: 1fr;
    }
    
    .quality-grid {
        grid-template-columns: 1fr;
    }
    
    .installation-guide h2,
    .quality-section h2,
    .related-products h2 {
        font-size: 1.2em;
        color: #0F1111;
        font-weight: 700;
        letter-spacing: 0;
        line-height: 1.3;
        text-transform: none;
        text-shadow: none;
        background: none;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: unset;
        background-clip: unset;
        animation: none;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 15px auto;
    }
    
    .product-actions {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
        justify-content: flex-start;
    }
    
    .action-btn {
        width: 100%;
        padding: 14px 15px;
        font-size: 14px;
        border-radius: 8px;
        font-weight: 600;
        white-space: normal;
        word-wrap: break-word;
        text-align: center;
        box-sizing: border-box;
    }
    
    .action-btn.primary {
        order: 2;
    }
    
    .action-btn.secondary {
        order: 1;
    }
    
    .action-btn.tertiary {
        order: 3;
    }
    
    /* Mobile responsive tables - Fit to screen */
    .specifications {
        width: 100%;
        overflow-x: visible;
    }
    
    .spec-table {
        border-radius: 8px;
        font-size: 1em;
        width: 100%;
        box-sizing: border-box;
    }
    
    .spec-header,
    .spec-row {
        grid-template-columns: 1fr 1fr 0.8fr 0.9fr;
        font-size: 15px;
        padding: 12px 8px;
        width: 100%;
    }
    
    .spec-header.five-col,
    .spec-row.five-col {
        grid-template-columns: 0.8fr 1.1fr 0.7fr 0.6fr 0.8fr;
        font-size: 14px;
        padding: 11px 7px;
    }
    
    .spec-header.six-col,
    .spec-row.six-col {
        grid-template-columns: 0.7fr 1.2fr 0.7fr 0.7fr 0.6fr 0.9fr;
        font-size: 13px;
        padding: 10px 6px;
    }
    
    .spec-header span,
    .spec-row span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: inherit;
    }
    
    /* Technical Specifications - Fit to screen */
    .tech-specs {
        width: 100%;
        box-sizing: border-box;
    }
    
    .specs-grid {
        width: 100%;
    }
    
    .spec-item {
        width: 100%;
        box-sizing: border-box;
        font-size: 1.05em;
    }
    
    .related-products {
        padding: 20px 12px;
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .related-item img {
        height: 110px;
    }
    
    .related-item h3 {
        font-size: 0.85em;
        padding: 10px 10px 5px 10px;
    }
    
    .related-item p {
        font-size: 0.75em;
        padding: 0 10px 10px 10px;
    }
}

/*
 Additional Text Styling with Homepage Color */
.product-description p {
    color: #8B543C;
    line-height: 1.6;
    margin-bottom: 10px;
}

.rating-text {
    color: #8B543C;
    font-weight: 600;
    font-size: 0.9em;
}

.stars {
    color: #D4A574;
    font-size: 1.2em;
    letter-spacing: 2px;
}

/* Ensure all paragraph text uses homepage color */
p {
    color: #8B543C;
}

/* Override any remaining gray text */
.product-page p,
.product-page .spec-value,
.product-page .feature-item p,
.product-page .step-content p,
.product-page .quality-item p,
.product-page .related-item p {
    color: #8B543C;
}

/* Amazon-style mobile enhancements */
@media (max-width: 768px) {
    /* Clean white background sections */
    .product-detail-section {
        background: #ffffff;
    }
    
    /* Section spacing like Amazon */
    .product-description,
    .features-section,
    .tech-specs,
    .specifications {
        margin-bottom: 0;
    }
    
    /* Cleaner section headers */
    .specifications h3 {
        font-size: 1.1em;
        font-weight: 700;
        color: #0F1111;
        margin-bottom: 12px;
        background: none;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: unset;
        background-clip: unset;
        text-shadow: none;
        animation: none;
    }
    
    /* Price-like styling for MRP column */
    .spec-row span:last-child {
        font-weight: 700;
        color: #B12704;
    }
    
    /* Compact feature items */
    .feature-item {
        box-shadow: none;
        border: 1px solid #e7e7e7;
    }
    
    /* Sticky header on mobile */
    header.header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }
}

@media (max-width: 480px) {
    /* Amazon-style product subtitle */
    .product-subtitle {
        font-size: 0.8em;
        color: #007185;
        font-weight: 400;
    }
    
    /* Compact padding */
    .product-info .product-header {
        padding: 12px;
    }
    
    .product-description,
    .features-section,
    .tech-specs {
        padding: 12px;
    }
    
    /* Removed Amazon-style section dividers for clean white background */
}

/* Themed Address Map Section */
.address-map-section {
    flex: 1 1 380px;
    min-width: 340px;
    position: relative;
    margin-left: auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.address-map-section h3 {
    margin-bottom: 25px;
    font-size: 1.8em;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.address-map-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #D4A574, #fff);
    border-radius: 2px;
    transform: translateX(-50%);
}

.map-3d-container {
    position: relative;
    width: 320px;
    height: 180px;
    margin: 0 auto 20px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.map-3d-container:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.address-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    filter: drop-shadow(0 0 10px rgba(175, 106, 76, 0.4));
    transition: all 0.4s ease;
    animation: videoGlow 4s ease-in-out infinite;
}

.map-3d-container:hover .address-video {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(175, 106, 76, 0.7));
}

@keyframes videoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(175, 106, 76, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(175, 106, 76, 0.8));
    }
}

/* Simple video styling */
.address-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

@keyframes pinBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) scale(1);
    }
    40% {
        transform: translateY(-8px) scale(1.2);
    }
    60% {
        transform: translateY(-4px) scale(1.1);
    }
}

.pin-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(212, 165, 116, 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pinPulse 2.5s infinite;
    box-shadow: 0 0 10px rgba(212, 165, 116, 0.5);
}

@keyframes pinPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
        box-shadow: 0 0 10px rgba(212, 165, 116, 0.8);
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
        box-shadow: 0 0 30px rgba(212, 165, 116, 0.2);
    }
}

.location-tooltip {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(175, 106, 76, 0.95) 0%, rgba(139, 84, 60, 0.95) 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 11px;
    line-height: 1.3;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.location-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(175, 106, 76, 0.95);
}

.location-pin:hover .location-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

/* Address Info with Theme Styling */
.address-info {
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.7;
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
}

.address-info p {
    margin: 8px 0;
    color: #fff;
}

.address-info strong {
    color: #D4A574;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

/* Professional Footer Stats */
.footer-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-number {
    display: block;
    font-size: 2.2em;
    font-weight: 900;
    color: #D4A574;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Enhanced Footer Mobile Responsiveness */
@media (max-width: 768px) {
    footer.footer {
        padding: 60px 0 30px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding: 0 20px;
    }
    
    .opening-hours,
    .qr-social,
    .address-map-section {
        padding: 25px 20px;
        margin: 0;
        min-width: auto;
        width: 100%;
    }
    
    .qr-social {
        align-items: center;
        order: 1;
    }
    
    .opening-hours {
        order: 2;
    }
    
    .address-map-section {
        order: 3;
    }
    
    .qr-codes {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }
    
    .qr-img {
        width: 140px;
        height: 140px;
    }
    
    .social-row {
        gap: 15px;
    }
    
    .social-row a {
        width: 50px;
        height: 50px;
    }
    
    .map-3d-container {
        width: 280px;
        height: 160px;
    }
    
    .footer-stats {
        gap: 20px;
        margin-top: 20px;
    }
    
    .stat-number {
        font-size: 1.8em;
    }
    
    .stat-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 30px;
        padding: 0 15px;
    }
    
    .opening-hours,
    .qr-social,
    .address-map-section {
        padding: 20px 15px;
    }
    
    .qr-img {
        width: 120px;
        height: 120px;
    }
    
    .social-row a {
        width: 45px;
        height: 45px;
    }
    
    .social-row img {
        width: 24px;
        height: 24px;
    }
    
    .map-3d-container {
        width: 250px;
        height: 140px;
    }
    
    .footer-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.6em;
    }
}

/* Footer Mobile Alignment Fixes */
@media (max-width: 768px) {
    .footer-content {
        align-items: center !important;
        justify-content: center !important;
        padding: 0 15px !important;
    }
    
    .opening-hours,
    .qr-social,
    .address-map-section {
        margin: 0 auto !important;
        text-align: center !important;
        max-width: 400px;
    }
    
    .opening-hours h3,
    .opening-hours p {
        text-align: center !important;
    }
    
    .qr-codes {
        justify-content: center !important;
    }
    
    .social-row {
        justify-content: center !important;
    }
    
    .map-3d-container {
        margin: 0 auto 20px auto !important;
    }
    
    .footer-stats {
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 0 10px !important;
    }
    
    .opening-hours,
    .qr-social,
    .address-map-section {
        padding: 20px 10px !important;
        margin: 0 auto !important;
    }
}

/* Remove Footer Vertical Lines on Mobile */
@media (max-width: 768px) {
    .qr-social::after {
        display: none !important;
    }
    
    .opening-hours::before {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .qr-social::after {
        display: none !important;
    }
    
    .opening-hours::before {
        display: none !important;
    }
}

/* Premium About Us Text Enhancement */
.about-us p:first-of-type {
    margin-top: 0;
}

.about-us p:last-of-type {
    margin-bottom: 0;
}

/* Ensur
e all specification table text uses correct color */
.spec-table .spec-row,
.spec-table .spec-row span,
.specifications .spec-row,
.specifications .spec-row span {
    color: #8B543C !important;
}

/* Technical specifications grid values */
.specs-grid .spec-value,
.tech-specs .spec-value {
    color: #8B543C !important;
}

/* Override any white or other colors in specifications */
.product-page .spec-row,
.product-page .spec-value,
.product-page .specifications span {
    color: #8B543C !important;
}