/* Custom Deckport Theme Overrides */
/* Standard luxury theme with visibility improvements */

/* Button fixes - solid colors, no bottom-line design */


/* Checkbox visibility on dark backgrounds */
.checkbox {
    border-color: oklch(70% 0.05 260) !important;
    border-width: 2px !important;
}

.checkbox:checked {
    background-color: oklch(74.6% 0.16 232.661) !important;
    border-color: oklch(74.6% 0.16 232.661) !important;
}

/* Legal checkbox wrapper with better visibility */
.legal-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: oklch(25% 0.01 260);
    border-radius: 0.5rem;
    border: 1px solid oklch(35% 0.02 260);
}

.legal-checkbox:hover {
    background: oklch(28% 0.01 260);
}

.legal-checkbox label {
    cursor: pointer;
    line-height: 1.5;
}

.legal-checkbox a {
    color: oklch(74.6% 0.16 232.661);
    text-decoration: underline;
}

/* Registration form enhancements */
.phone-input-group {
    display: flex;
    gap: 0.5rem;
}

.phone-input-group .country-code {
    width: 6rem;
    flex-shrink: 0;
}

/* Modal improvements */
.modal-box {
    max-height: 80vh;
    overflow-y: auto;
}

.legal-content {
    max-height: 60vh;
    overflow-y: auto;
    padding: 1rem;
    background: var(--color-base-200);
    border-radius: var(--radius-box);
}

/* Card page top padding */
.cards-container {
    padding-top: 2rem;
}

/* Shop product cards - 1:1 aspect ratio images */
.product-image-square {
    aspect-ratio: 1 / 1;
    width: 100%;
    object-fit: cover;
}

.product-image-container {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Video grid for Deckport TV */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.video-card {
    background: var(--color-base-100);
    border-radius: var(--radius-box);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.video-thumbnail {
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
    position: relative;
}

.video-duration {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Hero section video background styles */
.hero-video-bg {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-video-bg .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            oklch(14% 0.004 285 / 0.9) 0%,
            oklch(20% 0.004 308 / 0.7) 50%,
            oklch(14% 0.004 285 / 0.85) 100%);
    z-index: 1;
}

.hero-video-bg .hero-content {
    position: relative;
    z-index: 2;
}