/* Explain: Styles for cards, buttons, and other UI components in the space theme. - */
.lace-panel {
    position: relative;
    overflow: hidden;
}

.btn-bridal {
    min-height: 3rem;
    border-radius: var(--radius-oval);
    background: var(--primary-color);
    color: #0B0F19;
    border: none;
    padding-inline: 1.5rem;
    transition: all 300ms ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    font-weight: 700;
}

.btn-bridal:hover,
.btn-bridal:focus-visible {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.btn-veil {
    min-height: 3rem;
    border-radius: var(--radius-oval);
    background: rgba(255, 255, 255, 0.1);
    color: #FFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding-inline: 1.5rem;
    transition: all 300ms ease;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.btn-veil:hover,
.btn-veil:focus-visible {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
    color: var(--primary-color);
}

.oval-frame {
    border-radius: 48% 48% 44% 44% / 54% 54% 40% 40%;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    position: relative;
}

.oval-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 20px rgba(159, 122, 234, 0.4);
    border-radius: inherit;
    pointer-events: none;
}

.editorial-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    transition: transform 300ms ease, box-shadow 300ms ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(159, 122, 234, 0.2);
    border-color: rgba(159, 122, 234, 0.4);
}

.product-card img {
    transition: transform 600ms ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.toast-bridal {
    position: fixed;
    left: 50%;
    bottom: 1.25rem;
    z-index: 80;
    transform: translateX(-50%) translateY(1rem);
    opacity: 0;
    pointer-events: none;
    transition: all 240ms ease;
    border: 1px solid rgba(255,215,0,0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.toast-bridal.is-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.mobile-sticky-cta {
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
}