body {
    font-family: 'Poppins', sans-serif;
    background-color: #F7F7F7;
}

button {
    font-family: 'Poppins', sans-serif;
}

.common-padding {
    padding: 0px 70px;
}

.chat {
    display: flex;
    align-items: center;
}

.common-nav {
    background-color: #F1F1F1 !important;
    color: #242424 !important;
    border-bottom: 1px solid black;

}

.main-nav {
    background: #fff;
    padding-top: 28px;
    padding-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Center the logo absolutely */
.logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.reseller-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reseller-total {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.reseller p {
    color: #242424;
    margin: 0;
}

.reseller {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    color: #36F;
}

.reseller a {
    color: #36F;
    text-decoration: none;
}

.search-whole {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 2rem;
    align-items: center;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    position: relative;
}

.icon-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #EC1C24;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    position: relative;
}

.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #fff;
    color: black;
    font-size: 12px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.17);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}



.nav-2 {
    display: flex;
    align-items: center;
    background-color: #F7F7F7;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.10);
    position: relative;

}

/* Category section - left side */
.category-wrapper {
    position: relative;
    flex: 0 0 auto;
}

.category-header {
    background: #000;
    padding: 12px 29px;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: #222 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    gap: 3rem;
    transition: all 0.3s ease;
}

.category-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.menu-icon {
    font-size: 20px;
    color: #fff;
    transition: transform 0.3s ease;
}

.category-title {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}

.category-arrow {
    width: 14px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.category-header:hover .category-arrow {
    transform: rotate(180deg);
}

.category-wrapper.open .category-arrow {
    transform: rotate(180deg);
}

/* Mega Menu */
.category-mega-menu {
    position: absolute;
    top: 101%;
    left: 0;
    display: flex;
    border-radius: 0 0 8px 8px;
    z-index: 1000;
    gap: 5px;

    width: 550px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.category-wrapper:hover .category-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

/* .category-wrapper:hover .category-mega-menu,
        .category-mega-menu:hover {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            pointer-events: all;
        } */
/* .category-wrapper.open .category-mega-menu {
    display: flex;
} */

/* Categories list */
.category-list {
    width: 271px;
    /* border-right: 1px solid #eee; */
    background: #fff;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

.category-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    padding: 12px 16px !important;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-100%);
    animation: slideInLeft 0.6s ease forwards;
}

.category-item:nth-child(1) {
    animation-delay: 0.1s;
}

.category-item:nth-child(2) {
    animation-delay: 0.15s;
}

.category-item:nth-child(3) {
    animation-delay: 0.2s;
}

.category-item:nth-child(4) {
    animation-delay: 0.25s;
}

.category-item:nth-child(5) {
    animation-delay: 0.3s;
}

.category-item:nth-child(6) {
    animation-delay: 0.35s;
}

.category-item:nth-child(7) {
    animation-delay: 0.4s;
}

@keyframes slideInLeft {
    to {
        transform: translateX(0);
    }
}

.category-item:hover {
    transform: translateX(5px);
}

.category-item-header:hover {
    background: #ECECEC;
}

/* .category-item.active {
            background: #ECECEC;
            color: black;
            transform: translateX(10px);
        } */
.category-item img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

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

/* Content */
.category-content {
    flex: 1;
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #F1F1F1;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-height: 300px;
    display: none;
}

.category-list li:hover+.category-content,
.category-content:hover {
    display: block;
}

.category-wrapper:hover .category-content,
.category-mega-menu:hover .category-content {
    opacity: 1;
    transform: translateX(0);
}

.category-mega-menu:hover .category-content {
    display: block;
}

.content-column.box {
    border-radius: 8px;
    padding: 16px;
    flex: 1;
}

.content-panel {
    display: none;
    gap: 40px;
    animation: slideInRight 0.4s ease forwards;
}

.content-panel.active {
    display: flex;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.content-column h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #363636;
    position: relative;
}

.content-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    transition: width 0.3s ease;
}

.content-column:hover h4::after {
    width: 50px;
}

.content-column ul {
    list-style: none;
    padding: 0;
}

.content-column li {
    margin-bottom: 8px;
    transform: translateX(-10px);
    opacity: 0;
    animation: slideInFade 0.4s ease forwards;
}

.content-column li:nth-child(1) {
    animation-delay: 0.1s;
}

.content-column li:nth-child(2) {
    animation-delay: 0.2s;
}

.content-column li:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideInFade {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.content-column a {
    text-decoration: none;
    color: #888;
    font-size: 17px;
    font-weight: 400;
    line-height: 36px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.content-column a:hover {
    color: #667eea;
    transform: translateX(5px);
}

.content-column a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #667eea;
    transition: width 0.3s ease;
}

.content-column a:hover::before {
    width: 100%;
}

/* Center navigation links */
.about {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;

}

.about ul {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about ul li a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    transition: color 0.2s ease;
}

.about ul li a:hover {
    color: #494444;
}

/* Search section - right side */
.search {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    margin-left: auto;
    color: red;
    border-radius: 42px;
    background: rgba(236, 28, 36, 0.05);
    padding: .7rem 0.2rem 0.6rem 0.7rem;
}

.search img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.search input {
    border: none;
    background: transparent;
    font-size: 13px;
    color: red;
    outline: none;
    width: 170px;
}

.search input::placeholder {
    color: red;
}

/* Demo placeholders */
.demo-img {
    width: 14px;
    height: 14px;
    background: #fff;
    display: inline-block;
}

.search-icon {
    width: 18px;
    height: 18px;
    background: red;
    display: inline-block;
}


/* side bar */

.sidebar {
    width: 318px;
    background: white;

    background-color: #F7F7F7;
}

.breadcrumb {
    padding-top: 2rem;
    padding-bottom: 1rem;
    background: #F7F7F7;
    font-size: 14px;
    color: #666;

}

.breadcrumb-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #767676;
    font-size: 19.719px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 2rem;
    gap: 1rem;
}

.results-info p {
    margin: 0;
    /* remove default spacing */
}

.breadcrumb a {
    color: #767676;
    text-decoration: none;
    font-size: 15.719px;
    font-weight: 400;
}

.last-crumb {
    color: #242424 !important;
    text-decoration: none;
    font-size: 18.719px;
    font-weight: 400;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.section {
    /* border-bottom: 1px solid #fff; */
    background-color: white;
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.11); */

}

.section-title {

    font-size: 21.034px;
    font-weight: 600;
    color: #333;
    padding: 20px;
    font-weight: 500;
    text-transform: capitalize;
}

.category-list {
    list-style: none;
    margin-top: 0;
}

.category-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 12px 0px 12px 0px;
    color: #767676;
    font-size: 16.719px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 400;
    justify-content: space-between;
}

.item-in-common-head {
    justify-content: flex-start;
}

.category-item:hover {

    color: #333;
}

.category-item.active {

    color: #333 !important;
    font-weight: 600 !important;

}

.both-item {
    display: flex;
    flex-direction: column;
    align-items: start;

}

.one-main-item {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.category-item.nested {
    padding-left: 35px;
    font-size: 16.719px;
    font-weight: 400;
    border-radius: 6px;
    gap: 6px;
    width: 100%;
}

.nested-list {
    display: none;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
    justify-content: start;
    padding-left: 0;
}

.has-children.active .nested-list {
    display: flex;
    margin: 14px 0;
}

.category-item.nested .category-count:hover {
    background: #000;
    color: #fff;
}

.category-count {
    background: #e9ecef;
    color: #666;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    min-width: 20px;
    text-align: center;
}

/* .category-item.active .category-count {
    background: #000;
    color: #fff;
} */

.filter-tags {
    padding: 20px;
}

.tag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.filter-tag {

    border: 1px solid rgba(0, 0, 0, 0.11);
    padding: 6px 12px;
    border-radius: 8.768px;
    font-size: 12.775px;
    color: #767676;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 400;
    text-transform: capitalize;
}

.filter-tag:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.filter-tag.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.color-section {
    padding: 20px;
}

.color-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 15px;
}


.color-option input[type="checkbox"] {
    appearance: none;
    /* remove default style */
    -webkit-appearance: none;
    /* Safari fix */
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 0, 0, 0.11);
    border-radius: 4px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    background: #fff;
    /* white background */
}

/* when checked */
.color-option input[type="checkbox"]:checked {
    background-color: rgba(0, 0, 0, 0.11);
}

/* optional: add a checkmark */
.color-option input[type="checkbox"]:checked::after {
    content: "✔";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    font-size: 12px;
    color: #000;
}

.color-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
}

.color-circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #ddd;
    position: relative;
}

.color-circle.white {
    background: white;
}

.color-circle.red {
    background: #dc3545;
    border-color: #dc3545;
}

.color-circle.titanium {
    background: #6c757d;
    border-color: #6c757d;
}

.color-circle.black {
    background: #212529;
    border-color: #212529;
}

.color-circle.blue {
    background: #007bff;
    border-color: #007bff;
}

.color-circle.gray {
    background: #adb5bd;
    border-color: #adb5bd;
}

.color-circle.green {
    background: #28a745;
    border-color: #28a745;
}

.color-circle.khaki {
    background: #6f6f47;
    border-color: #6f6f47;
}

.color-count {
    display: inline-block;
    padding: 2px 4px;
    border: 1px solid rgba(0, 0, 0, 0.11);
    border-radius: 15px;
    font-size: 10px;
    color: #767676;
    background: #fff;
    min-width: 16px;
    text-align: center;
}


.stock-section {
    padding: 20px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

.checkbox-option input[type="checkbox"] {
    appearance: none;
    /* remove default style */
    -webkit-appearance: none;
    /* Safari fix */
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 0, 0, 0.11);
    border-radius: 4px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    background: #fff;
    /* white background */
}

.checkbox-option input[type="checkbox"]:checked {
    background-color: rgba(0, 0, 0, 0.11);
}

/* optional: add a checkmark */
.checkbox-option input[type="checkbox"]:checked::after {
    content: "✔";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    font-size: 12px;
    color: #000;
}

.checkbox-option label {
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.scrollable {
    max-height: 400px;
    overflow-y: auto;
}

.scrollable::-webkit-scrollbar {
    width: 4px;
}

.scrollable::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.scrollable::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 2px;
}


/* right side */

.whole-side {
    display: flex;
    background-color: #F7F7F7;
    column-gap: 20px;
}

.right-bag-section {
    /* padding: 0 0px 0 20px; */
    flex: 1;
    min-width: 0;
    overflow: hidden;
}


.right-bag-section .new-gift-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.right-bag-section .new-gift-list .new-gift-card {
    flex: 0 0 calc(33.333% - 0.67rem);
    max-width: calc(33.333% - 0.67rem);
    box-sizing: border-box;
}

/* Responsive flexbox for category page */
@media (max-width: 1100px) {
    .right-bag-section .new-gift-list .new-gift-card {
        flex: 0 0 calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
    }
}

@media (max-width: 600px) {
    .right-bag-section .new-gift-list .new-gift-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.new-gift-card {
    background: white;
    border-radius: 10px;
    padding: 0rem 1rem 0.2rem 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.new-gift-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    margin-bottom: 0.8rem;
    overflow: hidden;
}

.product-image img {
    border-radius: 8px;
    width: 100%;
    display: block;
    transition: opacity 0.6s ease, transform 0.6s ease;
    /* height: 350px; */
}


.product-image .img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.new-gift-card:hover .product-image .img-default {
    opacity: 0;
    transform: scale(1.05);
    /* slightly zoom out as it fades */
}

.new-gift-card:hover .product-image .img-hover {
    opacity: 1;
    transform: scale(1.02);
    /* small pop effect */
}

.new-gift-card h3,
.new-gift-card p,
.new-gift-card .colors,
.new-gift-card .sku {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.new-gift-card:hover h3,
.new-gift-card:hover p,
.new-gift-card:hover .colors,
.new-gift-card:hover .sku {
    transform: translateY(-5px);
}

.tag {
    position: absolute;
    top: 7px;
    left: 0px;
    background: #E5FFDB;
    color: black;
    padding: 0.2rem 0.8rem;
    border-radius: 14px;
    font-size: 0.7rem;
    font-weight: 400;


}


.colors {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 per row */
    gap: 0.3rem;
    margin: -0.5rem 0;
}

.color-dot {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    border: 1px solid #ddd;
}

.new-gift-more {
    text-align: right;

}

.new-gift-more button {

    border: none;
    padding: 9.2px 25px 9.2px 20px;
    border-radius: 35px;
    background: #E1EBFF;
    cursor: pointer;
    color: #1C61E7;
    text-align: center;

    font-size: 13px;
    font-style: normal;
    font-weight: 600;

    text-transform: capitalize;
}

.more-head-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-text button {
    padding: 12.2px 20px 13.8px 20px;
    background-color: black;
    border-radius: 5px;
    color: white;
    border: none;
}

.new-gift-card h3 {
    color: #333;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;

}

.stock {
    margin-top: -0.5rem;
    color: #333;
    font-size: 19px;
    font-style: normal;
    font-weight: 600;

}

.see-price {
    margin-top: -0.7rem;
    color: #000;
    font-size: 19px;
    font-weight: 600;

}

.sku {
    color: #333;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 0.8rem;
}

.sku-num {
    color: #A5A5A5 !important;
}

.head-with-star {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

}

.head-with-star h3 {
    color: #333;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    width: 220px;
    /* limit text width to 50px */
    white-space: nowrap;
    /* prevent line breaks */
    overflow: hidden;
    /* hide overflowing text */
    text-overflow: ellipsis;
    /* show ... when text overflows */
    display: inline-block;
}

.head-with-star img {
    width: 18.983px;
    height: 21.691px;
}

.price-with-color {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
}


/* Load More Button Style */
.load-more-wrapper {
    text-align: center;
    margin: 2rem 0;
}

#loadMoreBtn {
    padding: 12px 25px;
    border: var(--stroke-weight-2, 2px) solid var(--color-black-106, rgba(0, 0, 0, 0.11));
    border-radius: 5px;
    background: #fff;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#loadMoreBtn:hover {
    background: #f2f2f2;
    border-color: #999;
}

.new-gift-card {
    cursor: pointer;
    text-decoration: none;
    list-style: none;
}



.whole-slider-section {
    display: flex;
    background: #F7F7F7;
    gap: 4rem;
}


.gallery-container {
    display: flex;
    width: 50%;
    background: #F7F7F7;
    margin-bottom: 0rem;
}

/* Left Thumbnail Slider Section */
.thumb-sidebar {
    width: 200px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 557px;
    margin-bottom: 7rem;
}

.thumbnail-slider-container {
    flex: 1;
    position: relative;
    overflow: hidden;

}

.thumbnail-slider {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    height: 100%;
}

.thumbnail {

    margin-bottom: 33px;


    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.thumbnail:hover {
    transform: scale(1.05);

}






.thumbnail.active img {
    opacity: 0.6;
    /* decrease opacity when active */
}

.thumbnail img {
    width: 64%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-navigation {
    position: absolute;
    bottom: -103px;
    left: -70px;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    background: #F7F7F7;
    padding: 21px;
}

.thumb-nav-btn {
    width: 35px;
    height: 35px;
    background: #F7F7F7;

    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;

}

.thumb-nav-btn:hover:not(:disabled) {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-color: #007bff;
}

.thumb-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: #f5f5f5;
}

/* Main Section */
.main-section {
    flex: 1;
    position: relative;
    display: flex;
    align-items: start;
    justify-content: start;
    height: 600px;
    background: #F7F7F7;
}

.main-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: zoom-in;
    align-items: center;
    justify-content: center;
}

.main-image-slider {
    display: flex;
    height: 100%;
    width: 100%;
    position: relative;
    transition: transform 0.3s ease;
}

.main-slide {
    min-width: 100%;
    background: white;
    display: flex;
    align-items: start;
    justify-content: start;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: zoom-in;
    transform-origin: center center;
    border-radius: 10px;
    display: block;
    /* margin-top: -30px; */
}

/* Zoom Panel Styles */
.zoom-panel {
    position: absolute;
    left: calc(100% + 20px);
    top: 0;
    width: 600px;
    height: 100%;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.main-section:hover .zoom-panel {
    opacity: 1;
    visibility: visible;
}

.zoom-panel-inner {
    position: absolute;
    width: 250%;
    height: 250%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.zoom-panel-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    pointer-events: none;
}

/* Hide zoom panel on smaller screens */
@media (max-width: 1260px) {
    .zoom-panel {
        display: none !important;
    }
}

.zoom-btn {

    position: absolute;
    bottom: 10%;
    left: 9%;
    width: 10px;
    height: 20px;
    color: white;
    border: none;

    background-color: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 100;

}

.zoom-btn img {
    width: 25.271px;
    height: 25.271px;
}



/* Navigation Arrows for Main Slider */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #8080802b;
    color: #00000087;
    border: none;
    width: 45px;
    height: 45px;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 10;
    border-radius: 50px;
}

.nav-arrow:hover {
    background: none;
    transform: translateY(-50%) scale(1.1);
    background: #42414107;
}

.nav-arrow.prev {
    left: 20px;
}

.nav-arrow.next {
    right: 20px;
}

.main-section:hover .nav-arrow {
    opacity: 1;
}

/* Page Indicators */
.indicators {
    position: absolute;
    bottom: -38px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.indicator {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #BBB;
}

.indicator.active {
    background: #333;
    transform: scale(1.2);
}

.indicator:hover {
    background: #444343;
    opacity: 0.8;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: none;
}

.modal.active {
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    max-height: 90vh;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
    box-sizing: border-box;
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: zoom-in !important;
    user-select: none;
    -webkit-user-drag: none;
}

.modal-image.zoomed {
    transform: scale(1.5) !important;
    cursor: zoom-out !important;
    transition: transform 0.3s ease !important;
}

.modal-image:active {
    cursor: grabbing;
}

.modal-image.zoomed {
    cursor: move;
}

.modal-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 0;
    outline: none;
}

.modal-nav svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
}

.modal-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
    border-color: white;
}

.modal-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.modal-nav.prev {
    left: 20px;
}

.modal-nav.next {
    right: 20px;
}

.modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    padding: 0;
    outline: none;
}

.modal-close svg {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg) scale(1.1);
    border-color: white;
}

.modal-close:active {
    transform: rotate(90deg) scale(0.95);
}

.zoom-controls {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 16px;
    padding: 15px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(10px);
}

.zoom-scale-slider {
    width: 200px;
    height: 4px;
    border-radius: 2px;
    background: #ddd;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.zoom-scale-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zoom-scale-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: #0056b3;
}

.zoom-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    white-space: nowrap;
}


.product-details-full {
    width: 50%;
    background: #F7F7F7;
}

.rpet-product-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    height: 100%;
}

.rpet-product-title {
    font-size: 27.497px;
    font-weight: 700;
    color: #302000;
    margin-bottom: 8px;
    font-weight: 600;

}

.rpet-product-price {
    font-size: 18.093px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 500;
}


.rpet-product-headline {
    font-size: 26.087px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #242424;
    font-weight: 600;
    margin: 1rem 0;
}


.rpet-product-description {
    font-size: 15.43px;
    line-height: 1.6;
    color: #767676;
    margin-bottom: 20px;
    font-weight: 400;
}

.rpet-product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.11);
    padding-bottom: 17px;
    flex-direction: column;
    gap: 0.5rem;
}

.color-icon-detaile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rpet-product-meta p {
    color: #767676;
    margin: 10px 0;
}

.rpet-product-meta strong {
    color: #333;
    font-weight: 600;
}

.rpet-btn-compare,
.rpet-btn-wishlist {
    border: none;
    background: none;
    font-size: 15.43px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #333;
    font-weight: 600;
}

.related-pro-head {
    font-size: 21.692px;
    color: black;
    font-style: normal;
    font-weight: 500;
    line-height: 40.169px;
    margin-top: 4rem;
}

.rpet-btn-compare:hover,
.rpet-btn-wishlist:hover {
    color: #574c4c;
}

.rpet-product-meta {
    font-size: 15.43px;
    margin-bottom: 20px;
}


.rpet-product-share {
    font-size: 15.43px;
    color: #333;
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 600;

}

.rpet-product-share a {
    color: #333;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.rpet-product-share a:hover {
    color: #0077b5;
    /* Example hover color */
}


.info-tab-header {
    list-style: none;
    padding: 0;
    margin: 103px 0 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-top: 1px solid #ccc;

}

.info-tab-link {
    cursor: pointer;
    padding: 8px 15px;
    transition: 0.3s;
    white-space: nowrap;
}

.info-tab-link.active {
    font-weight: bold;
    border-top: 2px solid black;
}

.info-tab-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-tab-panel.active {
    display: block;
    opacity: 1;
}



.review-no-border {
    border: none !important;
}

#desc.info-tab-panel {
    margin-top: 5rem;
    border-radius: 0;
}

.main-title {
    font-size: 28px;
    font-weight: 600;
    color: #242424;
    margin-bottom: 20px;
    line-height: 1.4;
}

.subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #242424;
    margin-bottom: 30px;
}

.description {
    font-size: 16px;
    color: #767676;
    line-height: 1.8;
    margin-bottom: 30px;
}

.description strong {
    color: #767676;
    font-weight: 600;
}

.section-title-specify {
    font-size: 20px;
    font-weight: 600;
    color: #242424;

}

.specify-title {
    margin-top: -1.5rem;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
    margin-left: -2.3rem;
}

.features-list li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #767676;
    position: relative;
    padding-left: 20px;
}

.features-list li::before {
    content: "•";
    color: #767676;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.features-list strong {
    color: #333;
    font-weight: 600;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;

}

.specs-table th,
.specs-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    /* adds bottom border */
}

.specs-table th {
    background-color: #f8f8f8;
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    color: #242424;
    text-transform: uppercase;
    font-size: 15.792px;
    letter-spacing: 0.5px;
    font-weight: 600;
}



.specs-table th:first-child {
    border-top-left-radius: 0;
}

.specs-table th:last-child {
    border-top-right-radius: 0;
}

.specs-table td {
    padding: 15px 20px;
    color: #767676;
    font-size: 16px;
}


.benefits-section {
    margin: 40px 0;
}

.benefits-intro {
    font-size: 16px;
    color: #767676;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 40px;
    margin-left: -2.3rem;
}

.benefits-list li {
    margin-bottom: 15px;
    font-size: 16px;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.benefits-list li::before {
    content: "•";
    color: #767676;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.benefits-list strong {
    color: #333;
    font-weight: 600;
}

.reviews-section {
    border-top: 1px solid #ddd;
    padding-top: 40px;
    margin-top: 50px;
}

.review-all {
    display: flex;
    align-items: start;
    gap: 8rem;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.reviews-left h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.no-reviews {
    font-size: 14px;
    color: #999;
}

.reviews-right h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.review-form {
    width: 50%;
}

.red-star {
    color: red;
}

.rating-with-star {
    display: flex;
    gap: 1rem;
    align-items: baseline;
}

.review-intro {
    font-size: 16px;
    color: #242424;
    margin-bottom: 15px;
    font-weight: 600;
}

.required-info {
    font-size: 16px;
    color: #767676;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 16px;
    color: #242424;
    margin-bottom: 8px;
    font-weight: 500;
}

.rating-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.star {
    font-size: 21px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
}

.star:hover,
.star.active {
    color: #ffa500;
}

.form-group textarea {
    width: 100%;
    min-height: 120px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #666;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 25px 0;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
}

.checkbox-group label {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 0;
}

.submit-btn {
    background-color: #000 !important;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #333;
}


.related-slider {
    margin: 40px 0;
}

.related-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;

}

.percentage-tag {
    position: absolute;
    top: 7px;
    left: 0px;
    background: #D33;
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 400;
}

/* Base dots */
.related-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: #fff;
    border: 1px solid #333;
    opacity: 1;
    /* keep visible */
    margin: 0 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}


.related-pagination .swiper-pagination-bullet-active {
    background: #333;
    border-color: #333;
}

.swiper-wrap-arrow {
    margin-bottom: 3rem;
}

.paddin-last {
    padding-bottom: 6rem;
}

.bordr-rating {
    border-bottom: 1px solid #ddd;
    padding-bottom: 2rem;
}

.additional-right-padd {
    padding: 0px 70px 0 0px;
}

.additional-left-padd {
    padding: 0px 0px 0 70px !important;
}

.additional img {
    width: 100%;
}

.additional {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-top: 5rem;
}

.additional-oppo {
    flex-direction: row-reverse !important;
}

.additional-right-padd h2 {
    color: #BFBFBF;
    font-size: 22.637px;
    font-weight: 400;

}

.additional-right-padd h1 {
    color: #242424;
    font-size: 57.851px;
    font-weight: 500;
    width: 70%;
    margin: 0;
}

.additional-right-padd p {
    color: #767676;
    font-size: 16.122px;
    font-weight: 400;
    width: 85%;

}

.print-option-all h4 {
    color: #000;
    font-size: 22.3px;
    font-weight: 600;

}

.print-option-all p {
    color: #767676;
    font-size: 16.122px;
    font-weight: 400;

}

.option-heads {
    color: #767676;
    font-size: 16.563px;
    font-weight: 600;

}

.comparison-table {
    width: 100%;
    border-collapse: collapse;

}

.comparison-table th,
.comparison-table td {
    border-bottom: 1px solid #ddd;
    padding: 12px 15px;
    text-align: left;
}

.comparison-table td {
    color: #767676;
    font-size: 16.563px;
    font-style: normal;
    font-weight: 400;

}

.comparison-table th {
    color: #242424;
    font-size: 17.867px;
    font-weight: 600;
    text-transform: uppercase;
}



.note {
    margin-top: 3rem;

}

.cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 265px;
    margin-bottom: 4rem;
}

.close-btn {
    position: relative;
    top: 6%;
    left: 90%;
    background: #E3E3E3;
    color: #554f4f;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 27px;
    cursor: pointer;
    line-height: 20px;
    text-align: center;
    z-index: 2;

}

.whish-card .sku {
    margin-bottom: 0px !important;
    margin-top: -11px !important;
}

.whish-card .new-gift-card h3 {
    font-size: 16px;
}

.whish-card .stock {
    font-size: 15px;
    font-weight: 400;
}

.whish-card .see-price {
    font-size: 14px;
}

.whish-card .color-dot {
    width: 15px;
    height: 15px;
}

.whish-card .head-with-star img {
    width: 15.983px;
    height: 15.691px;
}

.wishlist {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5rem;
    background: #F4F3DE;
    padding: 3rem 0;
}


.wishlist h2 {
    color: #242424;
    text-align: center;
    font-size: 68px;
    font-style: normal;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 1px;
}

.wishlist-breadcrumb {
    text-align: center;
    font-size: 15px;
}

.wishlist-breadcrumb-home {
    color: #767676;
    font-weight: 400;
    text-decoration: none;
}

.wishlist-breadcrumb-separator {
    color: #767676;
    margin: 0 6px;
}

/* Current page (Wishlist) */
.wishlist-breadcrumb-current {
    color: #242424;
    font-weight: 600;
    text-decoration: none;
}

.trck-all {
    padding: 0 265px;
}

.trck-all p {
    text-align: center;
    color: #767676;
    font-size: 16.5px;
    font-weight: 400;
    border-top: 1px solid #dadadaa3;
    padding-top: 3rem;

}

.track-form {
    display: flex;
    align-items: center;
    gap: 47px;
    background: #f6f6f6;
    padding: 20px;
    border-radius: 6px;
    justify-content: space-between;
    border-bottom: 1px solid #dadadaa3;
    padding-bottom: 3rem;
    margin-bottom: 4rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.form-group label {
    font-size: 14px;
    color: #222;
    margin-bottom: 6px;
}

.form-group input {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    width: 100%;
}

.form-group input:focus {
    border-color: #333;
}

.track-btn {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 9px 40px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: 0.2rem;
}

.track-btn:hover {
    background: #333;
}



/* catalog section */


.catalog-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f7f7f7;
}

.catalog-left {
    max-width: 45%;
}


.catalog-left h2 {
    font-size: 84.274px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 16px;
}

.catalog-left h2 .highlight {
    color: #16843E;
}

.catalog-left p {
    margin: 15px 0;
    color: #000;
    font-size: 19.069px;
    font-style: normal;
    font-weight: 400;
    width: 90%;
}

.catalog-left .btn-group {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
}

.catalog-left button {
    padding: 10px 20px;
    border: none;
    margin-right: 10px;
    font-size: 15.2px;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.catalog-left .shop-btn {
    background: black;
    color: white;
}

.catalog-left .shop-btn:hover {
    opacity: 0.8;
}

.catalog-left .account-btn {
    background: white;
    border: 1px solid #333;
    color: #333;
}

.catalog-right {
    position: relative;
    width: 60%;
    margin-top: 4rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 9;
    /* keeps consistent size */
}

.catalog-video,
.catalog-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.catalog-video {

    pointer-events: none;
    transition: opacity 0.3s;
}

.catalog-video.active {
    opacity: 1;
    pointer-events: auto;
}

.play-icon {
    position: absolute;
    top: 49%;
    left: 47.5%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: white;
    border-radius: 50%;
    padding: 1.9rem 2.8rem 1rem;
    cursor: pointer;
    border: 1px solid white;
}

.play-icon:hover {
    background: rgba(240, 235, 235, 0.8);
}



.catalog-banner {
    position: relative;
    width: 100%;
    height: auto;
    z-index: -2;
}

.catalog-banner-img {
    width: 100%;
    display: block;

}

.catalog-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    /* white text for visibility */
}

.catalog-content h2 {
    margin-bottom: 3px;
    color: #242424;
    text-align: center;
    font-size: 68px;
    font-style: normal;
    font-weight: 500;
    margin-top: 0;
}


.catalog-offer {
    position: relative;


}

.catalog-offer-content {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 500px;
    color: #fff;
    text-align: center;
    padding: 10px;
}

.catalog-offer-title {
    color: #FFF;
    text-align: center;
    font-size: 31.603px;
    font-weight: 500;
    margin: 7px 0;

}

.catalog-offer-subtitle {
    color: rgba(255, 255, 255, 0.60);
    text-align: center;
    font-size: 17.118px;
    font-weight: 700;
    margin: 0;
}

.catalog-offer-desc {
    color: rgba(255, 255, 255, 0.80);
    text-align: center;
    font-size: 18.435px;
    font-weight: 400;
    margin: 11px 0;
}

.catalog-offer-btn {
    padding: 13.065px 19.913px;
    border: none;
    background: #D33;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    border-radius: 6.584px;
    transition: 0.3s;
    margin: 11px 0;

}

.catalog-offer-btn:hover {
    background: #333;
}

.catalog-offer-img {
    border-radius: 13.168px;
    width: 100%;
}

.catalog-offer-all {
    display: flex;
    margin-top: 9rem;
    align-items: stretch;
    gap: 2rem;
}


.catalog-offer-row {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: start;
    background: #f7f7f7;
    border-radius: 8px;
}

.catalog-offer-text h2 {
    margin: 0;
    color: #242424;
    font-size: 32.236px;
    font-weight: 600;
}

.catalog-offer-text p {
    color: #767676;
    font-size: 18.069px;
    font-weight: 400;
    margin: 3px 0;

}

.catalog-shop-btn {
    padding: 11.065px 23.913px;
    border: none;
    background: #D33;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    border-radius: 46.5px;
    transition: 0.3s;
    margin: 11px 0;
}

.cards-contai {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 3rem;
    border: 1px solid black;
    padding: 2rem;
    border-radius: 15px;

}


.corporate-gift {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 5rem 0;
}

.corporate-gift-img {
    width: 50%;
    border-radius: 10px;
}

.corporate-gift-content {
    flex: 1;
}

.corporate-gift-title {
    font-size: 66.473px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #242424;
    font-weight: 500;

}

.corporate-gift-desc {
    font-size: 20.019px;
    color: rgba(15, 15, 15, 0.80);
    margin-bottom: 1.5rem;
    font-weight: 400;

}

.corporate-gift-buttons {
    display: flex;
    gap: 1.5rem;
}

/* Filled button */
.btn-corporate-filled {
    background: #000;
    color: #fff;
    padding: 12px 22px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
}

.btn-corporate-filled:hover {
    background: #333;
}


.btn-corporate-underline {
    background: none;
    border: none;
    font-size: 15px;
    cursor: pointer;
    position: relative;
    padding: 12px 0;
    color: #000;
}

.btn-corporate-underline::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    margin-top: 4px;
    transition: 0.3s;
}

.btn-corporate-underline:hover::after {
    background: rgb(51, 49, 49);
}


.corparate-auto-slide {
    margin: auto;
    overflow: hidden;
    position: relative;

}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-220px * 6));
    }
}

.corparate-auto-slide .slide-track {
    display: flex;
    animation: scroll 20s linear infinite;
    /* Width for original + duplicate slides */
    width: calc(220px * 12);
}

.corparate-auto-slide .slide-card {
    flex: 0 0 200px;
    margin: 0 10px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 10px;
    background: white;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.corparate-auto-slide .slide-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
}

.corparate-auto-slide .slide-card p {
    margin: 15px 0 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Pause animation on hover */
.corparate-auto-slide:hover .slide-track {
    animation-play-state: paused;
}

/* Demo placeholder for images */
.placeholder-img {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}



.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #F4F4F4;
    margin-top: 7rem;
}

.form-container {
    width: 100%;

}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 43px;
}

/* Form Inputs */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #2d3748;
    font-size: 0.9rem;
}

.required::after {
    content: " *";
    color: #e53e3e;
}

.form-control,
.form-select {
    width: 108%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
    color: #767676;
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

/* Radio Buttons */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: black;
}

.radio-option label {
    font-size: 0.9rem;
    color: #4a5568;
    margin: 0;
    cursor: pointer;
}

.captcha-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    padding: 10px 15px;
    width: 320px;
    background: #fff;
    font-size: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    background: #F7F7F7;
}

/* Checkbox + text */
.captcha-checkbox {
    width: 30px;
    height: 30px;
    accent-color: #222;
    cursor: pointer;
}

.captcha-text {
    margin-left: 8px;
    cursor: pointer;
    font-size: 18px;
}

.capache-all {
    text-align: center;
}

.capache-all p {
    margin: 4px;
    font-size: 12px;
    color: #555;
}

.captcha-logo {
    background: url('https://www.gstatic.com/recaptcha/api2/logo_48.png') no-repeat center;
    background-size: contain;
    width: 34px;
    height: 34px;
    display: inline-block;
}

.not-robot {
    display: flex;
    align-items: center;
}

.captcha-section {
    display: flex;
    gap: 5rem;
    margin-top: 2rem;
}

/* Submit Button */
.submit-btn {
    width: 130px;
    padding: 14px 24px;
    background: #000;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 4rem;
    font-size: 14px;
}

.submit-btn:hover {
    background: #2b2a2a;
    transform: translateY(-1px);

}

.submit-btn:active {
    transform: translateY(0);
}

.common-form-padd {
    padding: 50px 10px 0 70px;
}

.form-quote-img img {
    width: 100%;
}

.common-form-padd .form-group input {
    background: #F7F7F7;
}

.catalog-options {
    display: flex;
    gap: 2rem;
}

/* login-section */
.register-body {
    background-color: #F1F1F4 !important;
}

.loggin-padding {
    padding: 0 209px;
}

.loginAll-wrapper {
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 3rem;
    gap: 4rem;
}

/* Left Section */
.loginAll-register-section {}

.loginAll-register-title {
    font-size: 22px;
    font-weight: 500;
    color: #242424;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.loginAll-form-group {
    margin-bottom: 20px;
}

.loginAll-form-label {
    display: block;
    font-size: 17.5px;
    color: #242424;
    margin-bottom: 8px;
    font-weight: 400;
}

.loginAll-required-star {
    color: #e74c3c;
    margin-left: 4px;
}

.loginAll-input {
    width: 95%;
    padding: 14px 16px;
    border: 1px solid #e1e8ed;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #ffffff;
}

.loginAll-input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.loginAll-country-select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e1e8ed;
    border-radius: 4px;
    font-size: 14px;
    background: #ffffff;
    cursor: pointer;
}

.loginAll-country-select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.loginAll-password-wrapper {
    position: relative;
}

.loginAll-password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    font-size: 16px;
}

.loginAll-type-section {
    margin: 30px 0;
}

.loginAll-type-title {
    font-size: 31px;
    font-weight: 500;
    color: #242424;
    margin-bottom: 20px;
}

.loginAll-type-select-wrapper {
    position: relative;
}

.loginAll-type-select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e1e8ed;
    border-radius: 4px;
    font-size: 14px;
    background: #ffffff;
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNiIgdmlld0JveD0iMCAwIDEwIDYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDFMNSA1TDkgMSIgc3Ryb2tlPSIjNjY2IiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=');
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.loginAll-type-select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.loginAll-privacy-text {
    font-size: 14px;
    color: #666;
    margin: 20px 0;
    line-height: 1.5;
    font-weight: 500;
}

.loginAll-privacy-link {
    color: #D33;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.loginAll-privacy-link:hover {
    text-decoration: underline;
}

.loginAll-register-btn {
    width: 100%;
    background: #000;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.loginAll-register-btn:hover {
    background: #1a252f;
    transform: translateY(-1px);
}

.loginAll-register-btn:active {
    transform: translateY(0);
}

/* Right Section */
.loginAll-login-section {
    padding: 40px;
    border-left: 1px solid rgba(0, 0, 0, 0.11);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loginAll-login-title {
    font-size: 31px;
    font-weight: 500;
    color: #242424;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.loginAll-login-description {
    font-size: 15px;
    color: #767676;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: center;
    font-weight: 400;
}

.loginAll-login-btn {
    width: fit-content;
    color: #1C61E7;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 7.219px;
    background: #E1EBFF;
}

.loginAll-login-btn:hover {
    background: #3498db;
    color: white;
    transform: translateY(-1px);
}

.loginAll-login-btn:active {
    transform: translateY(0);
}

/* responsive nav bar */


.responsive-nav {
    display: none;
}

.sidebar-menu {
    display: none;
}

.side-menu {
    position: fixed;
    top: 0px;
    left: 0;
    width: 353px;
    background: #f9fafb;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    height: 100%;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    overflow-y: scroll;

}


.side-menu.open {
    transform: translateX(0);
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 999;
}

.overlay.show {
    display: block;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
    padding: 27px 15px;
}

.search-input {
    width: 100%;
    padding: 8px 30px 8px 0;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #767676;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.search-input::placeholder {
    color: #999;
}


.tabs {
    display: flex;
}

.tab-btn {
    flex: 1;
    padding: 17px;
    background: #F5F5F5;
    border-bottom: 1px solid #DBDBDB;
    border: none;
    cursor: pointer;
    color: #B9B1B1;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    text-transform: capitalize;
}

.tab-btn.active {
    background: #e7e7e7;
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    text-transform: capitalize;
    border-bottom: 1px solid black;
}

/* Tab content */

.tab-content {
    display: none;
}

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

.tab-content p {
    margin: 8px 0;
}




.tab-sidebar {
    width: 100%;
    background: #fff;
    border-right: 1px solid #ddd;
    position: relative;

}

/* vertical line */
/* .tab-sidebar ul::before {
   content: "";
  position: absolute;
  left: 284px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ECECEC;
  height: 70%;
} */
.more-sidebar ul::before {
    height: 100% !important;
}

.tab-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tab-sidebar li {
    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
}

.tab-sidebar li:hover {
    background: #f8f8f8;
}

.tab-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    flex-shrink: 0;
}

.tab-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



.tab-text,
.tab-text a {
    flex: 1;
    letter-spacing: 0.5px;
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    text-decoration: none;
}

.tab-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    font-size: 19px;
    transition: all 0.3s ease;
    background: #f8f8f8;
    border-left: 1px solid #ECECEC;
}

.has-submenu.open>li>.tab-arrow {
    transform: rotate(90deg);
    background: #000;
    color: #fff;
    border-left: none;
}


.no-toggle .tab-arrow {
    transform: none !important;
    background: #f8f8f8 !important;
    color: inherit !important;
    border-left: 1px solid #ececec !important;
}

.has-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.has-submenu>li {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    cursor: pointer;
    border-bottom: 1px solid #ddd;

    font-size: 14px;
}

.tab-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 19px 23px;
}

.tab-left a {
    text-decoration: none;
}

.submenu-nav {
    display: none;
    margin: 0;
    padding-left: 20px;
    list-style: none;
}

.has-submenu.open>.submenu-nav {
    display: block;
}

.submenu-nav li {
    font-size: 15px;
    cursor: pointer;
    color: #737373;
}

.submenu-nav.sub-nav-padding {
    padding-left: 40px;
    /* adjust as you need */
}

.left-catagory-sidebar {
    width: 252px !important;
}



@media (max-width: 480px) {
    .tab-sidebar {
        width: 99.5%;
    }
}



@media(max-width:1308px) {
    .common-nav {
        display: none;
    }

    .main-nav {
        display: none;
    }

    .nav-2 {
        display: none;
    }

    .responsive-nav {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        box-sizing: border-box;
        background-color: black;
    }

    /* Menu icon */
    .menu-icon-responsive {
        font-size: 24px;
        cursor: pointer;
        color: #fff;
    }

    .breadcrumb {
        padding-top: 11rem;
    }

    .catalog-banner-img {
        margin-top: 8rem;
        height: 80px;
    }

    .wishlist {
        margin-top: 8rem;
    }

}

/* responsive nav bar */



/* modal for user login */

.avatar {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.avatar:hover {
    transform: scale(1.05);
}

.avatar .avatar-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e0e0e0;
}

/* Modal Overlay */
.auth-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.auth-modal-overlay.modal-active {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 50px;
}

/* Modal Container */
.auth-modal-container {
    background: white;
    width: 26%;
    border-radius: 0px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.3s ease;
    position: relative;
    margin-right: 124px;
    margin-top: 2.8rem;
}

/* Modal Header */
.auth-modal-header {
    padding: 32px 32px 8px;
    text-align: start;
}

.auth-welcome-title {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.auth-welcome-subtitle {
    font-size: 15px;
    color: #767676;
    margin-bottom: 24px;
    margin-top: 1px;
}

/* Modal Body */
.auth-modal-body {
    padding: 0 32px 45px;
}

/* Form Styles */
.auth-login-form {
    width: 100%;
}

.auth-form-group {
    margin-bottom: 16px;
}

.auth-field-label {
    display: block;
    color: #333;
    margin-bottom: 6px;
    color: #242424;
    font-size: 15px;
    font-weight: 400;

}

.auth-input-field {
    width: 90%;
    padding: 12px 16px;
    border: 1.5px solid #e1e5e9;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s ease;
    background: #fff;
}

.auth-input-field:focus {
    outline: none;
    border-color: #4285f4;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

.auth-input-field::placeholder {
    color: #999;
}

/* Checkbox & Remember Me */
.auth-remember-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 1rem;
}

.auth-remember-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-remember-checkbox {
    width: 16px;
    height: 16px;
    border: 1.75px solid #ACACAC;
    accent-color: #151616;
}

.auth-remember-label {
    cursor: pointer;
    color: #555252;
    font-size: 15.29px;
    font-weight: 500;
    opacity: 0.4;
}



.auth-forgot-link {
    font-size: 15.29px;
    color: #4482EF;
    text-decoration: none;
    font-weight: 400;
}

.auth-forgot-link:hover {
    text-decoration: underline;
}

/* Sign In Button */
.auth-signin-btn {
    width: 100%;
    background: #000;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 16px;
}

.auth-signin-btn:hover {
    background: #222;
    transform: translateY(-1px);
}

.auth-signin-btn:active {
    transform: translateY(0);
}

/* Google Sign In */
.auth-google-btn {
    width: 100%;
    background: #fff;
    border: 1.5px solid #dadce0;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.auth-google-btn:hover {
    background: #f8f9fa;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.auth-google-btn.loading {
    opacity: 0.65;
    pointer-events: none;
}

.google-signin-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid #ACACAC;
    border-radius: 8px;
}

.google-signin-wrapper #g_id_onload {
    display: none;
}

.google-signin-wrapper #googleSignInContainer.loading {
    opacity: 0.6;
    pointer-events: none;
    filter: grayscale(0.2);
}

.fallback-google-btn {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.google-icon {
    width: 18px;
    height: 18px;
}

/* Sign Up Link */
.auth-signup-section {
    text-align: center;
    font-size: 17px;
    color: #ACACAC;
}

.auth-signup-link {
    color: #518EF8;
    text-decoration: none;
    font-weight: 400;
}

.auth-signup-link:hover {
    text-decoration: underline;
}

/* Close Button */
.auth-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.auth-modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.red-clr {
    color: red;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Demo styling for page */
.demo-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.demo-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.demo-instruction {
    color: #666;
    margin-bottom: 30px;
}



/* Hide toggle button by default */
.sidebar-toggle {
    display: none;
    position: absolute;
    /* take it out of flow */
    top: 97px;
    /* adjust based on your navbar height */
    left: 15px;
    z-index: 0;
    /* above navbar */
    color: #000;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
    padding: 16px 29px 16px 13px;
    font-size: 15px;
    background-color: white;
}

.tab-sidebar li a {
    text-decoration: none;
}

.filter-flex {
    margin-right: 0.8rem;
}


.back-to-product {
    display: inline-block;
    position: relative;
    color: black;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effect: slide from right to left and change color */
.back-to-product:hover {
    color: #333;
    transform: translateX(-5px);
    /* moves 5px to the left */
    text-decoration: underline;
}


.catalog_title_header {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin: 4rem 0;
}

.product_grid_container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 12rem;
}

.product_card_item {
    background: white;
    border-radius: 12px;
    padding: 72px 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.product_card_item_under_text {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.product_card_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product_image_container {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product_image_container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product_category_label {
    font-size: 12px;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.hover_modal_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(80, 80, 80, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.product_card_item:hover .hover_modal_overlay {
    opacity: 1;
    visibility: visible;
}

.modal_title_text {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal_subtitle_text {
    color: #e0e0e0;
    font-size: 14px;
    margin-bottom: 25px;
}

.redirect_arrow_button {
    width: 60px;
    height: 60px;
    background-color: #ff3333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.redirect_arrow_button:hover {
    background-color: #ff4444;
    transform: scale(1.1);
}

.arrow_icon_svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2.5;
    fill: none;
}

.border-each {
    border-bottom: 1px solid #ddd;
    padding-bottom: 40px;
    margin-bottom: 50px;
}

.star-with-customer-review {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.custom-review {
    font-size: 15px;
    color: #A19FA4;
}

.rpet-btn-wishlist .wishlist-heart {
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.rpet-btn-wishlist.active .wishlist-heart {
    filter: none;
    /* make red tint */

}



/* order tracking */

/* REMOVE GOOGLE BUTTON BORDER */
#googleSignInContainer .nsm7Bb-HzV7m-LgbsSe {
    border: none !important;
    box-shadow: none !important;
}

/* Remove hover border also */
#googleSignInContainer .nsm7Bb-HzV7m-LgbsSe:hover {
    border: none !important;
    box-shadow: none !important;
}

.priv-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}


.checkout-form-input::-webkit-inner-spin-button,
.checkout-form-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.checkout-form-input[type="number"] {
    -moz-appearance: textfield;
}



.sign-buttonnn {
    border: none;
    background: white;
}


.nodataa-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    min-height: 400px;
}

.star-rating {
    display: flex;
    align-items: center;
}

.coupon-error-message {
    display: none;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

@media(max-width:1047px) {
    .nodataa-div {
        margin-bottom: 5rem;
        min-height: auto;
    }
}



@media(max-width:1209px) {
    .priv-flex {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 0rem;
        flex-direction: column;
        margin-bottom: 1rem;
    }
}

@media(max-width:426px) {
    .main-image {
        margin-top: 0px;
    }
}

@media(max-width:380px) {
    .custom-review {
        font-size: 12px;
    }
}

@media(max-width:357px) {
    .side-menu {
        width: 93%;
    }
}

@media(max-width:1225px) {
    .new-gift-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}


@media(max-width:837px) {
    .auth-remember-section {
        flex-direction: column;
        align-items: start;
        gap: 0.5rem;
    }
}

@media(max-width:647px) {
    .catalog-content h2 {
        font-size: 30px !important;
    }

    .category-list {
        width: none !important;
    }
}




/* Show toggle button only on mobile/tablet */
@media(max-width:1047px) {
    .sidebar-toggle {
        display: block;

    }

    .new-gift-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .whole-side {
        position: relative;
        margin-top: 5rem;
    }

    .sidebar {
        position: fixed;
        top: 0;
        left: -860px;
        /* hidden off-screen */
        width: 73%;
        height: 100%;
        background: #fff;
        box-shadow: 2px 0 8px rgba(0, 0, 0, 0.3);
        transition: left 0.3s ease;
        z-index: 2000;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .category-list {
        border: none !important;
    }

    .sidebar.active {
        left: 0;
        /* slide in */
    }

    /* Dark overlay when sidebar is open */
    .sidebar-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1999;
    }

    .sidebar-overlay.active {
        display: block;
    }
}



@media(max-width:442px) {
    .sidebar {
        width: 89%;
    }
}

@media(max-width:1046px) {
    .auth-modal-container {
        width: 48% !important;
    }
}

@media(max-width:679px) {
    .auth-modal-container {
        width: 100% !important;
        margin-right: 43px;
        margin-left: 19px;

    }
}


@media(max-width:403px) {
    .auth-modal-container {

        overflow: scroll;
        height: 550px;
    }

}

@media(max-width:1023px) {
    .loggin-padding {
        padding: 0 109px;
    }
}

@media(max-width:834px) {
    .loggin-padding {
        padding: 0 70px;
    }
}

@media (max-width: 685px) {
    .loggin-padding {
        padding: 0px 20px;
    }
}

@media (max-width: 768px) {
    .loginAll-wrapper {
        grid-template-columns: 1fr;
        margin: 10px;
    }

    .loginAll-register-section,
    .loginAll-login-section {
        padding: 30px 20px;
    }
}



@media(max-width:1665px) {
    .loginAll-type-select {
        width: 102%;
    }

    .loginAll-country-select {
        width: 102%;
    }
}


@media (max-width: 671px) {
    .catalog-content h2 {
        font-size: 21px !important;
    }

    .catalog-left h2 {
        font-size: 72px;
    }

    .catalog-left p {
        font-size: 17.069px;
    }

    .catalog-left button {
        padding: 10px 16px;
    }
}


@media (max-width: 968px) {
    .content-wrapper {
        display: flow;

    }



    .form-section {
        padding: 40px 68px 0 30px;
    }

    .catalog-book {
        width: 180px;
        height: 250px;
        transform: perspective(800px) rotateY(8deg);
    }
}

@media (max-width: 768px) {




    .form-row {
        grid-template-columns: 1fr;
    }

    .form-control,
    .form-select {
        width: 105%;
    }

    .catalog-book {
        width: 160px;
        height: 220px;
    }

    .plant-decoration {
        display: none;
    }
}

@media (max-width: 480px) {




    .captcha-wrapper {
        max-width: 100%;
    }

    .submit-btn {
        max-width: 100%;
    }
}



@media (max-width: 768px) {
    .corporate-gift {
        flex-direction: column;
        text-align: center;
    }

    .corporate-gift-img {
        width: 100%;
    }

    .corporate-gift-buttons {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .catalog-offer-all {
        flex-direction: column;
        /* stack image offer + text/cards */
    }

    .catalog-offer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
    }

    .catalog-offer-row button {
        align-self: flex-start;
        /* button stays left under text */
    }

    .cards-contai {
        grid-template-columns: repeat(2, 1fr);
        /* 2 per row */
    }
}

/* Mobile (<=768px) */
@media (max-width: 768px) {
    .catalog-offer-title {
        font-size: 24px;
    }

    .catalog-offer-subtitle {
        font-size: 14px;
    }

    .catalog-offer-desc {
        font-size: 15px;
    }

    .catalog-offer-btn,
    .catalog-shop-btn {
        font-size: 13px;
        padding: 10px 18px;
    }

    .cards-contai {
        grid-template-columns: 1fr;
        /* 1 card per row */
    }
}







@media(max-width:1133px) {
    .catalog-left {
        max-width: 100%;
    }

    .catalog-right {
        width: 100%;
        margin-top: 5rem;
    }
}


@media (max-width: 768px) {
    .track-form {
        flex-direction: column;
        align-items: stretch;
    }

    .track-btn {
        width: 100%;
    }
}

@media(max-width: 992px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .cards-container {
        grid-template-columns: 1fr;
    }
}

@media(max-width:1582px) {
    .additional {
        gap: 3rem;
    }

    .additional-right-padd h1 {
        width: 100%;
    }

    .additional-right-padd p {
        width: 100%;
    }

    .cards-container {
        padding: 0 165px;
    }

}

@media(max-width:1242px) {
    .cards-container {
        padding: 0 65px;
    }
}

@media(max-width:1430px) {
    .additional {
        flex-direction: column;
    }

    .additional-right-padd {
        padding: 0px 20px !important;
    }

    .additional-oppo {
        flex-direction: column-reverse !important;
    }
}

@media (max-width: 768px) {

    .comparison-table,
    .comparison-table thead,
    .comparison-table tbody,
    .comparison-table th,
    .comparison-table td,
    .comparison-table tr {
        display: block;
    }

    .comparison-table tr {
        margin-bottom: 15px;
    }

    .comparison-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    .comparison-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        text-align: left;
        font-weight: bold;
    }

    .comparison-table th {
        display: none;
    }

    .review-all {
        gap: 4rem;
    }
}

@media(max-width:612px) {
    .review-all {
        flex-direction: column-reverse;
    }

    .review-form {
        width: 96%;
    }
}


/* Responsive Design */
@media (max-width: 768px) {




    .tab {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }

    .tab.active {
        border-bottom: 2px solid #000;
    }

    #desc.info-tab-panel {
        padding: 25px 20px;
    }

    .main-title {
        font-size: 24px;
    }

    .subtitle {
        font-size: 18px;
    }

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

    .specs-table th,
    .specs-table td {
        padding: 12px 15px;
        font-size: 14px;
    }

    .reviews-header {
        flex-direction: column;
        gap: 25px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
        /* Prevent zoom on iOS */
    }
}

@media (max-width: 480px) {
    .tabs {

        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .tab {
        font-size: 12px;
        padding: 10px 0;
    }



    .main-title {
        font-size: 20px;
        line-height: 1.3;
    }

    .subtitle {
        font-size: 16px;
    }

    .specs-table th,
    .specs-table td {
        padding: 10px;
        font-size: 13px;
    }
}

@media(max-width:693px) {
    .breadcrumb-row {
        flex-direction: column-reverse;
    }

    .gallery-container {
        flex-direction: column;
        height: auto;
        width: 100%;
        gap: 1.5rem;
    }

    .main-section {
        order: 0;
        height: auto;
        min-height: 320px;
    }

    .thumb-sidebar {
        order: 1;
        width: 100%;
        height: auto;
        margin-bottom: 0;
        position: relative;
    }

    .thumbnail-slider-container {
        position: relative;
        width: 100%;
        overflow: hidden;
        padding: 12px 0px 20px;
        margin-bottom: 0.5rem;
        min-height: 140px;
        display: flex;
        align-items: center;
    }

    .thumbnail-slider {
        flex-direction: row;
        gap: 12px;
        width: max-content;
        transition: transform 0.3s ease;
        align-items: center;
    }

    .thumbnail {
        margin: 0;
        flex: 0 0 auto;
    }

    .thumbnail img {
        width: 137px;
        height: 135px;
        object-fit: cover;
        border-radius: 8px;
        margin-top: 4rem;
    }

    .thumbnail-navigation {
        display: flex;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        justify-content: space-between;
        align-items: center;
        padding: 0 6px;
        transform: translateY(-50%);
        z-index: 2;
        background: transparent;
    }

    .thumbnail-navigation .thumb-nav-btn {
        pointer-events: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }

    #thumbUp img {
        transform: rotate(-90deg);
    }

    #thumbDown img {
        transform: rotate(-90deg);
    }

    .whole-slider-section {
        flex-direction: column;
        gap: 2rem;
    }

    .product-details-full {
        margin-top: 0;
    }
}

@media(max-width:445px) {}

@media (max-width: 992px) {
    .new-gift-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (1 per row) */
@media (max-width: 600px) {
    .new-gift-list {
        grid-template-columns: 1fr;
    }
}




@media (max-width:1260px) {
    .whole-slider-section {
        display: flex;
        flex-direction: column !important;
        gap: 0rem;
    }

    .gallery-container {
        width: 100%;
    }

    .product-details-full {
        width: 100%;
    }

    .rpet-product-card {
        margin: 6rem auto;
    }
}

@media(max-width:685px) {
    .common-padding {
        padding: 0px 20px;
    }

    .breadcrumb {
        padding-top: 10rem !important;
    }
}

@media(max-width:1175px) {
    .catalog-right {
        width: 100%;
    }

    .catalog-section {
        flex-direction: column-reverse;
    }

    .catalog-left {
        width: 100%;
    }

    .catalog-content h2 {
        font-size: 37px;
    }

}



@media(max-width:615px) {
    .captcha-section {
        flex-direction: column;
        gap: 2rem;
    }

    .catalog-options {
        flex-direction: column;
        gap: 2rem;
    }
}

@media(max-width:453px) {
    .auth-remember-section {
        flex-direction: column;
        gap: 1.3rem;
        align-items: start;
    }

    .auth-signup-section {
        font-size: 15px;
    }
}

/* @media(max-width:561px) {
    .zoom-btn img {
        width: 35.271px;
        height: 35.271px;
    }
} */

@media(max-width:499px) {
    .additional-right-padd h1 {
        font-size: 42.851px;
    }

    .additional-right-padd h2 {
        font-size: 18.637px;
    }

    .additional-right-padd {
        padding: 0px 20px !important;
    }

    .breadcrumb a {
        font-size: 13.719px;
    }

    .breadcrumb-row {
        align-items: start;
        font-size: 15.719px;
    }
}

@media (max-width: 458px) {
    .catalog-left h2 {
        font-size: 65px;
    }

    .catalog-left p {
        font-size: 13.069px;
    }

    .corporate-gift-title {
        font-size: 48px;
    }

    .corporate-gift-desc {
        font-size: 16.019px;
    }

    .corporate-gift-buttons {
        flex-direction: column;
    }
}

@media(max-width:358px) {
    .catalog-left h2 {
        font-size: 51px;
    }
}

@media(max-width:1284px) {
    .trck-all {
        padding: 0 145px;
    }
}

@media (max-width: 1084px) {
    .trck-all {
        padding: 0 105px;
    }
}

@media (max-width: 822px) {
    .trck-all {
        padding: 0 65px;
    }
}

@media (max-width: 685px) {
    .trck-all {
        padding: 0px 20px;
    }
}

@media(max-width:360px) {
    .wishlist h2 {
        font-size: 53px;
    }
}

@media(max-width:646px) {
    .info-tab-link {
        font-size: 13px;
    }
}

@media(max-width:570px) {
    .info-tab-header {
        gap: 6px;
    }
}

@media(max-width:534px) {
    .info-tab-link {
        padding: 7px 9px;
    }
}

@media(max-width:496px) {
    .info-tab-link {
        font-size: 11px;
    }
}

@media(max-width:402px) {
    .info-tab-header {
        gap: 10px;
    }

    .info-tab-link {
        font-size: 10px;
        padding: 7px 3px;
    }
}

@media(max-width:347px) {
    .info-tab-header {
        gap: 6px;
    }

    .info-tab-link {
        font-size: 10px;
        padding: 7px 3px;
    }
}

@media(max-width:2101px) {
    .auth-modal-container {
        width: 31%;
    }
}

@media (max-width: 1555px) {
    .auth-modal-container {
        width: 36%;
    }
}