/* admin.css - Admin Panel Layout and Components */

/* ══════════ ADMIN PANEL — Premium Redesign ══════════ */
        .admin-panel { background: transparent; }

        /* Admin Header */
        .admin-header {
            background: linear-gradient(135deg, #1a0f00 0%, #2C1A06 45%, #3D2608 75%, #5D3A10 100%);
            border-radius: 16px; padding: 1.4rem 1.8rem; margin-bottom: 1.6rem;
            display: flex; align-items: center; justify-content: space-between;
            box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(212,175,55,0.2);
            position: relative; overflow: hidden;
        }
        .admin-header::before {
            content: ''; position: absolute; inset: 0;
            background: radial-gradient(ellipse 60% 80% at 10% 50%, rgba(212,175,55,0.07) 0%, transparent 70%);
            pointer-events: none;
        }
        .admin-header-title {
            font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 500;
            color: var(--silk-champagne); letter-spacing: 3px; text-transform: uppercase;
        }
        .admin-header-title span { color: var(--silk-gold); }
        .admin-header-sub {
            font-size: 0.66rem; color: rgba(247,231,206,0.4);
            letter-spacing: 2px; text-transform: uppercase; margin-top: 4px;
        }
        .admin-session-badge {
            display: flex; align-items: center; gap: 0.5rem;
            background: rgba(39,174,96,0.12); border: 1px solid rgba(39,174,96,0.3);
            border-radius: 20px; padding: 0.35rem 0.9rem; position: relative; z-index: 1;
        }
        .admin-session-dot {
            width: 7px; height: 7px; border-radius: 50%; background: #27ae60;
            box-shadow: 0 0 8px rgba(39,174,96,0.8);
            animation: adminPulse 2s ease-in-out infinite;
        }
        @keyframes adminPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }
        .admin-session-text {
            font-size: 0.66rem; font-weight: 700; letter-spacing: 1.5px;
            text-transform: uppercase; color: #4cd47a;
        }

        /* Stat Cards */
        .admin-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 1rem; margin-bottom: 1.6rem; }
        .admin-stat-card {
            background: var(--silk-white); border-radius: 14px; padding: 1.1rem 1rem;
            box-shadow: 0 2px 12px var(--silk-shadow);
            display: flex; flex-direction: column; gap: 0.45rem;
            transition: transform 0.2s, box-shadow 0.2s; cursor: default;
        }
        .admin-stat-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px var(--silk-shadow); }
        .admin-stat-icon-wrap {
            width: 34px; height: 34px; border-radius: 9px;
            display: flex; align-items: center; justify-content: center; font-size: 1rem;
        }
        .admin-stat-number { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; font-weight: 700; line-height: 1; }
        .admin-stat-label { font-size: 0.7rem; color: var(--silk-taupe); }

        /* Tabs — Pill Style */
        .admin-tabs {
            display: flex; gap: 0.4rem; margin-bottom: 1.6rem;
            background: var(--silk-white); padding: 0.35rem;
            border-radius: 14px; box-shadow: 0 2px 10px var(--silk-shadow);
            overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
        }
        .admin-tabs::-webkit-scrollbar { display: none; }
        .admin-tab {
            padding: 0.5rem 1rem; border: none; background: transparent;
            cursor: pointer; font-family: 'Lato', sans-serif; font-size: 0.78rem;
            font-weight: 700; color: var(--silk-taupe); border-radius: 10px;
            transition: all 0.22s; white-space: nowrap;
        }
        .admin-tab:hover { background: var(--silk-cream); color: var(--silk-deep); }
        .admin-tab.active {
            background: linear-gradient(135deg, #8B6914, var(--silk-gold));
            color: white; box-shadow: 0 4px 12px rgba(212,175,55,0.4);
        }

        /* Products List */
        .admin-product-list { display: flex; flex-direction: column; gap: 0.7rem; }
        .admin-product-row {
            background: var(--silk-white); border-radius: 14px; padding: 1rem 1.2rem;
            display: flex; align-items: center; gap: 1rem;
            box-shadow: 0 2px 8px var(--silk-shadow);
            border: 1px solid transparent; transition: all 0.22s;
        }
        .admin-product-row:hover { box-shadow: 0 6px 22px var(--silk-shadow); border-color: rgba(212,175,55,0.2); transform: translateX(3px); }
        .admin-product-row.dragging { opacity: 0.45; transform: scale(0.98); border-color: var(--silk-gold); box-shadow: 0 8px 28px rgba(212,175,55,0.25); }
        .admin-product-row.drag-over { border-color: var(--silk-gold); background: rgba(212,175,55,0.06); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(212,175,55,0.2); }
        .drag-handle {
            cursor: grab; color: var(--silk-taupe); font-size: 1.1rem; flex-shrink: 0;
            padding: 0.3rem 0.2rem; border-radius: 6px; transition: color 0.2s, background 0.2s;
            user-select: none; line-height: 1;
        }
        .drag-handle:hover { color: var(--silk-gold); background: rgba(212,175,55,0.08); }
        .drag-handle:active { cursor: grabbing; }
        .sort-controls {
            display: flex; flex-direction: column; align-items: center; gap: 2px;
            flex-shrink: 0;
        }
        .sort-arrow {
            background: none; border: 1px solid rgba(212,175,55,0.25); border-radius: 5px;
            color: var(--silk-taupe); cursor: pointer; font-size: 0.7rem; line-height: 1;
            padding: 3px 6px; transition: all 0.15s; user-select: none;
        }
        .sort-arrow:hover:not(:disabled) { background: var(--silk-gold); border-color: var(--silk-gold); color: white; transform: scale(1.1); }
        .sort-arrow:active:not(:disabled) { transform: scale(0.95); }
        .sort-arrow:disabled { opacity: 0.2; cursor: default; }
        .admin-product-thumb { width: 64px; height: 64px; aspect-ratio: 1 / 1; border-radius: 10px; object-fit: contain; background: var(--silk-cream); flex-shrink: 0; border: 1px solid rgba(212,175,55,0.12); }
        .admin-product-info { flex: 1; }
        .admin-product-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--silk-deep); }
        .admin-product-price { color: var(--silk-gold); font-size: 0.9rem; font-weight: 600; }
        .admin-product-actions { display: flex; gap: 0.5rem; }

        /* Buttons */
        .btn-edit {
            padding: 0.45rem 1rem; border-radius: 10px; cursor: pointer;
            font-size: 0.82rem; font-weight: 700; transition: all 0.22s;
            background: rgba(212,175,55,0.1); color: #8B6914;
            border: 1px solid rgba(212,175,55,0.4);
        }
        .btn-edit:hover { background: linear-gradient(135deg,#8B6914,var(--silk-gold)); color: white; border-color: transparent; box-shadow: 0 4px 12px rgba(212,175,55,0.35); }
        .btn-delete {
            padding: 0.45rem 1rem; border-radius: 10px; cursor: pointer;
            font-size: 0.82rem; font-weight: 700; transition: all 0.22s;
            background: rgba(192,57,43,0.06); color: #c0392b;
            border: 1px solid rgba(192,57,43,0.25);
        }
        .btn-delete:hover { background: #c0392b; color: white; border-color: transparent; box-shadow: 0 4px 12px rgba(192,57,43,0.3); }

        /* Order Status Badge */
        .order-status-badge {
            display: inline-flex; align-items: center; gap: 0.3rem;
            padding: 0.28rem 0.75rem; border-radius: 20px;
            font-size: 0.76rem; font-weight: 700;
        }

        /* Form 2-col grid */
        .add-product-form { background: var(--silk-white); padding: 1.8rem; border-radius: 16px; box-shadow: 0 2px 12px var(--silk-shadow); }
        .form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.2rem; }
        @media (max-width: 600px) { .form-grid-2 { grid-template-columns: 1fr; } }
        .image-upload-area { border: 2px dashed var(--silk-gold); border-radius: 12px; padding: 2rem; text-align: center; cursor: pointer; transition: all 0.3s ease; background: var(--silk-champagne); position: relative; overflow: hidden; }
        .image-upload-area:hover { background: rgba(212,175,55,0.1); }
        .image-upload-area input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
        .image-preview { width: 100%; max-height: 200px; object-fit: cover; border-radius: 8px; margin-top: 1rem; }
        .lang-tabs { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
        .lang-tab { padding: 0.4rem 1rem; border: 1px solid var(--silk-shadow); border-radius: 20px; background: var(--silk-white); cursor: pointer; font-size: 0.85rem; font-weight: 600; color: var(--silk-taupe); transition: all 0.3s ease; }
        .lang-tab.active { background: var(--silk-gold); color: white; border-color: var(--silk-gold); }
        .section-divider { border: none; border-top: 1px solid var(--silk-shadow); margin: 1.5rem 0; }
        .form-section-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--silk-deep); margin-bottom: 1rem; }
        .order-card { background: var(--silk-white); border-radius: 14px; padding: 1.5rem; box-shadow: 0 2px 12px var(--silk-shadow); margin-bottom: 1rem; border-left: 4px solid var(--silk-gold); }
        .order-card-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1rem; }
        .order-id { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: var(--silk-deep); }
        .order-date { font-size: 0.82rem; color: var(--silk-taupe); margin-top: 0.2rem; }
        .order-status-select { padding: 0.4rem 0.8rem; border-radius: 20px; font-weight: 700; cursor: pointer; font-size: 0.85rem; border-width: 2px; border-style: solid; }
        .order-body { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
        .order-info-box { background: var(--silk-cream); border-radius: 10px; padding: 1rem; }
        .order-info-label { font-weight: 700; color: var(--silk-deep); margin-bottom: 0.5rem; font-size: 0.9rem; }
        .order-info-text { font-size: 0.85rem; color: var(--silk-taupe); line-height: 1.6; }
        .order-total { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; color: var(--silk-gold); margin-top: 0.8rem; padding-top: 0.8rem; border-top: 1px solid var(--silk-shadow); }
        .page-content { max-width: 900px; margin: 8rem auto 4rem; padding: 0 2rem; }
        .page-content h1 { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 600; color: var(--silk-deep); margin-bottom: 2rem; }
        .page-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: var(--silk-deep); margin: 2rem 0 1rem; }
        .page-content p { color: var(--silk-taupe); line-height: 1.8; margin-bottom: 1.5rem; font-size: 1.05rem; }
        .faq-page { margin-top: 80px; }
        .faq-hero { background: linear-gradient(160deg, var(--silk-cream) 0%, #F9EDE8 50%, #F5EDD8 100%); padding: 5rem 2rem 4rem; text-align: center; position: relative; overflow: hidden; }
        .faq-hero::before { content: ''; position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%); pointer-events: none; }
        .faq-hero-eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--silk-gold); display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1rem; }
        .faq-hero-eyebrow::before, .faq-hero-eyebrow::after { content: ''; width: 40px; height: 1px; background: rgba(212,175,55,0.5); }
        .faq-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 600; color: var(--silk-deep); line-height: 1; margin-bottom: 1rem; position: relative; z-index: 1; }
        .faq-hero p { font-size: 1rem; color: var(--silk-taupe); max-width: 480px; margin: 0 auto; line-height: 1.8; position: relative; z-index: 1; }
        .faq-body { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem 6rem; display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
        .faq-group { margin-bottom: 2.5rem; }
        .faq-group-title { font-size: 0.68rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--silk-gold); display: flex; align-items: center; gap: 1rem; margin-bottom: 0.75rem; }
        .faq-group-title::after { content: ''; flex: 1; height: 1px; background: linear-gradient(to right, rgba(212,175,55,0.3), transparent); }
        .faq-item { border-bottom: 1px solid rgba(139,126,116,0.15); overflow: hidden; }
        .faq-item:first-of-type { border-top: 1px solid rgba(139,126,116,0.15); }
        .faq-question { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 1.15rem 0; font-family: 'Lato', sans-serif; font-size: 0.97rem; font-weight: 600; color: var(--silk-deep); text-align: left; transition: color 0.2s; gap: 1rem; }
        .faq-question:hover { color: var(--silk-gold); }
        .faq-question.open { color: var(--silk-gold); }
        .faq-chevron { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid rgba(212,175,55,0.35); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: var(--silk-gold); transition: all 0.3s ease; background: transparent; }
        .faq-question.open .faq-chevron { background: var(--silk-gold); color: white; border-color: var(--silk-gold); transform: rotate(180deg); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.6s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease; }
        .faq-answer.open { max-height: 1400px; padding-bottom: 1.15rem; }
        .faq-answer p { font-size: 0.92rem; color: var(--silk-taupe); line-height: 1.8; margin: 0; }
        /* Care Steps */
        .care-steps { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 0.5rem; }
        .care-step {
            display: flex; align-items: flex-start; gap: 0.9rem;
            background: linear-gradient(135deg, var(--silk-white) 0%, rgba(247,231,206,0.22) 100%);
            border: 1px solid rgba(212,175,55,0.18); border-radius: 14px; padding: 0.9rem 1rem;
            transition: box-shadow 0.25s, border-color 0.25s;
        }
        .care-step:hover { border-color: rgba(212,175,55,0.45); box-shadow: 0 4px 18px rgba(212,175,55,0.1); }
        .care-step-icon {
            width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
            background: linear-gradient(135deg, rgba(212,175,55,0.14), rgba(232,196,184,0.18));
            border: 1px solid rgba(212,175,55,0.2);
            display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
        }
        .care-step-body { flex: 1; }
        .care-step-title { font-family: 'Lato', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.8px; color: var(--silk-deep); margin-bottom: 0.25rem; text-transform: uppercase; }
        .care-step-text { font-size: 0.88rem; color: var(--silk-taupe); line-height: 1.75; margin: 0; }
        .faq-single-card { background: linear-gradient(135deg, rgba(254,253,251,1) 0%, rgba(232,196,184,0.15) 100%); border-color: rgba(212,175,55,0.22); flex-direction: column; }
        /* Rich numbered list extras */
        .faq-list-intro {
            font-size: 0.9rem; color: var(--silk-taupe); line-height: 1.7;
            margin-bottom: 1rem; font-style: italic;
            padding: 0.75rem 1rem; background: rgba(247,231,206,0.3);
            border-radius: 10px; border-left: 3px solid var(--silk-gold);
        }
        .faq-badge {
            font-size: 0.8rem; line-height: 1.5; border-radius: 8px;
            padding: 0.45rem 0.7rem; margin: 0.3rem 0;
        }
        .faq-badge-note { background: rgba(100,149,237,0.1); color: #2c4a8a; border: 1px solid rgba(100,149,237,0.2); }
        .faq-badge-warn { background: rgba(255,165,0,0.1); color: #7a4d00; border: 1px solid rgba(255,165,0,0.25); }
        .faq-badge-tip  { background: rgba(39,174,96,0.1); color: #1a5c38; border: 1px solid rgba(39,174,96,0.2); }
        .faq-list-note  { font-size: 0.82rem; color: var(--silk-taupe); margin: 0.2rem 0; }
        /* Numbered list answer */
        .faq-list-answer { margin-top: 0.4rem; }
        .faq-list-title {
            font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 600;
            color: var(--silk-deep); letter-spacing: 0.5px; margin-bottom: 0.9rem;
            padding-bottom: 0.6rem; border-bottom: 1px solid rgba(212,175,55,0.2);
        }
        .faq-list-grid {
            display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem;
        }
        @media (max-width: 700px) { .faq-list-grid { grid-template-columns: 1fr; } }
        .faq-list-card {
            background: linear-gradient(135deg, var(--silk-white) 0%, rgba(247,231,206,0.2) 100%);
            border: 1px solid rgba(212,175,55,0.18); border-radius: 14px;
            padding: 0.85rem 1rem; transition: box-shadow 0.25s, border-color 0.25s;
        }
        .faq-list-card:hover { border-color: rgba(212,175,55,0.42); box-shadow: 0 4px 16px rgba(212,175,55,0.1); }
        .faq-list-card-header {
            display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.55rem;
        }
        .faq-list-num {
            width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
            background: linear-gradient(135deg, var(--silk-gold), #c9a227);
            color: white; font-size: 0.7rem; font-weight: 700;
            display: flex; align-items: center; justify-content: center;
        }
        .faq-list-heading {
            font-family: 'Lato', sans-serif; font-size: 0.8rem; font-weight: 700;
            color: var(--silk-deep); letter-spacing: 0.4px; flex: 1; line-height: 1.3;
        }
        .faq-list-card-icon { font-size: 1rem; flex-shrink: 0; }
        .faq-burn-images { display: flex; gap: 0.7rem; margin-top: 0.75rem; justify-content: center; }
        .faq-burn-img-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.35rem; }
        .faq-burn-img-wrap img { width: 100%; max-width: 160px; height: auto; object-fit: contain; border-radius: 8px; border: 1.5px solid rgba(212,175,55,0.35); box-shadow: 0 2px 8px rgba(0,0,0,0.18); cursor: zoom-in; transition: transform 0.2s, box-shadow 0.2s; }
        .faq-burn-img-wrap img:hover { transform: scale(1.04); box-shadow: 0 4px 18px rgba(212,175,55,0.35); }
        .faq-burn-img-label { font-size: 0.7rem; color: #b8996a; text-align: center; font-style: italic; }
        .lightbox-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 99999; align-items: center; justify-content: center; padding: 1rem; }
        .lightbox-overlay.active { display: flex; }
        .lightbox-overlay img { max-width: 92vw; max-height: 88vh; border-radius: 10px; box-shadow: 0 8px 40px rgba(0,0,0,0.6); object-fit: contain; background: #fff; }
        .lightbox-close { position: fixed; top: 1rem; right: 1.2rem; color: #fff; font-size: 2.2rem; cursor: pointer; line-height: 1; z-index: 100000; background: rgba(0,0,0,0.4); border-radius: 50%; width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center; }
        .lightbox-close:hover { background: rgba(212,175,55,0.5); }
        .faq-list-bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.3rem; }
        .faq-list-bullets li {
            font-size: 0.82rem; color: var(--silk-taupe); line-height: 1.5;
            padding-left: 1.1rem; position: relative;
        }
        .faq-list-bullets li::before {
            content: '◆'; position: absolute; left: 0; font-size: 0.4rem;
            color: var(--silk-gold); top: 0.35em;
        }
        .faq-sidebar { position: sticky; top: 100px; }
        .faq-contact-box { background: linear-gradient(145deg, #FEFCF8, #FBF4EC); border: 1px solid rgba(212,175,55,0.2); border-radius: 20px; padding: 2rem; box-shadow: 0 4px 24px rgba(139,126,116,0.1); }
        .faq-contact-icon { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, #F9EDE8, #F0D8C8); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1.2rem; }
        .faq-contact-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: var(--silk-deep); margin-bottom: 0.75rem; }
        .faq-contact-box p { font-size: 0.88rem; color: var(--silk-taupe); line-height: 1.7; margin-bottom: 0.6rem; }
        .faq-contact-sep { height: 1px; background: linear-gradient(to right, transparent, rgba(212,175,55,0.3), transparent); margin: 1.3rem 0; }
        .faq-contact-btns { display: flex; flex-direction: column; gap: 0.7rem; }
        .faq-btn-primary { padding: 0.8rem 1.4rem; background: linear-gradient(135deg, var(--silk-gold), #E8C860); color: white; border: none; border-radius: 12px; font-family: 'Lato', sans-serif; font-size: 0.82rem; font-weight: 700; cursor: pointer; transition: all 0.25s ease; box-shadow: 0 4px 14px rgba(212,175,55,0.35); text-align: center; }
        .faq-btn-primary:hover { background: linear-gradient(135deg, var(--silk-deep), #7A6850); box-shadow: 0 6px 20px rgba(93,78,55,0.35); transform: translateY(-1px); }
        .faq-btn-secondary { padding: 0.8rem 1.4rem; background: transparent; border: 1.5px solid rgba(139,126,116,0.3); color: var(--silk-taupe); border-radius: 12px; font-family: 'Lato', sans-serif; font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: all 0.25s ease; text-align: center; }
        .faq-btn-secondary:hover { border-color: var(--silk-gold); color: var(--silk-gold); }
        .faq-meta { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.5rem; }
        .faq-meta-row { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: var(--silk-taupe); }
        .faq-meta-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--silk-gold); flex-shrink: 0; }
        @media (max-width: 900px) { .faq-body { grid-template-columns: 1fr; } .faq-sidebar { position: relative; top: 0; } .faq-hero h1 { font-size: 2.8rem; } }
        @media (max-width: 600px) { .faq-hero { padding: 4rem 1.2rem 3rem; } .faq-hero h1 { font-size: 2.2rem; } .faq-body { padding: 2.5rem 1.2rem 4rem; gap: 2rem; } }
        /* FAQ Search */
        .faq-search-wrap { max-width: 520px; margin: 1.5rem auto 0; position: relative; }
        .faq-search-input { width: 100%; padding: 0.85rem 1.2rem 0.85rem 3rem; border: 1.5px solid rgba(212,175,55,0.3); border-radius: 50px; background: white; font-family: 'Lato', sans-serif; font-size: 0.92rem; color: var(--silk-deep); outline: none; transition: border-color 0.25s, box-shadow 0.25s; box-shadow: 0 4px 16px rgba(139,126,116,0.08); }
        .faq-search-input:focus { border-color: var(--silk-gold); box-shadow: 0 4px 20px rgba(212,175,55,0.18); }
        .faq-search-input::placeholder { color: var(--silk-taupe); }
        .faq-search-icon { position: absolute; left: 1.1rem; top: 50%; transform: translateY(-50%); font-size: 1rem; color: var(--silk-gold); pointer-events: none; }
        .faq-search-clear { position: absolute; right: 1.1rem; top: 50%; transform: translateY(-50%); background: var(--silk-cream); border: none; color: var(--silk-taupe); cursor: pointer; font-size: 0.85rem; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
        .faq-search-clear:hover { background: var(--silk-champagne); color: var(--silk-deep); }
        .faq-no-results { text-align: center; padding: 3rem 1rem; color: var(--silk-taupe); font-size: 0.95rem; }
        .faq-no-results span { display: block; font-size: 2rem; margin-bottom: 0.75rem; }
        /* FAQ Helpful */
        .faq-helpful { display: flex; align-items: center; gap: 0.7rem; margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px dashed rgba(139,126,116,0.15); }
        .faq-helpful-label { font-size: 0.78rem; color: var(--silk-taupe); }
        .faq-helpful-btn { display: flex; align-items: center; gap: 0.3rem; padding: 0.3rem 0.8rem; border-radius: 20px; border: 1px solid rgba(139,126,116,0.2); background: transparent; font-size: 0.78rem; color: var(--silk-taupe); cursor: pointer; transition: all 0.2s; font-family: 'Lato', sans-serif; }
        .faq-helpful-btn:hover { border-color: var(--silk-gold); color: var(--silk-gold); }
        .faq-helpful-btn.voted-yes { background: #d4edda; border-color: #28a745; color: #155724; }
        .faq-helpful-btn.voted-no { background: #f8d7da; border-color: #dc3545; color: #721c24; }
        /* FAQ Sidebar Online */
        .faq-online-badge { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.78rem; font-weight: 700; color: #27ae60; margin-bottom: 1rem; }
        .faq-online-dot { width: 8px; height: 8px; border-radius: 50%; background: #27ae60; animation: pulse 2s infinite; flex-shrink: 0; }
        .faq-offline-badge { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.78rem; font-weight: 700; color: var(--silk-taupe); margin-bottom: 1rem; }
        .faq-offline-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--silk-taupe); flex-shrink: 0; }
        /* FAQ Review Stars Sidebar */
        .faq-stars-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.2rem; padding: 0.7rem 1rem; background: linear-gradient(135deg, rgba(212,175,55,0.07), rgba(212,175,55,0.03)); border-radius: 12px; border: 1px solid rgba(212,175,55,0.15); }
        .faq-stars { color: var(--silk-gold); font-size: 0.95rem; letter-spacing: 1px; }
        .faq-stars-text { font-size: 0.78rem; color: var(--silk-taupe); line-height: 1.3; }
        .faq-stars-score { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; color: var(--silk-deep); }
        /* FAQ count badge */
        .faq-count-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: white; border: 1px solid rgba(212,175,55,0.25); border-radius: 50px; padding: 0.4rem 1.1rem; font-size: 0.8rem; font-weight: 600; color: var(--silk-taupe); margin-top: 1rem; box-shadow: 0 2px 8px var(--silk-shadow); }
        .faq-count-badge strong { color: var(--silk-gold); }
        .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }

        /* ── CUSTOM GOLD CURSOR ── */
        /* Eliminat */

        /* ── SCROLL PROGRESS BAR ── */
        .scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2.5px; z-index: 9999; background: rgba(212,175,55,0.1); }
        .scroll-progress-fill { height: 100%; width: 0%; background: linear-gradient(to right, var(--silk-gold), #F0D060, var(--silk-gold)); background-size: 200% 100%; animation: goldShimmer 2s linear infinite; box-shadow: 0 0 8px rgba(212,175,55,0.5); transition: width 0.08s ease; will-change: width; }
        @keyframes goldShimmer { 0% { background-position: 0% 0%; } 100% { background-position: 200% 0%; } }

        /* ── FLOATING GOLD PARTICLES ── */
        @keyframes floatUp { 0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; } 10% { opacity: 0.9; } 90% { opacity: 0.5; } 100% { transform: translateY(-130px) translateX(var(--drift)) scale(0.3); opacity: 0; } }
        .hero-particle { position: absolute; border-radius: 50%; pointer-events: none; z-index: 2; background: radial-gradient(circle, rgba(212,175,55,0.95) 0%, rgba(212,175,55,0) 70%); }
        .marquee-section { background: var(--silk-gold); padding: 1rem 0; overflow: hidden; white-space: nowrap; }
        .marquee-track { display: inline-block; animation: marquee 25s linear infinite; will-change: transform; }
        .marquee-item { display: inline-block; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--silk-deep); padding: 0 3rem; letter-spacing: 1px; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .section-eyebrow { font-family: 'Lato', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: #C4748A; margin-bottom: 1rem; display: block; }
        .section-title-line { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-bottom: 1.5rem; }
        .section-title-line::before, .section-title-line::after { content: ''; flex: 1; max-width: 80px; height: 1px; background: linear-gradient(to right, transparent, var(--silk-gold)); }
        .section-title-line::after { background: linear-gradient(to left, transparent, var(--silk-gold)); }
        .toast { position: fixed; bottom: 2rem; right: 2rem; background: var(--silk-deep); color: var(--silk-white); padding: 1rem 2rem; border-radius: 50px; font-weight: 600; box-shadow: 0 10px 30px rgba(0,0,0,0.3); z-index: 9999; animation: slideUp 0.3s ease; }
        .toast.success { background: #27ae60; }
        .toast.error { background: #c0392b; }
        @media (max-width: 900px) {
            .hero-content { grid-template-columns: 1fr; text-align: center; }
            .hero-image { display: none; }
            .hero-stats { justify-content: center; }
            .hero-stat { text-align: center; }
            .hero-text h1 { font-size: 3rem; }
            .order-body { grid-template-columns: 1fr; }
            .navbar-content { padding: 1rem; }
            .nav-links { display: none; }
            .hero::before, .hero::after { display: none; }
            .features-section { margin-top: 0; }
        }
        @media (max-width: 480px) {
            .hero-text h1 { font-size: 2.5rem; }
            .modal-content { padding: 2rem 1.5rem; }
            .hero-stats { gap: 1rem; flex-wrap: wrap; }
        }
        /* ── PETAL FLOAT — Footer ── */
        .footer.footer-v2 { padding: 0; background: linear-gradient(180deg, #FDFAF7 0%, #F8F2EC 100%); }
        .footer.footer-v2 .footer-topline { height: 3px; background: linear-gradient(90deg, transparent, rgba(196,116,138,0.5), rgba(212,175,55,0.4), transparent); }
        .footer.footer-v2 .footer-wrap { max-width: 1300px; margin: 0 auto; padding: 3.5rem 2rem 2rem; }
        .footer.footer-v2 .footer-grid { display: grid; grid-template-columns: 1.5fr 0.7fr 1fr 1.4fr; gap: 2rem; margin-bottom: 2rem; align-items: start; }
        .footer.footer-v2 .footer-logo { height: 60px; width: auto; aspect-ratio: 1 / 1; filter: drop-shadow(0 4px 12px rgba(196,116,138,0.2)); }
        .footer.footer-v2 .footer-desc { color: #9E7E8E; line-height: 1.7; margin-top: 0.8rem; max-width: 320px; font-size: 0.87rem; }
        .footer.footer-v2 .footer-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: #5D3A4A; margin-bottom: 0.9rem; }
        .footer.footer-v2 .footer-links { list-style: none; padding: 0; margin: 0; }
        .footer.footer-v2 .footer-col:nth-child(3) .footer-links { columns: 2; column-gap: 0.5rem; }
        .footer.footer-v2 .footer-link-btn { background: none; border: none; padding: 0.25rem 0; cursor: pointer; color: #9E7E8E; font-size: 0.88rem; text-align: left; transition: transform 0.2s ease, color 0.2s ease; display: inline-block; text-decoration: none; }
        .footer.footer-v2 .footer-link-btn:hover { color: #C4748A; transform: translateX(3px); }
        .footer.footer-v2 .footer-social { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
        .footer.footer-v2 .social-pill { text-decoration: none; color: #5D3A4A; border: 1px solid rgba(196,116,138,0.3); width: 38px; height: 38px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; transition: all 0.25s ease; }
        .footer.footer-v2 .social-pill svg { width: 16px; height: 16px; fill: currentColor; display: block; }
        .footer.footer-v2 .social-pill:hover { background: #C4748A; color: white; border-color: #C4748A; transform: translateY(-2px); }
        .footer.footer-v2 .footer-note { color: #9E7E8E; line-height: 1.6; margin-bottom: 0.8rem; font-size: 0.85rem; }
        .footer.footer-v2 .footer-newsletter .newsletter-form { display: flex; gap: 0.5rem; }
        .footer.footer-v2 .footer-newsletter .newsletter-input { flex: 1; padding: 0.7rem 1rem; background: white; border: 1px solid rgba(196,116,138,0.2); border-radius: 50px; color: #5D3A4A; font-size: 0.88rem; min-width: 0; }
        .footer.footer-v2 .footer-newsletter .newsletter-input::placeholder { color: #9E7E8E; }
        .footer.footer-v2 .footer-newsletter .newsletter-btn { padding: 0.7rem 1.2rem; background: linear-gradient(135deg, var(--silk-deep) 0%, #8B6914 50%, var(--silk-gold) 100%); color: white; border: none; border-radius: 50px; font-weight: 700; cursor: pointer; transition: all 0.3s; white-space: nowrap; position: relative; overflow: hidden; font-size: 0.88rem; }
        .footer.footer-v2 .footer-newsletter .newsletter-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,175,55,0.4); }
        .footer.footer-v2 .footer-mini-contact { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(196,116,138,0.12); color: #9E7E8E; font-size: 0.85rem; display: grid; gap: 0.3rem; }
        .footer.footer-v2 .footer-bottom-v2 { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-top: 1.2rem; border-top: 1px solid rgba(196,116,138,0.12); color: #9E7E8E; font-size: 0.85rem; flex-wrap: wrap; }
        .footer.footer-v2 .footer-bottom-right { display: flex; gap: 1.2rem; flex-wrap: wrap; }
        .footer.footer-v2 .footer-legal-link { color: #9E7E8E; text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
        .footer.footer-v2 .footer-legal-link:hover { color: var(--silk-gold, var(--silk-gold)); }
        @media (max-width: 1100px) { .footer.footer-v2 .footer-grid { grid-template-columns: 1.3fr 0.7fr 1fr; } .footer.footer-v2 .footer-col:nth-child(4) { grid-column: 1 / -1; border-top: 1px solid rgba(196,116,138,0.12); padding-top: 1.5rem; } }
        @media (max-width: 680px) { .footer.footer-v2 .footer-grid { grid-template-columns: 1fr 1fr; } .footer.footer-v2 .footer-col:nth-child(1), .footer.footer-v2 .footer-col:nth-child(4) { grid-column: 1 / -1; } }
        @media (max-width: 420px) { .footer.footer-v2 .footer-grid { grid-template-columns: 1fr; } .footer.footer-v2 .footer-bottom-v2 { flex-direction: column; align-items: flex-start; } }
        /* product-card position for wishlist btn */
        .product-card { position: relative; }

