/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8b6f47;
    --primary-dark: #6b5535;
    --primary-light: #a6895f;
    --accent-color: #c97d60;
    --accent-light: #d4957a;
    --accent-dark: #b86445;
    --secondary-color: #7a9178;
    --terracotta: #c97d60;
    --beige: #d4c5b0;
    --text-dark: #2c2c2c;
    --text-medium: #5a5a5a;
    --text-light: #7a7a7a;
    --bg-cream: #faf8f5;
    --bg-light: #f5f1eb;
    --bg-white: #ffffff;
    --border-light: #e8e3dc;
    --border-urban: #d4c5b0;
    --shadow-sm: 0 2px 8px rgba(139,111,71,0.08);
    --shadow: 0 4px 12px rgba(139,111,71,0.1);
    --shadow-md: 0 8px 24px rgba(139,111,71,0.15);
    --shadow-lg: 0 16px 48px rgba(139,111,71,0.2);
    --shadow-xl: 0 24px 64px rgba(139,111,71,0.25);
    --shadow-premium: 0 32px 80px rgba(139,111,71,0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--bg-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    overflow: visible;
}


/* Premium Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: inline-block;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(139,111,71,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(139,111,71,0.1);
    transition: all 0.3s ease;
    margin-bottom: 0;
    overflow: visible;
}

.navbar .container {
    padding-left: 64px !important;
    padding-right: 24px !important;
    overflow: visible !important;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: visible;
}

.logo {
    display: flex;
    align-items: center;
    padding: 0.2rem 0.4rem 0.2rem 0.4rem;
    overflow: visible;
    margin-left: 0;
    margin-top: 0;
    clip-path: none;
}

.logo a {
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 0.2rem 0.4rem 0.2rem 0.4rem;
    overflow: visible;
    clip-path: none;
}

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

.logo-img {
    height: auto;
    max-height: 38px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
    object-position: center center;
    transition: all 0.3s ease;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
    will-change: transform;
    backface-visibility: visible;
    transform: translate(0.1rem, 0.1rem) translateZ(0);
    filter: none !important;
    opacity: 1;
    padding: 0.875rem 0.75rem 0.75rem 0.875rem;
    box-sizing: content-box;
    overflow: visible;
    margin: 0;
    clip-path: none;
}

.logo-img:hover {
    filter: none !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.2rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-dark);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-btn {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    position: relative;
    font-weight: 600;
    overflow: hidden;
}

.cart-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.5s ease;
}

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

.cart-btn:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--terracotta) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cart-btn svg {
    width: 18px;
    height: 18px;
}

.cart-count {
    background: var(--terracotta);
    color: white;
    padding: 0.25rem 0.625rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 100vh;
    width: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
}

/* Hero Swiper */
.hero-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    min-height: 100vh;
    z-index: 0;
    overflow: hidden;
}

.hero-swiper .swiper-wrapper {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    position: relative;
    display: flex;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateX(0);
    overflow: hidden;
}

.hero-swiper .swiper-slide {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    height: 100vh;
    min-height: 100vh;
    flex-shrink: 0;
    flex-basis: 100%;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    min-height: 100vh;
    z-index: 0;
    overflow: hidden;
}

.hero-banner-img {
    width: 100% !important;
    max-width: 100% !important;
    height: 100vh !important;
    min-height: 100vh !important;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-overlay {
    display: none;
}

.hero-pattern {
    display: none;
}

/* Swiper Navigation Buttons - Hidden */
.swiper-button-next,
.swiper-button-prev {
    display: none !important;
}

/* Swiper Pagination - Hidden */
.swiper-pagination {
    display: none !important;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    z-index: 10;
    text-align: center;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(139,111,71,0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--primary-dark);
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 32px rgba(139,111,71,0.15), inset 0 1px 0 rgba(255,255,255,0.9);
    animation: fadeInUp 0.8s ease;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201,125,96,0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.hero-title {
    font-size: clamp(2.75rem, 7vw, 5rem);
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.05;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 0 4px 12px rgba(255,255,255,0.9), 0 2px 6px rgba(0,0,0,0.3);
    letter-spacing: -0.03em;
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-style: italic;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
    animation: fadeInUp 1s ease 0.3s both;
    text-shadow: 0 2px 8px rgba(255,255,255,0.8), 0 1px 4px rgba(0,0,0,0.2);
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--text-dark);
    margin-bottom: 3rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.7;
    animation: fadeInUp 1s ease 0.4s both;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 8px rgba(255,255,255,0.8), 0 1px 4px rgba(0,0,0,0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    padding: 1rem 2.25rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(139,111,71,0.25), 0 4px 8px rgba(139,111,71,0.15);
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-primary::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 ease;
}

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

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--terracotta) 100%);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(139,111,71,0.3), 0 8px 16px rgba(139,111,71,0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--primary-dark);
    border: 2px solid rgba(139,111,71,0.3);
    box-shadow: 0 4px 16px rgba(139,111,71,0.1);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(139,111,71,0.25);
}

.btn svg {
    width: 16px;
    height: 16px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 8px rgba(255,255,255,0.8), 0 1px 4px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(255,255,255,0.8);
}

/* Features Section */
.features {
    padding: 7rem 0;
    background: #fafaf9;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201,125,96,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    text-align: center;
    padding: 3.5rem 2rem;
    background: #ffffff;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(139,111,71,0.08);
    box-shadow: 
        0 4px 20px rgba(139,111,71,0.06),
        0 1px 4px rgba(139,111,71,0.04);
    position: relative;
    overflow: visible;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--terracotta) 50%, 
        var(--primary-color) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 16px 40px rgba(139,111,71,0.12),
        0 8px 20px rgba(139,111,71,0.08),
        0 2px 8px rgba(139,111,71,0.06);
    border-color: rgba(139,111,71,0.2);
}

.feature-icon-wrapper {
    margin: 0 auto 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, 
        #8b6f47 0%, 
        #a6895f 30%,
        #c97d60 70%,
        #b86445 100%);
    border-radius: 22px;
    box-shadow: 
        0 8px 24px rgba(139,111,71,0.2),
        0 4px 12px rgba(139,111,71,0.15),
        inset 0 2px 4px rgba(255,255,255,0.35),
        inset 0 -2px 4px rgba(0,0,0,0.12);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.feature-icon-wrapper::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
    transition: all 0.6s ease;
}

.feature-card:hover .feature-icon-wrapper::after {
    top: -50%;
    left: -50%;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 
        0 12px 32px rgba(139,111,71,0.3),
        0 6px 16px rgba(139,111,71,0.2),
        inset 0 2px 6px rgba(255,255,255,0.4),
        inset 0 -2px 6px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, 
        #c97d60 0%, 
        #a6895f 40%,
        #8b6f47 70%,
        #b86445 100%);
}

.feature-icon {
    font-size: 2.75rem;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: all 0.4s ease;
    line-height: 1.3;
}

.feature-card:hover h3 {
    color: var(--terracotta);
    transform: translateY(-2px);
}

.feature-card p {
    color: #5a5a5a;
    font-size: 0.9375rem;
    line-height: 1.7;
    font-weight: 400;
    transition: color 0.4s ease;
    margin: 0;
}

.feature-card:hover p {
    color: #3a3a3a;
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: var(--bg-cream);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .section-label {
    margin-bottom: 1rem;
    color: var(--terracotta);
}

.section-header h2 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--terracotta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 4px rgba(139,111,71,0.1);
}

.section-header p {
    color: var(--text-medium);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(139,111,71,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(139,111,71,0.1);
    position: relative;
    backdrop-filter: blur(10px);
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139,111,71,0.08), rgba(201,125,96,0.08));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover::after {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 24px 64px rgba(139,111,71,0.25), 0 12px 24px rgba(139,111,71,0.15);
    border-color: rgba(139,111,71,0.3);
}

.product-image {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #f5f1eb 0%, #ede8e0 25%, #d4c5b0 50%, #c9b99f 75%, #b8a78f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 1rem;
    border-radius: 28px 28px 0 0;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    border-radius: 28px;
    overflow: hidden;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-emoji {
    font-size: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.product-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: float 20s linear infinite;
    z-index: 0;
}

.product-img,
.product-emoji {
    position: relative;
    z-index: 1;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

.product-info {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.625rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.product-description {
    color: var(--text-medium);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.add-to-cart {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9375rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(139,111,71,0.2);
    letter-spacing: 0.03em;
    position: relative;
    overflow: hidden;
}

.add-to-cart::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.5s ease;
}

.add-to-cart:hover::before {
    left: 100%;
}

.add-to-cart:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--terracotta) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(139,111,71,0.3);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about-text .section-label {
    margin-bottom: 0.5rem;
}

.about-text h2 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--terracotta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.about-text p {
    color: var(--text-medium);
    margin-bottom: 0.75rem;
    line-height: 1.45;
    font-size: 1.0625rem;
}

.about-features {
    list-style: none;
    margin-top: 1rem;
    display: grid;
    gap: 0.375rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.125rem 0;
    color: var(--text-dark);
    font-weight: 500;
}

.about-features li svg {
    color: var(--terracotta);
    flex-shrink: 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-images-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
    perspective: 1200px;
    flex-wrap: wrap;
}

.rotating-card-wrapper {
    width: 100%;
    height: 560px;
    max-width: 620px;
    margin: 0 auto;
    perspective: 1200px;
}

.rotating-card {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.rotating-card-wrapper:hover .rotating-card {
    transform: rotateY(180deg);
}

.rotating-card-wrapper:nth-child(2):hover .rotating-card {
    transform: rotateY(-180deg);
}

.card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(139,111,71,0.15),
                0 8px 24px rgba(139,111,71,0.1),
                inset 0 1px 0 rgba(255,255,255,0.5);
    border: 1px solid rgba(139,111,71,0.12);
    padding: 0;
}

.card-front {
    transform: rotateY(0deg);
}

.card-back {
    transform: rotateY(180deg);
}

.rotating-card-wrapper:nth-child(2) .card-back {
    transform: rotateY(-180deg);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rotating-card-wrapper:hover .about-img {
    transform: scale(1.05);
}

.about-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(139,111,71,0.05) 0%, 
        rgba(201,125,96,0.08) 50%,
        rgba(139,111,71,0.05) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.rotating-card-wrapper:hover .about-img-overlay {
    opacity: 1;
}

.img-content {
    text-align: center;
    z-index: 1;
    position: relative;
}

.img-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.img-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.img-tagline {
    font-size: 0.875rem;
    color: var(--text-medium);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-info {
    background: var(--primary-color);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    color: white;
}

.contact-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    color: white;
    line-height: 1.4;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon-wrapper {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
}

.contact-icon-wrapper svg {
    width: 20px;
    height: 20px;
}

.contact-item-content p {
    color: white;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.contact-form {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
}

.form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.contact-form h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
    white-space: nowrap;
}

.form-header-line {
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.form-row.email-row {
    grid-template-columns: 1fr;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-row .form-group {
    margin-bottom: 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1.125rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-dark);
}

.phone-input-wrapper {
    display: flex;
    gap: 0;
    align-items: stretch;
}

.country-code-select {
    padding: 0.875rem 0.5rem;
    border: 2px solid var(--border-light);
    border-radius: 8px 0 0 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: var(--bg-cream);
    color: var(--text-dark);
    cursor: pointer;
    width: 70px;
    flex-shrink: 0;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 12 12'%3E%3Cpath fill='%238B7355' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.4rem center;
    background-size: 8px;
    padding-right: 1.5rem;
    text-align: center;
    border-right: none;
}

.country-code-select:hover {
    border-color: var(--primary-color);
    background: white;
}

.country-code-select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    z-index: 1;
}

.phone-input-wrapper input {
    border-radius: 0 8px 8px 0;
    border-left: none;
}

.phone-input-wrapper:hover .country-code-select,
.phone-input-wrapper:hover input,
.phone-input-wrapper input:focus ~ .country-code-select,
.country-code-select:focus ~ input {
    border-color: var(--primary-color);
}

.phone-input-wrapper input:focus {
    border-left: 2px solid var(--primary-color);
}

.country-code-select option {
    padding: 0.5rem;
    font-weight: 500;
    text-align: center;
}

.phone-group .phone-input-wrapper input {
    flex: 1;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-light);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form input:invalid:not(:placeholder-shown) {
    border-color: #dc2626;
}

.contact-form input:valid:not(:placeholder-shown) {
    border-color: #16a34a;
}

.error-message {
    display: block;
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.contact-form textarea {
    resize: vertical;
    min-height: 80px;
    height: 80px;
    line-height: 1.5;
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 0.25rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
}

.btn-block:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139,111,71,0.25);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #5a4230 50%, var(--primary-dark) 100%);
    color: white;
    padding: 5rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(201,125,96,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: var(--beige);
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9375rem;
}

.footer-section a:hover {
    color: var(--beige);
}

.footer-section .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-section .social-icons .social-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 111, 71, 0.9);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.footer-section .social-icons .social-icon:hover {
    background: rgba(201, 125, 96, 1);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.footer-section .social-icons .social-icon svg {
    width: 22px;
    height: 22px;
    stroke: white;
    fill: none;
    display: block;
    visibility: visible;
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    right: -450px;
    top: 0;
    width: 450px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -8px 0 32px rgba(139,111,71,0.2);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(139,111,71,0.1);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 2.5rem 2rem;
    border-bottom: 1px solid rgba(139,111,71,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f1eb 100%);
    backdrop-filter: blur(10px);
}

.cart-header h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    font-size: 1.75rem;
}

.cart-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-medium);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cart-close:hover {
    background: var(--border-light);
    color: var(--text-dark);
}

.cart-close svg {
    width: 24px;
    height: 24px;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    transition: background 0.3s ease;
}

.cart-item:hover {
    background: var(--bg-cream);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1rem;
}

.cart-item-price {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.9375rem;
}

.cart-item-remove {
    background: var(--terracotta);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cart-item-remove:hover {
    background: var(--accent-dark);
    transform: scale(1.05);
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid var(--border-light);
    background: var(--bg-cream);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    color: var(--text-dark);
}

.cart-total strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 1999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-overlay.active {
    display: block;
    opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4),
                0 8px 30px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: white;
    animation: float 3s ease-in-out infinite;
    overflow: visible;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5),
                0 12px 40px rgba(37, 211, 102, 0.4);
    animation: none;
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Clean WhatsApp button - no pulse effect */

/* Responsive Design */

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .navbar .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .logo-img {
        max-height: 35px;
        max-width: 160px;
        padding: 0.5rem 0.25rem 0.5rem 0.25rem;
    }

    .logo {
        padding: 0.15rem 0.25rem 0.15rem 0.25rem;
        margin-left: 0;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 1.5rem 0;
        gap: 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 0.875rem 0;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-menu a {
        font-size: 0.875rem;
        padding: 0.5rem 0;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-icons {
        gap: 0.75rem;
    }

    .cart-btn {
        padding: 0.5rem;
        font-size: 0.875rem;
    }

    .hero {
        height: 70vh;
        min-height: 70vh;
        max-height: 600px;
    }

    .hero-swiper {
        height: 70vh;
        min-height: 70vh;
        max-height: 600px;
    }

    .hero-swiper .swiper-wrapper {
        height: 70vh;
        min-height: 70vh;
        max-height: 600px;
    }

    .hero-swiper .swiper-slide {
        height: 70vh;
        min-height: 70vh;
        max-height: 600px;
    }

    .hero-background {
        height: 70vh;
        min-height: 70vh;
        max-height: 600px;
    }

    .hero-banner-img {
        height: 70vh !important;
        min-height: 70vh !important;
        max-height: 600px !important;
        object-fit: cover;
        object-position: center;
    }

    .hero-content {
        padding: 2rem 1rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .hero-badge {
        padding: 0.5rem 1.25rem;
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.875rem;
        line-height: 1.1;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-tagline {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .hero p {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        margin-bottom: 2rem;
    }

    .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.8125rem;
    }

    .features {
        padding: 3rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }

    .feature-icon {
        font-size: 1.75rem;
    }

    .feature-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.625rem;
    }

    .feature-card p {
        font-size: 0.8125rem;
    }

    .products {
        padding: 3rem 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .product-card {
        max-width: 100%;
    }

    .product-image {
        height: 280px;
    }

    .about {
        padding: 3rem 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 0.9375rem;
        margin-bottom: 0.875rem;
    }

    .rotating-card-wrapper {
        height: 350px;
        max-width: 100%;
    }

    .about-images-container {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .rotating-card-wrapper:first-child {
        margin-bottom: 0;
    }

    .contact {
        padding: 3rem 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        padding: 2rem 1.5rem;
    }

    .contact-info h3 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .contact-item {
        margin-bottom: 1.25rem;
    }

    .contact-icon-wrapper {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .contact-icon-wrapper svg {
        width: 18px;
        height: 18px;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-form h3 {
        font-size: 1.375rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .form-header-line {
        width: 100%;
        height: 3px;
    }

    .phone-input-wrapper {
        flex-direction: column;
        gap: 0.75rem;
    }

    .country-code-select {
        width: 100%;
        border-radius: 8px;
        padding: 0.875rem 1rem;
    }

    .phone-input-wrapper input {
        border-radius: 8px;
        border-left: 2px solid var(--border-light);
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .social-icons {
        margin-top: 2rem;
        gap: 0.75rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .section-header {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .section-header .section-label {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .section-header h2 {
        font-size: 1.875rem;
        margin-bottom: 0.875rem;
    }

    .section-header p {
        font-size: 0.9375rem;
        margin-bottom: 0;
    }

    .products {
        padding: 3rem 0;
    }

    .product-card {
        border-radius: 20px;
    }

    .product-image {
        height: 240px;
        border-radius: 20px 20px 0 0;
    }

    .product-info {
        padding: 1.5rem;
    }

    .product-name {
        font-size: 1.375rem;
        margin-bottom: 0.75rem;
    }

    .product-description {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }

    .product-price {
        font-size: 1.5rem;
    }

    .add-to-cart {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }

    .about {
        padding: 3rem 0;
    }

    .about-text p {
        font-size: 0.9375rem;
    }

    .about-features {
        margin-top: 0.875rem;
    }

    .about-features li {
        font-size: 0.875rem;
    }

    .footer-section h3 {
        font-size: 1.25rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.875rem;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Tablet (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .navbar .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .logo-img {
        max-height: 42px;
        max-width: 190px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-light);
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        height: 80vh;
        min-height: 80vh;
        max-height: 700px;
    }

    .hero-swiper {
        height: 80vh;
        min-height: 80vh;
        max-height: 700px;
    }

    .hero-swiper .swiper-wrapper {
        height: 80vh;
        min-height: 80vh;
        max-height: 700px;
    }

    .hero-swiper .swiper-slide {
        height: 80vh;
        min-height: 80vh;
        max-height: 700px;
    }

    .hero-background {
        height: 80vh;
        min-height: 80vh;
        max-height: 700px;
    }

    .hero-banner-img {
        height: 80vh !important;
        min-height: 80vh !important;
        max-height: 700px !important;
        object-fit: cover;
        object-position: center;
    }

    .hero-content {
        padding: 3rem 2rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-badge {
        padding: 0.625rem 1.5rem;
        font-size: 0.8125rem;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 0.9375rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2.25rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .features {
        padding: 4rem 0;
    }

    .products {
        padding: 4rem 0;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .product-image {
        height: 280px;
    }

    .product-info {
        padding: 1.75rem;
    }

    .about {
        padding: 4rem 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .contact {
        padding: 4rem 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-images-container {
        flex-wrap: wrap;
        gap: 1.75rem;
    }

    .rotating-card-wrapper {
        height: 400px;
        max-width: 100%;
        flex: 1;
        min-width: 280px;
    }

    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .cart-sidebar {
        width: 85%;
        max-width: 400px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .phone-input-wrapper {
        flex-direction: row;
    }

    .country-code-select {
        width: 70px;
        border-radius: 8px 0 0 8px;
    }

    .phone-input-wrapper input {
        border-radius: 0 8px 8px 0;
        border-left: none;
    }
}

/* Small Desktop / Large Tablet (769px - 1200px) */
@media (min-width: 769px) and (max-width: 1200px) {
    .container {
        padding: 0 32px;
    }

    .hero {
        height: 90vh;
        min-height: 90vh;
        max-height: 800px;
    }

    .hero-swiper {
        height: 90vh;
        min-height: 90vh;
        max-height: 800px;
    }

    .hero-swiper .swiper-wrapper {
        height: 90vh;
        min-height: 90vh;
        max-height: 800px;
    }

    .hero-swiper .swiper-slide {
        height: 90vh;
        min-height: 90vh;
        max-height: 800px;
    }

    .hero-background {
        height: 90vh;
        min-height: 90vh;
        max-height: 800px;
    }

    .hero-banner-img {
        height: 90vh !important;
        min-height: 90vh !important;
        max-height: 800px !important;
        object-fit: cover;
        object-position: center;
    }

    .hero-content {
        padding: 4rem 3rem;
        width: 100%;
    }

    .hero-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }

    .hero-tagline {
        font-size: clamp(1rem, 1.5vw, 1.5rem);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 2vw, 1.375rem);
    }

    .features {
        padding: 5rem 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .feature-card {
        padding: 3rem 1.75rem;
    }

    .products {
        padding: 5rem 0;
    }

    .section-header {
        margin-bottom: 3.5rem;
    }

    .section-header h2 {
        font-size: clamp(2.25rem, 4vw, 3rem);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .product-image {
        height: 300px;
    }

    .about {
        padding: 5rem 0;
    }

    .about-content {
        gap: 3rem;
    }

    .about-text h2 {
        font-size: clamp(2.25rem, 4vw, 3rem);
    }

    .rotating-card-wrapper {
        height: 500px;
        max-width: 550px;
    }

    .contact {
        padding: 5rem 0;
    }

    .contact-content {
        gap: 3rem;
    }

    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-content {
        gap: 2.5rem;
    }

    .cart-sidebar {
        width: 450px;
    }
}
