/* Reset & Base */
.product-page {
    background: #f8fafc;
    min-height: 100vh;
    padding-bottom: 4rem;
}

/* Breadcrumb */
.product-breadcrumb {
    padding: 1rem 0;
    font-size: 0.875rem;
    color: #64748b;
}
.product-breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}
.product-breadcrumb a:hover {
    color: var(--yt-red);
}
.product-breadcrumb span {
    margin: 0 0.5rem;
}

/* Main Layout */
.product-main {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

/* Gallery Section */
.product-gallery {
    background: white;
    border-radius: 14px;
    padding: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.gallery-main {
    position: relative;
    aspect-ratio: 16/7;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 10px;
    overflow: hidden;
    cursor: zoom-in;
    margin-bottom: 0.5rem;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-main .no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #475569;
    font-size: 4rem;
}

.gallery-zoom-hint {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity 0.2s;
}
.gallery-main:hover .gallery-zoom-hint {
    opacity: 1;
}

/* Gallery Navigation Arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 1rem;
    opacity: 0;
    transition: all 0.2s;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.gallery-main:hover .gallery-nav {
    opacity: 1;
}
.gallery-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.gallery-nav.prev {
    left: 12px;
}
.gallery-nav.next {
    right: 12px;
}
.gallery-nav:disabled {
    opacity: 0.3 !important;
    cursor: not-allowed;
}
.gallery-nav:disabled:hover {
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
}

.gallery-thumbs {
    display: flex;
    gap: 0.35rem;
    overflow-x: auto;
    padding-bottom: 0.15rem;
}

.gallery-thumb {
    width: 50px;
    height: 34px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.2s;
    flex-shrink: 0;
}
.gallery-thumb:hover {
    opacity: 0.8;
}
.gallery-thumb.active {
    border-color: var(--yt-red);
    opacity: 1;
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Section */
.product-video {
    margin-top: 0.5rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 0.5rem;
}
.product-video-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.product-video-title i {
    color: var(--yt-red);
}
.video-wrapper {
    position: relative;
    padding-bottom: 45%;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Video Gallery Thumbnails */
.video-thumbs {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}
.video-thumb {
    width: 80px;
    height: 45px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.7;
    transition: all 0.2s;
    flex-shrink: 0;
    position: relative;
}
.video-thumb:hover {
    opacity: 0.9;
}
.video-thumb.active {
    border-color: var(--yt-red);
    opacity: 1;
}
.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-thumb::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: rgba(255,0,0,0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-thumb::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-45%, -50%);
    z-index: 1;
    border-left: 6px solid white;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* Sidebar - Product Info */
.product-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-info-card {
    background: white;
    border-radius: 14px;
    padding: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* Badge */
.product-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.badge {
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.badge-featured {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1a1a1a;
}
.badge-launch {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}
.badge-promo {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}
.badge-coming-soon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

/* Coming Soon Section */
.coming-soon-card {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 2px solid #3b82f6;
    border-radius: 14px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1rem;
}
.coming-soon-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.coming-soon-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.5rem;
}
.coming-soon-text {
    color: #3b82f6;
    font-size: 0.95rem;
    line-height: 1.6;
}
.coming-soon-features {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.coming-soon-features span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #1e40af;
}
.coming-soon-features i {
    color: #3b82f6;
}

/* Title */
.product-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

/* Meta */
.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    color: #64748b;
}
.product-meta-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.product-meta-item i {
    font-size: 0.75rem;
}
.product-rating {
    color: #fbbf24;
}

/* Short desc */
.product-short-desc {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

/* Price Card */
.price-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    position: relative;
    overflow: hidden;
}

.price-card.launch {
    background: linear-gradient(135deg, #faf5ff, #f3e8ff);
    border: 2px solid #c4b5fd;
}
.price-card.promo {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid #86efac;
}

/* Launch Banner */
.launch-banner {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 0.5rem 1rem;
    margin: -1rem -1rem 1rem -1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
}
.launch-banner i {
    font-size: 1rem;
}
.launch-discount {
    margin-left: auto;
    background: rgba(255,255,255,0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 0.5rem 1rem;
    margin: -1rem -1rem 1rem -1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
}
.promo-banner i {
    font-size: 1rem;
}
.promo-discount {
    margin-left: auto;
    background: rgba(255,255,255,0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
}

/* Launch Info */
.launch-info {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px dashed #c4b5fd;
    font-size: 0.75rem;
    color: #7c3aed;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.launch-info i {
    font-size: 0.7rem;
}

.price-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.price-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.price-timer {
    font-size: 0.7rem;
    color: #7c3aed;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.price-timer.promo {
    color: #16a34a;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}
.price-current {
    font-size: 1.9rem;
    font-weight: 800;
    color: #0f172a;
}
.price-current.launch {
    color: #7c3aed;
}
.price-current.promo {
    color: #16a34a;
}
.price-old {
    font-size: 1rem;
    color: #94a3b8;
    text-decoration: line-through;
}
.price-discount {
    background: #7c3aed;
    color: white;
    padding: 0.2rem 0.4rem;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 700;
}
.price-discount.promo {
    background: #16a34a;
}

/* Price Breakdown */
.price-breakdown {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed #cbd5e1;
    font-size: 0.8rem;
}
.breakdown-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.3rem;
}
.breakdown-label {
    color: #64748b;
}
.breakdown-value {
    color: #94a3b8;
    text-decoration: line-through;
}
.breakdown-line.breakdown-discount .breakdown-label {
    color: #16a34a;
}
.breakdown-line.breakdown-discount .breakdown-value {
    color: #16a34a;
    text-decoration: none;
    font-weight: 600;
}

/* Pricing Options */
.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.pricing-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.85rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}
.pricing-option:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}
.pricing-option.selected {
    border-color: var(--yt-red);
    background: #fef2f2;
}
.pricing-option.has-launch {
    border-color: #c4b5fd;
}
.pricing-option.has-launch.selected {
    border-color: #7c3aed;
    background: #faf5ff;
}
.pricing-option.has-promo {
    border-color: #86efac;
}
.pricing-option.has-promo.selected {
    border-color: #16a34a;
    background: #f0fdf4;
}

.pricing-option-badge {
    position: absolute;
    top: -8px;
    right: 12px;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
}
.pricing-option-badge.popular {
    background: var(--yt-red);
    color: white;
}
.pricing-option-badge.launch {
    background: #7c3aed;
    color: white;
}
.pricing-option-badge.promo {
    background: #16a34a;
    color: white;
}

.pricing-option-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-radio {
    width: 16px;
    height: 16px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.pricing-option.selected .pricing-radio {
    border-color: var(--yt-red);
}
.pricing-option.selected .pricing-radio::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--yt-red);
    border-radius: 50%;
}
.pricing-option.has-launch.selected .pricing-radio {
    border-color: #7c3aed;
}
.pricing-option.has-launch.selected .pricing-radio::after {
    background: #7c3aed;
}
.pricing-option.has-promo.selected .pricing-radio {
    border-color: #16a34a;
}
.pricing-option.has-promo.selected .pricing-radio::after {
    background: #16a34a;
}

.pricing-option-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 0.1rem 0;
}
.pricing-option-info span {
    font-size: 0.7rem;
    color: #64748b;
}

.pricing-option-price {
    text-align: right;
}
.pricing-option-price .current {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
}
.pricing-option-price .old {
    font-size: 0.75rem;
    color: #94a3b8;
    text-decoration: line-through;
    display: block;
}

/* Seats Selector */
.seats-selector {
    background: #f8fafc;
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
}
.seats-selector-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.seats-selector-title i {
    color: var(--yt-red);
}
.seats-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
}
.seat-option {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.5rem 0.4rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}
.seat-option:hover {
    border-color: #cbd5e1;
}
.seat-option.selected {
    border-color: var(--yt-red);
    background: #fef2f2;
}
.seat-option-count {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
}
.seat-option-label {
    font-size: 0.65rem;
    color: #64748b;
}
.seat-option-price {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--yt-red);
    margin-top: 0.15rem;
}
.seat-option-savings {
    font-size: 0.6rem;
    color: #16a34a;
    background: #dcfce7;
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
    font-weight: 600;
    margin-top: 0.15rem;
    display: inline-block;
}

/* Buy Button */
.buy-button {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: all 0.2s;
}
.buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

/* Guarantees */
.guarantees {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}
.guarantee {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: #64748b;
}
.guarantee i {
    color: #22c55e;
}

/* Owned Banner */
.owned-banner {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}
.owned-banner i {
    color: #16a34a;
}
.owned-banner span {
    color: #166534;
    font-weight: 500;
}
.owned-banner a {
    margin-left: auto;
    color: #16a34a;
    font-weight: 600;
    text-decoration: none;
}
.owned-banner a:hover {
    text-decoration: underline;
}

/* Content Sections */
.product-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.section-title i {
    color: var(--yt-red);
}

/* Description */
.product-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #334155;
}

/* HTML Content from WYSIWYG Editor */
.html-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #334155;
    white-space: normal;
}

.html-content p {
    margin-bottom: 1rem;
}

.html-content h2,
.html-content h3,
.html-content h4 {
    color: #0f172a;
    margin: 1.5rem 0 0.75rem;
    font-weight: 600;
}

.html-content h2 { font-size: 1.5rem; }
.html-content h3 { font-size: 1.25rem; }
.html-content h4 { font-size: 1.1rem; }

.html-content ul,
.html-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.html-content li {
    margin-bottom: 0.5rem;
}

.html-content ul li {
    list-style-type: disc;
}

.html-content ol li {
    list-style-type: decimal;
}

.html-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.html-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.html-content table th,
.html-content table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.html-content table th {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    font-weight: 600;
    color: #0f172a;
}

.html-content table tr:hover {
    background: #f8fafc;
}

.html-content table tr:last-child td {
    border-bottom: none;
}

.html-content blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--yt-red);
    background: #f8fafc;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #475569;
}

.html-content pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1rem 0;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.875rem;
}

.html-content code {
    background: #f1f5f9;
    color: var(--yt-red);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.875rem;
}

.html-content pre code {
    background: none;
    color: inherit;
    padding: 0;
}

.html-content a {
    color: var(--yt-red);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.html-content a:hover {
    border-bottom-color: var(--yt-red);
}

.html-content hr {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 2rem 0;
}

/* Features HTML */
.features-html {
    font-size: 1rem;
    line-height: 1.8;
}

.features-html ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-html ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #f8fafc;
    border-radius: 8px;
    margin: 0;
}

.features-html ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--yt-red);
    flex-shrink: 0;
    margin-top: 0.2rem;
    font-size: 0.8rem;
}

@media (max-width: 640px) {
    .features-html ul {
        grid-template-columns: 1fr;
    }
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #f8fafc;
    border-radius: 8px;
}
.feature-item i {
    color: var(--yt-red);
    margin-top: 0.2rem;
    font-size: 0.8rem;
}
.feature-text {
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.4;
}
.feature-section-title {
    grid-column: 1 / -1;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

/* Reviews */
.reviews-summary {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}
.reviews-score {
    text-align: center;
}
.reviews-score-number {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}
.reviews-score-stars {
    color: #fbbf24;
    margin: 0.5rem 0;
}
.reviews-score-count {
    font-size: 0.85rem;
    color: #64748b;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.review-card {
    padding: 1.25rem;
    background: #f8fafc;
    border-radius: 12px;
}
.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--yt-red), #ff4444);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}
.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.review-info {
    flex: 1;
}
.review-author {
    font-weight: 600;
    color: #0f172a;
    font-size: 0.9rem;
}
.review-date {
    font-size: 0.75rem;
    color: #94a3b8;
}
.review-rating {
    color: #fbbf24;
    font-size: 0.85rem;
}
.review-card.featured {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border: 1px solid #fcd34d;
}
.review-featured-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}
.review-title {
    font-weight: 600;
    color: #0f172a;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.review-content {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
}
.review-admin-response {
    margin-top: 1rem;
    padding: 1rem;
    background: #eff6ff;
    border-left: 3px solid #3b82f6;
    border-radius: 0 8px 8px 0;
}
.review-admin-response-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.review-admin-response p {
    font-size: 0.85rem;
    color: #1e40af;
    margin: 0;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    color: white;
    margin-bottom: 1.5rem;
}
.cta-section h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.cta-section p {
    color: #94a3b8;
    margin-bottom: 2rem;
}
.cta-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}
.cta-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.25rem;
    text-decoration: none;
    color: white;
    transition: all 0.2s;
}
.cta-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}
.cta-card-icon {
    font-size: 1.5rem;
    color: var(--yt-red);
    margin-bottom: 0.5rem;
}
.cta-card-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.cta-card-subtitle {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 0.75rem;
}
.cta-card-price {
    font-size: 1.25rem;
    font-weight: 700;
}
.cta-card-price.launch {
    color: #a78bfa;
}
.cta-card-price.promo {
    color: #4ade80;
}
.cta-card-price .old {
    font-size: 0.85rem;
    color: #64748b;
    text-decoration: line-through;
    display: block;
}
.cta-guarantees {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.cta-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #94a3b8;
}
.cta-guarantee i {
    color: #4ade80;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.lightbox.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}
.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}
.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 1.25rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
}
.lightbox-nav:hover {
    background: rgba(255,255,255,0.2);
}
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }
.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Review Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 450px;
    width: 90%;
}
.modal-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.modal-content h3 i {
    color: var(--yt-red);
}
.star-rating {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.star-rating i {
    font-size: 1.75rem;
    color: #e2e8f0;
    cursor: pointer;
    transition: color 0.2s;
}
.star-rating i:hover,
.star-rating i.active {
    color: #fbbf24;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #334155;
}
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}
.form-group textarea:focus {
    outline: none;
    border-color: var(--yt-red);
}
.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.modal-actions .btn {
    flex: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .product-main {
        grid-template-columns: 1fr;
    }
    .product-sidebar {
        order: -1;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .product-section {
        padding: 1.5rem;
    }
    .cta-section {
        padding: 2rem 1.5rem;
    }
    .guarantees {
        flex-direction: column;
        gap: 0.5rem;
    }
    .reviews-summary {
        flex-direction: column;
        text-align: center;
    }
    .seats-options {
        grid-template-columns: 1fr;
    }
}
