:root {
    --primary:        #2C2218;
    --primary-hover:  #4a3728;
    --accent:         #C9A96E;
    --accent-light:   #e8d5b0;
    --bg-color:       #FAFAF8;
    --white:          #ffffff;
    --light:          #F5F3EF;
    --text-main:      #2C2218;
    --text-muted:     #8a8580;
    --border-soft:    #EBEBEB;
    --shadow-card:    0 2px 16px rgba(44, 34, 24, 0.07);
    --shadow-hover:   0 8px 32px rgba(44, 34, 24, 0.14);
    --radius-card:    4px;
    --radius-btn:     2px;
    --transition:     all 0.25s ease;
}
* { box-sizing: border-box; }
body {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-main);
    background: var(--bg-color);
    line-height: 1.6;
}
.hero-carousel,
#heroCarousel {
    position: relative;
    overflow: hidden;
}
.carousel-item {
    height: 78vh;
    min-height: 520px;
    max-height: 820px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            100deg,
            rgba(20, 12, 6, 0.78) 0%,
            rgba(20, 12, 6, 0.44) 50%,
            rgba(20, 12, 6, 0.08) 100%
    );
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 0 5% 0 9%;
    max-width: 580px;
    z-index: 2;
}
.hero-label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.1rem;
    border-left: 2px solid var(--accent);
    padding-left: 12px;
}
.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 1rem;
    letter-spacing: -0.5px;
}
.hero-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 2.4rem;
    line-height: 1.7;
    font-weight: 400;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 2.2rem;
    background: var(--accent);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-btn);
    text-decoration: none;
    transition: var(--transition);
}
.btn-hero-primary:hover {
    background: #d8b87e;
    color: var(--primary);
    transform: translateY(-1px);
}
.hero-indicators {
    position: absolute;
    bottom: 28px;
    left: 9%;
    display: flex;
    gap: 6px;
    z-index: 10;
}
.hero-indicators button {
    width: 24px;
    height: 2px;
    border-radius: 1px;
    border: none;
    background: rgba(255, 255, 255, 0.28);
    padding: 0;
    transition: var(--transition);
    cursor: pointer;
}
.hero-indicators button.active {
    width: 44px;
    background: var(--accent);
}
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(20, 12, 6, 0.35);
    color: #fff;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}
.hero-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}
.hero-nav-prev { left: 24px; }
.hero-nav-next { right: 24px; }
.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-title h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.4rem;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}
.section-title h2::after {
    content: "";
    position: absolute;
    width: 32px;
    height: 2px;
    background: var(--accent);
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}
.section-title p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1.4rem;
    font-weight: 400;
}
.featured-section {
    padding: 3.5rem 0 2.5rem;
    background: #FAF7F2;
    position: relative;
    overflow: hidden;
}
.featured-bg-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.featured-inner {
    position: relative;
    z-index: 1;
}
.featured-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 4rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #EAE0D5;
}
.featured-header-left {
    flex-shrink: 0;
}
.featured-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #D9A273;
    margin-bottom: 14px;
}
.featured-eyebrow-line {
    display: block;
    width: 28px;
    height: 1px;
    background: #D9A273;
    opacity: 0.7;
}
.featured-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #3C2F27;
    margin: 0;
    letter-spacing: 5px;
    text-transform: uppercase;
    line-height: 1.1;
}
.featured-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    padding-bottom: 4px;
    max-width: 340px;
}
.featured-subtitle {
    color: #9E8F85;
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.8;
    text-align: right;
    margin: 0;
}
.featured-header-divider {
    display: block;
    width: 40px;
    height: 2px;
    background: #D9A273;
    border-radius: 1px;
}
.featured-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: 1.5rem;
}
.featured-slogan {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C4AFA6;
    margin: 0;
}
.btn-featured-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 2.4rem;
    background: #3C2F27;
    color: #FFFFFF;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #3C2F27;
    transition: background 0.22s ease, color 0.22s ease;
}
.btn-featured-all:hover {
    background: transparent;
    color: #3C2F27;
}
.btn-featured-all i { transition: transform 0.22s ease; }
.btn-featured-all:hover i { transform: translateX(4px); }
.featured-section .products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}
.featured-section .products-grid .product-card {
    flex: 1 1 220px;
    max-width: calc(25% - 1.25rem);
}
.featured-section .product-card {
    background: #FFFFFF;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(60, 47, 39, 0.07);
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #ECE5DD;
    cursor: pointer;
    position: relative;
}
.featured-section .product-card:hover {
    border-color: #D9C4AC;
    box-shadow: 0 4px 18px rgba(60, 47, 39, 0.11);
}
.featured-section .product-badge {
    position: absolute;
    top: 9px;
    left: 9px;
    background: #3C2F27;
    color: #F5E8D8;
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
}
.featured-section .product-badge-sale {
    background: #D9A273;
    color: #3C2F27;
    left: auto;
    right: 9px;
}
.featured-section .product-img {
    position: relative;
    width: 100%;
    padding-top: 65%;
    overflow: hidden;
    background: #FAF7F2;
    flex-shrink: 0;
}
.featured-section .product-img a {
    position: absolute;
    inset: 0;
    display: block;
}
.featured-section .product-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.featured-section .product-content {
    padding: 13px 15px 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.featured-section .product-content h3 {
    font-size: 0.9rem;
    margin: 0 0 auto;
    font-weight: 700;
    color: #3C2F27;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
}
.featured-section .product-price {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-top: 12px;
    padding-top: 11px;
    border-top: 1px solid #ECE5DD;
}
.featured-section .price-normal {
    font-weight: 700;
    font-size: 1rem;
    color: #D9A273;
    line-height: 1.15;
}
.featured-section .price-original {
    font-size: 0.68rem;
    font-weight: 400;
    color: #A89890;
    text-decoration: line-through;
}
.featured-section .price-sale {
    font-size: 1rem;
    font-weight: 700;
    color: #D9A273;
    line-height: 1.15;
}
.featured-section .btn-add-to-cart {
    background: #3C2F27;
    color: #FFF8F2;
    border: 2px solid #3C2F27;
    width: 100%;
    padding: 9px 0;
    border-radius: 9px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}
.featured-section .btn-add-to-cart:hover:not(:disabled) {
    background: #FFF8F2;
    color: #3C2F27;
}
.featured-section .btn-add-to-cart:disabled {
    background: #EDEBE8;
    color: #A89890;
    border-color: #EDEBE8;
    cursor: not-allowed;
}
.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.7rem 2rem;
    border-radius: 9px;
    background: transparent;
    color: #3C2F27;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #3C2F27;
    transition: var(--transition);
}
.btn-view-all:hover {
    background: #3C2F27;
    color: #FFF8F2;
    transform: translateY(-1px);
}
.btn-view-all i { transition: var(--transition); }
.btn-view-all:hover i:last-child { transform: translateX(4px); }
.promotions-section {
    background: #FAF7F2;
    padding: 32px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #EAE0D5;
    border-bottom: 1px solid #EAE0D5;
}
.promo-bg-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.promo-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 1;
}
.promo-header {
    text-align: center;
    margin-bottom: 20px;
}
.promo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #D9A273;
    margin-bottom: 10px;
}
.promo-eyebrow-line {
    display: block;
    width: 32px;
    height: 1px;
    background: #D9A273;
    opacity: 0.7;
}
.promo-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #3C2F27;
    line-height: 1.2;
    letter-spacing: 1px;
    margin: 0 0 0;
}
.promo-title span {
    color: #D9A273;
    font-weight: 600;
}
.promo-desc {
    font-size: 0.85rem;
    color: #9E8F85;
    line-height: 1.8;
    margin: 8px auto 0;
    max-width: 560px;
    font-weight: 400;
}
.promo-header-deco {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
}
.promo-deco-line {
    display: block;
    width: 48px;
    height: 1px;
    background: #D9A273;
    opacity: 0.5;
}
.promo-deco-icon {
    font-size: 14px;
    color: #D9A273;
    opacity: 0.8;
}
.promo-body {
    display: flex;
    justify-content: center;
}
.promo-empty {
    text-align: center;
    padding: 3rem 0;
    opacity: 0.55;
    color: #3C2F27;
}
.promo-empty-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
    color: #D9A273;
}
.promo-footer {
    text-align: center;
    margin-top: 28px;
}
.home-vc-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 8px 2px 16px;
    width: 100%;
}
.home-vc-card {
    background: #ffffff;
    display: flex;
    border: 1px solid #e8e4de;
    transition: box-shadow .2s, border-color .2s, transform .18s;
    position: relative;
    width: 100%;
    box-shadow: var(--shadow-card);
    overflow: visible;
    border-radius: var(--radius-card);
    align-items: stretch;
}
.home-vc-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
    transform: translateY(-3px);
}
.home-vc-card::before, .home-vc-card::after {
    content: '';
    position: absolute;
    left: 96px;
    width: 14px; height: 14px;
    background: var(--light);
    border: 1px solid #e8e4de;
    border-radius: 50%;
    z-index: 3;
}
.home-vc-card::before { top: -7px; }
.home-vc-card::after  { bottom: -7px; }
.home-vc-saved::before, .home-vc-saved::after { background: #f0fdf4; border-color: #86efac; }
.home-vc-logo-panel {
    width: 104px;
    flex-shrink: 0;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 8px;
    gap: 5px;
    position: relative;
    align-self: stretch;
}
.home-vc-logo-panel::after {
    content: '';
    position: absolute;
    right: 0; top: 12px; bottom: 12px;
    border-right: 1px dashed rgba(255,255,255,.18);
}
.home-vc-logo-img { width: 42px; height: 42px; object-fit: contain; display: block; }
.home-vc-logo-fallback { font-size: 24px; color: #fff; opacity: .85; display: none; }
.home-vc-logo-name { color: #fff; font-size: 9px; font-weight: 600; text-align: center; line-height: 1.3; opacity: .8; letter-spacing: .3px; }
.home-vc-body { flex: 1; padding: 10px 14px; min-width: 0; display: flex; flex-direction: column; justify-content: space-between; }
.home-vc-top { display: flex; align-items: center; justify-content: space-between; gap: 6px; margin-bottom: 3px; }
.home-vc-code { font-weight: 700; font-size: 12px; color: var(--primary); letter-spacing: 1px; background: #FAF5EE; border: 1px dashed var(--accent-light); padding: 2px 8px; font-family: monospace; }
.home-vc-badge { font-size: 10px; font-weight: 600; padding: 2px 8px; white-space: nowrap; letter-spacing: 0.3px; }
.home-vc-badge-new   { background: #fef9ee; color: #a07728; }
.home-vc-badge-saved { background: #f0fdf4; color: #15803d; }
.home-vc-desc { font-size: 13.5px; font-weight: 600; color: var(--primary); white-space: normal; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; text-overflow: ellipsis; margin: 3px 0 6px; line-height: 1.4; min-height: 2.8em; }
.home-vc-meta { display: flex; flex-wrap: wrap; gap: 8px; font-size: 11px; color: var(--text-muted); }
.home-vc-meta span { display: flex; align-items: center; gap: 3px; }
.home-vc-meta b { color: var(--primary); font-weight: 600; }
.home-vc-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; padding-top: 8px; border-top: 1px dashed #e8e4de; }
.home-vc-expire { font-size: 10px; color: #b0a898; display: flex; align-items: center; gap: 3px; }
.home-vc-btn-save { background: var(--primary); color: #fff; border: none; padding: 5px 14px; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; font-family: 'Quicksand', sans-serif; cursor: pointer; white-space: nowrap; transition: background .15s; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; border-radius: var(--radius-btn); }
.home-vc-btn-save:hover { background: var(--primary-hover); color: #fff; }
.home-vc-btn-use { background: #fff; color: #16a34a; border: 1px solid #16a34a; padding: 5px 14px; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; font-family: 'Quicksand', sans-serif; cursor: pointer; white-space: nowrap; transition: background .15s, color .15s; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; border-radius: var(--radius-btn); }
.home-vc-btn-use:hover { background: #f0fdf4; }
.home-vc-saved { border-color: #a7f3d0; background: #f0fdf4; }
.home-vc-saved .home-vc-logo-panel { background: linear-gradient(160deg, #22c55e, #15803d); }
.categories-section {
    background: #FAF7F2;
    padding: 36px 0 80px;
    border-top: 1px solid #EAE0D5;
}
.cat-section-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
}
.cat-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 24px;
    flex-wrap: wrap;
}
.cat-head-left { max-width: 480px; }
.cat-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #D9A273;
    margin-bottom: 12px;
}
.cat-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: #D9A273;
    flex-shrink: 0;
}
.cat-title {
    font-size: 36px;
    font-weight: 700;
    color: #3C2F27;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.3px;
}
.cat-title span {
    color: #D9A273;
    font-weight: 600;
}
.cat-subtitle {
    font-size: 13px;
    color: #9E8F85;
    margin-top: 10px;
    font-weight: 400;
    line-height: 1.7;
}
.cat-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #3C2F27;
    text-decoration: none;
    border-bottom: 1.5px solid #D9A273;
    padding-bottom: 3px;
    transition: color 0.22s ease;
    white-space: nowrap;
}
.cat-cta:hover { color: #D9A273; }
.cat-cta svg   { transition: transform 0.22s ease; }
.cat-cta:hover svg { transform: translateX(3px); }
.cat-grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr 1fr;
    grid-template-rows: 320px 240px;
    gap: 10px;
}
.cat-tile-1 { grid-column: 1; grid-row: 1 / 3; }
.cat-tile-2 { grid-column: 2; grid-row: 1; }
.cat-tile-3 { grid-column: 3; grid-row: 1; }
.cat-tile-4 { grid-column: 2; grid-row: 2; }
.cat-tile-5 { grid-column: 3; grid-row: 2; }
.cat-tile {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-decoration: none;
}
.cat-tile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cat-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to top,
            rgba(28, 18, 10, 0.72) 0%,
            rgba(28, 18, 10, 0.18) 45%,
            rgba(28, 18, 10, 0.04) 100%
    );
    transition: background 0.35s ease;
}
.cat-tile:hover .cat-tile-overlay {
    background: linear-gradient(
            to top,
            rgba(28, 18, 10, 0.84) 0%,
            rgba(28, 18, 10, 0.38) 55%,
            rgba(28, 18, 10, 0.10) 100%
    );
}
.cat-tile-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 22px 22px;
}
.cat-tile-1 .cat-tile-body { padding: 26px 30px 30px; }
.cat-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #D9A273;
    margin-bottom: 6px;
}
.cat-accent-line {
    display: block;
    width: 0;
    height: 1.5px;
    background: #D9A273;
    margin-bottom: 9px;
    transition: width 0.35s ease;
}
.cat-tile:hover .cat-accent-line { width: 28px; }
.cat-name {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
    line-height: 1.25;
}
.cat-tile-1 .cat-name { font-size: 24px; margin-bottom: 13px; }
.cat-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: color 0.25s ease, border-color 0.25s ease;
}
.cat-tile:hover .cat-link {
    color: #D9A273;
    border-bottom-color: #D9A273;
}
.cat-link svg { transition: transform 0.25s ease; }
.cat-tile:hover .cat-link svg { transform: translateX(3px); }
.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-soft);
    transition: var(--transition);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.customer-info { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.1rem; }
.customer-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent-light); }
.customer-details h5 { margin: 0; font-weight: 700; color: var(--primary); font-size: 0.9rem; }
.customer-details p  { margin: 0; font-size: 0.78rem; color: var(--text-muted); }
.rating { color: #c9a96e; font-size: 0.82rem; margin-bottom: 0.9rem; letter-spacing: 1px; }
.review-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; margin: 0; font-weight: 400; }
.statistics-section {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1517433670267-08bbd4be890f?w=1600&q=85&fit=crop');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 6rem 0;
}
.statistics-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(28, 16, 8, 0.65);
}
.statistics-section .container {
    position: relative;
    z-index: 1;
}
.statistics-item { padding: 1rem; }
.statistics-number { font-size: 2.6rem; font-weight: 700; color: var(--accent); display: block; line-height: 1; }
.statistics-text { font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; opacity: 0.6; margin-top: 0.6rem; }
@media (max-width: 768px) {
    .carousel-item { height: 60vh; min-height: 360px; }
    .hero-title { font-size: 1.7rem; }
    .hero-content { padding: 0 5%; max-width: 100%; }
    .hero-nav { display: none; }
    .featured-section .products-grid {
        gap: 1rem;
    }
    .featured-section .products-grid .product-card {
        flex: 1 1 200px;
        max-width: calc(50% - 0.5rem);
    }
    .featured-section .product-card { height: auto; }
    .featured-section .product-img  { height: 160px; }
    .section-title h2 { font-size: 1.45rem; }
    .featured-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .featured-header-right {
        align-items: flex-start;
        max-width: 100%;
    }
    .featured-subtitle { text-align: left; }
    .featured-title { font-size: 2rem; }
    .cat-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 240px 200px 200px;
    }
    .cat-tile-1 { grid-column: 1 / 3; grid-row: 1; }
    .cat-tile-2 { grid-column: 1;     grid-row: 2; }
    .cat-tile-3 { grid-column: 2;     grid-row: 2; }
    .cat-tile-4 { grid-column: 1;     grid-row: 3; }
    .cat-tile-5 { grid-column: 2;     grid-row: 3; }
    .cat-title  { font-size: 28px; }
    .home-vc-scroll {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .featured-section .products-grid { gap: 0.75rem; }
    .featured-section .products-grid .product-card { flex: 1 1 160px; max-width: calc(50% - 0.375rem); }
    .hero-title { font-size: 1.4rem; }
    .hero-actions { flex-direction: column; gap: 0.6rem; }
    .categories-section { padding: 52px 0 60px; }
    .cat-section-inner  { padding: 0 18px; }
    .cat-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 180px);
    }
    .cat-tile-1 { grid-column: 1; grid-row: 1; }
    .cat-tile-2 { grid-column: 1; grid-row: 2; }
    .cat-tile-3 { grid-column: 1; grid-row: 3; }
    .cat-tile-4 { grid-column: 1; grid-row: 4; }
    .cat-tile-5 { grid-column: 1; grid-row: 5; }
    .cat-head   { flex-direction: column; align-items: flex-start; }
    .cat-title  { font-size: 24px; }
    .home-vc-scroll {
        grid-template-columns: 1fr;
    }
}
.about-section {
    background: #FFFFFF;
    padding: 80px 0;
    border-top: 1px solid #EAE0D5;
    border-bottom: 1px solid #EAE0D5;
}
.about-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 72px;
}
.about-text {
    flex: 1;
    min-width: 0;
}
.about-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #D9A273;
    margin: 0 0 18px;
}
.about-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #3C2F27;
    line-height: 1.25;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 28px;
}
.about-desc {
    font-size: 0.93rem;
    color: #6b5e57;
    line-height: 1.85;
    margin: 0 0 16px;
}
.about-desc strong {
    color: #3C2F27;
    font-weight: 700;
}
.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 0.75rem 2rem;
    background: #3C2F27;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #3C2F27;
    transition: background 0.22s ease, color 0.22s ease;
}
.about-cta:hover {
    background: transparent;
    color: #3C2F27;
}
.about-image {
    flex: 0 0 48%;
    max-width: 48%;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.about-image:hover img {
    transform: scale(1.03);
}
@media (max-width: 768px) {
    .about-inner {
        flex-direction: column;
        gap: 36px;
    }
    .about-image {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
    .about-title { font-size: 1.35rem; }
}
/* Đảm bảo product-card có position relative (đã có sẵn trong hầu hết card) */
.product-card {
    position: relative;
}

/* Nút trái tim */
.btn-favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    padding: 0;
    line-height: 1;
}

.btn-favorite i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.25s ease, transform 0.2s ease;
    pointer-events: none;
}

/* Hover khi chưa yêu thích */
.btn-favorite:not(.active):hover {
    background: rgba(255, 255, 255, 0.55);
}

.btn-favorite:not(.active):hover i {
    color: #e53935;
    transform: scale(1.15);
}

/* Trạng thái đã yêu thích (active) */
.btn-favorite.active {
    background: rgba(255, 255, 255, 0.9);
}

.btn-favorite.active i {
    color: #e53935;
}

/* Animation khi click */
.btn-favorite.heart-pop i {
    animation: heartPop 0.35s ease;
}

@keyframes heartPop {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.4); }
    70%  { transform: scale(0.9); }
    100% { transform: scale(1); }
}

/* ================================================================
   FAVORITE HEART BUTTON
   ================================================================ */

.btn-favorite {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    padding: 0;
    line-height: 1;
    opacity: 1;
    transform: scale(1);
}

.btn-favorite i {
    font-size: 15px;
    color: #ccc;
    transition: color 0.2s ease, transform 0.15s ease;
    pointer-events: none;
}

.btn-favorite:not(.active):hover {
    background: #fff;
    box-shadow: 0 4px 14px rgba(229, 57, 53, 0.2);
    transform: scale(1.1);
}

.btn-favorite:not(.active):hover i {
    color: #e53935;
}

.btn-favorite.active {
    background: #fff1f1;
    box-shadow: 0 2px 10px rgba(229, 57, 53, 0.25);
}

.btn-favorite.active i {
    color: #e53935;
}

.btn-favorite:active {
    transform: scale(0.92) !important;
}

.btn-favorite.heart-pop i {
    animation: heartPop 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes heartPop {
    0%   { transform: scale(1); }
    20%  { transform: scale(0.8); }
    50%  { transform: scale(1.45); }
    75%  { transform: scale(0.9); }
    100% { transform: scale(1); }
}
