@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --nav-bg: #ffffff;
    --nav-accent: #f5f5f5;
    --nav-border: rgba(220, 50, 70, 0.2);
    --green-glow: #e8304a;
    --green-bright: #c9152e;
    --text-main: #1a1a1a;
    --text-dim: #666666;
    --badge-bg: #e8304a;
    --badge-text: #ffffff;
    --search-bg: rgba(0, 0, 0, 0.05);
    --search-focus: rgba(232, 48, 74, 0.1);
    --dropdown-bg: #f9f9f9;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#nav {
    background: var(--nav-bg);
    border-bottom: 1px solid var(--nav-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
    font-family: 'DM Sans', sans-serif;
}

#nav .container-fluid {
    padding: 0 20px;
}

.headerContainer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    min-height: 64px;
}


/* min width */

@media(min-width: 1600px) {

    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1600px;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

@media(max-width: 1600px) {

    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* LOGO */
.navbar-brand {
    flex-shrink: 0;
}

.logo_main {
    max-width: 140px;
    height: auto;
    aspect-ratio: 3/1;
    object-fit: contain;
}

.carousel-item img {
    max-height: 480px;
    width: 100%;
    object-fit: cover;
}

@media (max-width:576px) {
    .carousel-item img {
        height: 190px;
    }

}

/* ── SEARCH FORM ── */


.search-wrapper {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
}



.search-wrapper form {
    margin: 0 atuo !important;
}

.search-wrapper .input-group {
    background: var(--search-bg);
    border: 1px solid var(--nav-border);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color .25s, background .25s;
}

.search-wrapper .input-group:focus-within {
    border-color: var(--green-glow);
    background: var(--search-focus);
}

.search-wrapper .input-group-text {
    background: transparent;
    border: none;
    color: var(--text-dim);
    padding: 0 10px;
}

.search-wrapper .form-control {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    padding: 10px 6px;
    box-shadow: none;
}

.search-wrapper .form-control::placeholder {
    color: var(--text-dim);
}

.search-wrapper .form-control:focus {
    box-shadow: none;
}

.search-wrapper .search-btn {
    background: var(--green-glow);
    color: var(--badge-text);
    border: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .5px;
    padding: 0 18px;
    border-radius: 0;
    transition: background .2s;
}

.search-wrapper .search-btn:hover {
    background: var(--green-bright);
}

/* ── NAV LINKS (desktop) ── */
.nav-links-desktop {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.nav-links-desktop .nav-link {
    color: var(--text-main) !important;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    font-size: 17px;
    letter-spacing: .4px;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background .2s, color .2s;
    white-space: nowrap;
    text-decoration: none;
}

.nav-links-desktop .nav-link:hover {
    background: var(--nav-accent);
    color: var(--green-bright) !important;
}

/* Dropdown */
.has_menu {
    position: relative;
}

.has_menu>.nav-link::after {
    content: '▾';
    margin-left: 4px;
    font-size: 11px;
    opacity: .6;
}

.inner_menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: var(--dropdown-bg);
    border: 1px solid var(--nav-border);
    border-radius: 8px;
    padding: 6px;
    min-width: 180px;
    list-style: none;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.has_menu:hover .inner_menu {
    display: block;
}

.inner_menu .nav-link {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    color: var(--text-main) !important;
    padding: 7px 12px;
    border-radius: 6px;
    text-decoration: none;
    transition: background .15s;
}

.inner_menu .nav-link:hover {
    background: var(--nav-accent);
    color: var(--green-bright) !important;
}

/* ── RIGHT ICONS ── */
.right-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: var(--text-main);
    text-decoration: none;
    transition: background .2s, color .2s;
    position: relative;
    cursor: pointer;
    border: none;
    background: transparent;
}

.icon-btn:hover {
    background: var(--nav-accent);
    color: var(--green-bright);
}

.icon-btn .material-icons-outlined {
    font-size: 22px;
}

.badge-tag {
    position: absolute;
    top: 3px;
    right: 3px;
    background: var(--badge-bg);
    color: var(--badge-text);
    font-size: 10px;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    border-radius: 20px;
    padding: 1px 5px;
    min-width: 18px;
    text-align: center;
    line-height: 16px;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    width: auto;
    background: transparent;
    border: 1px solid var(--nav-border);
    border-radius: 8px;
    color: var(--text-main);
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    text-decoration: none;
    transition: border-color .2s, background .2s;
}

.user-btn:hover {
    border-color: var(--green-glow);
    background: var(--nav-accent);
    color: var(--green-bright);
}

.user-btn img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
}

.user-btn .material-icons-outlined {
    font-size: 20px;
}

/* ── MOBILE TOGGLERS ── */

#mobileMenu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 66.66vw;
    height: 100%;
    background: #fff;
    z-index: 1050;
    overflow-y: auto;
    transition: left 0.3s ease;
    display: block !important;
    padding: 20px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}

#mobileMenu.open {
    left: 0;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
}

.sidebar-overlay.active {
    display: block;
}

/* ── MOBILE COLLAPSE MENU ── */
.mobile-nav-collapse {
    background: var(--dropdown-bg);
    border-top: 1px solid var(--nav-border);
    padding: 12px 0;
}

.mobile-nav-collapse .nav-link {
    color: var(--text-main) !important;
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    letter-spacing: .3px;
    border-left: 2px solid transparent;
    transition: border-color .2s, background .2s, color .2s;
}

.mobile-nav-collapse .nav-link:hover {
    border-left-color: var(--green-glow);
    background: var(--nav-accent);
    color: var(--green-bright) !important;
}

.mobile-sub-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-sub-toggle .arrow {
    font-size: 12px;
    transition: transform .2s;
}

.mobile-sub-toggle.open .arrow {
    transform: rotate(180deg);
}

.mobile-inner-menu {
    display: none;
    background: rgba(0, 0, 0, .2);
}

.mobile-inner-menu .nav-link {
    padding-left: 36px;
    font-size: 13.5px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
}

/* Mobile search collapse */
.mobile-search-collapse {
    background: var(--dropdown-bg);
    border-top: 1px solid var(--nav-border);
    padding: 12px 16px;
}

.mobile-search-collapse .input-group {
    background: var(--search-bg);
    border: 1px solid var(--nav-border);
    border-radius: 8px;
    overflow: hidden;
}

.mobile-search-collapse .input-group-text {
    background: transparent;
    border: none;
    color: var(--text-dim);
}

.mobile-search-collapse .form-control {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 14px;
    box-shadow: none;
}

.mobile-search-collapse .form-control::placeholder {
    color: var(--text-dim);
}

.mobile-search-collapse .search-btn {
    background: var(--green-glow);
    color: var(--badge-text);
    border: none;
    font-weight: 700;
    font-size: 13px;
    padding: 0 14px;
}



/* ── RESPONSIVE SHOW/HIDE ── */

.mobile-only {
    display: none !important;
}

@media (max-width: 991px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
    }

    .logo_main {
        max-width: 110px;
    }

    .headerContainer {
        gap: 8px;
    }
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    font-size: 30px;
    padding: 10px;
    background: #86cd91a8;
    width: 15px;
}

button.owl-prev {
    position: absolute;
    top: 30%;
}

button.owl-next {
    position: absolute;
    top: 30%;
    right: 0;
}

.cat_div {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    box-shadow: 0px 3px 6px 1px #003315;
    display: grid;
    place-content: center;
    margin-bottom: 10px;
    overflow: hidden;
}

.cat_div img {
    width: 100% !important;
    transform: scale(1.0);
    transition: 0.3s;
}

.cat_div:hover img {
    transform: scale(1.2);
}

.category_products .banner {
    padding: 0px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category_products .banner.style1 {
    background: linear-gradient(to right, #003315, #003315);
    background: -moz-linear-gradient(to right, #003315, #003315);
    background: -o-linear-gradient(to right, #003315, #003315);
    background: -webkit-linear-gradient(to right, #003315, #003315);
}

.category_products .banner .title {
    font-size: 50px;
    text-transform: uppercase;
    font-family: var(--popins);
    color: #fff;
    font-weight: 700;
}

@media (max-width: 575.98px) {
    .category_products .banner .title {
        font-size: 30px;
    }

    .category_products .banner {
        flex-wrap: wrap;
        padding: 10px;
        justify-content: center;
    }
}

@media(max-width: 769px) {
    .cat_div {
        height: 70px;
        width: 70px;
    }

    .category_products .banner .title {
        font-size: 40px;
    }

    .category_products .banner {
        flex-wrap: wrap;
        padding: 13px;
        justify-content: center;
    }

}

#trending .content .item .caption {
    font-size: 12px;
    margin-bottom: 7px;
}


/* self css */

/* category marquee css */

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 12px 0;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.marquee-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: marqueeScroll 20s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.333%);
    }
}

.marquee-track .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    flex-shrink: 0;
    width: 14vw;
    padding: 6px 4px;
    transition: transform 0.2s;
}

.marquee-track .item:hover {
    transform: translateY(-4px);
}

/* lg default - 130px */
.marquee-track .cat_div {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--nav-accent);
}

.marquee-track .cat_div .icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.marquee-track .caption {
    font-size: 11px;
    color: #555;
    text-align: center;
    white-space: nowrap;
    margin: 0;
}

/* md - 991px */
@media (max-width: 991.98px) {
    .marquee-track .item {
        width: 16.66vw;
    }

    .marquee-track .cat_div {
        width: 90px;
        height: 90px;
    }
}

/* sm - 767px */
@media (max-width: 767.98px) {
    .marquee-track .item {
        width: 25vw;
    }

    .marquee-track .cat_div {
        width: 70px;
        height: 70px;
    }
}

/* xs - 399px */
@media (max-width: 399.98px) {
    .marquee-track .item {
        width: 33.33vw;
    }

    .marquee-track .cat_div {
        width: 60px;
        height: 60px;
    }
}

/* footer css */

footer {
    background-color: rgb(28, 36, 49);
    padding: 5px 0;
    color: white;
}

.footerWidget {
    padding: 30px 20px;
}

.marginRight {
    border-right: 1px solid white;
}

ul.contact {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.contact li {
    padding: 6px 0;
}

ul.contact li span {
    width: 100px;
    display: inline-block;
}

ul.contact li span i {
    margin-right: 20px;
    font-size: 20px;
}

ul.quickLink {
    list-style: none;
}

ul.quickLink li a {
    color: white;
}

footer .socials {
    float: left;
    margin-left: -45px;
}

footer .socials a {
    color: white;
}

.tiktok {
    background-color: #FE2C55;
}

.insta {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white;
    border: none;
    transition: 0.3s ease;
}

.twitter {
    background-color: #767676;
    color: white;
    padding: 5.5px 12px;
    border: none;
    transition: background 0.3s ease;
}

footer .footer {
    padding-top: 10px;
    border-radius: 5px;
}

.footer i {
    font-size: 20px;
    padding-top: 3px;
    padding-right: 6px;
}

.footer p {
    font-size: 13px;
}

.footer span {
    font-size: 17px;
    font-weight: 600;
    line-break: loose;
}

.social-link i.fa-facebook-f {
    padding-right: 30px;
    color: #3b5998;
}

.social-link i.fa-facebook-messenger {
    padding-right: 30px;
    color: #006aff;
}

.social-link i.fa-youtube {
    padding-right: 30px;
    color: #CD201F;
}

.social-link i.fa-instagram {
    padding-right: 30px;
    color: #fccc63;
}

.social-link i.fa-twitter {
    padding-right: 30px;
    color: #00acee;
}

.social-link i.fa-linkedin-in {
    padding-right: 30px;
    color: #0072b1;
}

.social-link i.fa-whatsapp {
    padding-right: 30px;
    color: #00ff55;
}

.footer .payment-partner a img {
    width: 100%;
    height: 25px;
    border-radius: 5px;
    background-color: #fff;
}

.footer .partner a img {
    height: 50px;
    width: 90px;
}

@media only screen and (min-width: 320px) and (max-width: 575px) {
    .second_div {
        border-right: none !important;
        border-bottom: 1px solid;
        padding-bottom: 10px;
    }

    .first_div {
        border-right: none !important;
        border-bottom: 1px solid;
        padding-bottom: 15px;
        padding-top: 18px !important;
    }

    .third_div {
        border-right: none !important;
        border-bottom: 1px solid;
        padding-bottom: 20px;
    }

}

.fixed-cart-bottom2 {
    background: white;
    border-radius: 50px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    box-shadow: 2px 2px 8px gray;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9999;
    font-size: 25px;
}

.first_div {
    padding-left: 30px;
    padding-top: 15px;
}

.second_div {
    padding-left: 30px;
    padding-top: 15px;
}

.third_div {
    padding-left: 30px;
    padding-top: 15px;
}

.four_div {
    padding-left: 30px;
    padding-top: 15px;
}

.col-md-7 {
    padding-left: 0px;
}

.footer i {
    font-size: 20px;
    padding-top: 3px;
    padding-right: 30px;
}

.end-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


footer {
    margin-top: 60px;
}


/* products */
/* NEW ARRIVAL Heading */
.na-wrap {
    background: var(--nav-accent);
    padding: 32px 0 24px;
}

.na-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 24px 10px;
}

.na-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-glow);
    flex-shrink: 0;
}

.na-line {
    flex: 1;
    height: 1px;
    background: var(--nav-border);
}

.na-badge {
    background: var(--badge-bg);
    color: var(--badge-text);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    flex-shrink: 0;
}

.na-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
    white-space: nowrap;
    letter-spacing: 0.04em;
}

.na-title span {
    color: var(--green-bright);
}

.na-sub {
    font-size: 13px;
    color: var(--text-dim);
    padding: 0 24px;
    margin: 0;
    text-align: center;
}

.na-bar {
    margin: 14px 24px 0;
    height: 2px;
    background: linear-gradient(to right, var(--green-glow), var(--green-bright) 35%, transparent);
    border-radius: 2px;
    opacity: 0.5;
}

/* NEW ARRIVAL Heading — Responsive */

@media (max-width: 991px) {
    .na-title {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .na-row {
        gap: 8px;
        padding: 0 14px 10px;
    }

    .na-title {
        font-size: 20px;
    }

    .na-badge {
        font-size: 9px;
        padding: 3px 9px;
    }

    .na-sub {
        font-size: 12px;
        padding: 0 14px;
    }

    .na-bar {
        margin: 10px 14px 0;
    }
}

@media (max-width: 480px) {
    .na-row {
        gap: 6px;
        padding: 0 10px 8px;
    }

    .na-title {
        font-size: 16px;
        letter-spacing: 0.02em;
    }

    .na-badge {
        font-size: 8px;
        padding: 2px 7px;
    }

    .na-sub {
        font-size: 11px;
        padding: 0 10px;
    }

    .na-bar {
        margin: 8px 10px 0;
    }
}

@media (max-width: 360px) {
    .na-title {
        font-size: 14px;
    }

    .na-badge {
        display: none;
    }
}

/*  */
.review-section {
    background: #f7f5f0;
    padding: 80px 0;
}

.section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e8742a;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 48px);
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0;
}

.section-title span {
    color: #e8742a;
}

.rating-summary-box {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 36px 28px;
    color: #fff;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.rating-summary-box::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 16px;
    font-size: 160px;
    font-family: 'Playfair Display', serif;
    color: rgba(232, 116, 42, 0.15);
    line-height: 1;
}

.big-rating {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.big-rating span {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
}

.stars-row {
    display: flex;
    gap: 4px;
    margin: 8px 0;
}

.total-reviews {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.bar-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    width: 12px;
}

.bar-track {
    flex: 1;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 99px;
    background: #f5a623;
}

.bar-count {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    width: 28px;
    text-align: right;
}

.write-review-btn {
    background: #e8742a;
    border: none;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}

.write-review-btn:hover {
    background: #d4661e;
    transform: translateY(-1px);
    color: #fff;
}

.review-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.review-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #e8742a, #f5a623);
    transition: width 0.4s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.review-card:hover::after {
    width: 100%;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #2e9e6e;
    background: rgba(46, 158, 110, 0.08);
    padding: 3px 8px;
    border-radius: 99px;
}

.verified-badge .dot {
    width: 5px;
    height: 5px;
    background: #2e9e6e;
    border-radius: 50%;
    display: inline-block;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.reviewer-name {
    font-weight: 600;
    font-size: 15px;
    color: #1a1a1a;
    margin-bottom: 1px;
}

.review-date {
    font-size: 12px;
    color: #aaa;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars .s {
    color: #f5a623;
    font-size: 15px;
}

.review-stars .s-e {
    color: #e0e0e0;
    font-size: 15px;
}

.review-title {
    font-weight: 600;
    font-size: 15px;
    color: #1a1a1a;
    margin: 12px 0 6px;
}

.review-text {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

.product-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #888;
    background: #f7f5f0;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
}

.helpful-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.helpful-label {
    font-size: 12px;
    color: #aaa;
}

.helpful-btn {
    border: 1px solid #e0e0e0;
    background: transparent;
    color: #666;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 7px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.helpful-btn:hover {
    border-color: #e8742a;
    color: #e8742a;
}

.helpful-btn.active {
    border-color: #e8742a;
    color: #e8742a;
    background: rgba(232, 116, 42, 0.05);
}

.review-img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: #f0ece4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.filter-chip {
    border: 1.5px solid #e0ddd8;
    background: #fff;
    color: #555;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 99px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
}

.filter-chip:hover,
.filter-chip.active {
    border-color: #e8742a;
    color: #e8742a;
    background: rgba(232, 116, 42, 0.06);
}

.featured-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2010 100%);
    color: #fff;
    border-radius: 18px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: none;
}

.featured-card::before {
    content: '❝';
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 80px;
    color: rgba(232, 116, 42, 0.2);
    line-height: 1;
}

.featured-card .review-title {
    color: #fff;
    font-size: 17px;
}

.featured-card .review-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.featured-card .review-date {
    color: rgba(255, 255, 255, 0.4);
}

.featured-card .reviewer-name {
    color: #fff;
}

.featured-card .product-tag {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
}

.featured-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #f5a623;
    background: rgba(245, 166, 35, 0.12);
    padding: 4px 10px;
    border-radius: 99px;
    margin-bottom: 14px;
}

.section-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #e8742a, #f5a623);
    border-radius: 99px;
    margin: 16px 0 32px;
}

.load-more-btn {
    background: transparent;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 40px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.3px;
}

.load-more-btn:hover {
    background: #1a1a1a;
    color: #fff;
}

@media (max-width: 768px) {
    .review-section {
        padding: 48px 0;
    }
}