/* Product Details Premium Styles */
.details-layout {
    min-height: calc(100vh - var(--header-height, 80px));
    padding: 60px 20px;
    background: linear-gradient(180deg, #F9F7F6 0%, #FFFFFF 100%);
}

.details-container {
    max-width: 1200px;
    margin: 0 auto;
}

.product-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: white;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 20px 80px rgba(93, 64, 55, 0.08);
    border: 1px solid rgba(125, 90, 80, 0.1);
    position: relative;
    overflow: hidden;
}

.product-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at top right, rgba(212, 148, 26, 0.05), transparent 70%);
    pointer-events: none;
}

/* Left: Image Side */
.product-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.product-visual img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-visual:hover img {
    transform: scale(1.05);
}

/* Right: Content Side */
.product-info {
    display: flex;
    flex-direction: column;
}

.product-type {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(125, 90, 80, 0.1);
    color: var(--sahana-brown);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    color: var(--text-primary);
}

.product-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: justify;
}

.product-actions {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-details {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-buy {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-accent);
}

.btn-buy:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-accent-lg);
}

.btn-secondary-action {
    background: white;
    color: var(--text-primary);
    border: 1px solid rgba(125, 90, 80, 0.2);
}

.btn-secondary-action:hover {
    background: #fbf8f7;
    border-color: var(--sahana-gold);
}

/* Shimmer Details */
.shimmer-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px;
}

.shimmer-image-large {
    height: 500px;
    background: #eee;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.shimmer-image-large::after,
.shimmer-title-large::after,
.shimmer-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    animation: shimmer 1.5s infinite;
}

.shimmer-title-large {
    height: 60px;
    background: #eee;
    width: 80%;
    margin-bottom: 30px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.shimmer-line {
    height: 20px;
    background: #f5f5f5;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 992px) {

    .product-detail-card,
    .shimmer-details {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }

    .product-info h1 {
        font-size: 36px;
    }
}