﻿/* =====================================================================
   TESTIMONIALS — EDITORIAL MAGAZINE
   ===================================================================== */

.testimonials-editorial {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

/* Diagonal split background */
.testimonials-editorial .diagonal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 50%, #1e293b 50%);
    z-index: 0;
}

/* Decorative circles */
.testimonials-editorial .deco-circles {
    position: absolute;
    top: 0;
    right: 0;
    padding: 3rem;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

.testimonials-editorial .container {
    position: relative;
    z-index: 2;
}

/* Header layout */
.editorial-header {
    margin-bottom: 3rem;
}

.section-label {
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.editorial-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
}

.editorial-lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.6;
}

/* Testimonial cards */
.testimonial-card {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: rotate(-1deg) scale(1.02);
}

/* Image side */
.testimonial-image-side {
    position: relative;
    min-height: 300px;
}

.testimonial-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}

.testimonial-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.live-text {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* Content side */
.testimonial-content-side {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-icon {
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    border: none;
    padding: 0;
}

.testimonial-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.testimonial-title {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.testimonial-author {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* =====================================================================
   CATEGORIES — CINEMA POLAROID STRIP
   ===================================================================== */

.categories-cinema {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    background: #f8f9fa;
}

/* Dot pattern background */
.categories-cinema .dot-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#000000 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
    pointer-events: none;
}

.categories-cinema .container {
    position: relative;
    z-index: 1;
}

/* Header */
.cinema-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.cinema-label {
    text-transform: uppercase;
    color: #6b7280;
    font-weight: 700;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.cinema-title {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
    margin: 0;
}

.btn-view-all {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border: 2px solid #1f2937;
    border-radius: 9999px;
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #1f2937;
    color: #ffffff;
}

@media (min-width: 768px) {
    .btn-view-all {
        display: inline-flex;
    }
}

/* Film strip wrapper */
.film-strip-wrapper {
    position: relative;
}

/* Film perforations */
.film-perforations {
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.film-perforations:last-child {
    margin-bottom: 0;
    margin-top: 1rem;
}

.perforation {
    width: 8px;
    height: 12px;
    background: #1f2937;
    border-radius: 2px;
}

/* Polaroid cards */
.category-polaroid {
    background: #ffffff;
    padding: 0.75rem;
    padding-bottom: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.category-polaroid:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}

/* Tape effect */
.polaroid-tape {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    width: 80px;
    height: 25px;
    margin-top: -12px;
    background: repeating-linear-gradient(
        45deg,
        #fbbf24,
        #fbbf24 10px,
        #f59e0b 10px,
        #f59e0b 20px
    );
    opacity: 0.6;
    border-radius: 2px;
    z-index: 2;
}

/* Polaroid image area */
.polaroid-image {
    position: relative;
    height: 180px;
    border-radius: 0.375rem;
    overflow: hidden;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.category-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 3rem;
    color: #ffffff;
    opacity: 0.5;
}

.category-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.category-name-overlay h5 {
    color: #ffffff;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Caption area */
.polaroid-caption {
    text-align: center;
}

.auction-count {
    font-family: 'Courier New', monospace;
    font-style: italic;
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* Buttons */
.btn-bid-now,
.btn-login {
    width: 100%;
    border-radius: 9999px;
    font-weight: 600;
    padding: 0.625rem 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-bid-now {
    background: #111827;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.btn-bid-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3b82f6;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 0;
}

.btn-bid-now:hover::before {
    transform: translateX(0);
}

.btn-bid-now span {
    position: relative;
    z-index: 1;
}

.btn-login {
    background: transparent;
    color: #374151;
    border: 2px solid #d1d5db;
}

.btn-login:hover {
    border-color: #111827;
    color: #111827;
}

.btn-login i {
    margin-right: 0.5rem;
}

/* Utility */
@media (max-width: 991.98px) {
    .editorial-title {
        font-size: 2.5rem;
    }
    
    .cinema-title {
        font-size: 2rem;
    }
    
    .testimonial-image-side {
        min-height: 200px;
    }
}