/* Explain: Styles for corporate UI elements like buttons, cards, and chips. */
/* Corporate UI Components */
.corporate-panel {
    background-color: var(--primary-color);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-default);
    box-shadow: var(--shadow-card);
}

.btn-bridal {
    min-height: 3rem;
    border-radius: var(--radius-default);
    background: var(--secondary-color);
    color: #ffffff;
    border: none;
    padding-inline: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(217, 119, 6, 0.2), 0 2px 4px -2px rgba(217, 119, 6, 0.1);
}
.btn-bridal:hover, .btn-bridal:focus-visible {
    background: #ea580c;
    transform: translateY(-1px);
}

.btn-veil {
    min-height: 3rem;
    border-radius: var(--radius-default);
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding-inline: 1.5rem;
    font-weight: 600;
    transition: all 200ms ease;
    cursor: pointer;
}
.btn-veil:hover, .btn-veil:focus-visible {
    background: var(--primary-color);
    color: #ffffff;
}

.oval-frame {
    border-radius: var(--radius-default);
    border: none;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.editorial-card {
    border: 1px solid var(--border-color);
    background: var(--surface-color);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-default);
}

.product-card img {
    transition: transform 300ms ease;
}
.product-card:hover img {
    transform: scale(1.02);
}

.gallery-thumb {
    border: 2px solid transparent;
    opacity: 0.7;
    transition: all 200ms ease;
    cursor: pointer;
    border-radius: var(--radius-default);
}
.gallery-thumb.is-active, .gallery-thumb:hover, .gallery-thumb:focus-visible {
    opacity: 1;
    border-color: var(--primary-color);
}

.option-chip {
    min-height: 2.75rem;
    border-radius: var(--radius-default);
    border: 1px solid var(--border-color);
    background: var(--surface-warm);
    padding: 0.6rem 1rem;
    cursor: pointer;
    transition: all 200ms ease;
    font-weight: 500;
}
.option-chip.is-selected {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #ffffff;
}

.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-radius: var(--radius-default);
}
.toast-bridal.is-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

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