/* Product Page Styles */
.product-page {
    background-color: #fff;
}

.product-gallery {
    padding: 80px 0;
}

.product-gallery-slider {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-gallery-slider img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-info {
    padding: 30px;
}

.product-info h2 {
    margin-bottom: 20px;
    color: #333;
}

.features {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.features h4 {
    color: #7C6A46;
    font-size: 1.2rem;
    font-weight: 600;
}

.features ul li {
    margin-bottom: 15px;
    color: #666;
}

.features ul li i {
    color: #7C6A46;
}

.product-details {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.details-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.details-content h3 {
    color: #333;
    font-size: 28px;
    margin-bottom: 25px;
}

.details-content h4 {
    color: #7C6A46;
    font-size: 20px;
    margin: 30px 0 15px;
}

.details-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.details-content ul {
    list-style: none;
    padding-left: 0;
}

.details-content ul li {
    color: #666;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.details-content ul li:before {
    content: "•";
    color: #7C6A46;
    position: absolute;
    left: 0;
}

.related-products {
    padding: 80px 0;
}

.section-title {
    color: #333;
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
}

.product-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-link {
    text-decoration: none;
}

.product-card img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h4 {
    color: #333;
    font-size: 20px;
    text-align: center;
    padding: 20px;
    margin: 0;
    transition: color 0.3s ease;
}

.product-card:hover h4 {
    color: #7C6A46;
}

@media (max-width: 991px) {
    .product-info {
        margin-top: 40px;
    }
    
    .features {
        margin-top: 30px;
    }
    
    .product-card {
        margin-bottom: 30px;
    }
}
