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

/* Performance optimizations */
img {
    max-width: 100%;
    height: auto;
}

.hero-slider {
    contain: layout;
}

body {
    background-color: #fff;
    line-height: 1.6;
}

/* Header Styles */

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%;
}

/* Hamburger Menu Styles */

.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;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Overlay */

.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;
    position: relative;
    overflow: hidden;
}

.mobile-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(175, 106, 76, 0.1), rgba(212, 149, 107, 0.1));
    transition: left 0.3s ease;
}

.mobile-nav a:hover::before,
.mobile-nav a.active::before {
    left: 0;
}

.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);
}

/* Hero Slider Section - Full Screen */

.hero-section {
    background: #ffffff;
    padding: 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 800px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: #ffffff;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 1.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide.prev {
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

.slide.next {
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

/* Smooth fade transition for slides */
.slide-transition {
    transition: opacity 1.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    height: calc(100% - 80px);
    padding: 60px;
    position: relative;
    z-index: 5;
    max-width: 1800px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text h1 {
    font-size: 5.5em;
    color: #333;
    margin-bottom: 30px;
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15), 0 0 30px rgba(175, 106, 76, 0.3);
    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;
}

.hero-text p {
    font-size: 1.2em;
    color: #8B543C;
    margin-bottom: 40px;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    padding-right: 10px;
}

.hero-text h1 {
    font-size: 5.5em;
    color: #333;
    margin-bottom: 30px;
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15), 0 0 30px rgba(175, 106, 76, 0.3);
    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;
}

@keyframes gradientShift {

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

    50% {
        background-position: 100% 50%;
    }
}

.hero-text p {
    font-size: 1.2em;
    color: #8B543C;
    margin-bottom: 40px;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    padding-right: 10px;
}

/* Custom scrollbar for hero text */

.hero-text p::-webkit-scrollbar {
    width: 6px;
}

.hero-text p::-webkit-scrollbar-track {
    background: rgba(175, 106, 76, 0.1);
    border-radius: 3px;
}

.hero-text p::-webkit-scrollbar-thumb {
    background: rgba(175, 106, 76, 0.5);
    border-radius: 3px;
}

.hero-text p::-webkit-scrollbar-thumb:hover {
    background: rgba(175, 106, 76, 0.7);
}

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

.cta-button {
    background: linear-gradient(45deg, #AF6A4C, #D4956B, #AF6A4C);
    background-size: 200% 200%;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(175, 106, 76, 0.3);
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateX(0deg);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.cta-button:hover {
    background-position: 100% 100%;
    transform: perspective(1000px) rotateX(-10deg) translateY(-5px);
    box-shadow: 0 15px 35px rgba(175, 106, 76, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.hero-image {
    flex: 1.5;
    position: relative;
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 25px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2), 0 30px 60px rgba(175, 106, 76, 0.15), inset 0 2px 0 rgba(255, 255, 255, 0.7);
    transition: all 1s ease;
    position: relative;
    z-index: 2;
}

/* Slider Navigation */

.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
    pointer-events: none;
}

.nav-btn {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(175, 106, 76, 0.6);
    border-radius: 50%;
    color: #AF6A4C;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: none;
    pointer-events: all;
}

.nav-btn:hover {
    background: rgba(175, 106, 76, 0.2);
    border-color: #AF6A4C;
    color: #AF6A4C;
    transform: scale(1.15) translateY(-2px);
    box-shadow: none;
}

.nav-btn:active {
    transform: scale(0.95);
}

/* Slider Indicators */

.slider-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 18px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 30px;
    box-shadow: none;
}

.indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(175, 106, 76, 0.5);
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #AF6A4C;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.indicator.active {
    border-color: #AF6A4C;
    background: rgba(175, 106, 76, 0.3);
    transform: scale(1.2);
}

.indicator.active::before {
    transform: translate(-50%, -50%) scale(1);
}

.indicator:hover {
    border-color: #AF6A4C;
    transform: scale(1.3);
    background: rgba(175, 106, 76, 0.2);
}

/* Professional Background Animation - Very Subtle */

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(175, 106, 76, 0.01) 50%, transparent 60%), linear-gradient(-45deg, transparent 40%, rgba(212, 149, 107, 0.005) 50%, transparent 60%);
    background-size: 400% 400%;
    animation: professionalMove 30s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes professionalMove {

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

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

/* Slide Animation Effects */

.slide .hero-text {
    transform: translateY(20px);
    opacity: 0;
    transition: all 1s cubic-bezier(0.4, 0.0, 0.2, 1) 0.2s;
}

.slide .hero-image {
    transform: translateY(20px);
    opacity: 0;
    transition: all 1s cubic-bezier(0.4, 0.0, 0.2, 1) 0.1s;
}

.slide.active .hero-text {
    transform: translateY(0);
    opacity: 1;
}

.slide.active .hero-image {
    transform: translateY(0);
    opacity: 1;
}

/* About Section */

.about-section {
    max-width: 1200px;
    margin: 80px auto 80px auto;
    padding: 0 30px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: #AF6A4C;
    font-size: 2.2em;
    margin-bottom: 25px;
    font-weight: bold;
}

.about-text p {
    color: #8B543C;
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 15px;
}

/* Products Section */

.products-section {
    background: #ffffff;
    padding: 80px 0;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.products-header,
.products-grid {
    position: relative;
    z-index: 2;
}

.products-header {
    text-align: center;
    margin-bottom: 50px;
}

.products-logo {
    height: 120px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 15px rgba(175, 106, 76, 0.3));
}

.products-header h2 {
    color: #AF6A4C;
    font-size: 2.5em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.products-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #AF6A4C, #D4956B);
    transform: translateX(-50%);
    border-radius: 2px;
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 30px;
}

.product-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(175, 106, 76, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    transform: perspective(1000px) rotateX(0deg);
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(175, 106, 76, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

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

.product-item:hover::before {
    opacity: 1;
}

.product-item a {
    display: block;
    position: relative;
    z-index: 1;
}

.product-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.product-item p {
    padding: 20px;
    text-align: center;
    font-weight: 500;
    color: #8B543C;
    position: relative;
    z-index: 2;
    transition: color 0.3s;
}

.product-item p a {
    color: #8B543C !important;
    text-decoration: none !important;
    display: block;
    width: 100%;
    height: 100%;
    transition: color 0.3s;
}

.product-item:hover p {
    color: #AF6A4C;
}

.product-item:hover p a {
    color: #AF6A4C !important;
}

/* Popular Products Section */

.popular-products {
    max-width: 1400px;
    margin: 0 auto 80px auto;
    padding: 0 30px;
}

.popular-products h2 {
    color: #AF6A4C;
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

.popular-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(175, 106, 76, 0.1);
}

/* Scrollbar styling for mobile */

.popular-grid::-webkit-scrollbar {
    height: 6px;
}

.popular-grid::-webkit-scrollbar-track {
    background: rgba(175, 106, 76, 0.1);
    border-radius: 3px;
}

.popular-grid::-webkit-scrollbar-thumb {
    background: #AF6A4C;
    border-radius: 3px;
}

.popular-grid::-webkit-scrollbar-thumb:hover {
    background: #8B543C;
}

.popular-item {
    flex: 1;
    max-width: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(175, 106, 76, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    transform: perspective(1000px) rotateY(0deg);
    background: white;
}

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

.popular-item a {
    display: block;
    position: relative;
    z-index: 1;
}

.popular-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Latest Products Section */

.latest-products {
    max-width: 1400px;
    margin: 0 auto 80px auto;
    padding: 0 30px;
}

.latest-products h2 {
    color: #AF6A4C;
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

.latest-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(175, 106, 76, 0.1);
}

/* Scrollbar styling for mobile */

.latest-grid::-webkit-scrollbar {
    height: 6px;
}

.latest-grid::-webkit-scrollbar-track {
    background: rgba(175, 106, 76, 0.1);
    border-radius: 3px;
}

.latest-grid::-webkit-scrollbar-thumb {
    background: #AF6A4C;
    border-radius: 3px;
}

.latest-grid::-webkit-scrollbar-thumb:hover {
    background: #8B543C;
}

.latest-item {
    flex: 1;
    max-width: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(175, 106, 76, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    background: white;
}

.latest-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(175, 106, 76, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.latest-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(175, 106, 76, 0.2);
}

.latest-item:hover::after {
    opacity: 1;
}

.latest-item a {
    display: block;
    position: relative;
    z-index: 1;
}

.latest-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Contact Section */

.contact-section {
    text-align: center;
    margin: 80px auto;
    max-width: 800px;
    padding: 0 30px;
}

.contact-section h2 {
    color: #AF6A4C;
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: bold;
}

.subtitle {
    color: #8B543C;
    margin-bottom: 40px;
    font-size: 1.1em;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.form-row input {
    flex: 1;
}

input,
textarea {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 15px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    box-sizing: border-box;
    color: #8B543C;
}

input::placeholder,
textarea::placeholder {
    color: #AF6A4C;
    opacity: 0.7;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #AF6A4C;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 0 0 3px rgba(175, 106, 76, 0.1);
    transform: translateY(-2px);
}

textarea {
    width: 100%;
    height: 120px;
    resize: vertical;
    margin-bottom: 20px;
    box-sizing: border-box;
}

button[type="submit"] {
    background: linear-gradient(45deg, #AF6A4C, #D4956B, #AF6A4C);
    background-size: 200% 200%;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(175, 106, 76, 0.3);
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateX(0deg);
}

button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

button[type="submit"]:hover {
    background-position: 100% 100%;
    transform: perspective(1000px) rotateX(-5deg) translateY(-3px);
    box-shadow: 0 15px 35px rgba(175, 106, 76, 0.4);
}

button[type="submit"]:hover::before {
    left: 100%;
}

/* Footer */

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);
}

/* Line before opening hours removed */

.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);
}

/* Theme color for default state - #AF6A4C */

.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%);
}

/* Responsive Design */

@media (max-width: 1024px) {
    .logo {
        height: 90px;
    }

    .products-logo {
        height: 110px;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        display: none;
    }

    .hero-section {
        height: 80vh;
        min-height: 600px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 50px;
        padding: 70px 50px;
        height: calc(100% - 100px);
    }

    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 50px;
        padding: 70px 50px;
        height: calc(100% - 100px);
    }

    .hero-image {
        transform: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-image {
        height: 450px;
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    .hero-text p {
        font-size: 1.1em;
        margin-bottom: 30px;
    }

    .hero-text h1 {
        font-size: 3.5em;
        letter-spacing: 2px;
    }

    .hero-text p {
        font-size: 1.1em;
        margin-bottom: 30px;
    }

    .nav-btn {
        width: 45px;
        height: 45px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .logo {
        height: 80px;
    }

    .products-logo {
        height: 100px;
    }

    .logo-nav {
        padding: 15px 20px;
        justify-content: space-between;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        display: none;
    }

    /* Tablet Hero Slider - Professional Layout */
    .hero-section {
        height: 100vh;
        min-height: 700px;
        padding: 0;
    }

    .hero-content {
        padding: 50px 40px 100px 40px;
        gap: 40px;
        height: calc(100% - 100px);
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        display: flex;
    }

    /* Mobile Layout Order: Heading → Image → Description → Button */

    /* Force proper flex container */
    .hero-content {
        display: flex !important;
        flex-direction: column !important;
    }

    /* 1. Product Heading - First */
    .hero-text h1 {
        order: 1 !important;
        font-size: 2.8em;
        color: #333;
        text-align: center;
        margin-bottom: 20px;
        font-weight: 900;
        letter-spacing: 2px;
        line-height: 1.1;
        text-transform: uppercase;
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15), 0 0 30px rgba(175, 106, 76, 0.3);
        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;
    }

    /* 2. Product Image - Second */
    .hero-image {
        order: 2 !important;
        height: 300px !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 300px !important;
        margin: 0 auto 20px auto;
        display: flex !important;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .hero-image img {
        width: 100% !important;
        height: 300px !important;
        max-height: 300px !important;
        min-height: 300px !important;
        object-fit: contain !important;
        object-position: center !important;
        display: block;
    }

    /* 3. Product Description - Third */
    .hero-text p {
        order: 3 !important;
        font-size: 1.05em;
        margin-bottom: 15px;
        line-height: 1.6;
        color: #8B543C;
        max-width: 100%;
        text-align: center;
        padding: 0 15px;
    }

    /* 4. Button - Fourth (closer to description) */
    .hero-text > a,
    .hero-text .cta-button {
        order: 4 !important;
        align-self: center;
        margin-top: 5px;
        margin-bottom: 0;
    }

    /* Reset hero-text container to allow reordering */
    .hero-text {
        order: unset !important;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        display: contents !important;
    }

    .nav-btn {
        width: 50px;
        height: 50px;
    }

    .slider-indicators {
        bottom: 25px;
    }

    .slider-nav {
        padding: 0 10px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .qr-social {
        align-items: center;
    }

    .map-container-3d {
        width: 240px;
        height: 120px;
    }

    .location-info {
        font-size: 10px;
        padding: 6px 8px;
        white-space: normal;
        max-width: 120px;
    }

    .popular-grid,
    .latest-grid {
        display: flex;
        flex-direction: row;
        gap: 15px;
        padding: 15px;
        overflow-x: scroll;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .popular-item,
    .latest-item {
        flex: 0 0 160px;
        max-width: 160px;
    }

    .popular-item img,
    .latest-item img {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 70px;
    }

    .products-logo {
        height: 90px;
    }

    .mobile-nav {
        width: 280px;
        padding: 70px 20px 20px;
    }

    .mobile-nav a {
        font-size: 15px;
        padding: 12px 15px;
    }

    /* Mobile Hero Slider - Clean & Professional */
    .hero-section {
        height: 100vh;
        min-height: 650px;
        padding: 0;
    }

    .hero-content {
        padding: 40px 20px 90px 20px;
        gap: 30px;
        height: calc(100% - 90px);
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        display: flex;
    }

    /* Mobile Layout Order: Heading → Image → Description → Button */

    /* 1. Product Heading */
    .hero-text h1 {
        order: 1;
        font-size: 2.5em;
    }

    /* 2. Product Image */
    .hero-image {
        order: 2;
        margin-bottom: 20px;
        height: 280px !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 280px !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .hero-image img {
        width: 100% !important;
        height: 280px !important;
        max-height: 280px !important;
        min-height: 280px !important;
        object-fit: contain !important;
        object-position: center !important;
        display: block;
    }

    /* 3. Product Description */
    .hero-text p {
        order: 3;
    }

    /* 4. Button */
    .hero-text > a,
    .hero-text .cta-button {
        order: 4;
        align-self: center;
    }

    /* Reset hero-text container */
    .hero-text {
        display: contents;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .hero-heading {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        z-index: 10;
        position: relative;
    }

    .hero-description {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        z-index: 10;
        position: relative;
    }

    .hero-heading h1,
    .hero-text h1 {
        font-size: 2.2em;
        color: #AF6A4C;
        text-align: center;
        margin-bottom: 20px;
        font-weight: bold;
        letter-spacing: 1px;
        line-height: 1.1;
        text-transform: uppercase;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        word-wrap: break-word;
        overflow-wrap: break-word;
        background: none !important;
        background-color: transparent !important;
        background-image: none !important;
    }

    .hero-description p,
    .hero-text p {
        font-size: 0.95em;
        margin-bottom: 25px;
        line-height: 1.6;
        color: #8B543C;
        max-width: 100%;
        text-align: center;
        padding: 0 5px;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .hero-image {
        height: 280px;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
        margin-top: 10px;
    }

    .nav-btn {
        width: 45px;
        height: 45px;
    }

    .indicator {
        width: 12px;
        height: 12px;
    }

    .slider-indicators {
        bottom: 15px;
        padding: 10px 18px;
        gap: 15px;
    }

    .slider-container {
        height: 100%;
        overflow: hidden;
    }

    .slider-wrapper {
        height: 100%;
        overflow: hidden;
    }

    .slide {
        height: 100%;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .about-text h2,
    .products-header h2,
    .popular-products h2,
    .latest-products h2,
    .contact-section h2 {
        font-size: 1.8em;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Make category images square in mobile */
    .product-item {
        position: relative;
    }

    .product-item img {
        width: 100%;
        aspect-ratio: 1 / 1;
        height: auto;
        object-fit: contain;
        object-position: center;
    }

    .popular-grid,
    .latest-grid {
        display: flex;
        flex-direction: row;
        gap: 0;
        padding: 0 20px;
        flex-wrap: nowrap;
        overflow-x: scroll;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .popular-item,
    .latest-item {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        scroll-snap-align: center;
    }

    .popular-item img,
    .latest-item img {
        height: 250px;
        width: 100%;
        object-fit: contain;
    }
}

/* Extra Small Mobile Devices */

@media (max-width: 360px) {
    .hero-content {
        padding: 30px 15px 80px 15px;
        gap: 25px;
    }

    /* Mobile-specific layout: heading first, image second, description third */
    .hero-text {
        display: flex;
        flex-direction: column;
        order: 1;
    }

    /* Order: Title → Image → Text → Button */
    .hero-text h1 {
        order: 1;
        font-size: 1.9em;
        color: #AF6A4C;
        text-align: center;
        font-weight: bold;
        letter-spacing: 1px;
        line-height: 1.1;
        text-transform: uppercase;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        background: none !important;
        background-color: transparent !important;
        background-image: none !important;
    }

    .hero-image {
        order: 2;
        height: 250px !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 250px !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .hero-image img {
        width: 100% !important;
        height: 250px !important;
        max-height: 250px !important;
        min-height: 250px !important;
        object-fit: contain !important;
        object-position: center !important;
        display: block;
    }

    .hero-text p {
        order: 3;
        font-size: 0.9em;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .hero-text > a,
    .hero-text .cta-button {
        order: 4;
        align-self: center;
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Glowing Effects */

.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #AF6A4C, #D4956B, #AF6A4C, #D4956B);
    background-size: 400% 400%;
    border-radius: inherit;
    z-index: -1;
    filter: blur(10px);
    opacity: 0;
    animation: glowing 3s ease-in-out infinite;
}

@keyframes glowing {

    0%,
    100% {
        opacity: 0;
        background-position: 0% 50%;
    }

    50% {
        opacity: 0.8;
        background-position: 100% 50%;
    }
}

/* 3D Card Flip Effect for Special Elements */

.flip-card {
    background-color: transparent;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
}

.flip-card-back {
    background: linear-gradient(45deg, #AF6A4C, #D4956B);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Morphing Shapes */

.morphing-shape {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(175, 106, 76, 0.1), rgba(212, 149, 107, 0.1));
    border-radius: 50%;
    animation: morph 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes morph {

    0%,
    100% {
        border-radius: 50% 50% 50% 50%;
        transform: rotate(0deg) scale(1);
    }

    25% {
        border-radius: 60% 40% 60% 40%;
        transform: rotate(90deg) scale(1.1);
    }

    50% {
        border-radius: 40% 60% 40% 60%;
        transform: rotate(180deg) scale(0.9);
    }

    75% {
        border-radius: 70% 30% 70% 30%;
        transform: rotate(270deg) scale(1.05);
    }
}

/* Pulse Animation for Important Elements */

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(175, 106, 76, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(175, 106, 76, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(175, 106, 76, 0);
    }
}

/* Gradient Text Animation */

.gradient-text {
    background: linear-gradient(45deg, #AF6A4C, #D4956B, #AF6A4C);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {

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

    50% {
        background-position: 100% 50%;
    }
}

/* Tilt Effect */

.tilt-effect {
    transition: transform 0.3s ease;
}

.tilt-effect:hover {
    transform: perspective(1000px) rotateX(10deg) rotateY(10deg) scale(1.05);
}

/* Neon Glow Effect */

.neon-glow {
    text-shadow: 0 0 5px rgba(175, 106, 76, 0.5), 0 0 10px rgba(175, 106, 76, 0.5), 0 0 15px rgba(175, 106, 76, 0.5), 0 0 20px rgba(175, 106, 76, 0.5);
    animation: neonFlicker 2s ease-in-out infinite alternate;
}

@keyframes neonFlicker {

    0%,
    100% {
        text-shadow: 0 0 5px rgba(175, 106, 76, 0.5), 0 0 10px rgba(175, 106, 76, 0.5), 0 0 15px rgba(175, 106, 76, 0.5), 0 0 20px rgba(175, 106, 76, 0.5);
    }

    50% {
        text-shadow: 0 0 2px rgba(175, 106, 76, 0.3), 0 0 5px rgba(175, 106, 76, 0.3), 0 0 8px rgba(175, 106, 76, 0.3), 0 0 12px rgba(175, 106, 76, 0.3);
    }
}

/* Enhanced Mobile Responsiveness for 3D Effects */

@media (max-width: 768px) {
    .hero-image {
        transform: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    .hero-image:hover {
        transform: scale(1.02);
    }

    .product-item:hover,
    .popular-item:hover,
    .latest-item:hover {
        transform: translateY(-5px) scale(1.02);
    }

    .floating-elements {
        display: none;
    }

    .morphing-shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .tilt-effect:hover {
        transform: scale(1.02);
    }

    .hero-text h1 {
        background: #333;
        -webkit-background-clip: initial;
        -webkit-text-fill-color: initial;
        background-clip: initial;
        animation: none;
    }
}

/* 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;
}

/* Responsive adjustments */

@media (max-width: 768px) {
    .address-map-section {
        margin-top: 20px;
        padding: 15px;
    }

    .map-3d-container {
        width: 280px;
        height: 160px;
    }

    .address-info {
        font-size: 11px;
    }
}

/* Enhance
d Footer Responsive Design */

@media (max-width: 768px) {
    .footer-content {
        padding: 0 20px;
        gap: 25px;
        flex-direction: column;
    }

    .about-us {
        padding: 0 10px;
        margin-right: 0;
        min-width: 240px;
    }

    .about-us p {
        line-height: 1.6;
        margin-bottom: 12px;
        letter-spacing: 0.6px;
        word-spacing: 1.8px;
    }

    .about-us h3 {
        letter-spacing: 1px;
        word-spacing: 2px;
        margin-bottom: 15px;
    }

    .address-map-section {
        padding-left: 0;
        margin-left: 0;
        min-width: 250px;
    }
}

/* 
Premium About Us Text Enhancement */

.about-us p:first-of-type {
    margin-top: 0;
}

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

/* ===== 
PRODUCT PAGE STYLES ===== */

.product-page {
    background: #fff;
    min-height: 100vh;
}

/* Product Detail Section */
.product-detail-section {
    padding: 40px 0 80px 0;
    background: #ffffff;
}

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

/* Left Side - Product Images */
.product-images {
    flex: 1;
    display: flex;
    gap: 20px;
    position: sticky;
    top: 120px;
}

.thumbnail-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.thumbnail.active {
    border-color: #AF6A4C;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(175, 106, 76, 0.3);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail:hover img {
    transform: scale(1.1);
}

.main-image-container {
    flex: 1;
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 10px 30px rgba(175, 106, 76, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.6s ease;
}

.main-image-container:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15), 0 15px 40px rgba(175, 106, 76, 0.2);
}

.main-image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.main-image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(175, 106, 76, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.main-image-container:hover .image-overlay {
    opacity: 1;
}

/* Right Side - Product Info */
.product-info {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.product-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #AF6A4C, #D4956B, #AF6A4C);
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

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

.product-title {
    font-size: 3.2em;
    font-weight: 900;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #2C2C2C, #AF6A4C, #D4A574);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.product-subtitle {
    color: #AF6A4C;
    font-size: 0.9em;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
}

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

.features-section h2 {
    color: #AF6A4C;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

.features-section h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #AF6A4C, #D4956B);
    border-radius: 2px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 12px 0;
    color: #666;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
    transition: all 0.3s ease;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: #AF6A4C;
    font-weight: bold;
    font-size: 1.1em;
}

.features-list li:hover {
    color: #AF6A4C;
    transform: translateX(5px);
}

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

.size-options h3 {
    color: #333;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.size-btn {
    padding: 10px 20px;
    border: 2px solid #ddd;
    background: white;
    color: #666;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.size-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #AF6A4C, #D4956B);
    transition: left 0.3s ease;
    z-index: 0;
}

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

.size-btn:hover::before,
.size-btn.active::before {
    left: -100%;
}

/* Specifications Table */
.specifications {
    margin-bottom: 40px;
}

.specifications h3 {
    color: #333;
    font-size: 1.4em;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.spec-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    color: #666;
}

.spec-row:hover {
    background: rgba(175, 106, 76, 0.05);
    color: #AF6A4C;
}

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

/* Action Buttons */
.product-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

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

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.action-btn:hover::before {
    left: 100%;
}

.action-btn.primary {
    background: linear-gradient(45deg, #AF6A4C, #D4956B);
    color: white;
    box-shadow: 0 8px 25px rgba(175, 106, 76, 0.3);
}

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

.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: #666;
    border: 2px solid #ddd;
}

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

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

.related-products h2 {
    text-align: center;
    color: #AF6A4C;
    font-size: 2.5em;
    margin-bottom: 50px;
    font-weight: bold;
    position: relative;
}

.related-products h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #AF6A4C, #D4956B);
    transform: translateX(-50%);
    border-radius: 2px;
}

.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;
    color: #AF6A4C;
    font-size: 1.3em;
    font-weight: 600;
    margin: 0;
}

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

/* Responsive Design for Product Page */
@media (max-width: 1024px) {
    .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: 2.5em;
    }
}

@media (max-width: 768px) {
    .product-detail-section {
        padding: 0;
        background: white;
    }

    .product-container {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-width: 100%;
    }

    /* Mobile: Stack everything vertically in correct order */

    /* Mobile Layout: Extract product-header from product-info */

    /* Mobile Layout - Exact Order Required */

    /* 1. Product Name - First (large, bold, centered) */
    .product-info .product-header {
        order: 1;
        padding: 25px 20px;
        background: white;
        text-align: center;
        margin-bottom: 0;
    }

    /* 2. Product Images - Second */
    .product-images {
        order: 2;
        position: static;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        background: white;
        margin-bottom: 0;
    }

    /* 3. Product Info Container - Reorder internal sections */
    .product-info {
        order: 3;
        display: flex;
        flex-direction: column;
        padding: 0;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        margin-bottom: 0;
    }

    .product-title {
        font-size: 2.2em;
        font-weight: 900;
        color: #333;
        margin-bottom: 8px;
        text-align: center;
        letter-spacing: 1px;
    }

    .product-subtitle {
        font-size: 0.9em;
        color: #AF6A4C;
        margin-bottom: 0;
        text-align: center;
    }



    .main-image-container {
        transform: none;
        border-radius: 15px;
        margin-bottom: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .main-image-container img {
        height: 280px;
        border-radius: 15px;
    }

    .thumbnail-list {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
        order: 2;
    }

    .thumbnail {
        width: 50px;
        height: 50px;
        border-radius: 8px;
    }

    /* 3. Product Features - Keep existing professional design */
    .features-section {
        order: 2;
        padding: 25px 20px;
        background: #ffffff;
        margin: 10px 0;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .features-section h2 {
        font-size: 1.4em;
        color: #AF6A4C;
        margin-bottom: 20px;
        font-weight: 600;
        text-align: center;
        position: relative;
    }

    .features-section h2::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        width: 40px;
        height: 3px;
        background: linear-gradient(45deg, #AF6A4C, #D4956B);
        transform: translateX(-50%);
        border-radius: 2px;
    }

    .features-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .features-list li {
        font-size: 15px;
        line-height: 1.6;
        padding: 12px 0;
        color: #444;
        position: relative;
        padding-left: 30px;
        margin-bottom: 8px;
        background: white;
        border-radius: 8px;
        padding: 15px 15px 15px 45px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        border-left: 4px solid #AF6A4C;
    }

    .features-list li::before {
        content: '✓';
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #AF6A4C;
        font-weight: bold;
        font-size: 16px;
        width: 20px;
        height: 20px;
        background: rgba(175, 106, 76, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
    }

    /* 4. Available Sizes - Keep same clickable design */
    .size-options {
        order: 3;
        padding: 20px;
        background: white;
        margin-bottom: 0;
    }

    .size-options h3 {
        font-size: 1.2em;
        margin-bottom: 12px;
        color: #333;
    }

    .size-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-start;
    }

    .size-btn {
        padding: 8px 16px;
        font-size: 12px;
        border-radius: 20px;
        min-width: auto;
        flex: 0 0 auto;
    }

    /* 5. Specifications - Keep existing styling */
    .specifications {
        order: 4;
        padding: 20px;
        background: white;
        margin-bottom: 0;
    }

    .specifications h3 {
        font-size: 1.2em;
        margin-bottom: 15px;
        color: #333;
    }

    .spec-table {
        border-radius: 10px;
        overflow: hidden;
    }

    .spec-header {
        font-size: 12px;
        padding: 12px 15px;
        font-weight: 600;
    }

    .spec-row {
        font-size: 12px;
        padding: 10px 15px;
    }

    /* 6. Three Action Buttons - Row layout or stacked if needed */
    .product-actions {
        order: 5;
        padding: 20px;
        background: white;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 0;
        justify-content: space-between;
    }

    .action-btn {
        flex: 1;
        min-width: 120px;
        padding: 12px 15px;
        font-size: 12px;
        border-radius: 25px;
        text-align: center;
    }

    .action-btn.primary {
        order: 1;
    }

    .action-btn.secondary {
        order: 2;
    }

    .action-btn.tertiary {
        order: 3;
    }

    /* 7. Related Products - Last Section */
    .related-products {
        order: 6;
        padding: 40px 20px;
        background: #ffffff;
    }

    .related-products h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .related-item {
        border-radius: 12px;
    }

    .related-item img {
        height: 150px;
    }

    .related-item h3 {
        font-size: 1em;
        padding: 15px 15px 8px 15px;
    }

    .related-item p {
        font-size: 12px;
        padding: 0 15px 15px 15px;
    }
}

@media (max-width: 480px) {
    .product-info {
        padding: 15px;
    }

    .product-title {
        font-size: 1.6em;
        line-height: 1.2;
    }

    .product-images {
        padding: 0 15px;
    }

    .main-image-container img {
        height: 250px;
    }

    .thumbnail {
        width: 45px;
        height: 45px;
    }

    .features-section,
    .size-options,
    .specifications {
        padding: 0 15px;
    }

    .features-section h2,
    .size-options h3,
    .specifications h3 {
        font-size: 1.1em;
    }

    .features-list li {
        font-size: 13px;
    }

    .size-btn {
        padding: 6px 12px;
        font-size: 11px;
    }

    .spec-header,
    .spec-row {
        font-size: 11px;
        padding: 8px 12px;
    }

    .product-actions {
        padding: 0 15px 25px 15px;
    }

    .action-btn {
        padding: 10px 15px;
        font-size: 12px;
    }

    .related-products {
        padding: 30px 15px;
    }

    .related-grid {
        gap: 12px;
    }

    .related-item img {
        height: 120px;
    }

    .related-item h3 {
        font-size: 0.9em;
        padding: 12px 12px 6px 12px;
    }

    .related-item p {
        font-size: 11px;
        padding: 0 12px 12px 12px;
    }
}

.product-actions {
    flex-direction: column;
}

.action-btn {
    width: 100%;
}

.spec-header,
.spec-row {
    font-size: 12px;
    padding: 10px 15px;
}

/* 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;
    }
}

/* Speci
fic Mobile Breakpoints for Hero Slider */

/* Extra Small Mobile (360px - 480px) */
@media (max-width: 480px) and (min-width: 360px) {
    .hero-section {
        height: 100vh;
        min-height: 600px;
    }

    .hero-content {
        padding: 30px 15px 60px 15px;
        gap: 20px;
        display: flex !important;
        flex-direction: column !important;
    }

    .hero-text h1 {
        order: 1 !important;
        font-size: 2.8em;
        margin-bottom: 15px;
    }

    .hero-image {
        order: 2 !important;
        height: 250px;
        max-width: 320px;
        margin: 0 auto 15px auto;
    }

    .hero-text p {
        order: 3 !important;
        font-size: 0.95em;
        margin-bottom: 12px;
        padding: 0 10px;
    }

    .hero-text .cta-button {
        order: 4 !important;
        margin-top: 3px;
        padding: 12px 25px;
    }

    .hero-text {
        display: contents !important;
    }
}

/* Medium Mobile (481px - 767px) */
@media (max-width: 767px) and (min-width: 481px) {
    .hero-section {
        height: 100vh;
        min-height: 650px;
    }

    .hero-content {
        padding: 40px 20px 70px 20px;
        gap: 25px;
        display: flex !important;
        flex-direction: column !important;
    }

    .hero-text h1 {
        order: 1 !important;
        font-size: 3.2em;
        margin-bottom: 18px;
    }

    .hero-image {
        order: 2 !important;
        height: 280px;
        max-width: 400px;
        margin: 0 auto 18px auto;
    }

    .hero-text p {
        order: 3 !important;
        font-size: 1.0em;
        margin-bottom: 14px;
        padding: 0 12px;
    }

    .hero-text .cta-button {
        order: 4 !important;
        margin-top: 4px;
        padding: 14px 28px;
    }

    .hero-text {
        display: contents !important;
    }
}

/* Large Mobile/Small Tablet (768px - 915px) */
@media (max-width: 915px) and (min-width: 768px) {
    .hero-section {
        height: 100vh;
        min-height: 700px;
    }

    .hero-content {
        padding: 50px 30px 80px 30px;
        gap: 30px;
        display: flex !important;
        flex-direction: column !important;
    }

    .hero-text h1 {
        order: 1 !important;
        font-size: 3.5em;
        margin-bottom: 20px;
    }

    .hero-image {
        order: 2 !important;
        height: 320px;
        max-width: 480px;
        margin: 0 auto 20px auto;
    }

    .hero-text p {
        order: 3 !important;
        font-size: 1.1em;
        margin-bottom: 16px;
        padding: 0 15px;
    }

    .hero-text .cta-button {
        order: 4 !important;
        margin-top: 5px;
        padding: 15px 30px;
    }

    .hero-text {
        display: contents !important;
    }
}

/* Mob
ile About Us Section Fixes */
@media (max-width: 768px) {
    .about-text p {
        text-align: justify;
        text-justify: inter-word;
        line-height: 1.7;
        margin-bottom: 18px;
        padding: 0 5px;
        word-spacing: 0.1em;
    }

    .about-content {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .about-text p {
        text-align: justify;
        text-justify: inter-word;
        line-height: 1.6;
        margin-bottom: 16px;
        padding: 0 3px;
        word-spacing: normal;
        font-size: 15px;
    }

    .about-content {
        padding: 0 15px;
    }
}

/* Foot
er 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;
    }
}

/* ===== P
RODUCTS SHOWCASE LAYOUT ===== */

/* Hero Section */
.products-hero {
    background: #ffffff;
    padding: 80px 0 60px 0;
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
    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 8s ease-in-out infinite;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    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 8s ease-in-out infinite;
}

/* Products Showcase Section */
.products-showcase {
    padding: 80px 0;
    background: #ffffff;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: #AF6A4C;
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-content {
    padding: 30px;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #AF6A4C;
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Sub Products */
.sub-products {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.sub-products h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #AF6A4C;
    margin-bottom: 12px;
}

.sub-product-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sub-product-list li {
    padding: 6px 0;
    color: #555;
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.sub-product-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #AF6A4C;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .products-hero {
        padding: 60px 0 40px 0;
    }

    .products-showcase {
        padding: 60px 0;
    }

    .products-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        padding: 0 20px;
    }

    .hero-container {
        padding: 0 20px;
    }

    .product-content {
        padding: 25px;
    }

    .product-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .products-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-image {
        height: 200px;
    }

    .product-content {
        padding: 20px;
    }
}

/* Desktop Grid Layout */
@media (min-width: 1200px) {
    .products-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .products-container {
        grid-template-columns: repeat(2, 1fr);
    }
}