/* Official Pandora Boutique-Storefront Design System */
:root {
    --store-cream-bg: #faf3f1; /* Warm champagne cream ambient wall paint */
    --store-pink: #e3a8ad;     /* Signature dusty rose back-wall highlight */
    --store-pink-dark: #cc9196;
    --store-black: #000000;     /* Solid matte black logo and details */
    --store-white: #ffffff;     /* Crisp display-tray white */
    --store-gray-border: rgba(227, 168, 173, 0.4); /* Elegant pinkish-gray border */
    
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-main);
    background-color: var(--store-cream-bg);
    color: var(--store-black);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Elegant Boutique Top Bar */
.top-bar {
    background-color: var(--store-white);
    padding: 16px 20px;
    display: flex;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1.5px solid var(--store-pink);
    box-shadow: 0 4px 15px rgba(227, 168, 173, 0.08);
}

.secure-badge {
    color: var(--store-black);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.secure-badge svg {
    color: var(--store-black);
}

/* Mobile-Focused Container */
.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 24px 16px 40px;
}

/* Hero Section - Boutique Display Panel styling */
.hero-card {
    background: var(--store-white);
    border-radius: 16px;
    padding: 0;
    text-align: center;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--store-gray-border);
    box-shadow: 0 15px 35px rgba(227, 168, 173, 0.12);
}

.hero-image-container {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
    background-color: var(--store-cream-bg);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Seamless soft gradient fade */
.hero-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
}

.hero-content {
    padding: 20px 24px 34px;
}

/* Subheadline Layout */
.sub-headline {
    margin-bottom: 28px;
    padding: 0 8px;
    line-height: 1.5;
    text-align: center;
}

.hook-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--store-black);
    letter-spacing: -0.2px;
}

/* Choice Container */
.choice-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 12px;
}

/* Boutique Gift-Card-Style Call-to-Action Button */
.cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 18px 24px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background-color: var(--store-pink);
    color: var(--store-black);
    border: 2px solid var(--store-black); /* High-contrast matte black border */
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(227, 168, 173, 0.25), 0 0 14px rgba(255, 255, 255, 0.65); /* Ambient storefront backlit halo box glow */
    transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    background-color: var(--store-pink-dark);
    box-shadow: 0 6px 20px rgba(227, 168, 173, 0.35), 0 0 16px rgba(255, 255, 255, 0.85); /* Slightly brighter hover glow */
}

.cta-button:active {
    transform: scale(0.98);
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.cta-value {
    font-family: var(--font-main);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -1px;
    color: var(--store-black);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9); /* Backlit storefront halo text shadow */
}

.cta-text {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--store-black);
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.8); /* Backlit storefront halo text shadow */
}

/* Boutique-Style Social Proof Ticker */
.social-proof-ticker {
    background-color: var(--store-white);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    border: 1px solid var(--store-gray-border);
    margin-bottom: 34px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(227, 168, 173, 0.04);
}

.ticker-content {
    display: inline-block;
    animation: ticker 300s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 28px;
    color: #4a4a4f;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1px;
}

.ticker-item strong {
    color: var(--store-black);
    font-weight: 700;
}

.ticker-time {
    color: #9c9ca3;
    font-size: 0.75rem;
    margin-left: 6px;
    font-weight: 400;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Step-By-Step Instructions - Retail Casing Styling */
.info-section {
    margin-bottom: 44px;
}

.info-section h3,
.faq-section h3 {
    text-align: center;
    margin-bottom: 24px;
    color: var(--store-black);
    font-family: var(--font-main);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 12px;
}

/* Solid pink bottom dividing accent line */
.info-section h3::after,
.faq-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--store-pink);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.step-card {
    background: var(--store-white);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid var(--store-gray-border);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.step-card:hover {
    transform: translateY(-1px);
    border-color: var(--store-pink);
}

/* Solid black circular node holding pink number (Store Back-Wall inspired) */
.step-number {
    background-color: var(--store-black);
    color: var(--store-pink);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-main);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.step-card h4 {
    margin-bottom: 4px;
    font-size: 1.05rem;
    color: var(--store-black);
    font-weight: 700;
    letter-spacing: -0.1px;
}

.step-card p {
    font-size: 0.88rem;
    color: #5d5d66;
    margin: 0;
    line-height: 1.5;
}

/* FAQ Accordion Section */
.faq-section {
    margin-bottom: 44px;
}

.faq-item {
    background: var(--store-white);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--store-gray-border);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 18px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--store-black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
}

.faq-question::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--store-black);
    font-weight: 400;
    transition: transform 0.25s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    background-color: var(--store-white);
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding-bottom: 18px;
    border-top: 1px solid var(--store-gray-border);
}

.faq-answer p {
    font-size: 0.88rem;
    color: #5d5d66;
    margin-top: 14px;
    line-height: 1.6;
}

/* Footer Section */
.footer {
    text-align: center;
    padding: 30px 20px;
    font-size: 0.75rem;
    color: #888890;
    border-top: 1px solid var(--store-pink);
    background-color: var(--store-white);
}

.footer p {
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Professional Notification Toasts */
.toast-container {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 420px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background-color: var(--store-white);
    color: var(--store-black);
    padding: 14px 18px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(227, 168, 173, 0.15);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--store-gray-border);
    border-left: 4px solid var(--store-black);
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15) forwards;
    opacity: 0;
}

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

.toast-status-icon {
    font-weight: 700;
    color: var(--store-black);
    font-size: 1rem;
}

.toast strong {
    color: var(--store-black);
    font-weight: 700;
}

.toast-time {
    color: #9c9ca3;
    font-size: 0.75rem;
    margin-left: auto;
    font-weight: 600;
}
