/* ============================================
   WHATNOT PAGE STYLES
   ============================================ */

/* Whatnot Orange */
:root {
    --whatnot-orange: #ff5c00;
    --whatnot-orange-hover: #e65400;
}

/* Hero */
.whatnot-hero {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #1a365d 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.whatnot-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.whatnot-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 92, 0, 0.15) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.whatnot-hero .hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.whatnot-hero .hero-text h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.1;
}

.whatnot-hero .hero-text h1 .highlight {
    color: var(--whatnot-orange);
}

.whatnot-hero .hero-text p {
    font-size: 1.15rem;
    color: var(--gray-400);
    margin-bottom: 32px;
    max-width: 480px;
}

/* Live Badge */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 92, 0, 0.15);
    border: 1px solid var(--whatnot-orange);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.live-dot {
    width: 12px;
    height: 12px;
    background: var(--whatnot-orange);
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 92, 0, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(255, 92, 0, 0); }
}

.live-badge span {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--whatnot-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-whatnot {
    background: var(--whatnot-orange);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-whatnot:hover {
    background: var(--whatnot-orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 92, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

/* Next Show Card */
.next-show-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.next-show-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--whatnot-orange), var(--yellow-accent));
}

.next-show-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--whatnot-orange);
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.next-show-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 1px;
    color: var(--navy-deep);
    margin-bottom: 20px;
}

.show-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.show-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.show-detail svg {
    color: var(--blue-primary);
}

/* Countdown */
.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.countdown-item {
    text-align: center;
    background: var(--gray-50);
    padding: 16px 8px;
    border-radius: var(--radius-lg);
}

.countdown-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--navy-deep);
    line-height: 1;
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    margin-top: 4px;
}

.remind-btn {
    width: 100%;
    padding: 14px;
    background: var(--blue-light);
    border: none;
    border-radius: var(--radius-md);
    color: var(--blue-primary);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.remind-btn:hover {
    background: var(--blue-primary);
    color: var(--white);
}

/* Offers Section */
.offers {
    padding: 80px 0;
    background: var(--white);
}

.offers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.offer-card {
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.offer-card.new {
    background: linear-gradient(135deg, #0d9488, #14b8a6);
}

.offer-card.returning {
    background: linear-gradient(135deg, var(--blue-primary), #3b82f6);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.offer-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.offer-discount {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 16px;
    color: var(--yellow-accent);
}

.offer-card p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.6;
}

.offer-code {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0,0,0,0.2);
    padding: 12px 20px;
    border-radius: var(--radius-md);
}

.offer-code span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 3px;
}

.copy-btn {
    margin-left: auto;
    background: rgba(255,255,255,0.2);
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    color: var(--white);
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.copy-btn:hover {
    background: rgba(255,255,255,0.3);
}

/* Offer How-To Section */
.offer-how {
    background: rgba(0,0,0,0.15);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 16px;
}

.offer-how .how-label {
    font-weight: 700;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-how ol {
    margin: 0;
    padding-left: 20px;
}

.offer-how li {
    font-size: 0.9rem;
    margin-bottom: 6px;
    opacity: 0.95;
}

.offer-how li:last-child {
    margin-bottom: 0;
}

.offer-terms {
    font-size: 0.75rem !important;
    opacity: 0.7 !important;
    margin-bottom: 0 !important;
    font-style: italic;
}

/* Individual Promo Items */
.offer-promo {
    background: rgba(0,0,0,0.15);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 12px;
}

.offer-promo:last-of-type {
    margin-bottom: 0;
}

.promo-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--yellow-accent);
}

.promo-title svg {
    flex-shrink: 0;
}

.offer-promo p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.95;
    line-height: 1.5;
}

/* Combined Shipping Info Box */
.shipping-info-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, var(--navy-deep), var(--navy));
    border-radius: var(--radius-xl);
    padding: 32px 40px;
    margin-top: 32px;
    color: var(--white);
}

.shipping-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow-accent);
}

.shipping-text h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: var(--yellow-accent);
}

.shipping-text p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .shipping-info-box {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }
    
    .shipping-icon {
        margin: 0 auto;
    }
}

/* Schedule Section */
.schedule {
    padding: 80px 0;
    background: var(--off-white);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.schedule-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.schedule-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--whatnot-orange);
}

.schedule-card.featured {
    border-color: var(--whatnot-orange);
}

.schedule-card.featured::before {
    content: 'NEXT SHOW';
    position: absolute;
    top: 16px;
    right: -28px;
    background: var(--whatnot-orange);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 32px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.schedule-day {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--navy-deep);
    margin-bottom: 4px;
}

.schedule-date {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.schedule-time {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gray-50);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.schedule-time svg {
    color: var(--blue-primary);
}

.schedule-time span {
    font-weight: 600;
    color: var(--navy-deep);
}

.schedule-theme {
    font-size: 0.9rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
}

.schedule-theme-tag {
    background: var(--blue-light);
    color: var(--blue-primary);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

/* Preview Section */
.preview-section {
    padding: 80px 0;
    background: var(--white);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.preview-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.preview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.preview-card-image {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-50));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 0.85rem;
}

.preview-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-card-info {
    padding: 12px;
    text-align: center;
}

.preview-card-info p {
    font-size: 0.8rem;
    color: var(--gray-600);
    line-height: 1.4;
}

/* Why Whatnot */
.why-whatnot {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy-deep), var(--navy));
    color: var(--white);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.why-text > p {
    color: var(--gray-400);
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.8;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.why-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 92, 0, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--whatnot-orange);
}

.why-feature h4 {
    font-weight: 700;
    margin-bottom: 4px;
}

.why-feature p {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin: 0;
}

.why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-xl);
    padding: 48px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--whatnot-orange);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 8px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--off-white);
}

.cta-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 64px;
    text-align: center;
    border: 2px solid var(--whatnot-orange);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--whatnot-orange), var(--yellow-accent), var(--whatnot-orange));
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: var(--navy-deep);
    margin-bottom: 16px;
}

.cta-box p {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Mobile */
@media (max-width: 1024px) {
    .whatnot-hero .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .whatnot-hero .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .next-show-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .why-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .whatnot-hero .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .countdown {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .cta-box {
        padding: 40px 24px;
    }
    
    .show-buttons {
        flex-direction: column;
    }
}

/* Show Buttons Container */
.show-buttons {
    display: flex;
    gap: 12px;
}

.show-buttons .remind-btn {
    flex: 1;
}

/* Preview Button */
.preview-btn {
    flex: 1;
    padding: 14px;
    background: var(--whatnot-orange);
    border: none;
    border-radius: var(--radius-md);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.preview-btn:hover {
    background: var(--whatnot-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 92, 0, 0.3);
}

/* Preview Modal */
.preview-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.preview-modal.open {
    display: flex;
}

.preview-modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.preview-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid var(--gray-100);
}

.preview-modal-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--navy-deep);
    margin: 0;
}

.modal-close {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--gray-50);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}

.preview-modal-body {
    padding: 28px;
    overflow-y: auto;
}

.preview-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.preview-card-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.preview-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: var(--whatnot-orange);
}

/* Card Flip Container */
.card-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    perspective: 1000px;
}

.card-flipper {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
    cursor: pointer;
}

.card-flipper.flipped {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-50));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 0.8rem;
    overflow: hidden;
}

.card-front img, .card-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--gray-50), var(--gray-200));
}

.flip-hint {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.7rem;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 5;
}

.card-image-container:hover .flip-hint {
    opacity: 1;
}

/* Zoom Button on Card */
.zoom-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-deep);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 10;
    transition: all 0.2s ease;
}

.zoom-btn:hover {
    background: var(--blue-primary);
    color: var(--white);
    transform: scale(1.1);
}

.zoom-btn svg {
    width: 18px;
    height: 18px;
}

.preview-card-info {
    padding: 12px;
}

.preview-card-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--navy-deep);
    margin-bottom: 4px;
}

.preview-card-details {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Zoom Modal */
.zoom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 1100;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.zoom-modal.open {
    display: flex;
}

.zoom-modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
}

.zoom-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.zoom-close:hover {
    color: var(--whatnot-orange);
}

.zoom-image-wrapper {
    overflow: hidden;
    border-radius: 8px;
    background: var(--gray-900);
    max-width: 500px;
    max-height: 70vh;
}

.zoom-image-wrapper img {
    display: block;
    max-width: 100%;
    max-height: 70vh;
    transition: transform 0.2s ease;
    transform-origin: center center;
    cursor: grab;
}

.zoom-image-wrapper img:active {
    cursor: grabbing;
}

.zoom-controls {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.zoom-control-btn {
    padding: 10px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.zoom-control-btn:hover {
    background: rgba(255,255,255,0.2);
}

.zoom-control-btn svg {
    width: 18px;
    height: 18px;
}

.zoom-control-btn.primary {
    background: var(--whatnot-orange);
    border-color: var(--whatnot-orange);
}

.zoom-control-btn.primary:hover {
    background: var(--whatnot-orange-hover);
}

.zoom-level {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    min-width: 50px;
    text-align: center;
}

@media (max-width: 600px) {
    .preview-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .preview-modal-content {
        max-height: 90vh;
    }
    
    .zoom-controls {
        flex-direction: column;
        gap: 8px;
    }
    
    .zoom-control-btn {
        width: 100%;
        justify-content: center;
    }
}
