/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    background: url('https://images.unsplash.com/photo-1487530811176-3780de880c2d?w=1400&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(20,83,45,0.85) 0%, rgba(20,83,45,0.65) 40%, rgba(184,134,107,0.45) 100%);
    z-index: 1;
}
.hero-petal {
    position: absolute;
    font-size: 28px;
    opacity: 0.15;
    pointer-events: none;
    animation: petalFloat 6s ease-in-out infinite;
    z-index: 2;
    filter: brightness(2);
}
.hero-petal:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; animation-duration: 7s; }
.hero-petal:nth-child(2) { top: 25%; right: 15%; animation-delay: 1s; animation-duration: 5s; }
.hero-petal:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 2s; animation-duration: 8s; }
.hero-petal:nth-child(4) { bottom: 30%; right: 10%; animation-delay: 0.5s; animation-duration: 6s; }
.hero-petal:nth-child(5) { top: 50%; left: 5%; animation-delay: 3s; animation-duration: 7s; }
.hero-petal:nth-child(6) { top: 10%; right: 30%; animation-delay: 1.5s; animation-duration: 9s; }
@keyframes petalFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-18px) rotate(8deg); opacity: 0.25; }
}
.hero-content { position: relative; z-index: 3; max-width: 700px; padding: 0 20px; }
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.hero p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.hero-proof-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.92);
    font-size: 15px;
    font-weight: 500;
}
.hero-proof-item svg { width: 18px; height: 18px; }
.hero-proof-item .stars { color: #fbbf24; letter-spacing: 1px; font-size: 14px; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero .btn-primary {
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.hero .btn-primary:hover {
    box-shadow: 0 6px 28px rgba(0,0,0,0.3);
}

/* ===== DELIVERY SEARCH CARD ===== */
.delivery-search-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1100px;
    margin: -60px auto 0;
    padding: 0 40px;
}
.delivery-search-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 28px 32px;
    display: flex;
    gap: 20px;
    align-items: flex-end;
    border: 1px solid var(--border);
}
.delivery-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.delivery-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.delivery-field select,
.delivery-field input {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--text);
    background: var(--bg);
    transition: border-color 0.2s;
    font-family: 'Inter', sans-serif;
}
.delivery-field select:focus,
.delivery-field input:focus {
    outline: none;
    border-color: var(--primary);
}
.delivery-search-btn {
    padding: 12px 28px;
    background: linear-gradient(135deg, #C79B73, #A87952);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}
.delivery-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 155, 115, 0.4);
}

/* ===== PROMO BANNER ===== */
.promo-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    color: #fff;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: 14px;
}
.promo-banner .promo-tag {
    background: #fbbf24;
    color: #14532D;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.promo-banner .promo-text { font-weight: 500; }
.promo-banner .promo-text strong { font-weight: 700; }
.promo-banner .promo-cta {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.promo-banner .promo-cta:hover { background: rgba(255,255,255,0.3); }

/* ===== OCCASION GRID ===== */
.occasion-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 40px;
}

/* ===== FEATURED GRID ===== */
.featured-grid {
    display: flex;
    gap: 24px;
    overflow-x: hidden;
    overflow-y: visible;
    padding: 10px 0;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.featured-track {
    display: flex;
    gap: 24px;
    animation: marquee 30s linear infinite;
    flex-shrink: 0;
    padding: 6px 0;
}
.featured-track:hover { animation-play-state: paused; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 20px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: linear-gradient(180deg, var(--bg) 0%, #fff 100%);
}
.testimonials-track {
    display: flex;
    gap: 24px;
    overflow: hidden;
    padding: 10px 0;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 32px 40px;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
}
.trust-item .trust-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
}
.trust-item .trust-icon svg { width: 22px; height: 22px; }
.trust-item .trust-text { font-size: 14px; font-weight: 600; }
.trust-item .trust-sub { font-size: 12px; color: var(--text-lighter); font-weight: 400; }

/* ===== INSTAGRAM GALLERY ===== */
.instagram-section {
    background: var(--bg);
}
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 40px;
}
.instagram-item {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.instagram-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}
.instagram-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
}
.instagram-img svg {
    width: 48px;
    height: 48px;
    opacity: 0.6;
}
.instagram-cta {
    text-align: center;
    margin-top: 32px;
}

/* ===== PREMIUM COLLECTION ===== */
.premium-section {
    background: linear-gradient(160deg, #1a3a2e 0%, #0d2820 100%);
    color: #fff;
    padding: 80px 24px;
    margin: 0;
    position: relative;
    overflow: hidden;
}
.premium-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(199,155,115,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.premium-header {
    text-align: center;
    position: relative;
    z-index: 1;
}
.premium-badge {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid rgba(199,155,115,0.5);
    color: #C79B73;
    font-size: 11px;
    letter-spacing: 4px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
}
.premium-section .section-title {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 12px;
}
.premium-section .section-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}
.premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 48px auto 40px;
    position: relative;
    z-index: 1;
}
.premium-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(199,155,115,0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}
.premium-card:hover {
    transform: translateY(-10px);
    border-color: rgba(199,155,115,0.6);
    box-shadow: 0 24px 48px rgba(0,0,0,0.3), 0 0 0 1px rgba(199,155,115,0.3);
    background: rgba(255,255,255,0.07);
}
.premium-card-img {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}
.premium-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.premium-card-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #C79B73, #A87952);
    color: #fff;
    padding: 5px 14px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.premium-card-body {
    padding: 24px;
}
.premium-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}
.premium-card-desc {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.premium-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.premium-card-price {
    color: #C79B73;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}
.premium-card-price small {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}
.premium-card-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(199,155,115,0.15);
    border: 1px solid rgba(199,155,115,0.3);
    color: #C79B73;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.premium-card-btn:hover {
    background: #C79B73;
    color: #1a3a2e;
}
.premium-card-btn svg {
    width: 18px;
    height: 18px;
}
.premium-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}
