/* banner */
.home-banner-slider {
    margin-bottom: 40px;
    position: relative;
    isolation: isolate;
}

.home-banner-slider .swiper-slide {
    height: auto;
}

.home-banner {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #F6F3EC;
    width: 100%;
    aspect-ratio: 1920 / 580;
    min-height: 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* signature: soft linen scrim + thin brass corner frame, echoes the tote's leaf motif & warm neutral palette */
.home-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
            rgba(246, 243, 236, 0.94) 0%,
            rgba(246, 243, 236, 0.72) 28%,
            rgba(246, 243, 236, 0.25) 52%,
            rgba(246, 243, 236, 0) 68%);
    z-index: 1;
}

.home-banner::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    bottom: 18px;
    border: 1px solid rgba(201, 161, 93, 0.55);
    pointer-events: none;
    z-index: 2;
}

.home-banner-content {
    padding: 8% 0;
    position: relative;
    z-index: 3;
}

.home-banner-content::before {
    content: '';
    display: block;
    width: 46px;
    height: 2px;
    background: #C9A15D;
    margin-bottom: 18px;
}

.home-banner-content p {
    font-family: 'Cormorant Upright', 'Raleway', serif;
    font-style: italic;
    font-size: clamp(15px, 1.6vw, 18px);
    font-weight: 500;
    color: #334633;
    letter-spacing: 0.5px;
    margin-bottom: 12px !important;
}

.home-banner-content h1 {
    font-family: 'Raleway';
    font-size: clamp(30px, 4.6vw, 55px);
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    line-height: 1.15;
    margin-bottom: 22px;
}

.banner-features {
    gap: 12px 22px;
    margin-bottom: 28px;
}

.banner-features span {
    font-family: var(--secondary-font);
    font-size: clamp(11.5px, 1.1vw, 14px);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(51, 70, 51, 0.15);
    padding: 6px 12px;
    border-radius: 30px;
}

.banner-features i {
    color: #334633;
    font-size: 13px;
}

.banner-btns {
    gap: 15px;
    flex-wrap: wrap;
}

.banner-btns .btn {
    padding: 0;
    border-radius: 4px;
}

.banner-btns .btn-fill a {
    display: block;
    background-color: #334633;
    color: #fff;
    font-family: var(--primary-font);
    font-size: clamp(13px, 1.1vw, 15px);
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 14px 28px;
    border-radius: 4px;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.banner-btns .btn-fill a:hover {
    background-color: #24321f;
    transform: translateY(-2px);
}

.banner-btns .btn-outline a {
    display: block;
    background-color: transparent;
    border: 1.5px solid #C9A15D;
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-size: clamp(13px, 1.1vw, 15px);
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12.5px 28px;
    border-radius: 4px;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.banner-btns .btn-outline a:hover {
    background-color: #C9A15D;
    color: #fff;
    transform: translateY(-2px);
}

.home-banner-slider .swiper-button-next,
.home-banner-slider .swiper-button-prev {
    color: #334633;
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(201, 161, 93, 0.5);
    border-radius: 50%;
    z-index: 4;
    transition: background-color 0.2s ease;
}

.home-banner-slider .swiper-button-next:hover,
.home-banner-slider .swiper-button-prev:hover {
    background-color: #C9A15D;
    color: #fff;
}

.home-banner-slider .swiper-button-next:after,
.home-banner-slider .swiper-button-prev:after {
    font-size: 16px;
}

.home-banner-slider .swiper-pagination {
    z-index: 4;
}

.home-banner-slider .swiper-pagination-bullet {
    background: rgba(51, 70, 51, 0.35);
    opacity: 1;
    width: 7px;
    height: 7px;
}

.home-banner-slider .swiper-pagination-bullet-active {
    background: #C9A15D !important;
    width: 22px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: no-preference) {
    .swiper-slide-active .home-banner-content>* {
        animation: bannerFadeUp 0.7s ease both;
    }

    .swiper-slide-active .home-banner-content p {
        animation-delay: 0.05s;
    }

    .swiper-slide-active .home-banner-content h1 {
        animation-delay: 0.15s;
    }

    .swiper-slide-active .home-banner-content .banner-features {
        animation-delay: 0.25s;
    }

    .swiper-slide-active .home-banner-content .banner-btns {
        animation-delay: 0.35s;
    }
}

@keyframes bannerFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-container {
    width: 100%;
    max-width: 1600px !important;
    margin: 0 auto;
    padding: 0 15px;
}

.category {
    margin-bottom: 40px;
}

.category-heading {
    margin-bottom: 35px;
}

.category-heading h2 {
    font-family: 'Lora';
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
}

/* category grid */
.category-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.category-content-img {
    width: 100%;
}

.category-content-img a {
    display: block;
    text-decoration: none;
    background-color: #F7F3F0;
    border-radius: 10px;
    height: 100%;
}

.category-content-img .cat-img {
    width: 100%;
    aspect-ratio: 1 / 1.15;
    overflow: hidden;
    margin-bottom: 16px;
    border-radius: 10px;
}

.category-content-img .cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-content-img a:hover .cat-img img {
    transform: scale(1.06);
}

.category-content-img .cat-title {
    text-align: center;
    font-family: 'Lora';
    color: var(--primary-color);
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 4px !important;
}

.category-content-img .cat-link {
    display: block;
    text-align: center;
    font-family: var(--secondary-font);
    font-size: 13px;
    font-weight: 500;
    color: #6b6b6b;
    text-decoration: none;
    margin-bottom: 15px;
}

.category-content-img .cat-link i {
    font-size: 11px;
    margin-left: 3px;
    transition: transform 0.3s ease;
}

.category-content-img a:hover .cat-link {
    color: var(--primary-color);
}

.category-content-img a:hover .cat-link i {
    transform: translateX(3px);
}

.arrival-content {
    margin-bottom: 40px;
}

.new-arrival {
    background-image: url('../../images/bg-new.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 95px;
}

.new-arrival-content {
    padding: 6% 0 6% 5% !important;
}

.new-arrival-content h4 {
    font-family: var(--secondary-font);
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 40px;
    color: #fff;
}

.new-arrival-content h3 {
    font-family: var(--primary-font);
    font-size: 25px;
    margin-bottom: 6px;
    color: #fff;
}

.new-arrival-content h2 {
    font-family: var(--primary-font);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px !important;
}

.new-arrival-content .btn {
    --bs-btn-padding-y: 0 !important;
    --bs-btn-padding-x: 0 !important;
}

.new-arrival-content .btn a {
    font-family: var(--primary-font) !important;
    font-size: 16px !important;
    padding: 10px 15px !important;
    background-color: #fff !important;
    color: var(--black);
    border: none !important;
    border-radius: 5px !important;
}

/* new arrival strip */
.new-arrival-strip {
    background-color: #334633;
    border-radius: 14px;
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
}

.new-arrival-strip::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.new-arrival-strip-content {
    padding: 4.5% 6%;
    position: relative;
    z-index: 1;
}

.nas-eyebrow {
    display: inline-block;
    font-family: var(--secondary-font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C9A15D;
    margin-bottom: 14px;
}

.new-arrival-strip-content h2 {
    font-family: 'Cormorant Upright', serif;
    font-size: 34px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 24px;
}

.nas-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    color: #334633;
    font-family: var(--primary-font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 13px 26px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.25s ease;
}

.nas-btn:hover {
    background-color: #C9A15D;
    color: #fff;
    gap: 14px;
}

/* section heading */
.arrival-info {
    text-align: center;
    margin-bottom: 40px !important;
}

.ai-eyebrow {
    display: block;
    font-family: var(--secondary-font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a8a196;
    margin-bottom: 10px;
}

.arrival-info h2 {
    font-family: 'Lora';
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.arrival-info p {
    font-family: 'Raleway';
    font-size: 15px;
    color: #808080;
    max-width: 560px;
    margin: 0 auto !important;
}

/* pill tabs */
.new-arrival-tab {
    margin-bottom: 50px;
}

.new-arrival-header .nav-pills {
    justify-content: center !important;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 45px;
}

.new-arrival-header .nav-pills .nav-link {
    background-color: transparent;
    border: 1.5px solid #e4e0d6;
    color: var(--primary-color);
    font-family: 'Merriweather Sans';
    font-size: 14px !important;
    font-weight: 500;
    padding: 11px 24px !important;
    border-radius: 30px !important;
    transition: 0.25s ease;
}

.new-arrival-header .nav-pills .nav-link.active {
    color: #fff !important;
    background-color: #334633 !important;
    border-color: #334633;
}

/* card grid */
.arrival-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.na-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0ece4;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.na-card:hover {
    box-shadow: 0 14px 30px rgba(51, 70, 51, 0.1);
    transform: translateY(-4px);
}

.na-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #f6f3ec;
    overflow: hidden;
}

.na-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.na-card:hover .na-card-img img {
    transform: scale(1.07);
}

.na-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #334633;
    color: #fff;
    font-family: var(--secondary-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
}

.na-quick-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(51, 70, 51, 0.92);
    color: #fff;
    border: none;
    font-family: var(--primary-font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    padding: 13px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.na-card:hover .na-quick-btn {
    transform: translateY(0);
}

.na-card-body {
    padding: 18px;
}

.na-title {
    font-family: 'Lora';
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px !important;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.na-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.na-price {
    font-family: 'Lora';
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
}

.na-price-old {
    font-family: 'Lora';
    font-size: 13px;
    color: #a8a196;
    text-decoration: line-through;
}

.na-off {
    font-family: 'Lora';
    font-size: 11px;
    font-weight: 600;
    color: #C9A15D;
}

.na-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.na-rating i {
    color: #FCE340;
    font-size: 12px;
}

.na-rating span {
    font-family: var(--primary-font);
    font-size: 13px;
    color: #808080;
    margin-left: 4px;
}

.show-more {
    margin-top: 10px;
}

.show-more .btn {
    padding: 0px !important;
    margin: auto !important;
    display: block !important;
    border: 1.5px solid #334633;
    width: 245px !important;
    padding: 12px 60px !important;
    border-radius: 30px;
    transition: 0.25s ease;
}

.show-more .btn a,
.show-more .btn p {
    font-family: var(--primary-font);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--primary-color);
    margin-bottom: 0;
}

.show-more .btn:hover {
    background-color: #334633;
    border-color: #334633 !important;
}

.show-more .btn:hover a,
.show-more .btn:hover p {
    color: #fff;
}

.product_dis {
    width: 100%;
    max-width: 1600px !important;
    margin: 0 auto;
    padding: 0 15px;
}

.product {
    margin-bottom: 40px;
}

.product-img {
    background-image: url('../../images/product_img.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.product-content {
    background-image: url('../../images/product_bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.product-info h3,
.product-info h2 {
    font-family: var(--primary-font);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
}

.product-info h2 {
    font-size: 36px !important;
    margin-bottom: 10px !important;
}

.product-info p {
    font-family: var(--secondary-font);
    font-size: 16px;
    color: var(--white);
    margin-bottom: 20px;
}

.product-info .btn {
    border: 1px solid var(--white);
    padding: 15px 50px;
    border-radius: 10px;
}

.product-info .btn a {
    color: var(--white);
    font-family: var(--primary-font);
    font-size: 20px;
}

.product-info {
    padding: 5% 0 6% 5%;
}

.product-content .btn:hover {
    border: 1px solid var(--white) !important;
}

/* best-seller */
.bestseller-section {
    margin-bottom: 40px;
}

.bs-head-row {
    margin-bottom: 24px;
}

.bs-head-row h2 {
    font-family: 'Lora', serif;
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    color: var(--primary-color);
}

.bs-view-all {
    border: 1px solid #ddd;
    background: #fff;
    color: var(--primary-color);
    font-family: var(--secondary-font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: 0.25s ease;
}

.bs-view-all:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.bs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.bs-card {
    background-color: #F7F3F0;
    border-radius: 12px;
    overflow: hidden;
}

.bs-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
    background: #f2ede6;
    margin-bottom: 14px;
}

.bs-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.bs-card:hover .bs-card-img img {
    transform: scale(1.06);
}

.bs-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #2f5233;
    color: #fff;
    font-family: var(--secondary-font);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
}

.bs-title {
    font-family: var(--secondary-font);
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 5px 0;
    color: var(--primary-color);
    text-align: center;
}

.bs-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 10px;
}

.bs-price {
    font-family: var(--primary-font);
    font-weight: 700;
    color: var(--primary-color);
}

.bs-stars i {
    color: #f5b301;
    font-size: 11px;
}

.bs-review-count {
    color: var(--secondary-color);
    font-family: var(--secondary-font);
    font-size: 12.5px;
}

/* how-it-works + bulk orders */
.hw-bulk-section {
    margin-bottom: 40px;
}

.hw-bulk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* left card - how customization works */
.hw-card {
    background-color: #F7F3F0;
    border-radius: 14px;
    padding: 40px;
}

.hw-card h3 {
    font-family: 'Lora';
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 32px;
}

.hw-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.hw-step {
    text-align: center;
}

.hw-step-icon {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid rgba(51, 70, 51, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.hw-step-icon i {
    font-size: 20px;
    color: #334633;
}

.hw-step:hover .hw-step-icon {
    background-color: #334633;
    transform: translateY(-3px);
}

.hw-step:hover .hw-step-icon i {
    color: #fff;
}

.hw-step-title {
    font-family: var(--primary-font);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 6px !important;
}

.hw-step-desc {
    font-family: var(--secondary-font);
    font-size: 12.5px;
    color: #808080;
    line-height: 1.5;
    margin-bottom: 0 !important;
}

/* right card - bulk orders */
.bulk-card {
    background-color: #334633;
    border-radius: 14px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.bulk-card::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.bulk-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.bulk-content {
    max-width: 55%;
}

.bulk-content h3 {
    font-family: 'Lora';
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.bulk-content p {
    font-family: var(--secondary-font);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 22px;
}

.bulk-img {
    flex-shrink: 0;
    width: 42%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bulk-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.bulk-features {
    list-style: none;
    padding: 0;
    margin: 0 0 26px 0;
}

.bulk-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--secondary-font);
    font-size: 13.5px;
    color: #fff;
    margin-bottom: 12px;
}

.bulk-features li:last-child {
    margin-bottom: 0;
}

.bulk-features li i {
    color: #C9A15D;
    font-size: 14px;
}

.bulk-btn {
    display: inline-block;
    background-color: #C9A15D;
    color: #fff;
    font-family: var(--primary-font);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-decoration: none;
    padding: 13px 26px;
    border-radius: 6px;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.bulk-btn:hover {
    background-color: #b98d47;
    color: #fff;
    transform: translateY(-2px);
}

/* trust strip */
.trust-strip {
    margin-bottom: 40px;
    background-color: #F7F3F0;
    border-radius: 14px;
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
}

.trust-grid {
    display: grid !important;
    grid-template-columns: 0.8fr 1.2fr 1fr;
    width: 100%;
    box-sizing: border-box;
}

.trust-col {
    padding: 0 32px;
    border-right: 1px solid #e6e0d5;
    min-width: 0;
    box-sizing: border-box;
    width: 100%;
}

.trust-col:last-child {
    border-right: none;
}

/* col 1 - testimonial */
.ts-col {
    display: flex !important;
    align-items: center;
    gap: 10px;
    border-right: 1px solid #e6e0d5;
}

.ts-inner {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
}

.ts-nav-edge {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #334633;
    cursor: pointer;
    font-size: 13px;
}

.ts-nav-edge:hover {
    color: #C9A15D;
}

.ts-eyebrow {
    font-family: 'Lora';
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px !important;
    position: relative;
    padding-left: 14px;
    white-space: nowrap;
}

.ts-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #334633;
}

.testimonialSwiper {
    width: 100%;
}

.ts-text {
    font-family: var(--secondary-font);
    font-size: 13.5px;
    color: #5a5a5a;
    line-height: 1.6;
    margin-bottom: 18px !important;
}

.ts-person {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ts-person img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.ts-person-name {
    font-family: 'Lora';
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3px !important;
}

.ts-person-stars i {
    color: #FCE340;
    font-size: 10px;
}

/* col 2 - trusted brands */
.tb-col {
    text-align: center;
}

.tb-heading {
    font-family: 'Lora';
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px !important;
    white-space: nowrap;
}

.tb-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 24px;
}

.tb-logos img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
}

/* col 3 - instagram */
.ig-heading {
    font-family: 'Lora';
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px !important;
}

.ig-handle {
    font-family: var(--secondary-font);
    font-size: 12.5px;
    color: #a8a196;
    margin-bottom: 16px !important;
}

.ig-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.ig-item {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
}

.ig-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.ig-item:hover img {
    transform: scale(1.08);
}

.ig-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #334633;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ig-badge i {
    font-size: 8px;
}

/* trust badges strip */
.trust-badges-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background-color: #F7F3F0;
    border-radius: 14px;
    padding: 26px 32px;
    margin-bottom: 40px;
}

.tbadge-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
    border-right: 1px solid #e6e0d5;
}

.tbadge-item:last-child {
    border-right: none;
}

.tbadge-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid rgba(51, 70, 51, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tbadge-icon i {
    font-size: 18px;
    color: #334633;
}

.tbadge-text h5 {
    font-family: 'Lora';
    font-size: 14.5px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3px !important;
    white-space: nowrap;
}

.tbadge-text p {
    font-family: var(--secondary-font);
    font-size: 12.5px;
    color: #808080;
    margin-bottom: 0 !important;
    white-space: nowrap;
}

/* modal */
.modal-backdrop{
    z-index: 10500 !important;
}
 
.modal{
    z-index: 10600 !important;
}

.modal-title {
    font-size: 24px !important;
    font-family: var(--primary-font) !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    margin: auto;
}

.modal-header .btn-close {
    margin: 0 !important;
}

.modal-dialog {  
    display: flex !important;
    align-items: center !important;
    min-height: calc(100% - 3.5rem) !important;
    margin: 1.75rem auto !important;
    max-width: 900px !important;
}
.modal-content{
    border: none !important;
    border-radius: 12px !important;
    overflow: hidden;
}
.modal-body img {
    width: 33% !important;
    height: 33% !important;
    opacity: 2 !important;
}

.modal-body-content .card-text,
.modal-body-content .card-text-undrline {
    display: inline-block;
}

.modal-body-content .card-text-undrline {
    margin: 0 0 0 4%;
}

.modal-body-content {
    padding: 25px 0 0 60px !important;
}

.modal-body-content h5 {
    font-family: var(--primary-font);
    font-size: 26px;
    color: var(--primary-color);
}

.modal-body span i {
    margin-bottom: 15px !important;
}

.modal-p {
    font-family: var(--secondary-font);
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
}

.modal-body .form-check {
    margin-bottom: 25px;
}

.modal-body .form-check-input:focus {
    border-color: #e6e6e6 !important;
    outline: 0;
    box-shadow: none !important;
}

.modal-body .form-check-input:checked {
    background-color: #9c9d9f;
}

.modal-body .form-check-label {
    font-family: var(--secondary-font);
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 500;
}

.gift-wrap img {
    width: 60px !important;
    height: 60px !important;
}

.gift-wrap {
    margin-bottom: 25px;
}

.gift-wrap p {
    font-family: var(--secondary-font);
    font-size: 16px;
    color: var(--primary-color);
    display: inline-block;
}

.modal-body .btn {
    padding: 15px 50px;
    background-color: #334633;
    border-radius: 3px !important;
    position: relative;
    margin-bottom: 15px;
}

.modal-body .btn:hover {
    background-color:#334633 !important;
}

.modal-body .btn a {
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.modal-body .btn i {
    position: absolute;
    top: 19%;
    right: -25%;
    font-size: 30px;
}

.modal-body .view-a {
    display: block;
    margin-left: 15%;
    font-family: var(--secondary-font);
    font-size: 14px;
    color: var(--secondary-color);
}


.btn-close:focus {
    box-shadow: none !important;
}

.fade {
    transition: none !important;
}

.subscribe-content input[type="text"]::placeholder {
    color: #6B7280 !important;
    font-size: 14px;
}

.form-check-input:checked {
    border-color: #dedede;
}

/* customer-review (legacy, kept in case still used elsewhere) */
.customer-review {
    margin-bottom: 100px;
}

.customer-review h2 {
    font-family: 'Lora';
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

.customer-review .card {
    position: relative;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid #E3E3E3 !important;
}

.customer-review .card .card-content {
    display: flex;
    flex-direction: column;
    padding: 20px;
    z-index: 100;
}

.customer-review .swiper-pagination {
    position: relative !important;
}

.customer-review .card-text h4 {
    font-size: 15px;
    font-family: 'Raleway';
    color: var(--primary-color);
    margin-bottom: 5px;
}

.customer-review .card-text p {
    font-family: 'Lora';
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.customer-review .rating i {
    color: #FCE340;
    margin-bottom: 16px;
}

.customer-review .item-p {
    font-family: 'Merriweather Sans';
    font-size: 13px !important;
    color: #808080 !important;
    margin-bottom: 0;
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: #080F11 !important;
}

.swiper-pagination-bullet {
    background: rgba(8, 15, 17, 0.15);
}

/* feature */
.feature-content {
    margin-bottom: 100px;
}

.feature-info p {
    font-family: var(--secondary-font);
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    padding: 10px 0px 0px 40px;
}

.feature-info h2 {
    font-family: var(--primary-font);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    padding-left: 40px;
    margin-bottom: 68px;
}

.fea-content {
    margin-bottom: 70px;
}

.fea-content:last-child {
    margin-bottom: 0 !important;
}

.fea-info-img img {
    width: 46px;
    margin: 0px 40px 0px 40px;
}

.fea-info h5 {
    font-family: var(--primary-font);
    font-size: 18px;
    color: var(--primary-color);
}

.fea-content .fea-info p {
    font-size: 16px;
    font-family: var(--secondary-font);
    color: #808080;
    padding: 0 !important;
}

/* ============================================================
   RESPONSIVE — consolidated (duplicates merged)
   ============================================================ */

@media (max-width:575px) {
    .home-banner {
        aspect-ratio: 4 / 5;
        background-position: right;
    }

    .home-banner::before {
        background: linear-gradient(180deg,
                rgba(246, 243, 236, 0.95) 0%,
                rgba(246, 243, 236, 0.88) 45%,
                rgba(246, 243, 236, 0.55) 70%,
                rgba(246, 243, 236, 0.15) 100%);
    }

    .home-banner::after {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .home-banner-content {
        padding-left: 6% !important;
        padding-right: 6%;
    }

    .home-banner-content p,
    .home-banner-content h1 {
        color: var(--secondary-color);
    }

    .home-banner-content h1 {
        font-size: 44px;
    }

    .home-banner-content .btn {
        --bs-btn-padding-x: 0 !important;
    }

    .banner-features span {
        font-size: 11px;
        padding: 5px 10px;
    }

    .banner-btns .btn-fill a,
    .banner-btns .btn-outline a {
        padding: 11px 20px;
        font-size: 13px;
    }

    .home-banner-slider .swiper-button-next,
    .home-banner-slider .swiper-button-prev {
        display: flex;
        width: 32px;
        height: 32px;
        top: auto;
        bottom: 14px;
    }

    .home-banner-slider .swiper-button-prev {
        left: 10px;
    }

    .home-banner-slider .swiper-button-next {
        right: 10px;
    }

    .home-banner-slider .swiper-button-next:after,
    .home-banner-slider .swiper-button-prev:after {
        font-size: 12px;
    }

    .home-banner-slider .swiper-pagination {
        bottom: 16px;
    }

    .category-heading h2 {
        font-size: 24px;
    }

    .category-content-img,
    .category-content {
        margin-bottom: 20px;
    }

    .category-content-img .cat-title {
        font-size: 14px;
    }

    .category-content-img .cat-link {
        font-size: 11px;
    }

    .category-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .new-arrival-strip-content {
        padding: 12% 8%;
    }

    .new-arrival-strip-content h2 {
        font-size: 24px;
    }

    .arrival-info h2 {
        font-size: 26px;
    }

    .arrival-info p {
        font-size: 12px;
    }

    .arrival-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .na-title {
        font-size: 12px;
        min-height: 32px;
    }

    .na-price {
        font-size: 14px;
    }

    .na-quick-btn {
        font-size: 10px;
        padding: 9px 0;
        transform: translateY(0);
    }

    .new-arrival-header .nav-pills {
        display: block;
        text-align: -webkit-center !important;
        gap: 6px;
    }

    .new-arrival-header .nav-pills .nav-link {
        margin-bottom: 2%;
        width: 42%;
        font-size: 11px !important;
        padding: 8px 14px !important;
    }

    .new-arrival-header .nav-item .pass_cover {
        padding: 10px 5px !important;
    }

    .new-arrival-header .nav-item .bag,
    .new-arrival-header .nav-item .wallet,
    .new-arrival-header .nav-item .hamper {
        padding: 10px 0px !important;
    }

    .new-arrival-header .nav-item .diary {
        padding: 10px 11px !important;
    }

    .new-arrival-info .card-body span {
        display: block;
    }

    .new-arrival-content h4,
    .new-arrival-content h3,
    .new-arrival-content h2 {
        color: var(--black);
    }

    .new-arrival-content h4 {
        margin-bottom: 20px;
    }

    .bs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .bs-head-row {
        flex-wrap: wrap;
        gap: 12px;
    }

    .bs-head-row h2 {
        font-size: 22px;
    }

    .bs-title {
        font-size: 13px;
    }

    .hw-bulk-section {
        margin-bottom: 50px;
    }

    .hw-bulk-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hw-card,
    .bulk-card {
        padding: 22px;
        border-radius: 12px;
    }

    .hw-card h3,
    .bulk-content h3 {
        font-size: 19px;
        margin-bottom: 22px;
    }

    .hw-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 10px;
    }

    .hw-step-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .hw-step-icon i {
        font-size: 16px;
    }

    .hw-step-title {
        font-size: 11.5px;
    }

    .hw-step-desc {
        font-size: 11px;
    }

    .bulk-content p {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .bulk-features li {
        font-size: 12.5px;
        margin-bottom: 9px;
    }

    .bulk-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .bulk-content {
        max-width: 100%;
    }

    .bulk-img {
        width: 100%;
        justify-content: center;
        margin-top: 16px;
    }

    .bulk-img img {
        max-height: 160px;
    }

    .bulk-btn {
        font-size: 12.5px;
        padding: 11px 22px;
    }

    .trust-strip {
        padding: 24px 0;
        margin-bottom: 50px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .trust-col,
    .ts-col {
        border-right: none !important;
        border-bottom: 1px solid #e6e0d5;
        padding: 0 22px 22px;
    }

    .trust-col:last-child {
        border-bottom: none;
    }

    .ts-eyebrow,
    .tb-heading,
    .ig-heading {
        font-size: 16px;
        white-space: normal;
    }

    .ig-grid {
        gap: 6px;
    }

    .trust-badges-strip {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 20px;
        border-radius: 12px;
        margin-bottom: 40px;
    }

    .tbadge-item {
        border-right: none !important;
        padding: 0 0 18px 0;
        border-bottom: 1px solid #e6e0d5;
    }

    .tbadge-item:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    .tbadge-icon {
        width: 42px;
        height: 42px;
    }

    .tbadge-icon i {
        font-size: 16px;
    }

    .tbadge-text h5 {
        font-size: 13.5px;
        white-space: normal;
    }

    .tbadge-text p {
        font-size: 12px;
        white-space: normal;
    }

    .modal-content {
        width: 92% !important;
    }

    .modal-body .btn i {
        right: -21%;
    }

    .modal-body .btn {
        padding: 15px 43px;
    }

    .modal {
        left: 25px !important;
    }

    .modal-body {
        flex-wrap: wrap;
    }

    .modal-body img {
        width: 50% !important;
        margin: auto;
    }

    .gift-wrap img {
        width: 20% !important;
    }

    .bulk-row {
        flex-direction: column;
        align-items: stretch;
    }

    .bulk-content {
        max-width: 100%;
    }

    .bulk-img {
        width: 100%;
        aspect-ratio: 16 / 9;
        margin-top: 16px;
    }

    .lorem,
    .seller,
    .arrival,
    .order-content,
    .fea-img {
        justify-content: center;
    }

    .lorem-img .card:hover .text-p {
        padding: 23% 0;
        text-align: center;
    }

    .lorem-img {
        margin: 0px 0px 40px 0px;
    }

    .lorem-ipsum h2 {
        font-size: 35px;
    }

    .feature-info h2 {
        margin-bottom: 24px;
        font-size: 27px;
    }

    .feature-info p {
        font-size: 18px;
    }

    .fea-info-img img {
        margin: 0px 19px 0px 23px;
    }

    .fea-content {
        margin-bottom: 40px;
    }

    .customer-review h2 {
        margin-bottom: 0;
    }

    .customer-review .container {
        padding-right: 10px;
        padding-left: 10px;
    }

    .best-seller-info {
        margin-bottom: 5px;
    }

    .home-banner-content p .best-seller-info h2,
    .category-content h2,
    .best-seller-info p,
    .customer-review h2,
    .order-info h2 {
        font-size: 27px;
    }

    .order-info p {
        font-size: 12px;
    }

    .best-product-info {
        background-position: left;
    }

    .product-best {
        flex-direction: row-reverse;
    }

    .best-product-content P,
    .best-product-content h4 {
        text-align: start;
        padding-left: 10%;
        color: var(--black);
    }

    .order-info .btn {
        padding: 10px 30px;
    }

    .order-info .btn a {
        font-size: 18px;
    }

    .product-img {
        height: 300px;
    }
}

@media only screen and (min-width:576px) and (max-width: 767px) {
    .home-banner {
        aspect-ratio: 3 / 2;
    }

    .home-banner::before {
        background: linear-gradient(120deg,
                rgba(246, 243, 236, 0.95) 0%,
                rgba(246, 243, 236, 0.8) 38%,
                rgba(246, 243, 236, 0.35) 62%,
                rgba(246, 243, 236, 0) 80%);
    }

    .category-content,
    .category-content-img {
        margin-bottom: 20px;
    }

    .category-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .arrival-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .new-arrival-strip-content h2 {
        font-size: 28px;
    }

    .new-arrival-header .nav-pills {
        display: block;
        text-align: -webkit-center !important;
    }

    .new-arrival-header .nav-pills .nav-link {
        margin-bottom: 2%;
        width: 41%;
        font-size: 12px !important;
        padding: 9px 16px !important;
    }

    .new-arrival-header .nav-item .pass_cover {
        padding: 15px 5px !important;
    }

    .new-arrival-header .nav-item .bag,
    .new-arrival-header .nav-item .wallet,
    .new-arrival-header .nav-item .hamper {
        padding: 15px 0px !important;
    }

    .new-arrival-header .nav-item .diary {
        padding: 15px 11px !important;
    }

    .new-arrival-info .card-body span {
        display: block;
    }

    .feature-info h2 {
        margin-bottom: 24px;
        font-size: 25px;
    }

    .product-img {
        height: 300px;
    }

    .best-product-info {
        background-position: left;
    }

    .lorem,
    .seller,
    .arrival,
    .order-content,
    .fea-img {
        justify-content: center;
    }

    .best-product-content P,
    .best-product-content h4 {
        text-align: start;
        padding-left: 10%;
        color: var(--black);
    }

    .modal-content {
        width: 92% !important;
    }

    .modal-body .btn i {
        right: -21%;
    }

    .modal {
        left: 25px !important;
    }

    .modal-body {
        flex-wrap: wrap;
    }

    .modal-body img {
        width: 50% !important;
        margin: auto;
    }

    .gift-wrap img {
        width: 18% !important;
    }

    .trust-strip {
        padding: 24px 0;
        margin-bottom: 50px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .trust-col,
    .ts-col {
        border-right: none !important;
        border-bottom: 1px solid #e6e0d5;
        padding: 0 22px 22px;
    }

    .trust-col:last-child {
        border-bottom: none;
    }

    .ts-eyebrow,
    .tb-heading,
    .ig-heading {
        font-size: 16px;
        white-space: normal;
    }

    .ig-grid {
        gap: 6px;
    }

    .trust-badges-strip {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 20px;
        padding: 22px;
        margin-bottom: 55px;
    }

    .tbadge-item {
        border-right: none;
        padding: 0;
    }

    .tbadge-item:nth-child(odd) {
        border-right: 1px solid #e6e0d5;
        padding-right: 14px;
    }

    .tbadge-icon {
        width: 40px;
        height: 40px;
    }

    .tbadge-icon i {
        font-size: 15px;
    }

    .tbadge-text h5 {
        font-size: 13px;
    }

    .tbadge-text p {
        font-size: 11px;
        white-space: normal;
    }
}

@media only screen and (min-width:768px) and (max-width: 991px) {
    .home-banner {
        aspect-ratio: 16 / 9;
        background-position: right;
    }

    .home-banner-content p,
    .home-banner-content h1 {
        color: var(--secondary-color);
    }

    .category-content,
    .category-content-img {
        margin-bottom: 15px;
    }

    .category-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .arrival-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .nav-item {
        margin: 0 2% 2% 0;
    }

    .new-arrival-header .nav-pills {
        justify-content: flex-start !important;
    }

    .new-arrival-info .card-body span {
        display: block;
    }

    .modal-content {
        width: 91% !important;
    }

    .modal {
        left: 34px !important;
    }

    .lorem-img .intro {
        height: 18%;
    }

    .lorem-img .intro .text-title {
        padding: 4% 0 3% 5%;
    }

    .feature-info h2 {
        margin-bottom: 24px;
        font-size: 25px;
    }

    .fea-info-img img {
        margin: 0px 20px 0px 20px;
    }

    .fea-img {
        justify-content: center;
    }

    .feature-info p {
        font-size: 18px;
    }

    .order-info .box {
        padding: 6% 0 6% 8%;
    }

    .order-info h2 {
        font-size: 27px;
    }

    .order-info p {
        font-size: 14px;
    }

    .order-info .btn {
        padding: 14px 40px;
    }

    .product-img {
        height: 366px;
    }

    .hw-bulk-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hw-card,
    .bulk-card {
        padding: 28px;
    }

    .hw-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .hw-step-icon {
        width: 56px;
        height: 56px;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 24px;
    }

    .ts-col {
        grid-column: span 2;
        border-right: none;
        border-bottom: 1px solid #e6e0d5;
        padding-bottom: 24px;
    }

    .tb-col {
        border-right: 1px solid #e6e0d5;
    }

    .trust-badges-strip {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 22px;
        padding: 24px;
    }

    .tbadge-item {
        border-right: none;
        padding: 0;
    }

    .tbadge-item:nth-child(odd) {
        border-right: 1px solid #e6e0d5;
        padding-right: 16px;
    }

    .tbadge-text p {
        white-space: normal;
    }
}

@media only screen and (min-width:992px) and (max-width: 1199px) {
    .category-content {
        margin-bottom: 15px;
    }

    .category-row {
        grid-template-columns: repeat(5, 1fr);
    }

    .arrival-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .new-arrival-header .nav-item .pass_cover {
        padding: 10px 30px !important;
    }

    .new-arrival-header .nav-item .bag {
        padding: 20px 66px !important;
    }

    .new-arrival-header .nav-item .wallet {
        padding: 20px 60px !important;
    }

    .new-arrival-header .nav-item .diary {
        padding: 20px 15px !important;
    }

    .new-arrival-header .nav-item .hamper {
        padding: 20px 50px !important;
    }

    .new-arrival-info .card-body span {
        display: block;
    }

    .lorem-img .intro {
        height: 20%;
    }

    .lorem-img .intro .text-title {
        padding: 5% 0 3% 5%;
    }

    .product-info {
        padding: 1% 0 2% 5%;
    }

    .hw-card,
    .bulk-card {
        padding: 30px;
    }

    .bulk-content h3,
    .hw-card h3 {
        font-size: 21px;
    }

    .trust-badges-strip {
        padding: 22px 24px;
        gap: 14px;
    }

    .tbadge-item {
        padding: 0 10px;
        gap: 12px;
    }

    .tbadge-icon {
        width: 40px;
        height: 40px;
    }

    .tbadge-text h5 {
        font-size: 13px;
    }

    .tbadge-text p {
        font-size: 11.5px;
        white-space: normal;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .category-row {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width:1400px) {
    .new-arrival-info .card-body span {
        display: block;
    }

    .category-row {
        grid-template-columns: repeat(6, 1fr);
    }
}