:root {
    --shethji-maroon: #490402;
    --shethji-maroon-dark: #521420;
    --shethji-maroon-light: #7d2235;
    --shethji-cream: #ffffff;
    --shethji-cream-dark: #efe8dc;
    --shethji-gold: #c9a84c;
    --shethji-gold-light: #E5AE53;
    --shethji-brown: #4a3728;
    --shethji-brown-muted: #6b5a4e;
    --shethji-white: #ffffff;
    --shethji-border: #E2BE91;
    --shethji-container: 1410px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body.shethji-body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--shethji-brown);
    background: var(--shethji-cream);
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.shethji-container {
    width: min(100% - 32px, var(--shethji-container));
    margin-inline: auto;
}

/* ========== TOP BAR ========== */
.shethji-topbar {
    background: var(--shethji-maroon-dark);
    color: var(--shethji-white);
    font-size: 13px;
}

.shethji-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 38px;
    padding-block: 6px;
}

.shethji-topbar__social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.shethji-topbar__social a {
    color: var(--shethji-white);
    font-size: 14px;
    opacity: 0.95;
    transition: opacity 0.2s;
}

.shethji-topbar__social a:hover {
    opacity: 0.75;
}

.shethji-topbar__center {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    white-space: nowrap;
}

.shethji-topbar__center i {
    font-size: 13px;
}

.shethji-topbar__center a {
    color: inherit;
}

.shethji-topbar__center a:hover {
    text-decoration: underline;
}

.shethji-topbar__right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.shethji-topbar__right a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.shethji-topbar__right a:hover {
    opacity: 0.85;
}

/* ========== MAIN HEADER ========== */
.shethji-header {
    background: var(--shethji-cream);
    /* border-bottom: 1px solid var(--shethji-cream-dark); */
}

.shethji-header__inner {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    gap: 28px;
    padding-block: 10px;
}

.shethji-logo img {
    width: 100px;
    height: auto;
}

.shethji-search {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--shethji-border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--shethji-white);
    min-height: 46px;
    max-width: 600px;
}

.shethji-search__category {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border: none;
    border-right: 1px solid var(--shethji-border);
    background: #FBF0E1;
    color: var(--shethji-brown);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.shethji-search__input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 16px;
    font-size: 14px;
    color: var(--shethji-brown);
    min-width: 0;
}

.shethji-search__input::placeholder {
    color: #9a8b7d;
}

.shethji-search__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    border: none;
    background: #a20102;
    color: var(--shethji-white);
    cursor: pointer;
    font-size: 17px;
    transition: background 0.2s;
}

.shethji-search__btn:hover {
    background: var(--shethji-maroon-light);
}

.shethji-header__actions {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}

.shethji-header__action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--shethji-brown);
    min-width: 58px;
    position: relative;
}

.shethji-header__action i {
    font-size: 22px;
    color: var(--shethji-maroon);
}

.shethji-header__action:hover {
    color: var(--shethji-maroon);
}

.shethji-header__badge {
    position: absolute;
    top: -4px;
    right: 8px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 50%;
    background: var(--shethji-gold);
    color: var(--shethji-brown);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ========== NAVIGATION ========== */
.shethji-nav {
    background: var(--shethji-cream);
    /* border-bottom: 1px solid var(--shethji-cream-dark); */
}

.shethji-nav__inner {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 43px;
    min-height: 48px;
    overflow-x: auto;
    scrollbar-width: none;
}

.shethji-nav__inner::-webkit-scrollbar {
    display: none;
}

.shethji-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    color: var(--shethji-brown);
    white-space: nowrap;
    padding-block: 12px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.shethji-nav__link:hover,
.shethji-nav__link.is-active {
    color: var(--shethji-maroon);
}

.shethji-nav__link.is-active {
    border-bottom-color: var(--shethji-maroon);
}

.shethji-nav__catalog {
    color: var(--shethji-maroon);
    font-size: 18px;
}

/* ========== MAIN CONTENT ========== */
.shethji-main {
    min-height: 50vh;
}

/* ========== FOOTER ========== */
.shethji-footer {
    background: var(--shethji-maroon);
    color: var(--shethji-white);
    border-radius: 22px 22px 0 0;
}

.shethji-footer__main {
    padding: 48px 0 40px;
}

.shethji-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr 1.3fr;
    gap: 28px;
}

.shethji-footer__brand img {
    width: 150px;
    margin-bottom: 16px;
}

.shethji-footer__brand p {
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.92;
    margin: 0 0 18px;
    max-width: 260px;
}

.shethji-footer__social {
    display: flex;
    gap: 10px;
}

.shethji-footer__social a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--shethji-white);
    font-size: 15px;
    transition: background 0.2s, border-color 0.2s;
}

.shethji-footer__social a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.shethji-footer__heading {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 16px;
    color: var(--shethji-white);
}

.shethji-footer__links li {
    margin-bottom: 10px;
}

.shethji-footer__links a {
    font-size: 13px;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.shethji-footer__links a:hover {
    opacity: 0.7;
}

.shethji-footer__col--bordered {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 24px;
}

.shethji-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.92;
}

.shethji-footer__contact i {
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
}

.shethji-footer__contact a {
    color: inherit;
}

.shethji-footer__contact a:hover {
    text-decoration: underline;
}

.shethji-footer__newsletter p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.92;
    margin: 0 0 14px;
}

.shethji-footer__newsletter-form {
    display: flex;
    align-items: stretch;
}

.shethji-footer__newsletter-form input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 4px 0 0 4px;
    color: var(--shethji-brown);
}

.shethji-footer__newsletter-form button {
    width: 44px;
    border: none;
    background: var(--shethji-gold);
    color: var(--shethji-brown);
    font-size: 18px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: background 0.2s;
}

.shethji-footer__newsletter-form button:hover {
    background: var(--shethji-gold-light);
}

.shethji-footer__bottom {
    background: var(--shethji-gold-light);
    color: var(--shethji-brown);
    border-top: 1px solid #E5AE52;
}

.shethji-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 48px;
    padding-block: 10px;
    font-size: 12px;
}

.shethji-footer__payments {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.shethji-footer__pay-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 26px;
    padding: 0 8px;
    background: var(--shethji-white);
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    color: #333;
}

.shethji-footer__pay-badge--visa {
    color: #1a1f71;
}

.shethji-footer__pay-badge--mc {
    color: #eb001b;
}

/* ========== VISIBILITY UTILITIES ========== */
.shethji-show-mobile {
    display: none;
}

/* ========== MOBILE HEADER ========== */
.shethji-header-mobile {
    background: var(--shethji-white);
}

.shethji-header-mobile__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-block: 12px;
}

.shethji-header-mobile .shethji-logo img {
    width: 80px;
}

.shethji-header-mobile__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.shethji-header-mobile__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--shethji-maroon);
    font-size: 22px;
    background: none;
    border: none;
    padding: 0;
}

.shethji-header-mobile__icon--cart .shethji-header__badge {
    top: 0;
    right: 0;
}

.shethji-header-mobile__menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    background: none;
    color: var(--shethji-brown);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

/* ========== MOBILE SEARCH ========== */
.shethji-search-mobile {
    background: var(--shethji-white);
    padding-bottom: 12px;
}

.shethji-search--mobile {
    max-width: none;
    width: 100%;
    min-height: 44px;
}

.shethji-search--mobile .shethji-search__btn {
    width: 48px;
    flex-shrink: 0;
}

/* ========== MOBILE MENU ========== */
.shethji-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.45);
}

.shethji-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    width: min(300px, 88vw);
    height: 100%;
    background: var(--shethji-white);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.shethji-mobile-menu.is-open {
    transform: translateX(0);
}

.shethji-mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid var(--shethji-cream-dark);
    background: var(--shethji-maroon);
    color: var(--shethji-white);
}

.shethji-mobile-menu__title {
    font-size: 16px;
    font-weight: 600;
}

.shethji-mobile-menu__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    color: var(--shethji-white);
    font-size: 18px;
    cursor: pointer;
}

.shethji-mobile-menu__nav {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
}

.shethji-mobile-menu__link {
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--shethji-brown);
    border-bottom: 1px solid #f3ebe0;
}

.shethji-mobile-menu__link.is-active,
.shethji-mobile-menu__link:hover {
    color: var(--shethji-maroon);
    background: #faf6f0;
}

.shethji-mobile-menu__extras {
    margin-top: auto;
    padding: 16px 20px 24px;
    border-top: 1px solid var(--shethji-cream-dark);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shethji-mobile-menu__extra {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--shethji-brown);
}

.shethji-mobile-menu__extra i {
    color: var(--shethji-maroon);
    font-size: 16px;
}

body.shethji-menu-open {
    overflow: hidden;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .shethji-footer__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .shethji-footer__col--bordered {
        border-left: none;
        padding-left: 0;
    }
}

@media (max-width: 992px) {
    .shethji-topbar__center {
        display: none;
    }

    .shethji-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shethji-hide-mobile {
        display: none !important;
    }

    .shethji-show-mobile {
        display: block;
    }

    .shethji-topbar {
        background: var(--shethji-maroon);
    }

    .shethji-topbar__inner {
        justify-content: flex-start;
        min-height: 34px;
        padding-block: 8px;
    }

    .shethji-topbar__right {
        display: none;
    }

    .shethji-container {
        width: min(100% - 24px, var(--shethji-container));
    }

    .shethji-footer__brand {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .shethji-footer__brand img {
        width: 109px;
        margin-bottom: 0;
    }

    .shethji-footer__brand p {
        max-width: none;
        margin: 0;
    }

    .shethji-footer__social {
        width: 100%;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-start;
    }

    .shethji-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 16px;
    }

    .shethji-footer__links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 12px;
    }

    .shethji-footer__links li {
        margin-bottom: 0;
    }

    .shethji-footer__main {
        padding: 32px 0 28px;
    }

    .shethji-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .shethji-footer__grid > :nth-child(1),
    .shethji-footer__grid > :nth-child(4),
    .shethji-footer__grid > :nth-child(5),
    .shethji-footer__grid > :nth-child(6) {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .shethji-footer__grid {
        gap: 20px 14px;
    }
}

/* ========== HOME PAGE ========== */
.home-section {
    padding: 40px 0;
}

.home-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.home-section__head--simple {
    margin-bottom: 20px;
}

.home-section__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--shethji-maroon);
    margin: 0;
}

/* Buttons */
.home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    white-space: nowrap;
}

.home-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.home-btn--maroon {
    background: #a20102;
    width: min-content;
    color: var(--shethji-white);
}

.home-btn--gold {
    background: var(--shethji-gold-light);
    color: var(--shethji-brown);
    width: min-content;
}

.home-btn--sm {
    padding: 8px 16px;
    font-size: 12px;
}

.home-btn--outline {
    background: rgb(117 61 12);
    border: 1px solid 1px solid #582c06;
    color: #ffffff;
    border-radius: 50px;
}

.home-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--shethji-brown-muted);
}

.home-view-all:hover {
    color: var(--shethji-maroon);
}

/* ========== HERO ========== */
.home-hero {
    background-color: #fbf0e1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 48px 0;
    min-height: 480px;
    align-content: center;
    border-radius: 16px;
    box-shadow: 0px 0px 11px #68686857;
}

.home-hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 320px;
    padding-left: 9%;
}

.home-hero__content {
    max-width: 420px;
    flex-shrink: 0;
}

.home-hero__title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--shethji-maroon);
    line-height: 1.15;
    margin: 0 0 16px;
}

.home-hero__text {
    font-size: 15px;
    color: var(--shethji-brown-muted);
    margin: 0 0 24px;
    max-width: 380px;
    line-height: 1.7;
}

.home-hero__arrows {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
    align-self: center;
}

.home-hero__arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--shethji-border);
    background: var(--shethji-white);
    color: var(--shethji-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

.home-hero__arrow:hover {
    background: #faf6f0;
}

/* ========== CATEGORIES ========== */
.home-categories {
    padding-top: 24px;
}

.home-categories__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.home-category-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    padding: 16px 12px ;
    min-height: 200px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.home-category-card__body{
    padding-left: 10%;
}

.home-category-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--shethji-maroon);
    margin: 0 0 4px;
    line-height: 1.3;
}

.home-category-card__subtitle {
    font-size: 11px;
    color: var(--shethji-brown-muted);
    margin: 0 0 30px;
}

.home-category-card__img {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
}

.home-category-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== TABS ========== */
.home-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.home-tabs__btn {
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid transparent;
    background: #f5ebe0;
    color: var(--shethji-brown-muted);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.home-tabs__btn.is-active {
    background: #a20102;
    color: var(--shethji-white);
}

.home-tabs__btn:hover:not(.is-active) {
    background: #efe4d6;
}

/* ========== PRODUCT CARDS ========== */
.home-products-wrap {
    position: relative;
}

.home-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--shethji-border);
    background: var(--shethji-white);
    color: var(--shethji-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.home-carousel-btn--prev {
    left: -12px;
}

.home-carousel-btn--next {
    right: -12px;
}

.home-products {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 4px 2px 8px;
}

.home-products::-webkit-scrollbar {
    display: none;
}

.home-product-card {
    position: relative;
    flex: 0 0 220px;
    background: var(--shethji-white);
    border: 1px solid #f0e6d8;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 7px 0px #bababa49;
}

.home-product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    color: var(--shethji-white);
}

.home-product-card__badge--save {
    background: #c0392b;
}

.home-product-card__badge--new {
    background: #27ae60;
}

.home-product-card__badge--bestseller {
    background: var(--shethji-gold);
    color: var(--shethji-brown);
}

.home-product-card__img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.home-product-card__img img {
    max-height: 180px;
    width: auto;
    object-fit: contain;
}

.home-product-card__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--shethji-brown);
    margin: 0 0 2px;
}

.home-product-card__weight {
    font-size: 12px;
    color: #9a8b7d;
    margin: 0 0 6px;
}

.home-product-card__rating {
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
    font-size: 11px;
    color: var(--shethji-gold);
}

.home-product-card__rating .is-muted {
    color: #ddd;
}

.home-product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.home-product-card__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.home-product-card__price--block {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 12px;
}

.home-product-card__current {
    font-size: 15px;
    font-weight: 700;
    color: var(--shethji-maroon);
}

.home-product-card__old {
    font-size: 12px;
    color: #aaa;
    text-decoration: line-through;
}

.home-product-card__cart {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #a20102;
    color: var(--shethji-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    flex-shrink: 0;
}

.home-product-card__add {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: #a20102;
    color: var(--shethji-white);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.home-product-card__add:hover {
    background: var(--shethji-maroon-light);
}

/* ========== BIG SAVING ZONE ========== */
.home-saving__inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 20px;
    align-items: stretch;
}

.home-saving__banner {
    position: relative;
    background: #fbf0e1;
    border-radius: 16px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    min-height: 320px;
}

.home-saving__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--shethji-brown-muted);
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.home-saving__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--shethji-maroon);
    margin: 0 0 10px;
    line-height: 1.2;
}

.home-saving__text {
    font-size: 13px;
    color: var(--shethji-brown-muted);
    margin: 0 0 20px;
    line-height: 1.6;
}

.home-saving__leaves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(0deg, rgba(76, 120, 60, 0.12) 0%, transparent 100%);
    pointer-events: none;
}

.home-products--saving .home-product-card {
    flex: 0 0 200px;
}

.home-product-card--saving {
    padding-bottom: 14px;
}

/* ========== HEALTHY ESSENTIALS ========== */
.home-essentials__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.home-essential-card {
    display: block;
    text-align: center;
}

.home-essential-card__img {
    position: relative;
    border-radius: 14px;
    aspect-ratio: 4/2;
    margin-bottom: 12px;
    background: #f5ebe0;
}

.home-essential-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.home-essential-card__icon {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #a20102;
    color: var(--shethji-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.home-essential-card__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--shethji-brown);
}

/* ========== FARM BANNER ========== */
.home-farm {
    padding: 0 16px 18px;
}

.home-farm__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    border-radius: 16px;
    overflow: hidden;
    max-width: var(--shethji-container);
    margin: 0 auto;
    min-height: 280px;
}

.home-farm__content {
    background: var(--shethji-maroon);
    color: var(--shethji-white);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.home-farm__content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.home-farm__title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.2;
    position: relative;
}

.home-farm__subtitle {
    font-size: 15px;
    opacity: 0.9;
    margin: 0 0 24px;
    position: relative;
}

.home-farm__visual {
    position: relative;
    background: #d4c4a0;
}

.home-farm__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 280px;
    object-position: 91%;
}

.home-farm__badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--shethji-gold);
    color: var(--shethji-brown);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

/* ========== TRUST BAR ========== */
.home-trust {
    background: #fbf0e1;
    padding: 28px 0;
    border-top: 1px solid #efe4d6;
    border-radius: 15px;
}

.home-trust__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.home-trust__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.home-trust__icon {
    font-size: 28px;
    color: var(--shethji-gold);
    flex-shrink: 0;
    line-height: 1;
}

.home-trust__title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--shethji-brown);
    margin-bottom: 2px;
}

.home-trust__text {
    display: block;
    font-size: 11px;
    color: var(--shethji-brown-muted);
    line-height: 1.4;
}

/* ========== HOME RESPONSIVE ========== */
@media (max-width: 1200px) {

    .home-saving__inner {
        grid-template-columns: 220px 1fr;
    }

    .home-essentials__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-trust__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .home-hero {
        background-size: cover;
    }

    .home-hero__inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        min-height: auto;
        padding-left: 2%;
    }

    .home-hero__text {
        max-width: 100%;
    }

    .home-saving__inner {
        grid-template-columns: 1fr;
    }

    .home-saving__banner {
        min-height: auto;
    }

    .home-farm__inner {
        grid-template-columns: 1fr;
    }

    .home-farm__visual {
        min-height: 220px;
    }
}

@media (max-width: 768px) {
    .home-hero {
        background-position: 62%;
        padding-bottom: 32px;
        min-height: 371px;
    }
    .home-category-card__body {
        padding-left: 3%;
    }
    .home-section {
        padding: 28px 0;
    }

    .home-categories__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-section__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-carousel-btn {
        display: none;
    }

    .home-product-card {
        flex: 0 0 47%;
    }

    .home-essentials__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .home-trust__grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-farm__content {
        padding: 32px 24px;
    }

    .home-hero__arrows {
        display: none;
    }
}

/* ========== SHOP PAGE ========== */
.shop-page {
    padding: 24px 0 40px;
    background: #fdfbf9;
}

.shop-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--shethji-brown-muted);
    margin-bottom: 20px;
}

.shop-breadcrumb a:hover {
    color: var(--shethji-maroon);
}

.shop-breadcrumb__sep {
    color: #c4b5a8;
}

.shop-breadcrumb [aria-current="page"] {
    color: var(--shethji-brown);
    font-weight: 500;
}

.shop-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 28px;
    align-items: start;
}

/* Toolbar */
.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 14px 18px;
    background: var(--shethji-white);
    border: 1px solid #efe4d6;
    border-radius: 10px;
    margin-bottom: 20px;
}

.shop-toolbar__left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.shop-toolbar__right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.shop-view {
    display: flex;
    align-items: center;
    gap: 4px;
}

.shop-view__btn {
    width: 34px;
    height: 34px;
    border: 1px solid #efe4d6;
    border-radius: 6px;
    background: var(--shethji-white);
    color: var(--shethji-brown-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.shop-view__btn.is-active,
.shop-view__btn:hover {
    background: #a20102;
    border-color: #a20102;
    color: var(--shethji-white);
}

.shop-toolbar__count {
    font-size: 13px;
    color: var(--shethji-brown-muted);
}

.shop-select {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--shethji-brown);
}

.shop-select span {
    white-space: nowrap;
    color: var(--shethji-brown-muted);
}

.shop-select select {
    appearance: none;
    border: 1px solid #efe4d6;
    border-radius: 6px;
    padding: 8px 28px 8px 12px;
    font-size: 13px;
    font-family: inherit;
    color: var(--shethji-brown);
    background: var(--shethji-white);
    cursor: pointer;
    min-width: 130px;
}

.shop-select > .bi {
    position: absolute;
    right: 10px;
    pointer-events: none;
    font-size: 11px;
    color: var(--shethji-brown-muted);
}

.shop-select:has(span) > .bi {
    right: 10px;
}

.shop-toolbar__right .shop-select:first-of-type > .bi {
    right: 10px;
}

/* Product grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.shop-grid--cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.shop-grid--cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.shop-grid--list {
    grid-template-columns: 1fr;
}

.shop-grid--list .shop-product-card {
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.shop-grid--list .home-product-card__img {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    margin-bottom: 0;
}

.shop-grid--list .home-product-card__img img {
    max-height: 120px;
}

.shop-product-card {
    position: relative;
    background: var(--shethji-white);
    border: 1px solid #f0e6d8;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 7px 0px #bababa49;
}

.shop-product-card .home-product-card__badge {
    top: 12px;
    left: 12px;
}

.shop-product-card__footer {
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    gap: 8px;
}

.shop-product-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    margin-top: 10px;
}

.shop-product-card__wish {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #efe4d6;
    background: var(--shethji-white);
    color: var(--shethji-brown-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    transition: color 0.2s, border-color 0.2s;
}

.shop-product-card__wish:hover {
    color: #a20102;
    border-color: #a20102;
}

/* Pagination */
.shop-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #efe4d6;
}

.shop-pagination__count {
    font-size: 13px;
    color: var(--shethji-brown-muted);
}

.shop-pagination__nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.shop-pagination__btn {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #efe4d6;
    border-radius: 6px;
    background: var(--shethji-white);
    color: var(--shethji-brown);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.shop-pagination__btn.is-active {
    background: #a20102;
    border-color: #a20102;
    color: var(--shethji-white);
}

.shop-pagination__btn:hover:not(.is-active) {
    border-color: #a20102;
    color: #a20102;
}

.shop-pagination__dots {
    font-size: 13px;
    color: var(--shethji-brown-muted);
    padding: 0 4px;
}

/* Sidebar */
.shop-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.shop-filter {
    padding: 20px 0;
    border-bottom: 1px solid #efe4d6;
}

.shop-filter:first-child {
    padding-top: 0;
}

.shop-filter:last-child {
    border-bottom: none;
}

.shop-filter__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--shethji-brown);
    margin: 0 0 16px;
}

.shop-filter__btn {
    padding: 8px 22px;
    border: none;
    border-radius: 6px;
    background: #a20102;
    color: var(--shethji-white);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 12px;
    transition: background 0.2s;
}

.shop-filter__btn:hover {
    background: var(--shethji-maroon-light);
}

.shop-filter__link {
    display: inline-block;
    margin-top: 10px;
    padding: 0;
    border: none;
    background: none;
    color: #a20102;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
}

.shop-filter__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shop-filter__list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--shethji-brown);
    transition: color 0.2s;
}

.shop-filter__list a span {
    color: var(--shethji-brown-muted);
    font-size: 12px;
}

.shop-filter__list a:hover {
    color: #a20102;
}

.shop-filter__checks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shop-check {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--shethji-brown);
}

.shop-check input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.shop-check__box {
    width: 16px;
    height: 16px;
    border: 1px solid #d4c4b0;
    border-radius: 3px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}

.shop-check input:checked + .shop-check__box {
    background: #a20102;
    border-color: #a20102;
}

.shop-check input:checked + .shop-check__box::after {
    content: '';
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.shop-check__label {
    flex: 1;
}

/* Price range */
.shop-price-range {
    position: relative;
    height: 24px;
    margin-bottom: 8px;
}

.shop-price-range__track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: #efe4d6;
    border-radius: 2px;
    transform: translateY(-50%);
    pointer-events: none;
}

.shop-price-range__input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 24px;
    margin: 0;
    appearance: none;
    background: transparent;
    pointer-events: none;
    z-index: 1;
}

.shop-price-range__input::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #a20102;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    pointer-events: auto;
}

.shop-price-range__input::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #a20102;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    pointer-events: auto;
}

.shop-price-range__label {
    font-size: 13px;
    color: var(--shethji-brown-muted);
    margin: 0 0 4px;
}

/* Rating filter */
.shop-filter__ratings {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shop-rating-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--shethji-brown);
    transition: color 0.2s;
}

.shop-rating-filter:hover {
    color: #a20102;
}

.shop-rating-filter__stars {
    display: flex;
    gap: 2px;
    font-size: 12px;
    color: var(--shethji-gold);
}

.shop-rating-filter__stars .is-muted {
    color: #ddd;
}

.shop-rating-filter__count {
    color: var(--shethji-brown-muted);
    font-size: 12px;
}

/* Newsletter & features promo */
.shop-promo-wrap {
    padding: 28px 0 40px;
    background: #fdfbf9;
}

.shop-promo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shop-newsletter {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 16px;
    background: #f8f1e7;
    border-radius: 20px;
    overflow: hidden;
    min-height: 280px;
    padding: 40px 0 40px 48px;
}

.shop-newsletter__content {
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.shop-newsletter__title {
    font-size: clamp(1.5rem, 2.8vw, 2.25rem);
    font-weight: 700;
    color: #2a2420;
    margin: 0 0 12px;
    line-height: 1.2;
}

.shop-newsletter__title-accent {
    color: #a20102;
}

.shop-newsletter__text {
    font-size: 14px;
    color: #8a7b6e;
    margin: 0 0 32px;
}

.shop-newsletter__form {
    display: flex;
    align-items: stretch;
    max-width: 285px;
    border-radius: 50px;
    overflow: hidden;
    background: var(--shethji-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.shop-newsletter__form input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    padding: 14px 20px;
    font-size: 13px;
    font-family: inherit;
    color: var(--shethji-brown);
    background: transparent;
}

.shop-newsletter__form input::placeholder {
    color: #b5a99a;
}

.shop-newsletter__form button {
    padding: 14px 28px;
    border: none;
    background: #a20102;
    color: var(--shethji-white);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
    flex-shrink: 0;
    border-radius: 50px;
}

.shop-newsletter__form button:hover {
    background: var(--shethji-maroon-light);
}

.shop-newsletter__visual {
    position: absolute;
    right: 5%;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
    min-height: 260px;
}

.shop-newsletter__visual img {
    width: 100%;
    max-width: 80%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    object-position: right bottom;
}

/* Features bar */
.shop-features__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.shop-features__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f8f1e7;
    border-radius: 12px;
    padding: 18px 14px;
}

.shop-features__icon {
    font-size: 26px;
    color: var(--shethji-gold);
    flex-shrink: 0;
    line-height: 1;
}

.shop-features__title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--shethji-brown);
    margin-bottom: 3px;
    line-height: 1.3;
}

.shop-features__text {
    display: block;
    font-size: 11px;
    color: var(--shethji-brown-muted);
    line-height: 1.4;
}

/* Shop responsive */
@media (max-width: 1200px) {
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .shop-layout {
        grid-template-columns: minmax(0, 1fr) 260px;
    }

    .shop-features__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 24px;
        background: var(--shethji-white);
        border: 1px solid #efe4d6;
        border-radius: 10px;
        padding: 16px 20px;
    }

    .shop-filter {
        border-bottom: none;
        padding: 12px 0;
    }

    .shop-newsletter {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        min-height: auto;
    }

    .shop-newsletter__content {
        max-width: none;
    }

    .shop-newsletter__visual {
        justify-content: center;
        min-height: 200px;
    }

    .shop-newsletter__visual img {
        max-height: 80%;
    }
}

@media (max-width: 768px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .shop-grid--list {
        grid-template-columns: 1fr;
    }

    .shop-product-card {
        padding: 9px;
    }

    .shop-product-card .home-product-card__img {
        height: 140px;
    }

    .shop-product-card .home-product-card__img img {
        max-height: 120px;
    }

    .shop-product-card .home-product-card__name {
        font-size: 12px;
    }

    .shop-product-card .home-product-card__current {
        font-size: 13px;
    }

    .shop-product-card__wish,
    .shop-product-card .home-product-card__cart {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .shop-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .shop-toolbar__left,
    .shop-toolbar__right {
        justify-content: space-between;
        width: 100%;
    }

    .shop-sidebar {
        grid-template-columns: 1fr;
    }

    .shop-pagination {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .shop-features__grid {
        grid-template-columns: 1fr 1fr;
    }

    .shop-newsletter {
        padding: 28px 20px;
    }

    .shop-newsletter__title {
        font-size: 1.35rem;
    }
}

@media (max-width: 480px) {
    .shop-features__grid {
        grid-template-columns: 1fr;
    }
}

/* ========== PRODUCT DETAIL PAGE ========== */
.pd-page {
    padding: 24px 0 48px;
    background: #fdfbf9;
}

.pd-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: var(--shethji-brown-muted);
    margin-bottom: 24px;
}

.pd-breadcrumb a:hover {
    color: var(--shethji-maroon);
}

.pd-breadcrumb [aria-current="page"] {
    color: var(--shethji-brown);
    font-weight: 500;
}

.pd-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 28px;
    align-items: start;
}

.pd-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

.pd-main__top {
    display: grid;
    grid-template-columns: 400px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

/* Gallery */
.pd-gallery {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pd-gallery__main {
    position: relative;
    background: var(--shethji-white);
    border: 1px solid #efe4d6;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}

.pd-gallery__main img {
    max-height: 320px;
    width: auto;
    object-fit: contain;
}

.pd-gallery__zoom {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #efe4d6;
    background: var(--shethji-white);
    color: var(--shethji-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
}

.pd-gallery__thumbs-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pd-gallery__nav {
    width: 32px;
    height: 32px;
    border: 1px solid #efe4d6;
    border-radius: 50%;
    background: var(--shethji-white);
    color: var(--shethji-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 14px;
}

.pd-gallery__thumbs {
    display: flex;
    gap: 10px;
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
}

.pd-gallery__thumbs::-webkit-scrollbar {
    display: none;
}

.pd-gallery__thumb {
    flex: 0 0 22%;
    height: 72px;
    border: 2px solid #efe4d6;
    border-radius: 8px;
    padding: 6px;
    background: var(--shethji-white);
    cursor: pointer;
    overflow: hidden;
}

.pd-gallery__thumb.is-active {
    border-color: #a20102;
}

.pd-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pd-gallery__video {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border: 1px solid #efe4d6;
    border-radius: 10px;
    background: var(--shethji-white);
    color: #a20102;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.pd-gallery__video i {
    font-size: 20px;
}

.pd-gallery__video:hover {
    background: #faf6f0;
}

/* Product info */
.pd-info__badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    background: #fce8e8;
    color: #a20102;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.pd-info__title {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 700;
    color: var(--shethji-maroon);
    margin: 0 0 14px;
    line-height: 1.3;
}

.pd-info__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.pd-info__old {
    font-size: 15px;
    color: #aaa;
    text-decoration: line-through;
}

.pd-info__current {
    font-size: 22px;
    font-weight: 700;
    color: #a20102;
}

.pd-info__off {
    font-size: 13px;
    color: #c0392b;
    font-weight: 500;
}

.pd-info__desc {
    font-size: 14px;
    color: var(--shethji-brown-muted);
    line-height: 1.7;
    margin: 0 0 14px;
}

.pd-info__pack {
    font-size: 14px;
    color: var(--shethji-brown);
    margin: 0 0 18px;
}

.pd-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid #efe4d6;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.pd-qty__btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #faf6f0;
    color: var(--shethji-brown);
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s;
}

.pd-qty__btn:hover {
    background: #efe4d6;
}

.pd-qty__input {
    width: 48px;
    height: 40px;
    border: none;
    border-left: 1px solid #efe4d6;
    border-right: 1px solid #efe4d6;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    color: var(--shethji-brown);
    -moz-appearance: textfield;
}

.pd-qty__input::-webkit-outer-spin-button,
.pd-qty__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pd-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    margin-bottom: 12px;
    text-decoration: none;
}
.buttons-wrap-product{
    display: flex;
    gap: 3%;
}
.pd-btn--cart {
    border: none;
    background: #a20102;
    color: var(--shethji-white);
}

.pd-btn--cart:hover {
    background: var(--shethji-maroon-light);
}

.pd-btn--whatsapp {
    border: 2px solid #25d366;
    background: var(--shethji-white);
    color: #25d366;
}

.pd-btn--whatsapp:hover {
    background: #f0fdf4;
}

.pd-info__actions {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.pd-info__action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: none;
    background: none;
    font-size: 13px;
    color: var(--shethji-brown-muted);
    cursor: pointer;
    transition: color 0.2s;
}

.pd-info__action:hover {
    color: #a20102;
}

.pd-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid #efe4d6;
}

.pd-meta li {
    font-size: 13px;
    color: var(--shethji-brown-muted);
}

.pd-meta span {
    font-weight: 600;
    color: var(--shethji-brown);
}

.pd-meta a {
    color: #a20102;
}

.pd-meta a:hover {
    text-decoration: underline;
}

.pd-meta em {
    color: #27ae60;
    font-style: normal;
    font-weight: 500;
}

/* Sidebar */
.pd-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
    position: sticky;
    top: 16px;
}

.pd-widget {
    background: var(--shethji-white);
    border: 1px solid #efe4d6;
    border-radius: 12px;
    padding: 18px;
}

.pd-widget__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--shethji-brown);
    margin: 0 0 14px;
}

.pd-categories {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pd-categories__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--shethji-brown);
    transition: background 0.2s, color 0.2s;
}

.pd-categories__link > .bi:first-child {
    color: var(--shethji-gold);
    font-size: 16px;
    width: 20px;
}

.pd-categories__link span {
    flex: 1;
}

.pd-categories__link > .bi-chevron-right {
    font-size: 12px;
    color: var(--shethji-brown-muted);
}

.pd-categories__link.is-active,
.pd-categories__link:hover {
    background: #fbf0e1;
    color: #a20102;
}

.pd-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pd-tags__item {
    padding: 6px 14px;
    border-radius: 50px;
    background: #fbf0e1;
    color: #a20102;
    font-size: 12px;
    font-weight: 500;
    transition: background 0.2s;
}

.pd-tags__item:hover {
    background: #efe4d6;
}

.pd-also {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pd-also__item {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 10px;
    align-items: center;
}

.pd-also__img {
    width: 56px;
    height: 56px;
    border: 1px solid #efe4d6;
    border-radius: 8px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--shethji-white);
}

.pd-also__img img {
    max-height: 44px;
    width: auto;
    object-fit: contain;
}

.pd-also__name {
    font-size: 12px;
    font-weight: 600;
    color: var(--shethji-brown);
    display: block;
    margin-bottom: 4px;
    line-height: 1.3;
}

.pd-also__name:hover {
    color: #a20102;
}

.pd-also__price {
    display: flex;
    gap: 6px;
    align-items: baseline;
    margin-bottom: 4px;
}

.pd-also__current {
    font-size: 13px;
    font-weight: 700;
    color: #a20102;
}

.pd-also__old {
    font-size: 11px;
    color: #aaa;
    text-decoration: line-through;
}

.pd-also__item .home-product-card__rating {
    font-size: 9px;
    margin-bottom: 0;
}

.pd-also__item .home-product-card__cart {
    width: 32px;
    height: 32px;
    font-size: 14px;
}

.pd-also__view {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--shethji-brown-muted);
}

.pd-also__view:hover {
    color: #a20102;
}

.pd-promo {
    position: relative;
    background: linear-gradient(135deg, #fbf0e1 0%, #f5ebe0 100%);
    border-radius: 12px;
    padding: 20px;
    overflow: hidden;
    min-height: 120px;
}

.pd-promo__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--shethji-maroon);
    margin: 0 0 4px;
}

.pd-promo__text {
    font-size: 12px;
    color: var(--shethji-brown-muted);
    margin: 0 0 12px;
}

.pd-promo__img {
    position: absolute;
    right: 8px;
    bottom: 0;
    max-height: 100px;
    width: auto;
    object-fit: contain;
}

/* Trust bar */
.pd-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: #fbf0e1;
    border-radius: 12px;
    padding: 20px 24px;
}

.pd-trust__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--shethji-brown);
    line-height: 1.4;
}

.pd-trust__item i {
    font-size: 22px;
    color: var(--shethji-gold);
    flex-shrink: 0;
}

/* Tabs */
.pd-tabs-wrap {
    background: var(--shethji-white);
    border: 1px solid #efe4d6;
    border-radius: 12px;
    padding: 24px 28px;
}

.pd-tabs {
    display: flex;
    gap: 28px;
    border-bottom: 1px solid #efe4d6;
    margin-bottom: 24px;
}

.pd-tabs__btn {
    padding: 0 0 14px;
    border: none;
    background: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--shethji-brown-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s, border-color 0.2s;
}

.pd-tabs__btn.is-active {
    color: #a20102;
    border-bottom-color: #a20102;
    font-weight: 600;
}

.pd-tab-panel {
    display: none;
    font-size: 14px;
    color: var(--shethji-brown-muted);
    line-height: 1.7;
}

.pd-tab-panel.is-active {
    display: block;
}

.pd-tab-panel p {
    margin: 0 0 14px;
}

.pd-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    margin: 20px 0;
    padding: 0;
}

.pd-specs li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px dashed #efe4d6;
}

.pd-specs span {
    color: var(--shethji-brown-muted);
}

.pd-specs strong {
    color: var(--shethji-brown);
    font-weight: 600;
    text-align: right;
}

.pd-tab-heading {
    font-size: 15px;
    font-weight: 700;
    color: var(--shethji-maroon);
    margin: 20px 0 10px;
}

.pd-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.pd-table th,
.pd-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #efe4d6;
}

.pd-table th {
    width: 180px;
    font-weight: 600;
    color: var(--shethji-brown);
    background: #faf6f0;
}

.pd-review {
    padding: 16px 0;
    border-bottom: 1px solid #efe4d6;
}

.pd-review:last-child {
    border-bottom: none;
}

.pd-review__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.pd-review__head strong {
    font-size: 14px;
    color: var(--shethji-brown);
}

/* Related products */
.pd-related__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--shethji-maroon);
    margin: 0 0 20px;
}

/* Related products slider */
.pd-related__wrap {
    position: relative;
}

.pd-related__track {
    display: flex;
    gap: 16px;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    padding: 4px 2px 8px;
}

.pd-related__track::-webkit-scrollbar {
    display: none;
}

.pd-related__track .shop-product-card {
    flex: 0 0 calc((100% - 48px) / 4);
    min-width: 0;
    scroll-snap-align: start;
}

/* Product detail responsive */
@media (max-width: 1200px) {
    .pd-main__top {
        grid-template-columns: 340px minmax(0, 1fr);
        gap: 20px;
    }

    .pd-layout {
        grid-template-columns: minmax(0, 1fr) 260px;
        gap: 20px;
    }

    .pd-trust {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .pd-layout {
        grid-template-columns: 1fr;
    }

    .pd-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .pd-promo {
        grid-column: span 2;
    }

    .pd-main__top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pd-sidebar {
        grid-template-columns: 1fr;
    }

    .pd-promo {
        grid-column: auto;
    }

    .pd-gallery__main {
        min-height: 280px;
    }

    .pd-specs {
        grid-template-columns: 1fr;
    }

    .pd-tabs {
        flex-wrap: wrap;
        gap: 12px 20px;
    }

    .pd-trust {
        grid-template-columns: 1fr;
        padding: 16px 18px;
    }

    .pd-related__track .shop-product-card {
        flex: 0 0 calc((100% - 16px) / 2);
    }

    .pd-related__wrap .home-carousel-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .pd-related__track {
        gap: 10px;
    }

    .pd-related__track .shop-product-card {
        flex: 0 0 calc((100% - 10px) / 2);
        padding: 10px;
    }
}

/* ========== ABOUT PAGE ========== */
.about-page {
    background: #fdfbf9;
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: var(--shethji-brown-muted);
    padding: 24px 0 20px;
}

.about-breadcrumb a:hover {
    color: var(--shethji-maroon);
}

.about-breadcrumb [aria-current="page"] {
    color: var(--shethji-brown);
    font-weight: 500;
}

.about-label {
    font-size: 14px;
    font-weight: 600;
    color: #a20102;
    margin: 0 0 12px;
}

.about-section {
    padding: 56px 0;
}

.about-section-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 40px;
}

.about-section-head__ornament {
    position: relative;
    width: 90px;
    height: 1px;
    background: var(--shethji-gold);
    flex-shrink: 0;
}

.about-section-head__ornament::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 7px;
    height: 7px;
    border: 1px solid var(--shethji-gold);
    transform: translateY(-50%) rotate(45deg);
    background: #fdfbf9;
}

.about-section-head__ornament--right::after {
    left: auto;
    right: 0;
}

.about-section-head__title {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--shethji-maroon);
    margin: 0;
    text-align: center;
    white-space: nowrap;
}

/* Hero */
.about-hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
    align-items: center;
    padding-bottom: 20px;
}

.about-hero__visual img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    aspect-ratio: 3 / 2;
    min-height: 400px;
}

.about-hero__title {
    font-size: clamp(1.85rem, 3vw, 2.45rem);
    font-weight: 700;
    color: var(--shethji-maroon);
    line-height: 1.2;
    margin: 0 0 18px;
}

.about-hero__text {
    font-size: 14px;
    color: var(--shethji-brown-muted);
    line-height: 1.8;
    margin: 0 0 14px;
}

.about-hero__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 22px;
}

.about-hero__gallery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
}

/* What We Provide */
.about-provide {
    padding-top: 40px;
}

.about-provide__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.about-provide__card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--shethji-white);
    border: 1px solid #efe4d6;
    border-radius: 12px;
    padding: 24px 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s;
}

.about-provide__card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.about-provide__icon {
    font-size: 30px;
    color: #8b6914;
    flex-shrink: 0;
    line-height: 1;
}

.about-provide__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--shethji-brown);
    margin: 0 0 5px;
}

.about-provide__text {
    font-size: 13px;
    color: var(--shethji-brown-muted);
    line-height: 1.55;
    margin: 0;
}

/* Heritage */
.about-heritage {
    padding: 56px 0;
}

.about-heritage__inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: center;
}

.about-heritage__title {
    font-size: clamp(1.55rem, 2.5vw, 2.1rem);
    font-weight: 700;
    color: var(--shethji-maroon);
    margin: 0 0 16px;
    line-height: 1.25;
}

.about-heritage__text {
    font-size: 14px;
    color: var(--shethji-brown-muted);
    line-height: 1.8;
    margin: 0 0 26px;
    max-width: 480px;
}

.about-heritage__visual img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    aspect-ratio: 3 / 1;
    min-height: 300px;
}

/* Product Range */
.about-range {
    padding: 56px 0 48px;
}

.about-range__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px 36px;
    margin-bottom: 28px;
}

.about-range__item {
    text-align: center;
    flex: 0 0 150px;
}

.about-range__img {
    width: 150px;
    height: 150px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #efe4d6;
    background: #fbf0e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.about-range__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-range__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--shethji-brown);
}

.about-range__note {
    text-align: center;
    font-size: 14px;
    color: var(--shethji-brown-muted);
    margin: 0;
    max-width: 520px;
    margin-inline: auto;
}

/* Journey */
.about-journey {
    background: var(--shethji-maroon);
    color: var(--shethji-white);
    padding: 52px 0;
}

.about-journey__inner {
    display: grid;
    grid-template-columns: minmax(0, 340px) 1fr;
    gap: 48px;
    align-items: center;
}

.about-journey__title {
    font-size: 1.85rem;
    font-weight: 700;
    margin: 0 0 14px;
}

.about-journey__intro p {
    font-size: 14px;
    line-height: 1.75;
    opacity: 0.92;
    margin: 0;
}

.about-journey__stats {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 8px;
}

.about-journey__stat {
    flex: 1;
    text-align: center;
    padding: 0 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.about-journey__stat:first-child {
    border-left: none;
}

.about-journey__stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--shethji-gold-light);
    margin-bottom: 8px;
    line-height: 1;
}

.about-journey__stat span {
    display: block;
    font-size: 12px;
    opacity: 0.92;
    line-height: 1.45;
}

/* Team */
.about-team {
    padding: 56px 0 48px;
}

.about-team__inner {
    display: grid;
    grid-template-columns: minmax(0, 380px) 1fr;
    gap: 48px;
    align-items: center;
}

.about-team__title {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--shethji-maroon);
    margin: 0 0 14px;
    line-height: 1.25;
}

.about-team__text {
    font-size: 14px;
    color: var(--shethji-brown-muted);
    line-height: 1.8;
    margin: 0 0 26px;
}

.about-team__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-team__card {
    background: #f3ebe0;
    border-radius: 14px;
    overflow: visible;
    padding: 12px 12px 0;
}

.about-team__photo {
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
    background: #e8ddd0;
}

.about-team__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.about-team__info {
    background: var(--shethji-white);
    margin: -40px 20px 16px;
    padding: 14px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    text-align: left;
}

.about-team__info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--shethji-maroon);
    margin: 0 0 3px;
}

.about-team__info p {
    font-size: 12px;
    color: var(--shethji-brown-muted);
    margin: 0 0 10px;
}

.about-team__social {
    display: flex;
    gap: 8px;
}

.about-team__social a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #a20102;
    color: var(--shethji-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* About responsive */
@media (max-width: 1200px) {
    .about-provide__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-journey__stats {
        flex-wrap: wrap;
    }

    .about-journey__stat {
        flex: 1 1 calc(33.333% - 12px);
        border-left: none;
        padding: 12px 8px;
    }
}

@media (max-width: 992px) {
    .about-hero,
    .about-heritage__inner,
    .about-team__inner,
    .about-journey__inner {
        grid-template-columns: 1fr;
    }

    .about-hero__visual img {
        min-height: 300px;
        aspect-ratio: auto;
    }

    .about-journey__stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .about-team__cards {
        max-width: 560px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-section,
    .about-heritage,
    .about-range,
    .about-team {
        padding: 40px 0;
    }

    .about-section-head__title {
        font-size: 1.45rem;
        white-space: normal;
    }

    .about-section-head__ornament {
        width: 50px;
    }

    .about-provide__grid {
        grid-template-columns: 1fr;
    }

    .about-range__item {
        flex: 0 0 calc(50% - 18px);
    }

    .about-range__img {
        width: 120px;
        height: 120px;
    }

    .about-journey__stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-team__cards {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .about-hero {
        grid-template-columns: 1fr;
    }
    .about-range__grid{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .about-range__item {
        flex: 0 0 calc(50% - 14px);
    }

    .about-range__img {
        width: 100px;
        height: 100px;
    }
}
