/* ===========================
   Product Detail Page
=========================== */
.product-card {
    background: linear-gradient(145deg, #ffffff, #fafafa);
    border: 2px solid #977143;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(151, 113, 67, 0.2);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(151, 113, 67, 0.4);
    border-color: #b8854d;
}

/* Product image block */
.product-image {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* Product details text */
.product-card .card-body {
    padding: 2rem;
    color: #333333;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(248,248,248,0.9));
}

.product-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #977143;
    margin-bottom: 1rem;
}

.product-card p {
    color: #555555;
    margin-bottom: 1rem;
}

/* Sale styling */
.product-card .text-decoration-line-through {
    opacity: 0.7;
}

.product-card .text-danger {
    font-size: 1.2rem;
    color: #ff5a5a !important;
}

.product-card .badge {
    background: rgba(255, 255, 255, 0.2) !important;
    font-weight: 500;
    border-radius: 8px;
    padding: 0.4rem 0.6rem;
}

/* Dropdown */
.product-card select.form-select {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #000000 !important;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 0.6rem;
}

.product-card select:focus {
    border-color: #000000;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Add to cart button */
#add-cart {
    color: #977143;
    border: 2px solid #000;
    border-radius: 35px;
    padding: 0.9rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

#add-cart:hover {
    background-color: #977143 !important;
    color: #000 !important;
    border-color: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Care Instructions Section */
.care-instructions-section {
    background: linear-gradient(145deg, #ffffff, #fafafa);
    border: 2px solid #977143;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 6px 22px rgba(151, 113, 67, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.2s;
}

/* Glow effect on hover */
.care-instructions-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.care-instructions-section:hover::before {
    opacity: 1;
}

.care-instructions-section:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 10px 30px rgba(151, 113, 67, 0.4);
    border-color: #b8854d;
}

.care-instructions-section h5 {
    color: #977143;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.care-instructions-section p {
    color: #555555 !important;
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}