* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c1810;
    --secondary-color: #d4af37;
    --accent-color: #f4d03f;
    --text-color: #2c1810;
    --text-light: #6b5d4f;
    --light-bg: #f8f6f2;
    --cream-bg: #fefcf8;
    --white: #ffffff;
    --border-color: #e8e0d6;
    --shadow: 0 10px 40px rgba(44, 24, 16, 0.12);
    --shadow-hover: 0 20px 60px rgba(44, 24, 16, 0.18);
    --shadow-card: 0 6px 25px rgba(44, 24, 16, 0.1);
    --shadow-subtle: 0 3px 12px rgba(44, 24, 16, 0.06);
    --gradient-primary: linear-gradient(135deg, #2c1810 0%, #1a0f0a 100%);
    --gradient-hero: linear-gradient(135deg, rgba(44, 24, 16, 0.95) 0%, rgba(44, 24, 16, 0.88) 100%);
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #c9a028 100%);
    --cream-gradient: linear-gradient(135deg, #fefcf8 0%, #f8f6f2 100%);
    --elegant-gradient: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 208, 63, 0.05) 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    line-height: 1.75;
    overflow-x: hidden;
    background: var(--cream-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-tap-highlight-color: transparent;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Touch-friendly interactions */
button,
a,
input[type="submit"],
input[type="button"],
.payment-method-item,
.filter-btn {
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.2);
    touch-action: manipulation;
}

/* Ensure text cursor is visible in all text input fields */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="url"],
textarea {
    cursor: text !important;
}

/* Select elements should have pointer cursor */
select {
    cursor: pointer !important;
}

/* Ensure minimum touch target size (44x44px recommended) */
button,
.filter-btn,
.cart-icon,
.chatbot-toggle {
    min-height: 44px;
    min-width: 44px;
}

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

/* Header */
.header {
    background: rgba(254, 252, 248, 0.95);
    box-shadow: 0 2px 20px rgba(44, 24, 16, 0.08),
                0 1px 5px rgba(44, 24, 16, 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    backdrop-filter: blur(30px) saturate(200%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-image {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(61, 40, 23, 0.1);
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.9rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.8px;
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.logo i {
    color: var(--secondary-color);
    margin-right: 12px;
    font-size: 1.5rem;
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: -0.01em;
}

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

.nav a:hover::after,
.nav a:hover {
    color: var(--primary-color);
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.4rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.cart-icon:hover {
    transform: scale(1.1);
    color: var(--secondary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: 4px 0 20px rgba(61, 40, 23, 0.15);
    z-index: 1001;
    padding: 80px 0 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
}

/* Mobile Menu Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(61, 40, 23, 0.6);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.mobile-nav-link {
    display: block;
    padding: 1.25rem 2rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--secondary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: var(--cream-bg);
    color: var(--primary-color);
    padding-left: 2.5rem;
}

.mobile-nav-link:hover::before,
.mobile-nav-link:active::before {
    transform: scaleY(1);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    border: 2px solid var(--white);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(254, 252, 248, 0.98) 0%, rgba(248, 246, 242, 0.95) 100%),
                radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(244, 208, 63, 0.06) 0%, transparent 50%);
    background-size: cover, 100% 100%, 100% 100%;
    background-position: center;
    color: var(--text-color);
    padding: 200px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(244, 208, 63, 0.08) 0%, transparent 50%);
    z-index: 0;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-tagline-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-tagline-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 8px 25px rgba(0, 0, 0, 0.2);
    animation: fadeInLeft 1s ease;
}

.hero-tagline-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-tagline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 400px;
}

.hero-tagline-image:hover img {
    transform: scale(1.05);
}

.hero-tagline-text {
    animation: fadeInRight 1s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -3px;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--text-light) 50%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(44, 24, 16, 0.15);
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    animation: fadeInUp 1.2s;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    padding: 20px 64px;
    background: var(--gold-gradient);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1.4s;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4),
                0 4px 15px rgba(212, 175, 55, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 50%, #f4d03f 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5),
                0 6px 20px rgba(212, 175, 55, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 48px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 2rem;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

/* Products Section */
.products-section {
    padding: 120px 20px;
    background: var(--cream-bg);
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--text-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -2.5px;
    line-height: 1.15;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    letter-spacing: 0.4px;
    line-height: 1.8;
}

.section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: var(--gold-gradient);
    margin: 2rem auto 3.5rem;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 14px 36px;
    border: 2px solid var(--border-color);
    background: var(--white);
    color: var(--text-color);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(44, 24, 16, 0.05);
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    transition: left 0.5s;
    z-index: 0;
}

.filter-btn span {
    position: relative;
    z-index: 1;
}

.filter-btn:hover::before {
    left: 0;
}

.filter-btn:hover {
    border-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.filter-btn.active {
    background: var(--gold-gradient);
    color: var(--primary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
    font-weight: 700;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    background-clip: padding-box;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: -1;
    margin: -2px;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(244, 208, 63, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-hover),
                0 0 0 1px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

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

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

.product-image {
    width: 100%;
    height: 380px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--cream-bg) 100%);
}

.product-brand {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.9) 0%, rgba(44, 24, 16, 0.85) 100%);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(15px) saturate(180%);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3),
                0 2px 8px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover .product-brand {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95) 0%, rgba(244, 208, 63, 0.9) 100%);
    color: var(--primary-color);
    transform: scale(1.05);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.product-card:hover .product-image::before {
    opacity: 1;
}

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

.product-info {
    padding: 1.75rem;
}

.product-category {
    color: var(--accent-color);
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: 1.5px;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    line-height: 1.4;
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.product-price::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.4s ease;
}

.product-card:hover .product-price::before {
    width: 100%;
}

.add-to-cart-btn {
    width: 100%;
    padding: 16px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(44, 24, 16, 0.2);
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

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

.add-to-cart-btn:hover::before {
    width: 400px;
    height: 400px;
}

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

.add-to-cart-btn:hover {
    background: var(--gold-gradient);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5),
                0 4px 15px rgba(212, 175, 55, 0.4);
}

.add-to-cart-btn:active {
    transform: translateY(-1px);
}

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1001;
    display: none;
    backdrop-filter: blur(4px);
}

.cart-overlay.active {
    display: block;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background: var(--white);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d1f14 100%);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(61, 40, 23, 0.15);
}

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

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
    transition: all 0.3s;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-cart:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background: var(--cream-bg);
}

.empty-cart {
    text-align: center;
    color: var(--text-light);
    padding: 3rem 2rem;
    font-size: 1.1rem;
}

.cart-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-card);
}

.cart-item-image {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--light-bg);
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.cart-item-price {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    background: var(--white);
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s;
    color: var(--text-color);
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.remove-item {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1.1rem;
    margin-left: auto;
    padding: 0.5rem;
    transition: all 0.3s;
    align-self: flex-start;
}

.remove-item:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(61, 40, 23, 0.05);
}

.cart-total {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.cart-total strong {
    color: var(--secondary-color);
}

.btn-checkout {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-checkout:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about-section {
    padding: 120px 20px;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto 2.5rem;
    padding: 1.5rem;
}

.about-logo-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 4px solid var(--secondary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15),
                0 4px 12px rgba(212, 175, 55, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: var(--white);
    padding: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.about-logo-image:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2),
                0 6px 16px rgba(212, 175, 55, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
}

.about-description {
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-color);
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 100px 20px;
    background: var(--cream-bg);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-vision-card {
    background: var(--white);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: var(--shadow-subtle);
    border-top: 5px solid var(--secondary-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gold-gradient);
    border-radius: 24px 24px 0 0;
    z-index: 2;
}

.mission-vision-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--elegant-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    border-radius: 24px;
}

.mission-vision-card > * {
    position: relative;
    z-index: 1;
}

.mission-vision-card:hover::after {
    opacity: 1;
}

.mission-vision-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.mission-vision-card:hover::before {
    height: 6px;
    background: var(--gold-gradient);
}

.mission-vision-card h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.mission-vision-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    font-weight: 300;
    letter-spacing: 0.2px;
}

/* Reviews Section */
.reviews-section {
    padding: 120px 20px;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.review-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-subtle);
    border: 2px solid transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background-clip: padding-box;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gold-gradient);
    transform: scaleY(0);
    transition: transform 0.5s ease;
    z-index: 1;
}

.review-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--elegant-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    border-radius: 24px;
}

.review-card > * {
    position: relative;
    z-index: 2;
}

.review-card:hover::before {
    transform: scaleY(1);
}

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

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.review-date {
    color: var(--text-light);
    font-size: 0.85rem;
}

.review-rating {
    color: var(--secondary-color);
    font-size: 1.1rem;
    display: flex;
    gap: 2px;
}

.review-rating i {
    font-size: 1rem;
}

.review-text {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

.no-reviews {
    text-align: center;
    color: var(--text-light);
    padding: 3rem;
    font-size: 1.1rem;
    grid-column: 1 / -1;
}

.review-form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    max-width: 700px;
    margin: 0 auto;
}

.review-form-container h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.review-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s ease;
    cursor: text;
}

.review-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.rating-input {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.rating-input input[type="radio"] {
    display: none;
}

.star-label {
    cursor: pointer;
    color: var(--border-color);
    font-size: 2rem;
    transition: all 0.2s ease;
}

.star-label:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.rating-input input[type="radio"]:checked ~ .star-label i,
.rating-input input[type="radio"]:checked + .star-label i {
    color: var(--secondary-color);
}

.rating-input input[type="radio"]:checked ~ .star-label i.far {
    color: var(--border-color);
}

.star-label i {
    transition: all 0.2s ease;
}

.btn-submit-review {
    padding: 14px 32px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: center;
    min-width: 200px;
}

.btn-submit-review:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-section {
    padding: 120px 20px;
    background: var(--cream-bg);
}

.map-container {
    margin-top: 4rem;
    text-align: center;
    padding: 2rem 0;
}

.map-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
}

.map-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    border-radius: 2px;
}

.map-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15),
                0 4px 12px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(212, 175, 55, 0.2);
    background: var(--white);
    padding: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.map-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    z-index: 1;
}

.map-wrapper:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2),
                0 6px 16px rgba(212, 175, 55, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.map-wrapper iframe {
    border-radius: 12px;
    display: block;
    width: 100%;
    border: none;
}

.map-note {
    margin-top: 1.5rem;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 8px;
    display: inline-block;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Payment Methods Section */
.payment-methods-section {
    margin-top: 5rem;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
}

.payment-methods-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.payment-methods-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.payment-method-item {
    background: var(--white);
    padding: 2.75rem 2.25rem;
    border-radius: 20px;
    box-shadow: var(--shadow-subtle);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.payment-method-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.payment-method-item:hover::before {
    opacity: 1;
}

.payment-method-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: rgba(212, 175, 55, 0.3);
}

.payment-method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.payment-method-item:hover .payment-method-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.payment-method-item h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.payment-method-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 300;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.contact-info:not(:first-of-type) {
    margin-top: 2rem;
}

.contact-item {
    text-align: center;
    padding: 3rem 2.5rem;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-subtle);
    min-width: 240px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    background-clip: padding-box;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.contact-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--elegant-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    border-radius: 24px;
}

.contact-item > * {
    position: relative;
    z-index: 2;
}

.contact-item:hover::before {
    transform: scaleX(1);
}

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

.contact-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.3);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
}

.contact-item p {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
}

.social-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

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

.social-link i {
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.social-link:hover i {
    color: #1877f2;
    transform: scale(1.1);
}

.contact-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: inherit;
}

.contact-link i {
    color: var(--secondary-color);
    transition: all 0.3s ease;
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.contact-link:hover i {
    color: #1877f2;
    transform: scale(1.1);
}

.contact-link p {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    margin: 0;
    transition: color 0.3s ease;
}

.contact-link:hover p {
    color: #1877f2;
}

.social-link p {
    color: var(--text-color);
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.social-link:hover p {
    color: #1877f2;
}

/* Payment Modal */
.payment-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: none;
    backdrop-filter: blur(4px);
}

.payment-overlay.active {
    display: block;
    animation: fadeIn 0.3s;
}

.payment-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    z-index: 2001;
    display: none;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.payment-modal.active {
    display: flex;
    transform: translate(-50%, -50%) scale(1);
    animation: modalSlideIn 0.4s;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.payment-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary-color);
    color: var(--white);
}

.payment-header h2 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.close-payment {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
    transition: all 0.3s;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-payment:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.payment-content {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    background: var(--cream-bg);
}

.order-summary {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-card);
}

.order-summary h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.payment-order-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.payment-order-item:last-child {
    border-bottom: none;
}

.order-total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    text-align: right;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.order-total strong {
    color: var(--secondary-color);
}

.payment-methods {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-card);
}

.payment-methods h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.payment-option {
    display: flex;
    cursor: pointer;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.payment-option:hover {
    border-color: var(--secondary-color);
    background: rgba(212, 175, 55, 0.05);
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option input[type="radio"]:checked + .payment-option-content {
    color: var(--secondary-color);
}

.payment-option:has(input[type="radio"]:checked),
.payment-option.selected {
    border-color: var(--secondary-color);
    background: rgba(212, 175, 55, 0.1);
}

.payment-option-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    color: var(--text-color);
    font-weight: 500;
}

.payment-option-content i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.payment-form {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-card);
}

.payment-form h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    cursor: text;
}

.form-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

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

.payment-instructions {
    background: rgba(212, 175, 55, 0.1);
    padding: 1.25rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--secondary-color);
}

.payment-instructions p {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
}

.payment-instructions ol {
    margin-left: 1.5rem;
    color: var(--text-color);
    line-height: 1.8;
}

.payment-instructions ol li {
    margin-bottom: 0.5rem;
}

.payment-instructions strong {
    color: var(--secondary-color);
}

/* Customer Details Form */
.customer-details-form {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-card);
}

.customer-details-form h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.required {
    color: #e74c3c;
    font-weight: 600;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-continue {
    flex: 2;
    padding: 14px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-continue:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.payment-section {
    animation: fadeIn 0.3s ease;
}

.payment-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-back {
    flex: 1;
    padding: 14px;
    background: var(--white);
    color: var(--text-color);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: var(--light-bg);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-cancel {
    flex: 1;
    padding: 14px;
    background: var(--white);
    color: var(--text-color);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: var(--light-bg);
    border-color: var(--text-light);
}

.btn-submit-payment {
    flex: 2;
    padding: 14px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit-payment:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a0f0a 100%);
    color: var(--white);
    padding: 5rem 20px 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    position: relative;
    margin-top: 5rem;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(244, 208, 63, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.footer-brand {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    position: relative;
    display: inline-block;
}

.footer-brand h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    text-align: center !important;
    display: block;
    padding: 0;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

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

.footer-section ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.footer-section ul li i {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-top: 0.25rem;
    min-width: 20px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
    padding-left: 5px;
}

.footer-section ul li:hover {
    color: var(--white);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin: 0;
}

.footer-bottom p i {
    color: #e74c3c;
    margin: 0 0.25rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.footer p {
    opacity: 0.9;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icon:hover {
    background: #1877f2;
    transform: translateY(-3px) scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.social-icon i {
    color: var(--white);
}

/* Chatbot */
.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--primary-color);
    border: 3px solid var(--white);
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4),
                0 2px 10px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: all;
    -webkit-tap-highlight-color: transparent;
    overflow: visible;
}

.chatbot-toggle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.chatbot-toggle:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.5),
                0 4px 15px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: var(--white);
}

.chatbot-toggle:hover::before {
    opacity: 0.3;
}

.chatbot-toggle:active {
    transform: scale(1.05) translateY(-1px);
}

.chatbot-toggle i {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.chatbot-toggle:hover i {
    transform: scale(1.1);
}

.chatbot-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4),
                0 1px 3px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4),
                    0 1px 3px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 3px 12px rgba(231, 76, 60, 0.6),
                    0 2px 5px rgba(0, 0, 0, 0.3);
    }
}

.chatbot-container {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 400px;
    height: 550px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25),
                0 5px 15px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    transform: translateY(100px) scale(0.8);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    visibility: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.chatbot-container.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}

.chatbot-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d1f14 100%);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(61, 40, 23, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 0.3px;
}

.chatbot-title i {
    font-size: 1.4rem;
    color: var(--secondary-color);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.chatbot-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.1);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background: var(--cream-bg);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chatbot-message {
    display: flex;
    animation: messageSlideIn 0.3s ease;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-message {
    justify-content: flex-end;
}

.user-message .message-content {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 18px 18px 4px 18px;
    max-width: 80%;
}

.bot-message {
    justify-content: flex-start;
}

.bot-message .message-content {
    background: var(--white);
    color: var(--text-color);
    border-radius: 18px 18px 18px 4px;
    max-width: 80%;
    box-shadow: var(--shadow-card);
}

.message-content {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.message-content p {
    margin: 0;
    white-space: pre-wrap;
}

.chatbot-quick-questions {
    padding: 1rem 1.25rem;
    background: var(--cream-bg);
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-height: 120px;
    overflow-y: auto;
}

.chatbot-quick-questions::-webkit-scrollbar {
    width: 4px;
}

.chatbot-quick-questions::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-quick-questions::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 2px;
}

.quick-question-btn {
    padding: 0.5rem 0.875rem;
    background: var(--white);
    border: 1.5px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(61, 40, 23, 0.05);
}

.quick-question-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.quick-question-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(212, 175, 55, 0.2);
}

.chatbot-input-container {
    display: flex;
    gap: 0.75rem;
    padding: 1.25rem;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 -2px 10px rgba(61, 40, 23, 0.05);
}

.chatbot-input-container input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    cursor: text;
}

.chatbot-input-container input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1),
                0 2px 8px rgba(0, 0, 0, 0.1);
}

.chatbot-send-btn {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d2d2d 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    font-size: 1.1rem;
}

.chatbot-send-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--primary-color);
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.chatbot-send-btn:active {
    transform: scale(0.95) rotate(15deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1.5rem;
    }
    
    .hero-tagline-container {
        gap: 3rem;
    }
    
    .mission-vision-grid {
        gap: 2rem;
    }
    
    .contact-info {
        gap: 2rem;
    }
    
    .payment-methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .logo-image {
        height: 50px;
        width: 50px;
    }
    
    .shop-name {
        font-size: 1.4rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .header {
        padding: 1rem 0;
    }
    
    .header .container {
        padding: 0 16px;
    }
    
    .header-actions {
        gap: 0.75rem;
    }

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

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

    .hero {
        padding: 120px 20px;
        min-height: 70vh;
    }
    
    .hero-tagline-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-tagline-image {
        order: 2;
    }
    
    .hero-tagline-text {
        order: 1;
        text-align: center;
    }
    
    .hero-tagline-image img {
        min-height: 300px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-vision-card {
        padding: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

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

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .contact-item {
        width: 100%;
        max-width: 300px;
    }

    .products-section,
    .about-section,
    .contact-section,
    .reviews-section {
        padding: 60px 20px;
    }
    
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-form-container {
        padding: 1.5rem;
    }
    
    .chatbot-container {
        width: 90%;
        right: 5%;
        bottom: 80px;
    }
    
    .map-container {
        margin-top: 3rem;
        padding: 1.5rem 0;
    }
    
    .map-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .map-wrapper {
        max-width: 100%;
        padding: 6px;
        border-width: 2px;
    }
    
    .map-wrapper iframe {
        height: 350px;
    }
    
    .map-note {
        font-size: 0.95rem;
        padding: 0.625rem 1.25rem;
    }
    
    .payment-methods-section {
        margin-top: 3rem;
        padding: 2rem 1.5rem;
    }
    
    .payment-methods-title {
        font-size: 1.75rem;
    }
    
    .payment-methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .payment-method-item {
        padding: 2rem 1.5rem;
    }
    
    .payment-method-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .payment-method-item h4 {
        font-size: 1.1rem;
    }
    
    .footer {
        padding: 3rem 20px 2rem;
    }
    
    .footer-brand {
        margin-bottom: 2.5rem;
        padding-bottom: 1.5rem;
    }
    
    .footer-brand h3 {
        font-size: 1.75rem;
    }
    
    .footer-brand p {
        font-size: 0.95rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 0;
        text-align: center;
    }
    
    .footer-section h4 {
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section ul li {
        justify-content: center;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .about-section {
        padding: 60px 20px;
    }
    
    .about-logo {
        margin: 1.5rem auto 2rem;
        padding: 1rem;
    }
    
    .about-logo-image {
        width: 150px;
        height: 150px;
        border-width: 3px;
        padding: 6px;
    }
    
    .mission-vision-card {
        padding: 2rem 1.5rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .product-card img {
        height: 280px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .cart-sidebar {
        width: 100%;
        max-width: 100%;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .cart-item-info {
        width: 100%;
    }
    
    .cart-item-controls {
        width: 100%;
        justify-content: space-between;
    }
    
    .chatbot-toggle {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
        bottom: 20px;
        right: 20px;
    }
    
    .chatbot-container {
        width: 95%;
        height: 85vh;
        right: 2.5%;
        bottom: 10px;
    }
    
    .chatbot-header {
        padding: 1.25rem;
    }
    
    .chatbot-header h3 {
        font-size: 1.1rem;
    }
    
    .chatbot-messages {
        padding: 1rem;
        max-height: calc(85vh - 200px);
    }
    
    .chatbot-quick-questions {
        padding: 0.875rem 1rem;
        max-height: 100px;
        gap: 0.4rem;
    }
    
    .quick-question-btn {
        padding: 0.45rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .chatbot-input-container {
        padding: 1rem;
    }
    
    .chatbot-input-container input {
        font-size: 0.9rem;
        padding: 12px 16px;
    }
    
    .chatbot-send-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .logo-image {
        height: 45px;
        width: 45px;
    }
    
    .shop-name {
        font-size: 1.2rem;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .logo {
        gap: 0.75rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .hero {
        padding: 100px 16px 80px;
        min-height: 60vh;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-tagline-container {
        gap: 2rem;
    }
    
    .hero-tagline-image img {
        min-height: 250px;
    }
    
    .hero-tagline-text h2 {
        font-size: 1.75rem;
    }
    
    .hero-tagline-text p {
        font-size: 0.95rem;
    }

    .btn-primary {
        padding: 14px 36px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .products-section,
    .about-section,
    .contact-section,
    .reviews-section {
        padding: 50px 16px;
    }
    
    .about-logo {
        margin: 1.25rem auto 1.75rem;
        padding: 0.75rem;
    }
    
    .about-logo-image {
        width: 120px;
        height: 120px;
        border-width: 3px;
        padding: 5px;
    }
    
    .payment-modal {
        width: 95%;
        max-height: 95vh;
        border-radius: 12px;
    }
    
    .payment-header {
        padding: 1.25rem;
    }
    
    .payment-header h2 {
        font-size: 1.4rem;
    }
    
    .payment-content {
        padding: 1.25rem;
        overflow-y: auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 14px;
        font-size: 0.95rem;
        cursor: text;
    }
    
    .payment-actions,
    .form-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-cancel,
    .btn-submit-payment,
    .btn-continue,
    .btn-back {
        flex: 1;
        width: 100%;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .customer-details-form {
        padding: 1.25rem;
    }
    
    .customer-details-form h3 {
        font-size: 1.15rem;
    }
    
    .payment-method-selection {
        padding: 1.25rem;
    }
    
    .payment-option {
        padding: 1.25rem;
    }
    
    .payment-option-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .payment-option h4 {
        font-size: 1.1rem;
    }
    
    .payment-option p {
        font-size: 0.85rem;
    }
    
    .map-container {
        margin-top: 2.5rem;
        padding: 1.25rem 0;
    }
    
    .map-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .map-wrapper {
        margin: 1.5rem 0;
        padding: 5px;
        border-width: 2px;
        border-radius: 12px;
    }
    
    .map-wrapper iframe {
        height: 300px;
        border-radius: 10px;
    }
    
    .map-note {
        font-size: 0.9rem;
        margin-top: 1.25rem;
        padding: 0.5rem 1rem;
    }
    
    .payment-methods-section {
        margin-top: 2.5rem;
        padding: 2rem 1rem;
    }
    
    .payment-methods-title {
        font-size: 1.6rem;
    }
    
    .payment-methods-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .payment-methods-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .payment-method-item {
        padding: 1.75rem 1.25rem;
    }
    
    .payment-method-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .payment-method-item h4 {
        font-size: 1rem;
    }
    
    .payment-method-item p {
        font-size: 0.85rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .contact-item {
        width: 100%;
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
    
    .contact-item i {
        font-size: 2rem;
    }
    
    .contact-item h3 {
        font-size: 1.1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .reviewer-name {
        font-size: 1rem;
    }
    
    .review-date {
        font-size: 0.85rem;
    }
    
    .review-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .review-form-container {
        padding: 1.5rem 1rem;
    }
    
    .review-form-container h3 {
        font-size: 1.3rem;
    }
    
    .review-form textarea {
        min-height: 120px;
    }
    
    .btn-submit-review {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .rating-input {
        gap: 0.5rem;
    }
    
    .star-label {
        font-size: 1.5rem;
    }
    
    .chatbot-toggle {
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
        bottom: 16px;
        right: 16px;
    }
    
    .chatbot-container {
        width: 100%;
        height: 90vh;
        right: 0;
        bottom: 0;
        border-radius: 20px 20px 0 0;
    }
    
    .chatbot-header {
        padding: 1rem;
        border-radius: 20px 20px 0 0;
    }
    
    .chatbot-header h3 {
        font-size: 1rem;
    }
    
    .chatbot-messages {
        padding: 0.875rem;
        max-height: calc(90vh - 180px);
    }
    
    .chatbot-message {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .chatbot-quick-questions {
        padding: 0.75rem;
        max-height: 90px;
        gap: 0.35rem;
    }
    
    .quick-question-btn {
        padding: 0.4rem 0.65rem;
        font-size: 0.7rem;
    }
    
    .chatbot-input-container {
        padding: 0.875rem;
    }
    
    .chatbot-input-container input {
        font-size: 0.875rem;
        padding: 10px 14px;
    }
    
    .chatbot-send-btn {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
    
    .footer {
        padding: 3rem 1.5rem 2rem;
    }
    
    .footer {
        padding: 2.5rem 16px 1.5rem;
    }
    
    .footer-brand {
        margin-bottom: 2rem;
        padding-bottom: 1.25rem;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
    }
    
    .footer-content {
        gap: 2rem;
        grid-template-columns: 1fr;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section ul li {
        font-size: 0.9rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 1.25rem;
        margin-top: 1.25rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .shop-name {
        font-size: 1.1rem;
    }
    
    .logo-image {
        height: 40px;
        width: 40px;
    }
    
    .payment-modal {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .chatbot-container {
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 45px;
        width: 45px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .logo {
        gap: 0.75rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-tagline-container {
        gap: 2rem;
    }
    
    .hero-tagline-image img {
        min-height: 250px;
    }

    .btn-primary {
        padding: 14px 36px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .payment-modal {
        width: 95%;
        max-height: 95vh;
    }
    
    .payment-header {
        padding: 1.5rem;
    }
    
    .payment-header h2 {
        font-size: 1.5rem;
    }
    
    .payment-content {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .payment-actions,
    .form-actions {
        flex-direction: column;
    }
    
    .btn-cancel,
    .btn-submit-payment,
    .btn-continue,
    .btn-back {
        flex: 1;
        width: 100%;
    }
    
    .customer-details-form {
        padding: 1.25rem;
    }
}
