/* style.css - Premium Light Theme */
:root {
    /* Light Theme Colors */
    --bg-light: #ffffff;
    --bg-alt: #FDF4F3;
    /* Soft neutral background for sections */
    --text-dark: #06637B;
    /* Deep slate for readability */
    --text-muted: #5493A0;

    --gold: #F978B0;
    /* Primary brand color */
    --gold-dark: #06637B;
    /* Secondary brand color */
    --gold-glow: rgba(249, 120, 176, 0.15);
    --gold-gradient: linear-gradient(135deg, #F978B0, #F7CAC5);

    /* Glassmorphism for Light Theme */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.05);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);

    --font-outfit: 'Outfit', sans-serif;
    --font-inter: 'Inter', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-inter);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.bg-light {
    background-color: var(--bg-light);
}

.bg-alt {
    background-color: var(--bg-alt);
}

.text-dark {
    color: var(--text-dark);
}

.text-muted {
    color: var(--text-muted);
}

.text-gold {
    color: var(--gold);
}

.font-outfit {
    font-family: var(--font-outfit);
}

.font-inter {
    font-family: var(--font-inter);
}

.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-sm {
    max-width: 800px;
}

.container-md {
    max-width: 1000px;
}

.container-fluid {
    padding: 0 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.section {
    padding: 3.5rem 0;
    /* Reduced from 6rem to tighten layout */
    position: relative;
}

.section-subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--gold-dark);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #111111;
    /* Changed to Black as requested */
}

/* --- UNIQUE GIFT SHOP HIGHLIGHT (HAND-DRAWN BOX) --- */
.gift-highlight {
    color: var(--gold-dark);
    /* Teal text as requested */
    display: inline-block;
    position: relative;
    padding: 0.1em 0.25em 0.2em 0.25em;
    font-weight: 700;
    z-index: 1;
}

/* The hand-drawn box and bow using inline SVG */
.gift-highlight::before {
    content: '';
    position: absolute;
    top: -0.4em;
    /* Space for the bow above the text */
    left: -0.2em;
    right: -0.2em;
    bottom: 0em;
    z-index: -1;
    /* 
      This SVG draws:
      1. A slightly irregular rectangle (the box).
      2. Two loops on top of the box (the bow).
      Stroke is set to primary pink (#F978B0), fill is transparent.
    */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 45' preserveAspectRatio='none'%3E%3Cpath d='M35 12 C30 5, 20 5, 25 12 C28 15, 33 13, 35 12 Z' fill='none' stroke='%23F978B0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M35 12 C40 5, 50 5, 45 12 C42 15, 37 13, 35 12 Z' fill='none' stroke='%23F978B0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3 12 C3 12, 97 11, 97 12 C98 25, 96 38, 97 42 C97 42, 5 44, 3 42 C2 25, 4 20, 3 12 Z' fill='none' stroke='%23F978B0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

.gift-highlight:hover::before {
    transform: scale(1.03) rotate(-1deg);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.relative {
    position: relative;
}

.hidden {
    display: none;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.w-full {
    width: 100%;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
}

.gap-1 {
    gap: 1rem;
}

.gap-2 {
    gap: 2rem;
}

.gap-3 {
    gap: 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    font-family: var(--font-outfit);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--text-dark);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
}

.btn-outline:hover {
    background: var(--text-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Effects & Glassmorphism */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

/* --- MAIN HEADER (Two-Tier) --- */
.main-header {
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    z-index: 100;
}

/* Top Bar: Logo & Contact Info */
.header-top {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.header-top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info-top {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-item .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #555;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #555;
}

.contact-item.whatsapp .icon-circle {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

.contact-item .details {
    display: flex;
    flex-direction: column;
}

.contact-item .label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #888;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-item .value {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
    text-decoration: none;
}

.contact-item .value:hover {
    color: var(--blue-dark);
}

/* Bottom Nav Bar */
.navbar-bottom {
    background: var(--gold-dark);
    /* Dark Blue */
    width: 100%;
}

.navbar-bottom .nav-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li.separator {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 5px;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    padding: 1rem 1.5rem;
    display: block;
    transition: background 0.3s ease;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #fff;
    padding: 1rem;
    margin-left: auto;
}

/* Hero Section - Image Banner Centric */
.hero-banner {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('image/banner-1.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    color: #fff;
    text-align: center;
    padding: 0 1.5rem;
}

.hero-content .section-title {
    color: #fff;
    font-size: 4rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content .section-subtitle {
    color: var(--gold);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.stats-banner {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    justify-content: space-around;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(50%);
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    z-index: 10;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-dark);
}

.stat-item i {
    font-size: 2rem;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
}

.stat-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* --- NEW E-COMMERCE SECTIONS --- */

/* Trust Badges */
.trust-badges-bar {
    padding: 2rem 0;
    /* Reduced from 3rem */
    border-bottom: 1px solid #eaeaea;
}

.trust-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.trust-item img {
    height: 45px;
    width: auto;
    margin-bottom: 0.5rem;
}

.trust-item h4 {
    font-size: 0.95rem;
    color: #333;
    margin: 0;
}

.trust-item p {
    font-size: 0.8rem;
    color: #777;
    margin: 0;
}

/* Kids Banners */
.kids-banners {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.kids-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
    min-width: 300px;
    min-height: 350px;
    background-color: #fcfcfc;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.kids-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.kids-card:hover img {
    transform: scale(1.05);
}

.kids-label {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #fff;
    text-align: center;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Personalized Categories */
.category-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cat-item:hover {
    transform: translateY(-5px);
}

.cat-img-box {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.cat-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #fcfcfc;
}

.cat-name {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

/* Celebrations Grid */
.celebrations-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr 1fr;
    grid-auto-rows: 200px;
    gap: 1.5rem;
}

.celeb-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f9f9f9;
}

.celeb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.celeb-card:hover img {
    transform: scale(1.05);
}

.celeb-card.grid-large {
    grid-row: span 2;
}

.celeb-label {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Also Try Grid */
.also-try-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.try-card {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.bg-light-orange {
    background: #FEF3EB;
}

.bg-green {
    background: #25D366;
}

.social-icons-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    font-size: 2.5rem;
    margin-right: 1rem;
}

.social-icons-group i {
    background: #fff;
    border-radius: 50%;
    padding: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.phone-mockup {
    width: auto !important;
    height: 250px !important;
    margin-right: -2rem;
    object-fit: contain !important;
}

/* --- DYNAMIC BESTSELLERS GRID --- */
.dynamic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.product-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.product-image-wrap {
    width: 100%;
    height: 200px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-title {
    font-size: 0.95rem;
    color: #444;
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    min-height: 2.8em;
    /* Keeps titles aligned */
}

.product-rating {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.product-price {
    font-size: 1rem;
    margin-top: auto;
}

.original-price {
    color: #555;
    text-decoration: line-through;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.sale-price {
    color: #d32f2f;
    /* Red from screenshot */
    font-weight: 700;
}

/* Premium Process Steps */
.premium-process {
    display: flex;
    justify-content: center;
    gap: 3rem;
    position: relative;
    padding: 4rem 0 2rem;
}

.premium-process::before {
    content: '';
    position: absolute;
    top: 4rem;
    /* Aligns with icons */
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
    z-index: 1;
    opacity: 0.3;
}

.process-card {
    background: #fff;
    padding: 3rem 2rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 320px;
    border: 1px solid var(--glass-border);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.process-icon-wrap {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    margin: -5rem auto 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s ease;
}

.process-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--gold-gradient);
    z-index: -1;
}

.process-icon-wrap i {
    font-size: 2.5rem;
    color: var(--text-dark);
}

.step-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: var(--gold-gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
}

/* Image Grid Section - Products */
.product-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.prod-img-card {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.prod-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.prod-img-card:hover img {
    transform: scale(1.08);
}

.prod-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: #fff;
}

.prod-img-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.prod-img-card:hover .prod-img-overlay h3 {
    transform: translateY(0);
}

/* Feature Banners - Replacing heavy text */
.feature-banner {
    display: flex;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    margin: 4rem 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.feature-banner.reverse {
    flex-direction: row-reverse;
}

.feature-banner-img {
    flex: 1.2;
    background-size: cover;
    background-position: center;
}

.feature-banner-content {
    flex: 1;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

.feature-banner-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Image CTA Section */
.image-cta-section {
    position: relative;
    padding: 8rem 0;
    background-image: url('https://images.unsplash.com/photo-1513885535751-8b9238bd345a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
}

.image-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
}

.image-cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.image-cta-content h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

/* Custom Image Slider for Gallery Ribbon */
.gallery-ribbon {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 2rem 0;
    scrollbar-width: none;
    /* Firefox */
}

.gallery-ribbon::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.ribbon-img {
    height: 350px;
    min-width: 300px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ribbon-img:hover {
    transform: translateY(-10px);
}

/* FAQ Section */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--gold-dark);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: var(--bg-alt);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Contact / Inquiry Form */
.contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border-radius: 16px;
}

.contact-info {
    padding: 4rem;
    background: var(--bg-light);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-detail-item i {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail-item span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.2rem;
}

.contact-detail-item p {
    font-weight: 600;
    font-size: 1.05rem;
}

.contact-form-wrapper {
    padding: 4rem;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Premium Form Inputs */
.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-control:focus {
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    background: #fff;
}

::placeholder {
    color: #94a3b8;
}

/* Footer Adjustments */
.footer {
    padding: 5rem 0 2rem;
    background: var(--bg-alt);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-social .social-link {
    background: #fff;
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.footer-social .social-link:hover {
    background: var(--gold-dark);
    color: #fff;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

.delay-1 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
    transition-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
    transition-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
    transition-delay: 0.8s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .product-image-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-banner,
    .feature-banner.reverse {
        flex-direction: column;
        height: auto;
    }

    .feature-banner-img {
        height: 400px;
    }

    .stats-banner {
        position: relative;
        transform: none;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 2rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .hero-banner {
        min-height: 80vh;
    }

    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 3rem;
    }

    .contact-form-wrapper {
        padding: 3rem;
    }

    .premium-process {
        flex-direction: column;
        align-items: center;
        gap: 5rem;
    }

    .premium-process::before {
        display: none;
    }

    .contact-item {
        justify-content: center;
    }

    /* Keep only WhatsApp on mobile and make it compact */
    .contact-info-top .contact-item:not(.whatsapp) {
        display: none;
    }

    .contact-info-top .contact-item.whatsapp .label {
        display: none;
    }

    .header-top-container {
        flex-direction: column;
        gap: 0.8rem;
        padding-bottom: 0.5rem;
    }

    .contact-info-top {
        display: flex;
        justify-content: center;
        gap: 0;
    }

    /* Celebrations Grid Mobile Fix */
    .celebrations-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .celeb-card.grid-large {
        grid-row: auto;
        height: 250px;
    }

    .celeb-card.grid-small {
        height: 200px;
    }

    .celeb-card.hidden-mobile {
        display: none;
    }

    .category-row {
        gap: 1rem;
    }

    .cat-item {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s ease;
        border-left: 1px solid var(--glass-border);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: block;
        z-index: 101;
    }

    .hero-content .section-title {
        font-size: 2.8rem;
    }

    .product-image-grid {
        grid-template-columns: 1fr;
    }

    .feature-banner-content {
        padding: 2.5rem 1.5rem;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* --- PRODUCT MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    background: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    position: relative;
    transform: translateY(0);
    transition: transform 0.3s ease;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

.modal-overlay.hidden .modal-content {
    transform: translateY(50px);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    z-index: 10;
}

.close-modal:hover {
    color: #000;
}

.modal-body {
    display: flex;
    flex-wrap: wrap;
}

.modal-body.carts {
    flex-direction: column;
}

.modal-body img {
    width: 100%;
    max-width: 350px;
    object-fit: contain;
    background: #fdfdfd;
    padding: 2rem;
    border-right: 1px solid #eee;
}

.modal-info {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.modal-info .product-price {
    font-size: 1.5rem;
    margin: 1rem 0;
}

.modal-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex: 1;
}

@media (max-width: 768px) {
    .modal-body img {
        max-width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
    }
}

/* --- FLOATING CART & MODAL --- */
.floating-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gold);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-cart:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.6);
}

.floating-cart span {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.cart-item h4 {
    margin: 0;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.cart-item-price {
    color: var(--gold-dark);
    font-weight: 600;
}

.remove-item {
    color: #ff4757;
    cursor: pointer;
    font-size: 1.2rem;
    margin-left: 1rem;
}