/* Detail Page Styles */

/* Main Layout Grid */
.detail-main-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: start;
}

/* Left Column - Product Info */
.detail-left-column {
    display: flex;
    flex-direction: column;
}

/* Product Image Container */
.detail-product-image {
    background: #161d24;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 2rem;
}

.detail-product-image img {
    width: 100%;
    object-fit: contain;
    background: #0e1416;
    padding: 1rem;
}

/* Product Title */
.detail-product-title {
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    font-size: 2rem;
    line-height: 1.3;
}

/* Meta Info Box */
.detail-meta-info {
    background: #161d24;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.detail-meta-item {
    display: flex;
    flex-direction: column;
}

.detail-meta-label {
    color: #7a8a94;
    margin: 0 0 0.3rem 0;
    font-size: 0.75rem;
}

.detail-meta-value {
    color: #ffffff;
    font-weight: bold;
    margin: 0;
    font-size: 0.9rem;
}

/* Price & Buttons Container */
.detail-button-section {
    display: grid;
    gap: 0.8rem;
}

.detail-price-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    align-items: center;
}

.detail-price-display {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.detail-price-top {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.detail-current-price {
    color: #1b9e77;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.detail-discount-badge {
    background: rgba(27, 158, 119, 0.2);
    color: #1b9e77;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.75rem;
}

.detail-original-price {
    color: #7a8a94;
    text-decoration: line-through;
    font-size: 0.85rem;
    margin: 0;
}

.detail-add-to-cart-btn {
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    height: 100% !important;
}

.detail-gift-btn {
    font-size: 1rem;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 2px solid #1b9e77;
    color: #1b9e77;
    font-weight: bold;
    text-transform: uppercase;
}

/* Showcase Section */
.detail-showcase-header {
    background: #161d24;
    border-radius: 6px;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.detail-showcase-title {
    color: #ffffff;
    font-size: 1.8rem;
    text-transform: uppercase;
    margin: 0;

}

.detail-video-container {
    aspect-ratio: 16/9;
    background: #0e1416;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.detail-video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Right Column - Description */
.detail-right-column {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px;
    border-radius: 5px;
}

.detail-about-title {
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    font-size: 1.8rem;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
}

.detail-description {
    color: #a1b2c1;
    line-height: 1.8;
    margin: 0;
}

/* Back Button */
.detail-back-btn {
    display: block;
    text-align: center;
    padding: 0.8rem;
    margin-bottom: 2rem;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .detail-main-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .detail-price-row {
        grid-template-columns: 1fr;
    }

    .detail-product-title {
        font-size: 1.5rem;
    }

    .detail-current-price {
        font-size: 1.8rem;
    }

    .detail-about-title {
        font-size: 1.5rem;
    }

    .detail-meta-grid {
        grid-template-columns: 1fr;
    }
}