/* Extracted from product.html */
.breadcrumb-nav {
    background: #FFF7FA;
    padding: 14px 24px;
    font-size: 14px;
}

.breadcrumb-nav .container {
    display: flex;
    align-items: center;
}

.breadcrumb-nav a {
    color: #8E6B6F;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.breadcrumb-sep {
    margin: 0 10px;
    color: #D4A5A5;
}

.product-detail {
    padding: 50px 24px 80px;
    background: #FFFBF9;
}

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

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-detail-image {
    background: linear-gradient(135deg, #FFF7FA, #FEF0F5);
    border-radius: 24px;
    padding: 32px;
    position: sticky;
    top: 100px;
    box-shadow: 0 8px 40px -12px rgba(194, 125, 132, 0.15);
}

.product-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    background: transparent;
    mix-blend-mode: multiply;
}

.product-category-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fc7ab5;
    background: #FFF7FA;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.product-detail-info h1 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
    color: #2C2C2C;
}

.product-code {
    color: #8E6B6F;
    font-size: 14px;
    margin-bottom: 24px;
}

.product-description {
    font-size: 16px;
    line-height: 1.8;
    color: #6B6560;
    margin-bottom: 32px;
}

.product-variants {
    margin-bottom: 28px;
}

.product-variants label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2C2C2C;
}

.product-variants select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #F0E4E0;
    border-radius: 14px;
    font-size: 15px;
    background: white;
    cursor: pointer;
    color: #2C2C2C;
}

.product-cta {
    background: linear-gradient(135deg, #FEF0F5, #FFF7FA);
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 28px;
    border: 1px solid #E8D5CF;
}

.product-login {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #6B6560;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.product-actions {
    display: flex;
    gap: 12px;
}

.product-actions .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.product-actions .btn-primary {
    background: #fc7ab5;
    color: white;
    border: none;
}

.product-actions .btn-outline {
    background: white;
    color: #fc7ab5;
    border: 2px solid #fc7ab5;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 20px 14px;
    background: white;
    border-radius: 16px;
    color: #6B6560;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.related-products {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid #F0E4E0;
}

.related-products h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 28px;
    color: #2C2C2C;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card-mini {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #F0E4E0;
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card-mini img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: linear-gradient(135deg, #FFF7FA, #FEF0F5);
}

.product-card-mini-info {
    padding: 16px;
}

.product-card-mini h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #2C2C2C;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-mini .code {
    font-size: 12px;
    color: #8E6B6F;
}

@media (max-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-detail {
        padding: 40px 20px 60px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .product-actions {
        flex-direction: column;
    }

    .feature-item {
        flex-direction: row;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

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