/* Detail Page PC CSS (min-width: 769px) */

/* Hero Section */
.detail-hero {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    margin-bottom: 0;
}

.detail-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), #050505);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-subtitle {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 1rem;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -1px;
    background: linear-gradient(180deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-slogan {
    font-size: 1.5rem;
    opacity: 0.9;
    margin: 15px 0;
    font-weight: 300;
}

.hero-price {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-top: 25px;
}

/* Tabs */
.detail-tabs-wrapper {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    /* Adjust if main header is fixed */
    z-index: 90;
    backdrop-filter: blur(10px);
}

.detail-tabs {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    gap: 60px;
    max-width: 1400px;
}

.detail-tabs li {
    padding: 25px 10px;
    color: #888;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.detail-tabs li:hover {
    color: #ccc;
}

.detail-tabs li.active {
    color: #fff;
}

.detail-tabs li.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Content Area */
.detail-content-area {
    padding-top: 80px;
    padding-bottom: 120px;
    max-width: 1400px;
    margin: 0 auto;
}

.content-box {
    background: #111;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Tab Content - Hidden by default */
.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-content.active {
    display: block;
}

.tab-content.show {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
    border-left: 5px solid #fff;
    padding-left: 25px;
    color: #fff;
}

.desc-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 50px;
}

/* Highlights Grid (3 Columns) */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.highlight-item {
    background: linear-gradient(145deg, #0f0f0f, #050505);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #222;
    transition: transform 0.3s;
}

.highlight-item:hover {
    transform: translateY(-5px);
    border-color: #444;
}

.highlight-item .label {
    display: block;
    color: #666;
    font-size: 1rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-item .value {
    display: block;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
}

/* Specs Table */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.spec-table th,
.spec-table td {
    padding: 20px 25px;
    border-bottom: 1px solid #222;
    color: #ccc;
    font-size: 1.05rem;
}

.spec-table th {
    width: 30%;
    color: #666;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.02);
}

.spec-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Review Form */
.review-form {
    background: #0f0f0f;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #222;
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.review-form button {
    width: 200px;
    margin-left: auto;
    display: block;
    background: #fff;
    color: #000;
    padding: 15px;
    font-weight: 700;
    transition: background 0.2s;
}

.review-form button:hover {
    background: #ddd;
}

/* Info Cards */
.info-card {
    background: #0f0f0f;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #222;
}

.info-card h3 {
    margin-top: 0;
    color: #fff;
    font-size: 1.3rem;
}

.info-card p {
    color: #888;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-official,
.btn-catalog {
    display: inline-block;
    padding: 15px 30px;
    background: #cf3030;
    color: white;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-official:hover,
.btn-catalog:hover {
    background: #a82525;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #222;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

.lb-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 2rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #555;
}

.empty-state p {
    margin: 0;
}

/* Reviews Section */
.reviews-section {
    background: #0a0a0a;
    padding: 80px 0;
    border-top: 1px solid #222;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.btn-write {
    background: #fff;
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-write:hover {
    background: #ddd;
}

.hidden {
    display: none;
}

.review-item {
    padding: 25px 0;
    border-bottom: 1px solid #222;
}

.rw-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.rw-author {
    color: #fff;
    font-weight: 600;
}

.rw-date {
    color: #555;
}

.rw-content {
    color: #ccc;
    line-height: 1.7;
}

.no-reviews {
    text-align: center;
    padding: 40px;
    color: #555;
}

.disclaimer-text {
    margin-top: 30px;
    color: #555;
    font-size: 0.9rem;
}