@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500&display=swap');

/* AR One Sans */
@font-face {
    font-family: 'AR One Sans';
    src: url('../fonts/AROneSans-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'AR One Sans';
    src: url('../fonts/AROneSans-Bold.ttf') format('truetype');
    font-weight: 700;
}

/* Barlow Semi Condensed */
@font-face {
    font-family: 'Barlow Semi Condensed';
    src: url('../fonts/BarlowSemiCondensed-Regular.ttf') format('truetype');
    font-weight: 400;
}

/* Playfair Display */
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
}

/* Hypatia Sans Pro */
@font-face {
    font-family: 'Hypatia Sans Pro';
    src: url('../fonts/HypatiaSansPro-ExtraLight.otf') format('opentype');
    font-weight: 200;
}

/* Mr Leopolde */
@font-face {
    font-family: 'Mr Leopolde';
    src: url('../fonts/Mr Leopolde Regular.ttf') format('truetype');
    font-weight: 400;
}

/* Shancalluna */
@font-face {
    font-family: 'Shancalluna';
    src: url('../fonts/Shancalluna_regular.ttf') format('truetype');
    font-weight: 400;
}

body {
    margin: 0;
    background: #fffafa;
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #444;
    font-variant: normal;
    font-feature-settings: normal;
}

b, strong {
    font-weight: 500 !important;
}
.footer-bottom a{
    color: #ffffff !important;
    text-decoration: none !important;
}
.top-bar {
    background: #e6e6e1;
    padding: 8px 0;
    font-size: 13px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* SLIDE TEXT BASE */
.swiper-slide {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s ease;
}

/* ACTIVE SLIDE ANIMATION */
.swiper-slide-active {
    opacity: 1;
    transform: translateY(0);
}

/* ARROWS */
.swiper-button-prev,
.swiper-button-next {
    color: #333;
    scale: 0.6;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 14px;
}

.custom-navbar {
    background: #0c0d16;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.custom-navbar.scrolled {
    padding: 10px 40px;
    background: #0c0d16;
}

/* LOGO SHRINK */
.custom-navbar.scrolled .nav-left img {
    width: 120px;
}

/* LEFT GROUP */
.nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* MENU */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-left img {
    width:172px;
    transition: 0.3s;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-right li a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
}

.nav-right svg {
    width: 18px;
    height: 18px;
    color: white;
    opacity: 0.8;
    transition: 0.3s;
    cursor: pointer;
}

.nav-right li a:hover svg {
    opacity: 1;
    transform: translateY(-1px);
}

/* MENU CENTER */
.nav-menu li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    position: relative;
    font-size: 19px; 
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #ffffff;
}

.nav-menu li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 1.5px;
    background: #ffffff;
    bottom: -6px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

/* RIGHT */
.nav-right i {
    margin-left: 20px;
    cursor: pointer;
}

/* HAMBURGER */
.menu-icon {
    display: none;
    font-size: 20px;
    cursor: pointer;
}

/* SIDE MENU */
.side-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 260px;
    height: 100%;
    background: #0c0d16;
    transition: 0.4s;
    padding: 20px;
    z-index: 9999;
}

.side-menu ul {
    list-style: none;
    padding: 20px 0;
}

.side-menu li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.side-menu li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.side-menu li a:hover {
    color: #fff; 
}

.close {
    color: #fff;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

    .nav-menu {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .custom-navbar {
        padding:24px 15px;
    }

    /* LOGO CENTER */
    .nav-left img {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
    }

    .nav-left {
        gap: 10px;
    }

    .nav-right i {
        font-size: 18px;
    }

    .custom-navbar.scrolled {
        padding: 16px 40px;
        background: #0c0d16;
    }

    .custom-navbar.scrolled .nav-left img {
        width: 100px;
    }
}
.custom-navbar {
    will-change: transform;
}

.side-menu {
    will-change: left;
}
/* DROPDOWN */
.custom-drop {
    position: relative;
}

.custom-drop > a {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.6);
    /*font-weight: 500;*/
    font-size: 19px;
    transition: color 0.3s;
}

.custom-drop > a:hover,
.custom-drop > a.active {
    color: #fff;
}

.custom-drop > a i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

/* Dropdown box */
.dropdown-box {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1b29;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.3);
    padding: 10px 0;
    display: none;
    flex-direction: column;
    z-index: 1000;
}

.dropdown-box.active {
    display: flex;
}

/* Main filter item container */
.filter-main-item {
    display: flex;
    flex-direction: column;
}

/* MAIN FILTER LINKS (UPDATED SIZE & PADDING) */
.main-filter-link {
padding: 4px 16px;
    font-size: 16px !important;       /* smaller font */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    /*font-weight: 600;*/
    cursor: pointer;
    user-select: none;
    transition: background 0.3s, color 0.3s;
}

.main-filter-link:hover {
    background: #0c0d16;
    color: white;
}

/* Right arrow icon */
.right-arrow {
    transition: transform 0.3s ease;
}

/* Rotate arrow when active */
.main-filter-link.active .right-arrow {
    transform: rotate(90deg);
}

/* Sub-filters container */
.sub-filters {
    display: none ;
    flex-direction: column;
    padding-left: 15px;
    background: #27293d;
    border-left: 2px solid #444a7a;
}

/* Show sub-filters */
.sub-filters.active {
    display: flex;
}

/* SUB FILTER LINKS (UPDATED SIZE & PADDING) */
.sub-filter-item {
    padding:4px 5px;          /* smaller padding */
    font-size:14px !important;            /* smaller font */
    color: rgba(255,255,255,0.7) !important;
    /*font-weight: 400 !important;*/
    text-decoration: none !important;
    border-radius: 0 8px 8px 0 !important;
    transition: background 0.3s !important;
}

.sub-filter-item:hover {
    background: #3a3f6a;
    color: white;
}

/* MOBILE SPECIFIC FOR DROPDOWN LINKS */
@media (max-width: 768px) {
    .main-filter-link {
        font-size: 15px;
        padding: 8px 12px;
    }

    .sub-filter-item {
        font-size: 13px;
        padding: 5px 12px;
    }

    .right-arrow {
        font-size: 9px; /* smaller arrow on mobile */
    }
}


/* CATEGORY SLIDER */
.category-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 25px;
    padding: 15px 25px;
    background: #f8f8f8;
    scroll-behavior: smooth;
}

.category-wrapper::-webkit-scrollbar {
    display: none;
}

.category {
    text-align: center;
    min-width: 90px;
    cursor: pointer;
}

/* CIRCLE IMAGE STYLE */
.category img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eee;
    transition: 0.3s;
}

/* HOVER EFFECT */
.category:hover img {
    transform: scale(1.1);
    border-color: #2f2c3d;
}

.category p {
    font-size: 12px;
    margin-top: 8px;
    letter-spacing: 0.5px;
}



/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    /* height: 400px; */
    overflow: hidden;
}

/* VIDEO */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXT OVERLAY */
/* .hero-text {
  position: absolute;
  top: 40px;
  left: 40px;
  font-size: 40px;
  font-weight: 600;
  color: white;
  padding: 15px 25px;
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.15);
} */

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .hero {
        height:100%;
    }

    .hero-text {
        font-size: 22px;
        top: 20px;
        left: 20px;
    }
}
.promise-section {
    /*background: #11121d;*/
    color: white;
    padding: 50px 20px;
    text-align: center;
        background: linear-gradient(179deg, #2a257a 5%, #13162e 100%);
}

.promise-section h2 {
    text-align: left;
    margin-bottom: 40px;
    font-weight: 500;
    color: #fff;
}

/* GRID */
.promise-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* BOX */
.promise-box {
    text-align: center;
    transition: 0.3s;
}

.promise-icon {
    font-size: 50px;
    color: #f1c40f; /* soft gold/yellow */
    margin-bottom: 15px;
    transition: 0.3s;
}

.promise-box p {
    font-size: 18px;
    color: #ccc;
}

/* HOVER EFFECT */
.promise-box:hover {
    transform: translateY(-5px);
}

.promise-box:hover .promise-icon {
    transform: scale(1.2);
}

/* MOBILE */
@media(max-width: 768px) {
    .promise-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .promise-section h2 {
        text-align: center;
    }
}
/* 
.promise-section {
  background: linear-gradient(135deg, #11121d, #1f1c2c);
}

.promise-box img {
  filter: drop-shadow(0 0 5px gold);
} */


.shop-category {
    padding: 50px 20px;
    background: #f5f5f5;
}

.shop-category h2 {
    margin-bottom: 30px;
    font-weight: 500;
}

/* GRID */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.cat-card {
    text-align: center;
    cursor: pointer;
}

/* IMAGE */
.cat-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.4s;
}

/* TEXT */
.cat-card h3 {
    margin-top: 15px;
    font-size: 16px;
}

.cat-card p {
    font-size: 14px;
    color: #777;
}

/* HOVER EFFECT 🔥 */
.cat-card:hover img {
    transform: scale(1.05);
}

.cat-card:hover p {
    letter-spacing: 1px;
}

/* MOBILE */
@media(max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
.cat-card{
        padding: 4px  !important;
}
    .cat-card img {
        height:160px !important;
    }
    .cat-card h3{
            font-size: 12px  !important;
    }
    
    .cat-card p {
    font-size: 11px  !important; 
}
}


.testimonial-section {
    padding: 60px 20px;
    background: #f3f3f3;
}

.testimonial-section h2 {
    font-weight: 500;
}

.stars {
    margin: 10px 0;
    font-size: 18px;
}

.stars.green {
    color: #1a8f6d;
}

/* BOX */
.testimonial-box {
    max-width: 500px;
    margin: 30px auto;
    padding: 40px;
    border: 1px solid #1a8f6d;
    border-radius: 15px;
    background: #f7f7f7;
    cursor: pointer;
    transition: 0.3s;
}

.testimonial-box:hover {
    transform: translateY(-5px);
}

.quote {
    font-size: 40px;
    color: #1a8f6d;
}

.testimonial-box a {
    display: block;
    margin-top: 10px;
}

.modal-content {
    border-radius: 15px;
}

.product-card {
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
}

/* IMAGE BOX FIX SIZE */
.img-box {
    position: relative;
    width: 100%;
    height: 220px;
    /* 🔥 SAME HEIGHT */
    overflow: hidden;
    border-radius: 8px;
}

/* BOTH IMAGES SAME SIZE */
.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 🔥 IMPORTANT */
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.4s;
}

/* HIDE SECOND IMAGE */
.img2 {
    opacity: 0;
}

/* HOVER EFFECT */
.product-card:hover .img2 {
    opacity: 1;
}

.product-card:hover .img1 {
    opacity: 0;
}

/* TAG */
.tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: black;
    color: white;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 20px;
}

.tag.sold {
    background: #555;
}

/* TEXT */
.product-card h3 {
    font-size: 14px;
    margin-top: 10px;
}

.price {
    font-size: 14px;
}

.old {
    text-decoration: line-through;
    color: #888;
}

/* BUTTON */
button {
    width: 100%;
    padding: 8px;
    border-radius: 20px;
    border: 1px solid #ccc;
    background: white;
    margin-top: 8px;
}

button:hover {
    background: black;
    color: white;
}
.intention-section {
    background: #11121d;
    padding: 60px 20px;
    color: white;
    /*text-align: center;*/
}

.intention-section h2 {
    margin-bottom: 40px;
    font-weight: 600;
    font-size: 28px;
}

/* CARD */
.intent-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    text-align: center;
    padding: 40px 25px;
    transition: all 0.4s ease;
    cursor: pointer;
    height: 100%;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

/* ICON */
.intent-icon {
    font-size: 50px;
    color: #f1c40f; /* soft gold */
    margin-bottom: 20px;
    transition: 0.4s;
}

/* TEXT */
.intent-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 600;
}

.intent-card p {
    font-size: 14px;
    color: #e2e8f0;
    line-height: 1.5;
}

/* HOVER EFFECT */
.intent-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.intent-card:hover .intent-icon {
    transform: scale(1.2);
}

/* MOBILE */
@media(max-width:768px) {
    .intent-card {
        padding: 30px 15px;
    }
    .intention-section {
    background: #11121d;
    padding: 60px 20px;
    color: white;
    text-align: center;
}
}

.media-section {
    /* background: #11121d; */
    padding: 30px 0;
    color: rgb(0, 0, 0);
    text-align: center;
}

.top-text {
    margin-bottom: 26px;
    font-size: 18px;
    font-weight: 600;
}

/* Static image styling */
.fixed-image {
    width: 100%;
    max-width: 1500px;
    /* Control max width if needed */
    height: auto;
    object-fit: contain;
}

.about-founder {
    background: #f5f5f5;
    padding: 80px 20px;
}

/* IMAGE */
.founder-img {
    width: 100%;
    height: 100%;

    border-radius: 15px;
}

/* CONTENT BOX */
.content-box {
    background: white;
    padding: 40px;
    /* margin-left: -80px; */
    /* 🔥 overlap effect */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* border-radius: 10px; */
    /* margin-top: -110px; */
}

.content-box h2 {
    margin-bottom: 20px;
}

.content-box p {
    color: #555;
    font-size: 15px;
}

/* MOBILE FIX */
@media(max-width:768px) {
.about-founder{
        background: #f5f5f5;
    padding: 37px 9px;
}
    .content-box {
        margin-left: 12px;
        margin-top: -42px;
        margin-right: 12px;
        padding: 10px;
    }

    .content-box p{
        font-size: 12px;
    }
    .content-box h2 {
    margin-bottom: 20px;
    font-size: 17px;
}
}

.footer-section {
    background: #11121d;
    color: #cfcbd9;
    padding: 60px 0 20px;
    /* font-family: 'Source Serif 4', serif; */
}

/* LOGO */
.footer-logo {
    width: 180px;
}

/* LIST */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 6px;
    transition: 0.3s;
    cursor: pointer;
    font-size: 13px;
}

.footer-section ul li:hover {
    color: #fff;
}

/* CONTACT */
.footer-section p {
    margin: 5px 0;
        font-size: 18px;
        text-transform:lowercase !important;
}
/*.product-inner p {*/
/*     text-transform:lowercase !important;*/
/*}*/
/* SUBSCRIBE */
.subscribe-title {
    font-size: 18px;
    margin-bottom: 15px;
}

.subscribe-box {
    display: flex;
    align-items: center;
    border: 1px solid #555;
    border-radius: 50px;
    overflow: hidden;
    background: transparent;
}

.subscribe-box input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    color: #fff;
    outline: none;
}

.subscribe-box button {
    background: transparent;
    border: none;
    color: #fff;
    padding: 0 20px;
    font-size: 18px;
    transition: 0.3s;
}

.subscribe-box button:hover {
    transform: translateX(5px);
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 15px;
    font-size: 13px;
    color: #aaa;
}

.about-img {
    width: 100%;
    border-radius: 15px;
}

.small-title {
    font-size: 12px;
    letter-spacing: 1px;
    color: #777;
}

.about-section h3 {
    margin: 10px 0;
}

.about-btn {
    margin-top: 15px;
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid #ccc;
    background: white;
}

.about-btn:hover {
    background: black;
    color: white;
}

.team-card {
    background: #f5f5f5;
    padding: 15px;
    text-align: left;
}

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-card h4 {
    margin-top: 10px;
    font-size: 16px;
}

.team-card p {
    font-size: 13px;
    color: #666;
}

.contact-section {
    background: #f3f3f3;
    padding: 60px 20px;
}

/* FORM WIDTH */
.contact-form {
    max-width: 700px;
    margin: auto;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #ccc;
    background: transparent;
    outline: none;
    font-size: 14px;
}

/* TEXTAREA */
.contact-form textarea {
    height: 120px;
    resize: none;
}

/* FOCUS EFFECT 🔥 */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: black;
}

/* BUTTON */
.contact-form button {
    margin-top: 20px;
    padding: 12px 30px;
    border-radius: 30px;
    background: black;
    color: white;
    border: none;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #333;
}




/* STICKY IMAGE */
.sticky-img {
    position: sticky;
    top: 20px;
}

/* MAIN IMAGE */
.main-img {
    width: 100%;
    border-radius: 12px;
}

/* THUMBNAILS */
.thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumb:hover {
    border: 2px solid black;
}

/* BUTTONS */
.buy-btn {
    background: black;
    color: #fff;
    border-radius: 30px;
    padding: 12px;
}

.cart-btn {
    border-radius: 30px;
    padding: 12px;
}

/* TITLE */
.page-title {
    font-size: 40px;
    font-weight: 500;
}

/* FILTER */
.filter-box {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

/* PRODUCT CARD */
.product-card {
    background: #fff;
    border-radius: 5px;
    padding: 15px;
    transition: 0.3s ease;
    /* border: 1px solid #0000001c; */
    box-shadow: 0 0 10px #00000017;
}

.filter-card {
    background: #fff;
    border-radius: 5px;
    padding: 15px;
    transition: 0.3s ease;
    /* border: 1px solid #0000001c; */
    box-shadow: 0 0 10px #00000017;
}

/* .product-card:hover {
    transform: translateY(-5px);
} */

/* IMAGE BOX */
.product-image-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

/* MAIN IMAGE */
.main-img {
    width: 100%;
    display: block;
    border-radius: 10px;
    transition: opacity 0.4s ease;
}

/* HOVER IMAGE */
.hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

/* HOVER EFFECT */
.product-image-box:hover .hover-img {
    opacity: 1;
}

.product-image-box:hover .main-img {
    opacity: 0;
}

/* SALE BADGE */
.sale-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: black;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    z-index: 3;
}

/* BUTTON */
.cart-btn {
    border-radius: 30px;
    border: 1px solid #ccc;
    padding: 10px;
    width: 90%;
    background: white;
    transition: 0.3s;
}

/* .cart-btn:hover {
    background: black;
    color: white;
} */

/* PRICE */
.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.new-price {
    font-weight: 500;
}


/* Title */
.product-title {
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 15px;
}

/* Price */
.price del {
    color: #888;
    margin-right: 10px;
}

.price .sale-price {
    font-weight: 500;
    font-size: 20px;
}

.badge-sale {
    background: #000;
    color: #fff;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 12px;
    margin-left: 14px;
}



/* Buttons */
.cart-btn {
    border-radius: 30px;
    padding: 14px;
    font-size: 16px;
}

.buy-btn {
    border-radius: 30px;
    padding: 14px;
    font-size: 16px;
    background: #000;
    color: #fff;
    border: none;
    width: 90%;
}

/* Features */
.feature-box {
    margin-top: 25px;
}

.feature-item {
    text-align: center;
    font-size: 14px;
}

.feature-item img {
    width: 28px;
    margin-bottom: 5px;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25D366;
    color: #fff;
    padding: 10px 15px;
    border-radius: 30px;
    display: block;
    text-align: center;
    font-weight: 500;
    text-decoration: none;
    margin-top: 20px;
    width: 50%;
    margin: 26px auto;
    box-shadow: 0 0 10px rgba(37, 37, 37, 0.24);
}

.whatsapp-btn:hover {
    background: #1ebb58;
    color: #fff;
}

.qty-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 12px;
    overflow: hidden;
    width: 140px;
    justify-content: space-between;
    padding: 5px 10px;
    background: #fff;
}

.qty-box button {
    border: none;
    background: transparent;
    font-size: 20px;
    width: 30px;
    height: 30px;
    padding: 0;
    cursor: pointer;
    color: #333;
    margin: 0;
}

.qty-box input {
    width: 40px;
    text-align: center;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    background: transparent;
}

.product-inner {
    padding: 0 89px;
}

.custom-accordion {
    border-top: 1px solid #e5e5e5;
    /* font-family: system-ui, sans-serif; */
}

.acc-item {
    border-bottom: 1px solid #e5e5e5;
}

.acc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.acc-header:hover {
    background: #fafafa;
}

/* LEFT ICON + TEXT */
.acc-header span:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* SVG ICON SIZE */
.icon-accordion {
    width: 18px;
    height: 18px;
    stroke-width: 1.5;
}

/* RIGHT ARROW */
.icon-caret {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

/* BODY */
.acc-body {
    height: 0;
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* smoother */
    padding: 0 12px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    will-change: height;
    /* 🔥 performance boost */
}

/* ACTIVE STATE */
.acc-item.active .acc-body {
    padding: 10px 12px 18px;
}

.acc-item.active .acc-header {
    background: #f9f9f9;
}

.acc-item.active .icon-caret {
    transform: rotate(180deg);
}


@media(max-width:991px) {
   .product-inner{
    padding: 0;
   }

   .product-image-box{
        width: 100%;
    height: 125px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
   }

   .cart-btn {
    border-radius: 30px;
    padding: 9px;
    font-size: 13px;
}
}

  .icon-wrap {
    position: relative;
    display: inline-block;
}

/* BAG SIZE */
.icon-bag {
    width: 24px;
    height: 24px;
}

/* 🔥 NUMBER BADGE */
.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ff3b3b;
    color: #fff;
    font-size: 10px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    line-height: 1;
}

.icon-bag {
    transition: 0.3s;
}

.cart-link:hover .icon-bag {
    transform: scale(1.1);
}


.product-card a{
    color: #000;
    text-decoration: none;
}


.footer-link h4{
    font-size:28px;
}
.footer-link a{
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
}
.product-image-box {
    width: 100%;
    height: 280px; /* 👈 fix height */
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

/* MAIN + HOVER IMAGE SAME SIZE */
.product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 👈 important */
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.4s ease;
}

/* HOVER EFFECT */
.product-image-box .hover-img {
    opacity: 0;
}

.product-card:hover .hover-img {
    opacity: 1;
}



@media(max-width: 991px) {

   .product-image-box{
        width: 100%;
        height: 160px;
        overflow: hidden;
        position: relative;
        border-radius: 10px;
   }
   .product-card{
           padding: 4px;
   }
   .product-card a{
       font-size: 12px;
   }
   .new-price{
        font-size: 12px;
   }

}

.pagination .page-link {
    color: #000;
    border-radius: 8px;
    margin: 0 3px;
}

.pagination .page-item.active .page-link {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.pagination .page-link:hover {
    background-color: #000;
    color: #fff;
}

.search-modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    display:none;
    z-index:9999;
}

.search-container{
    width:600px;
    margin:80px auto;
    background:#2c2636;
    color:#fff;
    border-radius:15px;
    padding:20px;
}

.search-top{
    display:flex;
    align-items:center;
    border:1px solid #aaa;
    border-radius:30px;
    padding:8px 15px;
}

.search-top input{
    flex:1;
    background:none;
    border:none;
    color:#fff;
    outline:none;
}

.search-heading{
    font-size:12px;
    margin-top:15px;
    opacity:0.7;
}

/* PRODUCT ITEM */
.search-item{
    display:flex;
    gap:10px;
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,0.1);
    text-decoration:none;
    color:#fff;
}

.search-item img{
    width:60px;
    height:60px;
    border-radius:6px;
}

.search-title{
    font-size:14px;
}

.search-price{
    font-size:12px;
    color:#ccc;
}

.search-more{
    padding:10px 0;
    font-size:14px;
}

       @media (max-width: 768px) {
 
    .pagination .page-link {
    color: #000;
    border-radius: 6px;
    margin: 0px 3px;
    padding: 3px 5px;
    font-size: 11px;
}

.whatsapp-btn {
    background: #25D366;
    color: #FFF;
    padding: 9px 15px;
    border-radius: 30px;
    display: block;
    text-align: center;
    font-weight: 500;
    text-decoration: none;
    margin-top: 20px;
    width: 89%;
    margin: 26px auto;
    box-shadow: 0 0 10px rgba(37, 37, 37, 0.24);
}
}
/* ================= MOBILE (<=768px) ================= */
@media (max-width: 768px){

    .search-container{
        width: 95%;
        margin: 40px auto;
        padding: 15px;
        border-radius: 12px;
    }

    .search-top{
        padding: 6px 12px;
    }

    .search-top input{
        font-size: 14px;
    }

    .search-item{
        gap: 8px;
        padding: 8px 0;
    }

    .search-item img{
        width: 50px;
        height: 50px;
    }

    .search-title{
        font-size: 13px;
    }

    .search-price{
        font-size: 11px;
    }

    .search-heading{
        font-size: 11px;
    }

    .search-more{
        font-size: 13px;
    }
}


/* ================= SMALL MOBILE (<=480px) ================= */
@media (max-width: 480px){

    .search-container{
        width: 100%;
        height: 100%;
        margin: 0;
        border-radius: 0;
        padding: 12px;
        overflow-y: auto;
    }

    .search-top{
        padding: 6px 10px;
    }

    .search-top input{
        font-size: 13px;
    }

    .search-item{
        gap: 6px;
    }

    .search-item img{
        width: 45px;
        height: 45px;
    }

    .search-title{
        font-size: 12px;
    }

    .search-price{
        font-size: 10px;
    }

    .search-more{
        font-size: 12px;
    }
}