.menu_logo_1 {
    display: none;
}
.menu-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}
.menu-style-one {
    box-shadow: 0 4px 4px 0 #0000000d;
}

/* Product List Page (Figma-like) */
.product-page .product_header__title {
    padding: 0 0 50px;
}

.product-page .product__header_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.product-page .product_header_title {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--color-black);
    margin: 0;
    text-align: center;
}

.product-page .product__list__section {
    padding: 0 0 70px;
}

.product-page .product__filters {
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: var(--color-footer);
    padding: 24px 0;
}

.product-page .product__search {
    max-width: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--color-white);
    border-radius: 80px;
    padding: 5px 10px;
    margin: 0 auto;
}

.product-page .product__search input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 0.95rem;
    color: var(--color-text);
}

.product-page .product__search button {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: var(--color-black-none);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}
.product-page .product__search button i {
    font-size: 20px;
}

.product-page .product__search button:hover {
    color: var(--color-green);
    background: #e9ffe9;
}

.product-page .product__cats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.product-page .product__cat {
    display: inline-flex;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    color: var(--color-black-none);
    font-size: 0.85rem;
    transition: all 0.25s ease;
}

.product-page .product__cat-icon {
    border-radius: 999px;
    background: var(--bg-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    padding: 7px;
}
.product-page .product__cat-icon img {
    display: block;
}

.product-page .product__cat.is-active .product__cat-icon,
.product-page .product__cat:hover .product__cat-icon {
    border-color: var(--color-green);
    background: #f3fff6;
}

.product-page .product__cat.is-active,
.product-page .product__cat:hover {
    color: var(--color-green);
}

.product-grid-box {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.product-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.product-card__thumb {
    background: var(--color-footer);
    overflow: hidden;
    position: relative;
}

.product-card__thumb img {
    display: block;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card__thumb img {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.product-card__body {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.product-card__badge {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--color-black-none);
    font-weight: 400;
}
.product-card__badge p {
    margin: 0;
}

.product-card__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.45;
    text-transform: uppercase;
    color: var(--color-black);
    transition: all 0.25s ease;
}
.product-card__title:hover {
    color: var(--color-green);
    transition: all 0.25s ease;
}

.product-load-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.product-page .product-load-more__btn {
    border: 1px solid var(--color-line);
    background: var(--bg-white);
    color: var(--color-black);
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.25s ease;
}

.product-page .product-load-more__btn:hover {
    border-color: var(--color-green);
    color: var(--color-green);
}

.product-page .product-load-more__btn.is-loading {
    opacity: 0.7;
    cursor: default;
}

.product-page .product-load-more__status {
    font-size: 0.875rem;
    color: var(--color-black-none);
    min-height: 18px;
}

/* Product detail */
.product-detail-header {
    padding: 0 0 60px;
}

.product-detail-title {
    font-size: 40px;
    font-weight: 600;
    color: var(--color-black);
    text-align: center;
    line-height: 1.3;
    padding-bottom: 40px;
}

.product-detail-divider {
    position: relative;
    height: 1px;
    background: var(--color-line);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-category-badge {
    position: relative;
    background: var(--bg-white);
    padding: 8px 32px;
    font-size: 14px;
    color: var(--color-black-none);
    text-transform: capitalize;
    letter-spacing: 0.5px;
    border: 1px solid var(--color-line);
    border-radius: 80px;
}

.product-detail-main {
    padding: 0 0 90px;
}

.product-detail {
    display: flex;
    gap: 50px;
    margin-bottom: 90px;
}

.product-detail-left {
    flex: 0 0 550px;
    max-width: 550px;
    display: flex;
    gap: 10px;
}

.product-detail-gallery {
    flex: 0 0 95px;
    max-width: 95px;
}

.thumbnail-grid {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.thumbnail-grid a {
    display: block;
    width: 95px;
    height: 95px;
    background: var(--color-footer);
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.thumbnail-grid a:hover,
.thumbnail-grid a.active {
    border-color: var(--color-green);
}

.thumbnail-grid a img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-main-image {
    flex: 1;
}

.product-detail-main-image .MagicZoom {
    display: block;
    width: 100%;
    background: var(--color-footer);
    overflow: hidden;
}

.product-detail-main-image .MagicZoom img {
    display: block;
    width: 100%;
    height: auto;
}

.product-detail-right {
    flex: 1;
}

.product-info-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-black);
    margin: 0 0 20px;
    line-height: 1.3;
}

.product-information-wrapper {
    margin-bottom: 32px;
}

.product-information-table {
    width: 100%;
    border-collapse: collapse;
}

.product-information-table tbody tr {
    border-bottom: 1px solid var(--color-line);
}

.product-information-table tbody tr:last-child {
    border-bottom: none;
}

.product-information-table td {
    padding: 12px 0;
    font-size: 14px;
    line-height: 1.6;
}

.product-information-table .info-label {
    color: var(--color-black-none);
    width: 140px;
    font-weight: 400;
}

.product-information-table .info-value {
    color: var(--color-black);
    font-weight: 500;
}

.desc-information-product {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-black-none);
}

.desc-information-product p {
    margin: 0 0 10px;
}

.product-actions-wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 32px;
}

.product-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-label {
    font-size: 14px;
    color: var(--color-black-none);
    font-weight: 400;
}

.share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-footer);
    color: var(--color-black-none);
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 14px;
}

.share-btn:hover {
    background: var(--color-green);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-contact-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background: var(--color-green);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.btn-contact-now:hover {
    background: #157030;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 144, 59, 0.3);
}

.desc-product-detail {
    margin-top: 60px;
}

.title-product-detail {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    border-bottom: 1px solid var(--color-line);
}

.title-product-detail li {
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-black-none);
    cursor: pointer;
    position: relative;
    transition: all 0.25s ease;
}

.title-product-detail li:hover,
.title-product-detail li.active {
    color: var(--color-green);
}

.title-product-detail li.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-green);
}

.product-content-information {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-black-none);
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-center-v1 {
    max-width: 100%;
}

.content-center-v1 h2,
.content-center-v1 h3 {
    color: var(--color-black);
    margin: 24px 0 16px;
    font-weight: 600;
}

.content-center-v1 p {
    margin: 0 0 16px;
}

.content-center-v1 ul {
    margin: 0 0 16px;
    padding-left: 24px;
}

.content-center-v1 ul li {
    margin-bottom: 8px;
}

/* Product Related */
.product__related_section {
    padding: 0px 0 90px;
}

.product__related_header {
    text-align: start;
    margin-bottom: 32px;
}

.product__related_title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-black);
    margin: 0;
}

.product__related_wrapper {
    position: relative;
}

/* Custom Navigation Button */
.product__related_nav_right {
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    z-index: 10;
}

.product__related_nav_btn {
    width: 50px;
    height: 50px;
    background: var(--color-black);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-white);
    font-size: 20px;
}

.product__related_nav_btn:hover {
    background: var(--color-green);
}

@media (max-width: 1199px) {
    .product-page .product_header_title {
        font-size: 3rem;
    }
    .product-page .product__filters {
        margin-bottom: 40px;
    }
    .product-page .product-grid-box {
        grid-template-columns: repeat(4, 1fr);
        gap: 22px;
    }
    .product-detail-title {
        font-size: 32px;
        padding-bottom: 30px;
    }
    .product-detail {
        gap: 36px;
    }
    .product-detail-left {
        flex: 0 0 480px;
        max-width: 480px;
    }
    .product-detail-gallery {
        flex: 0 0 80px;
        max-width: 80px;
    }
    .thumbnail-grid a {
        width: 80px;
        height: 80px;
    }
    .product__related_section {
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .product-page .product_header__title {
        padding-bottom: 40px;
    }
    .product-page .product_header_title {
        font-size: 2.5rem;
    }
    .product-page .product__filters {
        gap: 20px;
        margin-bottom: 32px;
    }
    .product-page .product__cats {
        gap: 14px;
        margin-top: 16px;
    }
    .product-page .product-grid-box {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .product-detail {
        flex-direction: column;
        margin-bottom: 70px;
    }
    .product-detail-left {
        flex: 1 1 auto;
        max-width: 100%;
    }
    .product-detail-gallery {
        flex: 0 0 90px;
        max-width: 90px;
    }
    .thumbnail-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .product-detail-main-image {
        order: -1;
    }
    .product-detail-right {
        width: 100%;
    }
    .product-detail-main {
        padding-bottom: 70px;
    }
    .product__related_nav_right {
        right: -20px;
    }
}

@media (max-width: 767px) {
    .product-page .product__header_inner {
        gap: 12px;
    }
    .product-page .product_header_title {
        font-size: 2.1rem;
    }
    .product-page .product__filters {
        padding: 18px 0;
    }
    .product-page .product__search {
        max-width: 100%;
        padding: 4px 8px;
    }
    .product-page .product__cats {
        justify-content: flex-start;
    }
    .product-grid-box {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .product-card__badge {
        font-size: 0.8rem;
    }
    .product-card__title {
        font-size: 0.95rem;
    }
    .product-detail-title {
        font-size: 26px;
        padding-bottom: 24px;
    }
    .product-detail {
        gap: 28px;
    }
    .product-detail-gallery {
        flex: 0 0 70px;
        max-width: 70px;
    }
    .thumbnail-grid a {
        width: 70px;
        height: 70px;
    }
    .product-information-table td {
        padding: 10px 0;
        font-size: 13px;
    }
    .desc-information-product,
    .product-content-information {
        font-size: 13px;
    }
    .product-actions-wrapper {
        gap: 20px;
    }
    .title-product-detail {
        gap: 20px;
        overflow-x: auto;
    }
    .title-product-detail li {
        white-space: nowrap;
    }
    .product__related_section {
        padding-bottom: 70px;
    }
    .product__related_nav_right {
        display: none;
    }
    .product-detail-gallery {
        display: none;
    }
    .product__related_title {
        font-size: 1.5rem;
    }
}

/* Small Devices (Phones) */
@media (max-width: 575px) {
    .product-page .product_header_title {
        font-size: 1.8rem;
    }
    .product-page .product__search button {
        width: 36px;
        height: 36px;
    }
    .product-page .product__cats {
        gap: 12px;
    }
    .product-page .product-grid-box {
        gap: 18px;
    }
    .product-card__badge {
        font-size: 0.75rem;
    }
    .product-detail-title {
        font-size: 22px;
    }
    .product-detail-gallery {
        flex: 0 0 60px;
        max-width: 60px;
    }
    .thumbnail-grid a {
        width: 60px;
        height: 60px;
    }
    .share-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    .btn-contact-now {
        width: 100%;
        justify-content: center;
    }
    .product__related_section {
        padding-bottom: 60px;
    }
}

/* Extra Small Devices */
@media (max-width: 374px) {
    .product-page .product_header_title {
        font-size: 1.6rem;
    }
    .product-page .product__filters {
        gap: 16px;
    }
    .product-page .product__search input {
        font-size: 0.85rem;
    }
    .product-page .product__cat {
        font-size: 0.75rem;
        gap: 8px;
    }
    .product-detail-title {
        font-size: 20px;
    }
    .product-info-title {
        font-size: 1rem;
    }
    .product-information-table td {
        font-size: 12px;
    }
    .title-product-detail li {
        font-size: 14px;
    }
    .product-page .product-grid-box {
        gap: 18px;
    }
    .product-card__title {
        font-size: 0.75rem;
    }
}
