/* ============================================
   LUXURY SKINCARE THEME - NATURE NOURISH
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:wght@400;500;600&display=swap');

:root {
    --bg-primary: #f5efe6;
    --bg-secondary: #ebe4da;
    --bg-white: #ffffff;
    --beige-soft: #d9c7b4;
    --brown-luxury: #b59072;
    --brown-dark: #8b6f5c;
    --text-primary: rgba(0, 0, 0, 0.6);
    --text-secondary: rgba(0, 0, 0, 0.5);
    --text-dark: #1a1a1a;
    --accent-gold: #c9a87c;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-luxury: 0 15px 40px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, sans-serif;
    line-height: 1.8;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    font-size: 16px;
    margin-top: 0;
    padding-top: 0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-dark);
}

p {
    color: var(--text-secondary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* WhatsApp Help Banner (Inside About Section) */
.order-banner {
    background: #25D366;
    color: white;
    text-align: center;
    padding: 16px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 12px;
    margin: 0 auto 40px;
    max-width: 600px;
}

.order-banner a {
    color: white;
    font-weight: bold;
    margin: 0 6px;
    text-decoration: underline;
}

/* Navigation */
.navbar {
    background: rgba(248, 243, 237, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(181, 144, 114, 0.18);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark) !important;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.logo-img {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--beige-soft);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.logo:hover { opacity: 0.85; }
.logo:hover .logo-img { transform: scale(1.04); }

/* Nav links — right side */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

/* Plain text links */
.nav-links > a:not(.cart-icon) {
    color: #5a4a3a;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-links > a:not(.cart-icon)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--brown-luxury);
    transition: width 0.25s ease;
    border-radius: 2px;
}

.nav-links > a:not(.cart-icon):hover { color: #1a1a1a; }
.nav-links > a:not(.cart-icon):hover::after { width: 100%; }

/* Cart pill */
.cart-icon {
    background: var(--brown-luxury) !important;
    color: #fff !important;
    padding: 8px 18px !important;
    border-radius: 22px !important;
    font-weight: 600;
    font-size: 0.85rem !important;
    white-space: nowrap;
    text-decoration: none !important;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease !important;
    box-shadow: 0 3px 12px rgba(181,144,114,0.35);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.cart-icon:hover {
    background: var(--brown-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(139,111,92,0.4);
}

/* Hero Landing Section - Full-screen video background */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #1a1208; /* Warm dark fallback */
    margin-top: 0;
    padding-top: 0;
}

/* Background Video - Widescreen Cover */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Toggle Desktop/Mobile video visibility */
.desktop-video {
    display: block !important;
}
.mobile-video {
    display: none !important;
}

/* Dark Transparent Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35); /* 35% dark overlay for readability */
    z-index: 1;
}

/* Centered Content Container */
.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff !important;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    /* Animation settings */
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.2s;
}

@keyframes heroFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Typography */
.hero-content .eyebrow {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(0.85rem, 2vw, 1.05rem);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #dfd5c2 !important; /* Premium luxury sand color */
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 600;
}

.hero-content h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 6vw, 4.2rem) !important;
    color: #ffffff !important;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.8rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.2rem) !important;
    color: #eaeaea !important;
    max-width: 600px;
    margin: 0 auto 3rem !important;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Shop Now Button */
.hero-content .cta-btn {
    background: #ffffff !important;
    color: #1a221a !important;
    border: none !important;
    padding: 16px 45px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    border-radius: 30px !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.hero-content .cta-btn:hover {
    background: #dfd5c2 !important;
    color: #1a221a !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45) !important;
}

/* Products Section */
.products-section {
    padding: 120px 40px;
    background: var(--bg-white);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 500;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 4rem;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}

/* Category filter buttons */
.category-filters {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.category-btn {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--beige-soft);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    font-weight: 500;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.category-btn:hover {
    border-color: var(--brown-luxury);
    background: rgba(181, 144, 114, 0.1);
}

.category-btn.active {
    background: var(--brown-dark);
    color: var(--bg-white);
    border-color: var(--brown-dark);
}

/* Products Grid */
.products-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 24px;
    padding: 20px 10px 28px;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--brown-luxury) var(--bg-secondary);
}

.products-grid::-webkit-scrollbar {
    height: 8px;
}

.products-grid::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 4px;
}

.products-grid::-webkit-scrollbar-thumb {
    background: var(--brown-luxury);
    border-radius: 4px;
}

.products-grid .product-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
}

/* Product Card */
.product-card {
    background: var(--bg-white);
    border-radius: 12px;
    transition: var(--transition-normal);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-image-container {
    position: relative;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    aspect-ratio: 1;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
}

.new-badge {
    background: var(--bg-white);
    color: var(--brown-luxury);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.product-info {
    padding: 28px;
}

.product-name {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    font-weight: 500;
    font-family: 'Playfair Display', Georgia, serif;
}

.product-subtitle {
    color: var(--brown-luxury);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.stars {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.price-section {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.price {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.mrp-price {
    font-size: 0.95rem;
    color: #666;
    text-decoration: line-through;
    margin-right: 8px;
}

.discount-badge {
    background: #ff9f00;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 8px;
}

.coming-soon-badge {
    background: var(--brown-luxury);
    color: white;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-actions {
    padding: 0 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn {
    padding: 14px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-normal);
    font-weight: 500;
    text-align: center;
}

.btn-add-cart {
    background: var(--brown-luxury);
    color: white;
    flex: 1;
}

.btn-add-cart:hover {
    background: var(--brown-dark);
}

.btn-cod {
    background: #28a745;
    color: white;
    border: 1px solid #28a745;
}

.btn-cod:hover {
    background: #218838;
    border-color: #218838;
    color: white;
}

.btn-customer-portal {
    background: var(--beige-soft) !important;
    color: var(--text-dark) !important;
    padding: 10px 20px !important;
    border-radius: var(--radius-sm) !important;
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
}

.btn-customer-portal:hover {
    background: var(--brown-luxury) !important;
    color: var(--bg-white) !important;
}

.btn-coming-soon {
    background: #999 !important;
    color: #fff !important;
    cursor: not-allowed !important;
    opacity: 0.7;
    border: none !important;
    width: 100%;
}

/* Cart Section */
.cart-section {
    padding: 120px 40px;
    background: var(--bg-primary);
}

.cart-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 500;
}

.cart-items-container {
    max-width: 900px;
    margin: 0 auto 2rem;
}

.empty-message {
    text-align: center;
    font-size: 1rem;
    color: var(--text-secondary);
    padding: 4rem 2rem;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}

.cart-item {
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 3px solid var(--brown-luxury);
    box-shadow: var(--shadow-soft);
}

.cart-item img.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-info h3 {
    color: var(--text-dark);
    font-weight: 500;
}

.cart-item-price {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 500;
}

.cart-summary {
    max-width: 500px;
    margin: 2rem auto;
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: right;
    box-shadow: var(--shadow-soft);
}

.summary-box {
    border-top: 1px solid var(--beige-soft);
    padding-top: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    color: var(--text-secondary);
}

.summary-row.total {
    border-top: 1px solid var(--beige-soft);
    margin-top: 1rem;
    padding-top: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
}

.btn-checkout {
    background: var(--text-dark);
    color: var(--bg-white);
    border: none;
    padding: 16px 40px;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    margin-top: 1.5rem;
    width: 100%;
    font-weight: 500;
}

.btn-checkout:hover {
    background: var(--brown-luxury);
}

.remove-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-normal);
}

.remove-btn:hover {
    background: #c82333;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-control button {
    width: 28px;
    height: 28px;
    border: 1px solid var(--beige-soft);
    background: var(--bg-white);
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

.quantity-control input {
    width: 40px;
    text-align: center;
    border: 1px solid var(--beige-soft);
    border-radius: 4px;
    padding: 4px;
}

/* Checkout Section */
.checkout-section {
    padding: 120px 24px;
    background: var(--bg-white);
}

@media (max-width: 768px) {
    .checkout-section {
        padding: 80px 8px;
    }
}

@media (max-width: 480px) {
    .checkout-section {
        padding: 70px 4px;
    }
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 768px) {
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .checkout-container {
        padding: 4px;
        gap: 1rem;
    }
}

.order-summary {
    background: var(--bg-primary);
    padding: 20px;
    border-radius: var(--radius-lg);
    border-top: 3px solid var(--brown-luxury);
    box-shadow: var(--shadow-soft);
    width: 100%;
    position: sticky;
    top: 120px;
    /* Below fixed navbar */
    align-self: start;
    height: fit-content;
    max-height: 80vh;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .order-summary {
        position: static;
        max-height: none;
    }
}

.checkout-details {
    background: var(--bg-primary);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .checkout-details {
        padding: 16px 12px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .checkout-details {
        padding: 12px 8px;
    }
}

@media (max-width: 768px) {
    .order-summary {
        padding: 16px 12px;
    }
}

.order-review h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--beige-soft);
    padding-bottom: 1rem;
    font-weight: 500;
}

.checkout-item {
    background: var(--bg-white);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-item img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 8px;
    flex-shrink: 0;
}

.checkout-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.checkout-item-name {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.checkout-item-price {
    color: #666;
    font-size: 0.85rem;
}

.checkout-item-total {
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    margin-left: 12px;
}

.checkout-total {
    background: var(--text-dark);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-top: 1.5rem;
    text-align: center;
}

.checkout-total h4 {
    color: var(--bg-white);
    font-weight: 500;
}

.checkout-form {
    background: var(--bg-primary);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

@media (max-width: 768px) {
    .checkout-form {
        padding: 20px 16px;
    }
}

@media (max-width: 480px) {
    .checkout-form {
        padding: 16px 12px;
    }
}

.checkout-form h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--beige-soft);
    padding-bottom: 1rem;
    font-weight: 500;
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    border: 1px solid var(--beige-soft);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    background: var(--bg-white);
    margin-bottom: 0.75rem;
}

.checkout-form h3 {
    margin-top: 1.25rem;
    margin-bottom: 1rem;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
    outline: none;
    border-color: var(--brown-luxury);
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-options label {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 14px 16px;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--beige-soft);
}

.payment-options input {
    margin-right: 12px;
    accent-color: var(--brown-luxury);
}

.place-order-btn {
    background: var(--text-dark);
    color: var(--bg-white);
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 500;
    margin-bottom: 1rem;
}

.place-order-btn:hover {
    background: var(--brown-luxury);
}

/* Checkout WhatsApp Help Box */
.whatsapp-help {
    background: #e8f5e8;
    border: 1px solid #c8e6c8;
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.whatsapp-help p {
    margin-bottom: 12px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
}

.whatsapp-icon {
    font-size: 1.2em;
}

.whatsapp-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.whatsapp-link {
    display: block;
    background: #25D366;
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    text-align: center;
    box-sizing: border-box;
    width: 100%;
    max-width: 220px;
}

.whatsapp-link:hover {
    background: #128C7E;
    transform: translateY(-1px);
}

@media (min-width: 768px) {
    .whatsapp-links {
        flex-direction: row;
    }

    .whatsapp-link {
        flex: 1;
        max-width: 200px;
    }
}

.price-summary {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.price-summary h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1.1rem;
}

.price-summary-box {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--beige-soft);
    box-shadow: var(--shadow-soft);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--beige-soft);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row.total {
    border-top: 2px solid var(--beige-soft);
    margin-top: 8px;
    padding-top: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.price-row.total span:last-child {
    color: var(--brown-luxury);
    font-weight: 700;
}

.free-shipping {
    color: #28a745 !important;
    font-weight: 600 !important;
}

.back-btn {
    background: transparent;
    color: var(--text-secondary);
    width: 100%;
    padding: 14px;
    border: 1px solid var(--beige-soft);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 120px 40px;
    background: var(--bg-primary);
    text-align: center;
}

.about h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 500;
}

.about p {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: var(--text-secondary);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.feature {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.feature:hover {
    transform: translateY(-5px);
}

.feature span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--text-dark);
    font-size: 1.15rem;
    font-weight: 500;
}

/* Reviews Section */
.reviews {
    padding: 120px 40px;
    background: var(--bg-white);
}

.reviews h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto 4rem;
}

.review-card {
    background: var(--bg-primary);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}

.reviewer-name {
    color: var(--text-dark);
    font-weight: 500;
}

.reviews-form {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: var(--radius-lg);
    max-width: 550px;
    margin: 0 auto;
    box-shadow: var(--shadow-soft);
}

.reviews-form h3 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 500;
}

#review-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#review-form input,
#review-form select,
#review-form textarea {
    padding: 14px;
    border: 1px solid var(--beige-soft);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    background: var(--bg-white);
}

#review-form input:focus,
#review-form select:focus,
#review-form textarea:focus {
    outline: none;
    border-color: var(--brown-luxury);
}

.submit-review-btn {
    background: var(--text-dark);
    color: var(--bg-white);
    border: none;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 500;
}

.submit-review-btn:hover {
    background: var(--brown-luxury);
}

/* Contact Section */
.contact {
    padding: 120px 40px;
    background: var(--bg-primary);
    text-align: center;
}

.contact h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-form {
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    border: 1px solid var(--beige-soft);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    background: var(--bg-white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brown-luxury);
}

.submit-btn {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 16px 48px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 500;
    align-self: center;
}

.submit-btn:hover {
    background: var(--brown-luxury);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 60px 40px;
}

.footer p {
    margin: 0.5rem 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer .logo {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: var(--bg-white);
    margin: 3% auto;
    padding: 40px;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 550px;
    box-shadow: var(--shadow-luxury);
    max-height: 90vh;
    overflow-y: auto;
}

.customer-content {
    max-width: 650px;
}

.modal-content h2 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 500;
}

.modal-content h3 {
    color: var(--brown-luxury);
    margin-bottom: 1rem;
    font-weight: 500;
}

.close {
    color: var(--text-secondary);
    float: right;
    font-size: 1.75rem;
    font-weight: 300;
    cursor: pointer;
}

.close:hover {
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--beige-soft);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brown-luxury);
}

.success-content {
    text-align: center;
    padding: 2rem;
}

.success-content h2 {
    color: var(--brown-luxury);
    margin-bottom: 1.5rem;
}

.btn-close-modal {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 14px 32px;
    margin-top: 1.5rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 500;
}

.btn-confirm-order {
    background: var(--text-dark);
    color: var(--bg-white);
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 500;
}

.modal-content hr {
    margin: 1.5rem 0;
    border: none;
    border-top: 1px solid var(--beige-soft);
}

/* Delivery Options */
.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.delivery-option {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--beige-soft);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.delivery-option input {
    margin-right: 12px;
    accent-color: var(--brown-luxury);
}

.delivery-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.delivery-text strong {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.delivery-time {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.delivery-charge {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Offer Section */
.offer-section {
    padding: 60px 20px;
    background: var(--bg-primary);
}

.offer-box {
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(135deg, #faf8f5 0%, #f5efe6 100%);
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 8px 30px rgba(181, 144, 114, 0.15);
    border: 1px solid rgba(181, 144, 114, 0.2);
    text-align: center;
}

.offer-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.offer-highlight {
    display: inline-block;
    background: linear-gradient(135deg, var(--brown-luxury) 0%, #a07860 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(181, 144, 114, 0.3);
}

.promo-text {
    text-align: center;
    font-weight: 700;
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: var(--text-dark);
    margin: 20px 0;
    padding: 12px 16px;
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border-radius: 8px;
    border: 1px solid #ffc107;
    box-shadow: 0 2px 10px rgba(255, 193, 7, 0.2);
}

.offer-prices {
    margin: 28px 0;
    padding: 20px 0;
    border-top: 1px dashed rgba(181, 144, 114, 0.3);
    border-bottom: 1px dashed rgba(181, 144, 114, 0.3);
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 5px 0;
}

.price-line:hover {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    cursor: pointer;
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.price-line:hover .amount {
    color: white;
}

.price-line:hover .quantity {
    color: rgba(255, 255, 255, 0.9);
}

.price-line .quantity {
    color: var(--text-secondary);
    font-weight: 400;
}

.price-line .amount {
    font-weight: 700;
    color: var(--brown-luxury);
    font-size: 1.15rem;
}

.offer-note {
    margin-top: 24px;
    color: #dc3545;
    font-size: 0.9rem;
    font-weight: 500;
    font-style: italic;
}

/* Coming Soon Section */
.coming-soon-section {
    display: none;
    padding: 40px 20px;
}

.coming-soon-section.active {
    display: block;
}

.coming-soon-card {
    background: linear-gradient(135deg, #f5efe6 0%, #e8e0d5 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(181, 144, 114, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(181, 144, 114, 0.4);
}

.coming-soon-emoji {
    font-size: 4rem;
    display: block;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.coming-soon-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.coming-soon-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.coming-soon-launch {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: var(--brown-luxury);
    font-weight: 500;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: rgba(253, 251, 247, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 90px 24px 30px;
        gap: 0.5rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
        transition: right 0.35s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a:not(.cart-icon) {
        width: 100%;
        text-align: left;
        padding: 14px 16px;
        border-bottom: 1px solid rgba(181, 144, 114, 0.12);
        color: var(--text-dark) !important;
        font-size: 0.95rem;
        font-weight: 500;
        display: block;
        transition: background 0.2s ease, color 0.2s ease;
        border-radius: 6px;
    }

    .nav-links a:not(.cart-icon):hover {
        background: rgba(181, 144, 114, 0.08);
        color: var(--brown-luxury) !important;
    }

    /* Override mobile styles for the cart icon */
    .nav-links .cart-icon {
        width: 100% !important;
        margin-top: 1.5rem !important;
        justify-content: center !important;
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
        border-radius: 30px !important;
        display: flex !important;
        align-items: center;
        box-shadow: 0 4px 15px rgba(181, 144, 114, 0.3) !important;
    }

    /* True full-screen 9:16 on mobile — relative keeps video playback working on iOS/Android */
    .hero {
        position: relative !important;
        width: 100% !important;
        height: 100svh !important;
        min-height: 100svh !important;
        overflow: hidden !important;
    }

    /* Toggle Desktop/Mobile video visibility on mobile */
    .desktop-video {
        display: none !important;
    }
    .mobile-video {
        display: block !important;
    }

    /* Video fills the full portrait window without any panning translation */
    .hero-video {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        transition: none !important;
    }


    .hero-content {
        padding: 0 20px !important;
        position: relative !important;
        z-index: 3 !important;
    }

    .hero-content .eyebrow {
        margin-bottom: 0.8rem !important;
    }

    .hero-content h1 {
        font-size: clamp(1.8rem, 7.5vw, 2.5rem) !important;
        margin-bottom: 1rem !important;
    }

    .hero-content p {
        font-size: clamp(0.9rem, 3.8vw, 1.05rem) !important;
        margin-bottom: 1.5rem !important;
    }


    .products-grid {
        flex-direction: row;
        gap: 16px;
        padding: 16px 10px;
    }

    .product-card {
        flex: 0 0 260px;
    }

    .checkout-container {
        grid-template-columns: 1fr;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .products-section,
    .cart-section,
    .checkout-section,
    .about,
    .reviews,
    .contact {
        padding: 80px 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.25rem;
    }

    .cta-btn {
        padding: 14px 28px;
        font-size: 0.8rem;
    }

    .product-info {
        padding: 20px;
    }

    .product-actions {
        padding: 0 20px 20px;
    }

    .offer-box {
        padding: 32px 24px;
        border-radius: 12px;
    }

    .offer-highlight {
        padding: 10px 20px;
    }

    .price-line {
        font-size: 0.95rem;
    }

    .price-line .amount {
        font-size: 1.05rem;
    }
}


/* ==========================================================================
   SUPPORT & SOCIALS STYLES (WhatsApp & Instagram)
   ========================================================================== */

/* Redesigned Connect Options Banner (About section) */
.connect-banner {
    background: #fdfbf8;
    border: 1px solid rgba(181, 144, 114, 0.2);
    color: #4a3b32;
    text-align: center;
    padding: 24px 30px;
    font-size: 15px;
    border-radius: 16px;
    margin: 0 auto 40px;
    max-width: 650px;
    box-shadow: 0 4px 20px rgba(181, 144, 114, 0.05);
}

.connect-banner h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c1e15;
    font-weight: 600;
}

.connect-banner p {
    font-size: 14px;
    color: #705b4f;
    margin: 0 0 16px 0;
}

.connect-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.connect-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.3s ease;
    min-width: 180px;
}

.connect-btn svg {
    transition: transform 0.3s ease;
}

.connect-btn:hover svg {
    transform: scale(1.1);
}

.connect-btn.whatsapp {
    background: #e8f7ee;
    color: #128c7e;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.connect-btn.whatsapp:hover {
    background: #128c7e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(18, 140, 126, 0.15);
}

.connect-btn.instagram {
    background: #fdf0f5;
    color: #d62976;
    border: 1px solid rgba(214, 41, 118, 0.2);
}

.connect-btn.instagram:hover {
    background: #d62976;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 41, 118, 0.15);
}

/* Footer Social Links */
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
}

.footer-socials a {
    color: #b59072;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
}

.footer-socials a:hover {
    color: #2c1e15;
    transform: translateY(-2px);
}

.footer-socials svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Floating Social Support Button */
.social-float-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 10000;
}

.social-float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #2c1e15;
    color: #fdfbf8;
    border: none;
    box-shadow: 0 8px 24px rgba(44, 30, 21, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 0;
}

.social-float-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: #b59072;
    box-shadow: 0 12px 28px rgba(181, 144, 114, 0.35);
}

.social-float-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    transition: transform 0.4s ease;
}

/* Rotate and change color when open */
.social-float-container.active .social-float-btn {
    background: #5c4738;
    transform: rotate(135deg);
}

/* Floating Menu Card */
.social-float-menu {
    position: absolute;
    bottom: 72px;
    right: 0;
    width: 260px;
    background: #fdfbf8;
    border: 1px solid rgba(181, 144, 114, 0.2);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(44, 30, 21, 0.15);
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-origin: bottom right;
}

.social-float-container.active .social-float-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.social-menu-header {
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(181, 144, 114, 0.1);
    padding-bottom: 8px;
}

.social-menu-header h5 {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    color: #2c1e15;
    margin: 0 0 2px 0;
    font-weight: 600;
}

.social-menu-header p {
    font-size: 11px;
    color: #8e735d;
    margin: 0;
}

.social-menu-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 10px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-menu-item.whatsapp-link-item {
    background: #f4fbf7;
    color: #128c7e;
}

.social-menu-item.whatsapp-link-item:hover {
    background: #e8f7ee;
    border-color: rgba(37, 211, 102, 0.25);
}

.social-menu-item.instagram-link-item {
    background: #fff5f8;
    color: #d62976;
}

.social-menu-item.instagram-link-item:hover {
    background: #ffeef2;
    border-color: rgba(214, 41, 118, 0.25);
}

.social-menu-item svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

.social-item-info {
    display: flex;
    flex-direction: column;
}

.social-item-label {
    font-size: 12.5px;
    font-weight: 600;
}

.social-item-desc {
    font-size: 10px;
    opacity: 0.85;
}

/* Checkout Support Box */
.checkout-support-box {
    background: #fdfbf8;
    border: 1px solid rgba(181, 144, 114, 0.15);
    border-radius: 12px;
    padding: 16px;
    margin-top: 20px;
    text-align: center;
}

.checkout-support-box .support-title {
    font-size: 14px;
    font-weight: 600;
    color: #2c1e15;
    margin-bottom: 2px;
}

.checkout-support-box .support-subtitle {
    font-size: 12px;
    color: #8e735d;
    margin-bottom: 12px;
}

.support-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 8px;
}

.support-link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.support-link-item svg {
    flex-shrink: 0;
}

.support-link-item.whatsapp {
    background: #e8f7ee;
    color: #128c7e;
}

.support-link-item.whatsapp:hover {
    background: #128c7e;
    color: white;
}

.support-link-item.instagram {
    background: #fdf0f5;
    color: #d62976;
}

.support-link-item.instagram:hover {
    background: #d62976;
    color: white;
}

@media (max-width: 768px) {
    .social-float-btn {
        width: 50px;
        height: 50px;
    }
    .social-float-menu {
        width: 240px;
        bottom: 64px;
    }
    .connect-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
    }
    .connect-btn {
        width: 100% !important;
        max-width: 220px !important;
    }
}
