/* Section product header */
.section-product-header {
    padding: 60px 0;
    background-color: #fff;
}

.section-product-header .product-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    position: relative;
}

/* Sidebar Menu */
.section-product-header .product-sidebar {
    flex: 0 0 280px;
    background: #fff;
    padding: 0;
    position: relative;
}

.section-product-header .sidebar-title {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
    padding: 0 0 20px 0;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-product-header .product-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-product-header .product-menu>li {
    margin-bottom: 0;
    position: relative;
    border-bottom: 1px solid #e8e8e8;
}

.section-product-header .product-menu>li:last-child {
    border-bottom: none;
}

.section-product-header .menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    color: #333;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
    border: none;
    width: 100%;
    cursor: pointer;
}

.section-product-header .menu-item:hover {
    color: var(--secondary-color-main);
}

.section-product-header .menu-item.active {
    color: var(--secondary-color-main);
    font-weight: 600;
}

/* Icon arrow cho menu có submenu */
.section-product-header .menu-arrow {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.section-product-header .menu-arrow svg {
    width: 8px;
    height: 8px;
    fill: #666;
    transition: fill 0.3s ease;
}

.section-product-header .menu-item:hover .menu-arrow svg,
.section-product-header .menu-item.active .menu-arrow svg {
    fill: var(--secondary-color-main);
}

.section-product-header .menu-item.active .menu-arrow {
    transform: rotate(90deg);
}

/* Submenu */
.section-product-header .submenu-wrapper {
    position: absolute;
    left: 100%;
    top: 0;
    background: #fafafa;
    min-width: 350px;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 20px 0;
}

.section-product-header .submenu-wrapper.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Submenu */
.section-product-header .submenu-wrapper {
    position: absolute;
    left: 100%;
    top: 0;
    background: #fafafa;
    min-width: 350px;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 20px 0;
}

.section-product-header .submenu-wrapper.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.section-product-header .submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
}

.section-product-header .submenu-item {
    display: block;
    padding: 12px 16px;
    color: #555;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 4px;
}

.section-product-header .submenu-item::before {
    display: none;
}

.section-product-header .submenu-item:hover {
    color: var(--secondary-color-main);
    background-color: #fff;
    padding-left: 20px;
}

.section-product-header .submenu-item.active {
    color: var(--secondary-color-main);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1199px) {
    .section-product-header .product-sidebar {
        flex: 0 0 260px;
    }

    .section-product-header .product-content-wrapper {
        gap: 30px;
    }

    .section-product-header .product-title {
        font-size: 32px;
    }

    .section-product-header .submenu-wrapper {
        min-width: 320px;
    }
}

/* Product Main Content */
.section-product-header .product-main {
    flex: 1;
    position: relative;
}

.section-product-header .product-main {
    flex: 1;
    position: relative;
}

.section-product-header .product-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.section-product-header .product-image {
    width: 100%;
    display: block;
    height: 400px;
    min-height: 200px;
    max-height: 500px;
    object-fit: cover;
}

.section-product-header .product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    padding: 50px 40px 35px;
}

.section-product-header .product-category {
    color: var(--secondary-color-main);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: inline-block;
}

.section-product-header .product-title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.3;
}

/* Orange accent bar on image */
.section-product-header .product-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 8px;
    background: var(--secondary-color-main);
    z-index: 1;
}

/* Responsive */
@media (max-width: 1199px) {
    .section-product-header .product-sidebar {
        flex: 0 0 260px;
    }

    .section-product-header .product-content-wrapper {
        gap: 30px;
    }

    .section-product-header .product-title {
        font-size: 32px;
    }

    .section-product-header .submenu {
        gap: 10px 16px;
    }
}

@media (max-width: 991px) {
    .section-product-header {
        padding: 50px 0;
    }

    .section-product-header .product-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .section-product-header .product-sidebar {
        flex: 1;
        width: 100%;
        max-width: 100%;
    }

    .section-product-header .product-main {
        width: 100%;
    }

    .section-product-header .submenu-wrapper {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        min-width: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding: 0;
    }

    .section-product-header .submenu-wrapper.show {
        max-height: 600px;
        padding: 16px 0;
    }

    .section-product-header .submenu {
        padding: 0 20px;
    }

    .section-product-header .submenu-item:hover {
        padding-left: 24px;
    }

    .section-product-header .product-title {
        font-size: 28px;
    }

    .section-product-header .product-overlay {
        padding: 40px 30px 30px;
    }

    .section-product-header .product-image {
        min-height: 350px;
    }
}

@media (max-width: 767px) {
    .section-product-header {
        padding: 40px 0;
    }

    .section-product-header .sidebar-title {
        font-size: 16px;
        padding: 0 0 16px 0;
    }

    .section-product-header .menu-item {
        font-size: 14px;
        padding: 14px 0;
    }

    .section-product-header .submenu-wrapper.show {
        padding: 12px 0;
    }

    .section-product-header .submenu {
        padding: 0 12px;
    }

    .section-product-header .submenu-item {
        padding: 10px 12px;
    }

    .section-product-header .submenu-item:hover {
        padding-left: 16px;
    }

    .section-product-header .submenu-item {
        font-size: 13px;
        padding: 6px 0;
    }

    .section-product-header .product-title {
        font-size: 24px;
    }

    .section-product-header .product-category {
        font-size: 12px;
    }

    .section-product-header .product-overlay {
        padding: 30px 25px 25px;
    }

    .section-product-header .product-image-wrapper::before {
        width: 120px;
        height: 6px;
    }

    .section-product-header .product-image {
        min-height: 300px;
    }
}

@media (max-width: 575px) {
    .section-product-header .product-content-wrapper {
        gap: 30px;
    }

    .section-product-header .product-title {
        font-size: 20px;
    }

    .section-product-header .sidebar-title {
        font-size: 15px;
    }

    .section-product-header .menu-item {
        padding: 12px 0;
        font-size: 13px;
    }

    .section-product-header .submenu-item {
        font-size: 12px;
    }

    .section-product-header .product-overlay {
        padding: 25px 20px 20px;
    }

    .section-product-header .product-image {
        min-height: 250px;
    }
}
/* End section product header */
/* Section detail product content */
.section-project-detail-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-project-detail-content .content-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-project-detail-content .content-subtitle {
    font-size: 16px;
    color: var(--secondary-color-main);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-project-detail-content .content-title {
    font-size: 42px;
    color: var(--primary-color-main);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.section-project-detail-content .content-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.section-project-detail-content .content-tab {
    padding: 12px 30px;
    background-color: #f8f9fa;
    border: none;
    color: #666666;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.section-project-detail-content .content-tab:hover {
    background-color: var(--secondary-color-main);
    color: #ffffff;
}

.section-project-detail-content .content-tab.active {
    background-color: var(--secondary-color-main);
    color: #ffffff;
}

.section-project-detail-content .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.section-project-detail-content .product-item {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
}

.section-project-detail-content .product-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.section-project-detail-content .product-image {
    position: relative;
    width: 100%;
    height: 250px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.section-project-detail-content .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.3s ease;
}

.section-project-detail-content .product-item:hover .product-image img {
    transform: scale(1.05);
}

.section-project-detail-content .product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-project-detail-content .product-action-btn {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.section-project-detail-content .product-action-btn:hover {
    background-color: var(--secondary-color-main);
    border-color: var(--secondary-color-main);
}

.section-project-detail-content .product-action-btn:hover svg {
    fill: #ffffff;
}

.section-project-detail-content .product-action-btn svg {
    width: 18px;
    height: 18px;
    fill: #666666;
    transition: fill 0.3s ease;
}

.section-project-detail-content .product-info {
    padding: 20px;
}

.section-project-detail-content .product-name {
    font-size: 16px;
    color: var(--primary-color-main);
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 44px;
}

.section-project-detail-content .product-category {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666666;
}

.section-project-detail-content .product-category svg {
    width: 16px;
    height: 16px;
    fill: var(--secondary-color-main);
}

.section-project-detail-content .content-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.section-project-detail-content .pagination-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
    color: #666666;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-project-detail-content .pagination-btn:hover {
    background-color: var(--secondary-color-main);
    border-color: var(--secondary-color-main);
    color: #ffffff;
}

.section-project-detail-content .pagination-btn.active {
    background-color: var(--secondary-color-main);
    border-color: var(--secondary-color-main);
    color: #ffffff;
}

@media (max-width: 992px) {
    .section-project-detail-content {
        padding: 60px 0;
    }

    .section-project-detail-content .content-title {
        font-size: 36px;
    }

    .section-project-detail-content .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-project-detail-content .product-image {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .section-project-detail-content {
        padding: 40px 0;
    }

    .section-project-detail-content .content-subtitle {
        font-size: 14px;
    }

    .section-project-detail-content .content-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .section-project-detail-content .content-tab {
        padding: 10px 20px;
        font-size: 13px;
    }

    .section-project-detail-content .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-project-detail-content .product-image {
        height: 200px;
    }

    .section-project-detail-content .product-name {
        font-size: 15px;
        min-height: auto;
    }
}
/* End section detail product content */

/* View more section */
.section-product-view-more {
    padding: 60px 0;
    background: #f8f9fa;
}

.section-product-view-more .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-product-view-more .section-subtitle {
    color: #d4a655;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-product-view-more .section-title {
    color: #1a3d6b;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.section-product-view-more .carousel-container {
    position: relative;
    overflow: hidden;
}

.section-product-view-more .product-wrap {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0 20px 0;
}

.section-product-view-more .product-wrap::-webkit-scrollbar {
    display: none;
}

.section-product-view-more .product-card {
    flex: 0 0 auto;
    width: 280px;
    text-decoration: none;
    color: inherit;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.section-product-view-more .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.section-product-view-more .product-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.section-product-view-more .product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #dc3545;
    color: #ffffff;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    z-index: 2;
}

.section-product-view-more .product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.3s ease;
}

.section-product-view-more .product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.section-product-view-more .product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.section-product-view-more .product-action-btn {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.section-product-view-more .product-action-btn:hover {
    background-color: #d4a655;
    border-color: #d4a655;
}

.section-product-view-more .product-action-btn:hover svg {
    fill: #ffffff;
}

.section-product-view-more .product-action-btn svg {
    width: 18px;
    height: 18px;
    fill: #666666;
    transition: fill 0.3s ease;
}

.section-product-view-more .product-info {
    padding: 20px;
}

.section-product-view-more .product-name {
    color: #1a3d6b;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-product-view-more .product-category {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666666;
}

.section-product-view-more .product-category svg {
    width: 16px;
    height: 16px;
    fill: #d4a655;
    flex-shrink: 0;
}

.section-product-view-more .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.section-product-view-more .nav-btn:hover:not(:disabled) {
    background: #d4a655;
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.section-product-view-more .nav-btn:hover:not(:disabled) svg {
    fill: #fff;
}

.section-product-view-more .nav-btn svg {
    width: 24px;
    height: 24px;
    fill: #1a3d6b;
    transition: fill 0.3s ease;
}

.section-product-view-more .nav-btn.prev {
    left: -20px;
}

.section-product-view-more .nav-btn.next {
    right: -20px;
}

.section-product-view-more .nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

@media (max-width: 1200px) {
    .section-product-view-more .product-card {
        width: 260px;
    }

    .section-product-view-more .product-image-wrapper {
        height: 260px;
    }

    .section-product-view-more .nav-btn.prev {
        left: -10px;
    }

    .section-product-view-more .nav-btn.next {
        right: -10px;
    }
}

@media (max-width: 992px) {
    .section-product-view-more {
        padding: 50px 0;
    }

    .section-product-view-more .section-title {
        font-size: 32px;
    }

    .section-product-view-more .product-card {
        width: 240px;
    }

    .section-product-view-more .product-image-wrapper {
        height: 240px;
    }

    .section-product-view-more .nav-btn {
        width: 45px;
        height: 45px;
    }

    .section-product-view-more .nav-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    .section-product-view-more {
        padding: 40px 0;
    }

    .section-product-view-more .section-subtitle {
        font-size: 14px;
    }

    .section-product-view-more .section-title {
        font-size: 28px;
    }

    .section-product-view-more .section-header {
        margin-bottom: 30px;
    }

    .section-product-view-more .product-card {
        width: 220px;
    }

    .section-product-view-more .product-image-wrapper {
        height: 220px;
    }

    .section-product-view-more .nav-btn {
        width: 40px;
        height: 40px;
    }

    .section-product-view-more .nav-btn svg {
        width: 18px;
        height: 18px;
    }

    .section-product-view-more .nav-btn.prev {
        left: 5px;
    }

    .section-product-view-more .nav-btn.next {
        right: 5px;
    }

    .section-product-view-more .product-info {
        padding: 16px;
    }

    .section-product-view-more .product-name {
        font-size: 15px;
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .section-product-view-more .product-card {
        width: 200px;
    }

    .section-product-view-more .product-image-wrapper {
        height: 200px;
    }

    .section-product-view-more .nav-btn {
        width: 36px;
        height: 36px;
    }

    .section-product-view-more .nav-btn svg {
        width: 16px;
        height: 16px;
    }

    .section-product-view-more .product-name {
        font-size: 14px;
    }

    .section-product-view-more .product-category {
        font-size: 12px;
    }
}
/* End view more section */

/*	Section Product Detail Header  */
.section-product-detail-header {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.section-product-detail-header .product-gallery {
    position: sticky;
    top: 20px;
}

.section-product-detail-header .main-image {
    width: 100%;
    height: 500px;
    /* background-color: #f8f9fa; */
    border: 1px solid rgba(243, 244, 246, 1);
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-product-detail-header .main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 30px;
}

.section-product-detail-header .thumbnail-carousel {
    position: relative;
    overflow: hidden;
}

.section-product-detail-header .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.section-product-detail-header .carousel-btn:hover:not(:disabled) {
    background-color: var(--secondary-color-main);
    box-shadow: 0 6px 16px rgba(212, 166, 85, 0.4);
}

.section-product-detail-header .carousel-btn:hover:not(:disabled) svg {
    fill: #ffffff;
}

.section-product-detail-header .carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.section-product-detail-header .carousel-btn svg {
    width: 18px;
    height: 18px;
    fill: var(--secondary-color-main);
    transition: fill 0.3s ease;
}

.section-product-detail-header .carousel-btn.prev-btn {
    left: -15px;
}

.section-product-detail-header .carousel-btn.next-btn {
    right: -15px;
}

.section-product-detail-header .thumbnail-wrapper {
    overflow: hidden;
    padding: 10px 0;
}

.section-product-detail-header .thumbnail-list {
    display: flex;
    gap: 15px;
    transition: transform 0.3s ease;
}

.section-product-detail-header .thumbnail-item {
    flex-shrink: 0;
    width: calc(20% - 12px);
    height: 100px;
    background-color: #f8f9fa;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-product-detail-header .thumbnail-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color-main);
}

.section-product-detail-header .thumbnail-item.active {
    border-color: var(--secondary-color-main);
    box-shadow: 0 6px 16px rgba(212, 166, 85, 0.3);
}

.section-product-detail-header .thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.section-product-detail-header .product-info {
    display: flex;
    flex-direction: column;
}

.section-product-detail-header .product-title {
    font-size: 28px;
    color: var(--primary-color-main);
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-product-detail-header .product-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.section-product-detail-header .product-sku {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.section-product-detail-header .product-sku-label {
    color: #666666;
}

.section-product-detail-header .product-sku-value {
    color: var(--secondary-color-main);
    font-weight: 600;
}

.section-product-detail-header .product-stock {
    padding: 4px 12px;
    color: #4caf50;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #c8e6c9;
}

.section-product-detail-header .product-category-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border-bottom: none;
    margin-bottom: 20px;
}

.section-product-detail-header .product-category-info svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-color-main);
}

.section-product-detail-header .product-category-info span {
    color: var(--primary-color-main);
    font-size: 14px;
}

.section-product-detail-header .product-contact {
    margin-bottom: 30px;
}

.section-product-detail-header .contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background-color: var(--secondary-color-main);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.section-product-detail-header .contact-button:hover {
    background-color: var(--primary-color-main);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 166, 85, 0.3);
    color: #ffffff;
}

.section-product-detail-header .product-specs {
    margin-top: 30px;
}

.section-product-detail-header .specs-title {
    font-size: 16px;
    color: var(--primary-color-main);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: none;
}

.section-product-detail-header .specs-table {
    width: 100%;
}

.section-product-detail-header .specs-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    padding: 15px 20px;
    border-bottom: none;
}

.section-product-detail-header .specs-row:nth-child(odd) {
    background-color: #f5f7f9;
}

.section-product-detail-header .specs-row:nth-child(even) {
    background-color: #ffffff;
}

.section-product-detail-header .specs-label {
    color: var(--primary-color-main);
    font-size: 15px;
    font-weight: 500;
}

.section-product-detail-header .specs-value {
    color: #555555;
    font-size: 15px;
    font-weight: 400;
}

/* Table Styling - Sọc lệch (Zebra Striping) */
.section-product-detail-header .table {
    width: 100%;
    border-collapse: separate;
    margin: 20px 0;
    background-color: #fff;
}

.section-product-detail-header .table-bordered {
    border: 0;
}

.section-product-detail-header .table-bordered tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.section-product-detail-header .table-bordered tbody tr:last-child {
    border-bottom: none;
}

/* Hàng chẵn - background trắng */
.section-product-detail-header .table-bordered tbody tr:nth-child(even) {
    background-color: #ffffff;
}

/* Hàng lẻ - background xám nhạt */
.section-product-detail-header .table-bordered tbody tr:nth-child(odd) {
    background: rgba(243, 244, 246, 1);

}

.section-product-detail-header .table-bordered td {
    padding: 12px 16px;
    border: none;
    vertical-align: middle;
    background-color: transparent;
}

.section-product-detail-header .table-bordered td:first-child {
    font-weight: 500;
    color: #333;
    width: 40%;
}

.section-product-detail-header .table-bordered td:last-child {
    color: #666;
    width: 60%;
}

/* Responsive */
@media (max-width: 768px) {
    .section-product-detail-header .table-bordered td {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .section-product-detail-header .table-bordered td:first-child {
        width: 45%;
    }
    
    .section-product-detail-header .table-bordered td:last-child {
        width: 55%;
    }
}

/* Bootstrap Breakpoints */

/* Large devices (≤1199px) - Vẫn 2 cột */
@media (max-width: 1199px) {
    .section-product-detail-header {
        padding: 50px 0;
    }

    .section-product-detail-header .product-detail-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Medium devices (≤991px) - Chuyển 1 cột */
@media (max-width: 991px) {
    .section-product-detail-header {
        padding: 40px 0;
    }

    .section-product-detail-header .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-product-detail-header .product-gallery {
        position: static;
    }

    .section-product-detail-header .main-image {
        height: 450px;
    }

    .section-product-detail-header .product-title {
        font-size: 26px;
    }

    .section-product-detail-header .thumbnail-item {
        width: calc(25% - 11.25px);
        height: 90px;
    }
}

/* Small devices (≤767px) - 1 cột */
@media (max-width: 767px) {
    .section-product-detail-header {
        padding: 35px 0;
    }

    .section-product-detail-header .product-detail-wrapper {
        grid-template-columns: 1fr;
    }

    .section-product-detail-header .main-image {
        height: 400px;
    }

    .section-product-detail-header .thumbnail-item {
        width: calc(25% - 11.25px);
        height: 90px;
    }

    .section-product-detail-header .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .section-product-detail-header .carousel-btn svg {
        width: 16px;
        height: 16px;
    }

    .section-product-detail-header .product-title {
        font-size: 24px;
    }

    .section-product-detail-header .specs-row {
        padding: 12px 15px;
    }

    .section-product-detail-header .specs-label,
    .section-product-detail-header .specs-value {
        font-size: 14px;
    }
}

/* Extra small devices (≤575px) - 1 cột */
@media (max-width: 575px) {
    .section-product-detail-header {
        padding: 30px 0;
    }

    .section-product-detail-header .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-product-detail-header .main-image {
        height: 280px;
    }

    .section-product-detail-header .main-image img {
        padding: 20px;
    }

    .section-product-detail-header .thumbnail-list {
        gap: 10px;
    }

    .section-product-detail-header .thumbnail-item {
        width: calc(33.333% - 6.667px);
        height: 70px;
    }

    .section-product-detail-header .carousel-btn {
        width: 32px;
        height: 32px;
    }

    .section-product-detail-header .carousel-btn svg {
        width: 14px;
        height: 14px;
    }

    .section-product-detail-header .carousel-btn.prev-btn {
        left: -12px;
    }

    .section-product-detail-header .carousel-btn.next-btn {
        right: -12px;
    }

    .section-product-detail-header .product-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .section-product-detail-header .product-meta {
        gap: 10px;
    }

    .section-product-detail-header .product-sku,
    .section-product-detail-header .product-category-info span {
        font-size: 13px;
    }

    .section-product-detail-header .product-stock {
        font-size: 12px;
        padding: 3px 10px;
    }

    .section-product-detail-header .contact-button {
        width: 100%;
        padding: 12px 20px;
        font-size: 13px;
    }

    .section-product-detail-header .product-specs {
        margin-top: 25px;
    }

    .section-product-detail-header .specs-title {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .section-product-detail-header .specs-row {
        grid-template-columns: 1fr;
        gap: 5px;
        padding: 12px 15px;
    }

    .section-product-detail-header .specs-label {
        font-weight: 600;
        color: var(--primary-color-main);
        font-size: 13px;
    }

    .section-product-detail-header .specs-value {
        font-size: 13px;
        color: #666666;
    }
}

/* Extra extra small devices (≤374px) - 1 cột */
@media (max-width: 374px) {
    .section-product-detail-header .product-detail-wrapper {
        grid-template-columns: 1fr;
    }

    .section-product-detail-header .main-image {
        height: 250px;
    }

    .section-product-detail-header .thumbnail-item {
        width: calc(33.333% - 6.667px);
        height: 60px;
    }

    .section-product-detail-header .product-title {
        font-size: 18px;
    }

    .section-product-detail-header .specs-row {
        padding: 10px 12px;
    }
}

/*	End Section Product Detail Header  */

/* Section Product Detail Content */
.section-product-detail-content {
    padding: 60px 0;
    background-color: #ffffff;
}

.section-product-detail-content .product-detail-content-wrapper {
    max-width: 100%;
}

/* Header */
.section-product-detail-content .product-detail-content-header {
    margin-bottom: 40px;
}

.section-product-detail-content .product-detail-content-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 15px;
}

.section-product-detail-content .product-detail-content-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color-main);
}

/* Content Sections */
.section-product-detail-content .product-detail-content-section {
    margin-bottom: 50px;
}

.section-product-detail-content .product-detail-content-section:last-child {
    margin-bottom: 0;
}

.section-product-detail-content h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color-main);
    margin-bottom: 20px;
    line-height: 1.4;
}

.section-product-detail-content .h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color-main);
    margin-top: 30px;
    margin-bottom: 15px;
}

.section-product-detail-content  {
    color: #555555;
    font-size: 15px;
    line-height: 1.8;
}

.section-product-detail-content  p {
    margin-bottom: 15px;
}

.section-product-detail-content  p:last-child {
    margin-bottom: 0;
}

/* Collapsible Content */
.section-product-detail-content .product-detail-content-collapsible {
    position: relative;
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.section-product-detail-content .product-detail-content-collapsible::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.section-product-detail-content .product-detail-content-collapsible.expanded {
    max-height: fit-content;
}

.section-product-detail-content .product-detail-content-collapsible.expanded::after {
    opacity: 0;
}

.section-product-detail-content .product-detail-content-more-text {
    display: none;
}

.section-product-detail-content .product-detail-content-collapsible.expanded .product-detail-content-more-text {
    display: block;
}

/* Toggle Button */
.section-product-detail-content .product-detail-content-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    margin-top: 20px;
    background-color: transparent;
    color: var(--secondary-color-main);
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--secondary-color-main);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.section-product-detail-content .product-detail-content-toggle-btn:hover {
    background-color: var(--secondary-color-main);
    color: #ffffff;
}

.section-product-detail-content .product-detail-content-toggle-btn:hover .product-detail-content-arrow {
    fill: #ffffff;
}

.section-product-detail-content .product-detail-content-arrow {
    width: 18px;
    height: 18px;
    fill: var(--secondary-color-main);
    transition: all 0.3s ease;
}

.section-product-detail-content .product-detail-content-toggle-btn.rotated .product-detail-content-arrow {
    transform: rotate(180deg);
}

/* Images Grid */
.section-product-detail-content .product-detail-content-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.section-product-detail-content .product-detail-content-image-item {
    width: 100%;
    height: 350px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-product-detail-content .product-detail-content-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.section-product-detail-content .product-detail-content-image-item:hover img {
    transform: scale(1.05);
}

/* Responsive Breakpoints */

/* Large devices (≤1199px) */
@media (max-width: 1199px) {
    .section-product-detail-content {
        padding: 50px 0;
    }

    .section-product-detail-content .product-detail-content-image-item {
        height: 320px;
    }
}

/* Medium devices (≤991px) */
@media (max-width: 991px) {
    .section-product-detail-content {
        padding: 40px 0;
    }

    .section-product-detail-content .product-detail-content-title {
        font-size: 22px;
    }

    .section-product-detail-content .product-detail-content-section-title {
        font-size: 18px;
    }

    .section-product-detail-content .product-detail-content-image-item {
        height: 280px;
    }
}

/* Small devices (≤767px) */
@media (max-width: 767px) {
    .section-product-detail-content {
        padding: 35px 0;
    }

    .section-product-detail-content .product-detail-content-title {
        font-size: 20px;
    }

    .section-product-detail-content .product-detail-content-section-title {
        font-size: 17px;
    }

    .section-product-detail-content .product-detail-content-images {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .section-product-detail-content .product-detail-content-image-item {
        height: 260px;
    }
}

/* Extra small devices (≤575px) */
@media (max-width: 575px) {
    .section-product-detail-content {
        padding: 30px 0;
    }

    .section-product-detail-content .product-detail-content-header {
        margin-bottom: 30px;
    }

    .section-product-detail-content .product-detail-content-title {
        font-size: 18px;
        padding-bottom: 12px;
    }

    .section-product-detail-content .product-detail-content-title::after {
        width: 50px;
        height: 2px;
    }

    .section-product-detail-content .product-detail-content-section {
        margin-bottom: 40px;
    }

    .section-product-detail-content .product-detail-content-section-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .section-product-detail-content .product-detail-content-subsection-title {
        font-size: 15px;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .section-product-detail-content  {
        font-size: 14px;
        line-height: 1.7;
    }

    .section-product-detail-content  p {
        margin-bottom: 12px;
    }

    .section-product-detail-content .product-detail-content-collapsible {
         max-height: 120px;
    }

    .section-product-detail-content .product-detail-content-toggle-btn {
        width: auto;
        justify-content: center;
        padding: 10px 20px;
        font-size: 13px;
        margin-top: 15px;
        left: 50%;
        transform: translateX(-50%);
    }

    .section-product-detail-content .product-detail-content-arrow {
        width: 16px;
        height: 16px;
    }

    .section-product-detail-content .product-detail-content-images {
        gap: 12px;
        margin-top: 20px;
    }

    .section-product-detail-content .product-detail-content-image-item {
        height: 220px;
    }
}

/* Extra extra small devices (≤374px) */
@media (max-width: 374px) {
    .section-product-detail-content .product-detail-content-title {
        font-size: 16px;
    }

    .section-product-detail-content .product-detail-content-section-title {
        font-size: 15px;
    }

    .section-product-detail-content  {
        font-size: 13px;
    }

    .section-product-detail-content .product-detail-content-image-item {
        height: 200px;
    }
}

/* End Section Product Detail Content */