/* Product Section Block */
.product-section-block {
    background: #fff;
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Product Detail Page - Larger padding for main product block */
#product-product .product-section-block {
    padding: 40px;
    margin-bottom: 40px;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f27a1a;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title i {
    font-size: 32px;
    color: #f27a1a;
}

.section-title h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Controls */
.section-controls {
    display: flex;
    gap: 10px;
}

.section-controls button {
    width: 45px;
    height: 45px;
    background: #f27a1a;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-controls button:hover {
    background: #d66a15;
    transform: scale(1.1);
}

.section-controls button i {
    margin: 0;
}

/* Section Content */
.section-content {
    padding: 0;
}

.carousel-item-wrapper {
    padding: 0 10px;
}

/* Section Link */
.section-link {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.section-link a {
    display: inline-block;
    padding: 12px 30px;
    background: #f27a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.section-link a:hover {
    background: #d66a15;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 122, 26, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-section-block {
        padding: 20px 15px;
        margin-bottom: 30px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .section-title i {
        font-size: 24px;
    }

    .section-title h3 {
        font-size: 22px;
    }

    .section-controls {
        width: 100%;
        justify-content: flex-end;
    }

    .section-controls button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .section-title i {
        font-size: 20px;
    }

    .section-title h3 {
        font-size: 18px;
    }

    .section-title {
        gap: 10px;
    }

    .section-controls button {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}
