@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    background: #ffffff;
    overflow-x: hidden;
    font-family: "Montserrat", sans-serif;
}

/* Chrome, Safari, Edge */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

img {
    width: 100%;
}

a {
    text-decoration: none;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

.offcanvas.offcanvas-top {
    height: 24em !important;
    overflow-y: scroll;
}

/* Search Box */
.offcanvas-search .search-box {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.offcanvas-search .search-input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease-in-out;
}

.offcanvas-search .search-input:focus,
.offcanvas-search .search-input:active {
    border-color: #877D82;
    box-shadow: none;
}

.offcanvas-search .search-box .search-button {
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-55%);
    border: none;
    background: transparent;
}

/* Search Icon */
.offcanvas-search .search-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #888;
    cursor: pointer;
}

.offcanvas-title {
    color: #5f585b;
    font-size: 18px;
}

.offcanvas-header .btn-close {
    font-size: 12px;
}

/* Category List */
.offcanvas-search .category-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(68px, 1fr));
    gap: 14px;
    padding: 20px 5px;
    margin-top: 1em;
    text-align: center;
}

.offcanvas-search .category-list a {
    text-decoration: none;
    color: #222;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s ease;
}

.offcanvas-search .category-list a span {
    font-size: 14px;
}

.offcanvas-search .category-list a:hover {
    transform: scale(1.02);
}

.offcanvas-search .category-tile {
    background-color: #fff;
    border-radius: 50%;
    overflow: hidden;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offcanvas-search .category-tile img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.offcanvas-search .category-name {
    font-size: 14px;
    font-weight: 500;
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    border-bottom: 1px solid rgb(232, 232, 232);
    background-color: #ffffff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Header Styling */
.header .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 5px 20px;
    background-color: #EEEEEE;
}

.header .header-top .header-top-left {
    width: 85%;
}

.header .header-top .header-top-left,
.header .header-top .header-top-right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.header .header-top .header-top-left a,
.header .header-top .header-top-right a {
    color: #000000f0;
    font-size: 10px;
    font-weight: 400;
    text-decoration: none;
}

.header .header-middle {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
    background: white;
    padding: 8px 20px;
    width: 100%;

}

.header-middle .nav-menu a {
    font-size: 14px;
    height: 62px;
    color: rgb(0, 0, 0);
    border-bottom: 4px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.header-middle .nav-menu a:hover {
    border-bottom: 4px solid #bda5ad;
}

.header-middle-right .header-search-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    height: 36px;
    background-color: #eaeaea;
    width: 20vw;
    border-radius: .25rem;
    padding: 0 16px;
    margin-right: 14px;
}

.header-search-box .search-input {
    color: #00000080;
    font-size: 14px;
    background-color: #eaeaea;
    border: none;
    outline: none;
}

.header-search-box .search-input::placeholder {
    color: #9f9f9f;
    font-size: 13px;
}

.header-middle-right .header-search-box button {
    border: none;
    background: transparent;
}

.header-middle-right svg {
    vertical-align: text-bottom;
}

.header-middle-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 17px;
}

header .cart-btn {
    position: relative;
}

header .cart-btn span.cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    color: #fff;
    font-size: 10px;
    /* background-color: #bda5ad; */
    background-color: #000;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.header-middle-right span {
    font-size: 18px;
    font-weight: 400;
    color: #d3d3d3;
}

.header-middle-right .login-btn {
    color: #000000;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.header-middle .header-middle-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
}

.header-middle .logo-wrapper .header-logo {
    max-width: 140px;
}

.nav-menu {
    display: flex;
    gap: 16px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* Dropdown Menu Container */
.full-page-menu {
    position: absolute;
    top: 100%;
    /* Place it below .header-middle */
    left: 0;
    width: 100%;
    background: white;
    display: none;
    /* Initially hidden */
    grid-template-columns: repeat(5, 1fr);
    /* 5 columns */
    gap: 20px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-top: 2px solid #bda5ad;
    z-index: 999;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Style for columns inside the dropdown */
.menu-column {
    padding: 10px;
}

.menu-column h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

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

.menu-column ul li {
    margin-bottom: 8px;
}

.menu-column ul li a {
    text-decoration: none;
    color: black;
    font-size: 14px;
}

.menu-column ul li a:hover {
    color: #007bff;
}

.header .header-lower {
    display: none;
    width: 100%;
    border-top: 1px solid #e2e2e2;
}

header .header-nav-items {
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    overflow-x: auto;

    /* Hide scrollbar for all browsers */
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: rgb(187 171 177) rgb(255 255 255);
    /* Firefox */
}

/* Webkit Browsers (Chrome, Safari, Edge) */
header .header-nav-items::-webkit-scrollbar {
    height: 8px;
    /* Scrollbar thickness */
}

header .header-nav-items::-webkit-scrollbar-track {
    background: rgb(255 255 255);
    /* Track color */
    border-radius: 5px;
}

header .header-nav-items::-webkit-scrollbar-thumb {
    background: rgb(187 171 177);
    /* Scrollbar color */
    border-radius: 5px;
}

header .header-nav-items::-webkit-scrollbar-thumb:hover {
    background: darkblue;
    /* Color on hover */
}

header .header-nav-items a.header-nav-item {
    font-size: 16px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    letter-spacing: 0.07px;
    line-height: 13px;
    padding: 10px 20px;
    text-transform: uppercase;
    text-decoration: none;
}

/* mobile category Swiper Carousel Styling */
.mobile-category-slider {
    white-space: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 14px;
    margin-top: 110px;
    margin-bottom: 16px;
    padding: 0 10px;
    height: 100%;
}

.mobile-category-slider {
    scrollbar-width: none;
    /* For Firefox */
    -ms-overflow-style: none;
    /* For Internet Explorer/Edge */
}

.mobile-category-slider::-webkit-scrollbar {
    display: none;
    /* For Chrome, Safari, and Opera */
}

.mobile-category-slider .category-item {
    width: 72px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: flex-start;
}

.mobile-category-slider .category-item img {
    width: 75px;
    height: 75px;
    border-radius: 8px;
}

.mobile-category-slider .open-status-popup img {
    border-radius: 50%;
}

.mobile-category-slider .category-item h5 {
    font-size: 12px;
    color: #000000;
    margin-bottom: 0;
}

/* Swiper Carousel Styling */
.swiper-container {
    width: 100%;
    margin-top: 88px;
    overflow: hidden;
    position: relative;
    padding: 0 10px 3rem;
}

.swiper-wrapper {
    display: flex;
    align-items: flex-start;
}

.swiper-container .swiper-slide {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: #fff;
    height: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.swiper-container .swiper-slide img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: fill;
}

/* Custom pagination styles */
.swiper-container .swiper-pagination {
    position: absolute;
    top: auto;
    bottom: 30px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.swiper-pagination-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    transform: none !important;
}

.swiper-pagination-3 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    transform: none !important;
}

.swiper-pagination-bullet {
    background: grey;
    opacity: 0.6;
    width: 6px;
    height: 6px;
    margin: 5px;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.swiper-pagination-bullet-active {
    background: #007aff;
    width: 10px;
    /* Larger active dot */
    height: 10px;
    opacity: 1;
}

/* Pagination Wrapper to Clip Extra Dots */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100px;
    margin: 8px auto 0 auto;
    /* Only show 5 dots at a time */
}

.collection-swiper-container {
    width: 100%;
    height: 100%;
    /* height: fit-content; */
    overflow: hidden;
    position: relative;
    padding: 0 5px;
}

.collection-swiper-container .swiper-slide img {
    aspect-ratio: 1/1;
    object-fit: cover;
}

.collection-swiper-container .pagination-wrapper {
    margin: 25px auto 0 auto;
}

.collection-swiper-container .swiper-slide {
    background: #fff;
    height: fit-content;
    overflow: hidden;
    border: 1px solid #d6d6d6;
    border-radius: 4px;
}

.collection-swiper-container .swiper-slide .product-lower-content {
    padding: 8px 8px 6px;
}

/* Custom pagination styles */
.collection-swiper-container .swiper-pagination {
    position: absolute;
    top: auto;
    bottom: 0px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.section-title {
    font-family: montserrat, sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 24px;
    color: #000000;
    text-align: center;
}

.section-title a {
    color: #000000;
    text-decoration: none;
}

.home-category-section .row {
    justify-content: center;
    gap: 18px 0;
    padding: 0 0px;
}

.home-category-section .col-lg-2 {
    padding: 0 6px;
    width: 16.195%;
}

.home-category-section .category-image-container {
    border: 1px solid #d6d6d6;
    border-radius: 4px;
    position: relative;
}

.view-all-box .category-image-container {
    height: 100%;
}

.home-category-section .category-image-container .category-image-wrapper {
    display: block;
    height: auto;
    aspect-ratio: 1 / 1;
    width: 100%;
    overflow: hidden;
}

.category-image-container .view-all-box {
    height: 100%;
}

.home-category-section .category-image-container img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.home-category-section .category-image-container .product-lower-content {
    padding: 6px 8px 6px;
}

.worthy-deals-section {
    width: 100%;
}

.worthy-deals-section .row {
    gap: 20px;
    justify-content: center;
}

.product-slider,
.product-slider2,
.product-slider3 {
    width: 97%;
    margin: 3rem auto;
    overflow-x: hidden;
    transform: translate(0px, 0px);
}

.product-slider .swiper-wrapper,
.product-slider2 .swiper-wrapper,
.product-slider3 .swiper-wrapper {
    width: 100%;
}

.product-slider .swiper-slide,
.product-slider2 .swiper-slide,
.product-slider3 .swiper-slide {
    cursor: pointer;
    border: 1px solid #d6d6d6;
    border-radius: 4px;
}

.product-image-wrapper {
    display: inline-block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
}

.category-item-container,
.product-wrapper {
    position: relative;
}

.wishlist-btn {
    color: #ff0000bf;
    background-color: #f4f4f4;
    position: absolute;
    bottom: 50px;
    right: 12px;
    z-index: 9;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    border-radius: 50%;
}

.wishlist-btn:hover {
    color: #ff0000bf;
}

/* .wishlist-btn i {
    filter: invert(1);
} */

.products-section .product-image-wrapper {
    height: auto !important;
    aspect-ratio: 1/1;
}

.discount-tag {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 184, 82, 0.8);
    color: #fff;
    padding: 6px 10px;
    font-size: 10px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.normal-tag {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(82, 82, 82, 0.8);
    color: #fff;
    padding: 6px 10px;
    font-size: 10px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.product-image-wrapper .product-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: top;
}

.product-slider .swiper-slide:hover .product-image,
.product-slider2 .swiper-slide:hover .product-image,
.product-slider3 .swiper-slide:hover .product-image {
    transform: scale(1.02);
    opacity: 0.9;
    transition: all 0.2s ease-in-out;
}

.product-lower-content {
    padding: 0 8px 6px;
    min-height: 85px;
}

.product-lower-content .product-rating {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    margin: 3px 0 5px;
}

.product-lower-content .product-rating i {
    color: #FEC001;
}

.star-wrapper {
    position: relative;
    display: inline-block;
    width: 1.1em;
    height: 1em;
    overflow: hidden;
}

.star-wrapper .star-empty {
    color: #ccc;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.star-wrapper .star-fill {
    width: 66%;
    color: #FFD700;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    overflow: hidden;
    white-space: nowrap;
}

.product-name a {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #2d2d2d;
    display: inline-block;
    width: 90%;
    white-space: break-spaces;
}

.product-desc {
    width: 100%;
    line-height: 1;
    margin: 4px 0 2px;
}

.product-desc a {
    display: inline-block;
    color: #979797;
    font-size: 14px;
    line-height: 1;
    width: 98%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-desc p {
    font-size: 14px;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    margin: 2px 0 5px;
}

.price {
    margin-top: 0px;
    font-size: 16px;
    color: #000000;
    font-weight: 600;
}

.rupee-symbol {
    color: #000000;
    font-size: 14px;
}

.del-price {
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
    margin-left: 1px;
}

.discount-amount {
    color: #00b852;
    font-size: 12px;
    text-transform: uppercase;
}

.swiper-container .swiper-button-prev,
.swiper-container .swiper-button-next {
    display: none !important;
}

/* Navigation Arrows */
.product-slider .swiper-button-prev,
.product-slider .swiper-button-next,
.product-slider2 .swiper-button-prev,
.product-slider2 .swiper-button-next,
.product-slider3 .swiper-button-prev,
.product-slider3 .swiper-button-next {
    color: #000;
    background: rgb(255 255 255);
    width: 47px;
    height: 47px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.product-slider .swiper-button-prev:after,
.product-slider .swiper-button-next:after,
.product-slider2 .swiper-button-prev:after,
.product-slider2 .swiper-button-next:after,
.product-slider3 .swiper-button-prev:after,
.product-slider3 .swiper-button-next:after {
    font-size: 16px;
    font-weight: 600;
}

.product-slider .swiper-button-prev,
.product-slider2 .swiper-button-prev,
.product-slider3 .swiper-button-prev {
    padding-right: 2px;
}

.product-slider .swiper-button-next,
.product-slider2 .swiper-button-next,
.product-slider3 .swiper-button-next {
    padding-left: 2px;
}

.explore-btn-wrapper {
    width: 100%;
    text-align: center;
}

.explore-btn-wrapper .explore-btn {
    color: #42a2a2;
    text-decoration-line: underline;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
}

.Fandom-container,
.hot-items-container {
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.Fandom-container .swiper-slide,
.hot-items-container .swiper-slide {
    width: auto;
    max-width: 31.7%;
}

.Fandom-container .swiper-slide img {
    height: auto;
    aspect-ratio: 1 / 1.34;
}

/* Footer css start */

footer {
    /* background-color: #1c1c1c; */
    background-color: #fff;
    border-top: 1px solid #e6e6e6;
}

.flex-column .footer-logo {
    max-width: 200px;
}

footer .flex-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    width: 100%;
    max-width: 1536px;
    margin: 0px auto;
    padding: 75px 32px 50px;
}

.flex-column .footer-widget,
.flex-column .logo-widget {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.flex-column .footer-links-list,
.flex-column .footer-social-list,
.flex-column .footer-policy-list {
    padding: 0;
}

.flex-column .footer-links-list li,
.flex-column .footer-social-list li,
.flex-column .footer-policy-list li {
    list-style: none;
}

.flex-column .footer-social-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.flex-column .footer-links-list li a {
    font-size: 12px;
    font-weight: 500;
    white-space: normal;
    overflow: hidden;
    max-width: 65ch;
    text-overflow: ellipsis;
    text-transform: none;
    text-decoration: none;
    color: rgb(66 66 66);
}

.flex-column .footer-social-list li {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 4px;
}

.flex-column .footer-social-list li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    white-space: normal;
    overflow: hidden;
    max-width: 65ch;
    text-overflow: ellipsis;
    text-transform: none;
    text-decoration: none;
    color: rgb(66 66 66);
}

.flex-column .footer-policy-list p {
    font-size: 12px;
    font-weight: 500;
    /* color: rgb(255, 255, 255); */
    color: rgb(66 66 66);
    margin-bottom: 0;
}

.flex-column .footer-policy-list a {
    color: rgb(66 66 66);
    font-weight: 700;
}

.flex-column .footer-social-list li a svg,
.flex-column .footer-social-list li a i {
    margin-right: 4px;
}

.footer-widget .footer-list-title {
    color: #000000;
    font-size: 18px;
    text-transform: uppercase;
}

.footer-widget .newsletter-box {
    margin-top: 10px;
}

.footer-widget .newsletter-box form {
    display: flex;
    justify-content: flex-start;
}

#newsletter-input {
    background: rgb(0, 0, 0);
    width: 50%;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #bda5ad;
    height: 34px;
    color: rgb(255, 255, 255);
    padding: 0px 0px 0px 10px;
    font-weight: 400;
    transition: background-color 0.3s;
}

#newsletter-input:focus,
#newsletter-input:active {
    box-shadow: none;
}

#newsletter-input::placeholder {
    color: rgb(160, 160, 160);
}

.footer-widget .newsletter-box .btn-primary {
    padding-left: 16px;
    padding-right: 16px;
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgb(41, 45, 53);
    border: none;
    border-radius: 0px;
    height: 34px;
    /* background-color: #bda5ad; */
    background-color: #dadada;
}

.footer-widget .newsletter-box .btn-primary:focus {
    box-shadow: none;
}

.flex-column .footer-widget .footer-app-list {
    padding-left: 0;
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.flex-column .footer-widget .footer-app-list img {
    width: 104px;
    height: 34px;
}

.flex-column .footer-widget .payment-logos {
    display: flex;
    gap: 5px;
    justify-content: flex-start;
    align-items: flex-end;
    margin-top: 5px;
}

.coupon-image-main {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.coupon-image-main img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    cursor: grab;
}

.custom-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background-color: #eeeeee;
    padding: 2px 0;
    font-size: 14px;
    color: #333;
    position: relative;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 10s linear infinite;
    transition: all 0.3s ease;
}

.custom-marquee:hover .marquee-content {
    animation-play-state: paused;
}

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

    100% {
        transform: translateX(-100%);
    }
}

.fanbook-main-section {
    margin-top: 88px;
    margin-bottom: 40px;
}

.fanbook-main-section .top-banner img {
    height: 340px;
}

.fanbook-main-section .top-content {
    margin: 20px 0;
    padding: 60px 110px;
    background: #EBE3F8;
    text-align: center;
}

.fanbook-main-section .top-content h4 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 36px;
}

.fanbook-main-section .top-content p {
    font-size: 22px;
    line-height: 1.3;
    margin: 0;
}

.fanbook-main-section .top-content a {
    color: #222222;
}

.fanbook-main-section .top-content a:hover {
    color: #222222;
    text-decoration: underline;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 20px;
}

.image-gallery a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.image-gallery img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1.34;
    display: block;
    object-fit: fill;
    border-radius: 8px;
}

.image-gallery a:hover {
    transform: scale(1.01);
}

.contact-section {
    padding: 130px 10px 60px;
    background-color: #fdfdfd;
}

.contact-section .section-title {
    text-align: left;
    margin-bottom: 40px;
    font-size: 32px;
    color: #111;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.contact-form,
.contact-info {
    flex: 1 1 400px;
    max-width: 550px;
}

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

.contact-section input,
.contact-section textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-section input:focus,
.contact-section textarea:focus {
    border-color: #111;
    outline: none;
}

.contact-section .btn-submit {
    background-color: #111;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.contact-section .info-box {
    margin-bottom: 20px;
}

.contact-section .info-box h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #111;
}

.contact-section .info-box p,
.contact-section .info-box a {
    color: #555;
    font-size: 15px;
    text-decoration: none;
}

.contact-section .map-box iframe {
    border-radius: 8px;
    margin-top: 15px;
}

/* category page css */

.category-section {
    margin-top: 100px;
    margin-bottom: 60px;
}

.category-section .main-row {
    padding: 0 60px;
    align-items: flex-start;
    position: relative;
}

.category-section .products-section {
    gap: 20px 0;
}

.products-section .top-banner img {
    max-height: 350px;
}

.category-section .filter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 8px 0 10px;
}

.category-section .filter-wrapper h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.breadcrumb-wrapper {
    padding: 10px 12px;
}

.breadcrumb {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
    margin-bottom: 0 !important;
    padding: 0;
    font-size: 12px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    color: #666;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: #000000;
    font-weight: 600;
}

.breadcrumb li a {
    text-decoration: none;
    color: #9c9094;
    transition: color 0.3s;
}

.breadcrumb li a:hover {
    color: #9c9094;
}

.breadcrumb .active {
    color: #222;
    font-weight: 600;
}

.custom-select-wrapper {
    position: relative;
    display: inline-block;
    width: 220px;
}

.filter-offcanvas-btn {
    width: 50%;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 34px 10px 18px;
    border: 1px solid rgb(232, 233, 234);
    border-radius: 4px;
    color: #555454;
    background-color: #f9f9f9;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
    position: relative;
}

#sort-filter {
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 34px 10px 18px;
    border: 1px solid rgb(232, 233, 234);
    border-radius: 4px;
    color: #555454;
    background-color: #f9f9f9;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

#sort-filter:focus {
    border-color: #111;
    outline: none;
    background-color: #fff;
}

.select-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    height: 16px;
    width: 18px;
    pointer-events: none;
}

#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: none;
    /* background-color: #bda5ad; */
    background-color: #000;
    color: #fff;
    border: none;
    padding: 6px;
    width: 42px;
    height: 42px;
    font-size: 16px;
    line-height: 1.8;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#scrollToTopBtn:hover {
    background-color: #bda5ad;
    transform: translateY(-2px)
}

.filter-sidebar {
    position: relative;
    padding-bottom: 60px;
}

.filter-sidebar .sidebar-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgb(209, 213, 219);
    padding: 10px 0px 20px;
    margin-bottom: 14px;
}

.filter-sidebar .sidebar-heading h5 {
    font-size: 18px;
    margin-bottom: 0;
}

.filter-sidebar .clear-filters {
    padding: 0;
    background-color: transparent;
    color: #405d9e;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-sidebar .clear-filters:hover {
    text-decoration: underline;
}


.filter-sidebar .accordion-item {
    margin-bottom: 15px;
    border: none;
    padding-bottom: 12px;
    border-radius: 0;
    border-bottom: 1px solid rgb(209, 213, 219);
}

.filter-sidebar .accordion-item:last-of-type {
    border-bottom: none;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.filter-sidebar .accordion-header {
    font-size: 15px;
    color: #1a1e31;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.filter-sidebar .accordion-body {
    padding: 12px 0 0;
    display: none;
}

.filter-sidebar .arrow-icon {
    transition: transform 0.3s ease;
    font-size: 14px;
}

/* Rotate when active */
.filter-sidebar .accordion-header.active .arrow-icon {
    transform: rotate(0deg);
}

.filter-sidebar .accordion-header .arrow-icon {
    transform: rotate(180deg);
}

.custom-checkbox {
    display: flex;
    align-items: center;
    color: #676767;
    margin-bottom: 12px;
    font-size: 14px;
    cursor: pointer;
}

.custom-checkbox input[type="checkbox"] {
    display: none;
}

.custom-checkbox .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #9a9a9a;
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    transition: 0.2s;
}

.custom-checkbox input:checked+.checkmark {
    background-color: #405d9e;
    border-color: #405d9e;
}

.custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 1px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked+.checkmark::after {
    display: block;
}

.blog-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 40px 20px;
    background: #f9f9f9;
}

.blog-card {
    padding: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #bbabb1;
}

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

.blog-card img {
    width: 100%;
    height: 190px;
    display: block;
}

.card-blog .blog-img img {
    height: auto;
    aspect-ratio: 1.5/1;
}

.last-card .last-card-inner {
    background-color: #E9E9E9;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.last-card .last-card-inner h2 {
    color: #222;
    font-size: 28px;
    font-weight: 600;
    margin: 0;
}

.blog-title {
    font-size: 18px;
    color: #333;
    margin: 15px 10px 10px;
    padding: 0 6px;
}

.read-more {
    display: inline-block;
    margin: 15px auto 20px;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.read-more:hover {
    background-color: #444;
}

.account-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.account-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 99;
}

.account-dropdown a {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.account-dropdown a:first-child {
    cursor: default;
}

.account-dropdown a:first-child:hover {
    border-radius: 8px 8px 0 0;
    background-color: #fff;
}

.account-dropdown a:last-child {
    border-radius: 0 0 8px 8px;
    border-bottom: none;
}

.account-dropdown a:hover {
    background-color: #f5f5f5;
}

.account-dropdown-wrapper:hover .account-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: fadeIn 0.3s ease-in-out;
    position: relative;
}

.popup-content h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.popup-content p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #555;
}

.popup-content input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

#marketing-form button {
    background: #111;
    color: #fff;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.popup-content button:hover {
    background: #333;
}

.popup-close {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 20px;
    font-weight: bold;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0 8px;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}