.product-details-section {
    padding-right: 6px;
    padding-left: 6px;
    padding-bottom: 80px;
    background: url('images/plastic_25.webp'), linear-gradient(var(--dark-color) 0%, var(--accent-color) 100%);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
}

.product-details-container {
    position: relative;
    z-index: 99;
    margin-top: -300px;
    max-width: 1200px;
    width: 100%;
    background: #f8f9fa;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.product-details-title {
    font-size: 2.4rem;
    font-weight: 800;
}

.product-details-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-details-description p {
    font-weight: 500;
    margin-bottom: .4rem;
    line-height: 1.4;
    font-size: 1rem;
    width: 100%;
}

.product-details__sizes-title {
    font-weight: 500;
    color: #444;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .product-details-container {
        padding: 30px;
    }
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.details-info h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.details-info p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.specs-box {
    background: #f8f9fa;
    padding: .8rem;
    border-radius: 15px;
}

.specs-box h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.specs-list {
    list-style: none;
}

.specs-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.specs-list li:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #555;
}

.spec-value {
    color: var(--primary-color);
    font-weight: 700;
    margin-left: 20px;
}

.details-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.btn-request-quote {
    display: inline-block;
    text-align: center;
    min-width: 200px;
}

/* Features Section */
.product-features {
    padding: 80px 0;
    background-color: #f0f4f8;
    text-align: center;
}

.product-features h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-color);
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Gallery Section */
.product-gallery {
    padding: 80px 0;
    background: white;
}

.product-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .details-image {
        order: -1; /* Image on top on mobile */
    }
}

@media (max-width: 768px) {
    .product-hero h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    padding: 10px;
    display: flex;
    border-radius: 15px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    width: fit-content
}