/* ============================================================
   RESET & BASE
============================================================ */
*,
body,
li,
p,
ul {
    margin: 0;
    padding: 0;
}
* {
    box-sizing: border-box;
}
img {
    max-width: 100%;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: #f8f9fa;
}

a {
    text-decoration: none;
    color: #000;
}
a:hover {
    color: #313030;
}

p {
    font-family: Montserrat, sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Lexend, sans-serif;
}
.countdown,
a,
button,
input,
label,
li,
select,
span {
    font-family: Lexend, sans-serif !important;
}

section {
    padding: 50px 0;
}

/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
    --primary: #e43e1f;
    --primary-hover: #fc8524;
    --primary-light: #fff6ae61;
    --primary-ultra-light: #fdf5f5;
    --text-dark: #1a1a1a;
    --text-mid: #4a4a4a;
    --text-light: #888;
    --border: #e8dada;
    --white: #ffffff;
    --gold: #c9a84c;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(123, 27, 27, 0.08);
    --shadow-hover: 0 8px 36px rgba(123, 27, 27, 0.16);
}

.section-bg-color {
    background-color: var(--primary-light);
}

/* ============================================================
   BUTTONS
============================================================ */
.sons-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: 0.3s;
}
.btn-fill {
    background-color: #b4955c;
    color: #fff;
    border-color: #b4955c;
}
.btn-fill:hover {
    background-color: #fff;
    color: #b4955c;
    border-color: #b4955c;
}
.btn-outline {
    background-color: #fff;
    color: #b4955c;
    border-color: #b4955c;
}
.btn-outline:hover {
    background-color: #b4955c;
    color: #fff;
    border-color: #b4955c;
}
.btn i {
    margin-right: 0.5rem;
}
.sec-title {
    font-size: 35px;
    color: #000;
}
.sec-subtitle {
    color: #767676;
    font-size: 16px;
    font-weight: 500;
}

/* ============================================================
   SECTION HEADINGS
============================================================ */
.section-title {
    font-size: 36px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-align: center;
}
.section-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #555;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.5;
    opacity: 0.85;
}

.heading-store {
    display: flex;
    justify-content: space-between;
    list-style: none;
}
.heading-store a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.heading-store a:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--primary-light);
}

/* ============================================================
   HEADER & NAVBAR
============================================================ */
header {
    position: unset;
    z-index: 99;
    background-color: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
header .navbar-nav {
    gap: 20px;
    position: relative;
    align-items: center;
}
header .navbar-brand {
    width: 20%;
}
.navbrand {
    display: inline-block;
    width: 35%;
    padding: 5px 0;
}
.nav-link {
    padding: 10px 12px;
    font-weight: 400;
    font-size: 16px;
}

.sticky {
    z-index: 999;
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
    background-color: #fff;
    animation: 0.5s ease-out slideDown;
    box-shadow: 0 0 10px #00000021;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.header-icons {
    display: flex;
    justify-content: end;
    gap: 40px;
    align-items: center;
}
.header-bottom {
    background: #e5e5e5;
    border-bottom: 1px solid #a39f9f52;
}
.icon-btn {
    width: 25px;
    height: 25px;
    cursor: pointer;
}
.navbar-toggler img {
    width: 30px;
}

.offcanvas-header {
    background-color: var(--primary-light);
    padding: 8px;
}
.offcanvas-header .offcanvas-title img {
    width: 100px;
}
.offcanvas-close-btn {
    width: 23px;
    background-color: var(--primary);
    margin: 0;
    padding: 0;
}

/* ============================================================
   MEGA MENU
============================================================ */
.mega-hover {
    position: static;
}
.mega-menu-ecom {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: #fff;
    padding: 35px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(25px);
    transition: 0.35s;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    z-index: 999;
}
.mega-hover:hover > .mega-menu-ecom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-wrapper {
    display: grid;
    grid-template-columns: 220px 1fr 260px;
    background: #fff;
    padding: 20px;
    gap: 20px;
}
.mega-sidebar {
    border-right: 1px solid #ddd;
    padding: 15px;
}
.mega-sidebar ul {
    list-style: none;
    padding: 0;
}
.mega-sidebar li {
    padding: 12px 15px;
    cursor: pointer;
    border-radius: 8px;
    margin-bottom: 5px;
}
.mega-sidebar li.active,
.mega-sidebar li:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.mega-content .tab-content {
    display: none;
}
.mega-content .tab-content.active {
    display: block;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.grid a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    font-size: 15px;
}

.mega-right {
    border-left: 1px solid #ddd;
    padding: 15px;
}
.mega-right img {
    width: 100%;
    border-radius: 16px;
}
.mega-right .content {
    margin-top: 18px;
    padding: 18px 16px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.95),
        rgba(255, 255, 255, 0.85)
    );
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}
.mega-right .content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.mega-right .content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 14px;
}
.mega-right .content a {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.mega-right .content a:hover {
    text-decoration: underline;
}

.mega-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff7f0;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}
.btn-view {
    background: var(--primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #111;
}
.icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-circle img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.menu-item:hover .icon-circle {
    background: #f9efe4;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}
.price-card {
    text-align: center;
    text-decoration: none;
    color: #111;
}
.price-img {
    width: 110px;
    height: 110px;
    margin: 0 auto 10px;
    border-radius: 14px;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
}
.price-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.price-card span {
    font-weight: 500;
    font-size: 15px;
}
.price-card:hover .price-img {
    background: #f9efe4;
}

/* ============================================================
   MOBILE ACCORDION
============================================================ */
.mobile-mega {
    display: none;
    background: #fff;
    padding: 10px 0;
}
.accordion-item {
    border-bottom: 1px solid #eee;
}
.accordion-title {
    width: 100%;
    background: 0 0;
    border: 0;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    color: var(--primary);
    cursor: pointer;
    position: relative;
}
.accordion-title::after {
    content: "+";
    position: absolute;
    right: 18px;
    font-size: 18px;
}
.accordion-title.active::after {
    content: "−";
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    padding: 0 18px;
}
.accordion-content a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: #555;
}

/* ============================================================
   SEARCH
============================================================ */
.search-form {
    display: flex;
    width: 100%;
}
.search-input {
    flex: 1;
    height: 48px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-right: 0;
    border-radius: 50px 0 0 50px;
    font-size: 14px;
    outline: 0;
}
.search-btn {
    width: 50px;
    height: 48px;
    border: solid 1px #ddd;
    border-left: 0;
    border-radius: 0 50px 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}
.search-btn i {
    color: #000;
    font-size: 16px;
}
.top-selectors {
    display: flex;
    gap: 10px;
    margin-left: 10px;
}

/* ============================================================
   HERO BANNER
============================================================ */
.image-banner {
    padding: 20px 0;
}
.banner-slide img {
    width: 100%;
    height: 75vh;
    border-radius: 22px;
    object-fit: cover;
}
.custom-dots {
    position: relative;
    gap: 10px;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.custom-dots .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 0;
    background: #6b6969;
    transition: 0.3s;
    transform: rotate(45deg);
}
.custom-dots .swiper-pagination-bullet-active {
    background: var(--primary);
}

/* ============================================================
   ICON SLIDER
============================================================ */
.icon-slider {
    padding: 40px 0;
    border-bottom: 1px solid #e2e2e2;
}
.icon-swiper .swiper-slide {
    width: auto;
}
.s-icon-item {
    text-align: center;
}
.s-icon-item a img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 10px;
}
.s-icon-item p {
    font-size: 18px;
    margin-top: 5px;
    color: var(--primary);
    font-weight: 600;
}

/* ============================================================
   OFFER BANNER
============================================================ */
.offer-banner img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}
.offer-item {
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}
.offer-item img {
    width: 100%;
    height: 100%;
}

/* ============================================================
   SHOP CARDS
============================================================ */
.recent-card {
    display: block;
    color: #000;
    cursor: pointer;
}
.recent-card .card {
    border-radius: 14px;
    overflow: hidden;
    transition: 0.35s;
    border: 1px solid #c3c3c3;
    padding: 10px;
}
.recent-card img {
    height: 270px;
    object-fit: cover;
    transition: transform 0.4s;
    border-radius: 10px;
}
.recent-card:hover .card {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}
.recent-card .card-title {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
}

.banner-frame {
    position: relative;
    padding: 15px;
    border: 2px dashed var(--primary);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}
.banner-frame img {
    border-radius: 12px;
}

/* ============================================================
   GENDER CARDS
============================================================ */
.gender-card {
    padding: 10px;
    text-align: center;
    background-color: var(--primary-light);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.35);
    border-radius: 8px;
    transition: 0.3s ease;
}
.gender-card:hover {
    transform: translateY(-5px);
}
.gender-shop .gender-img {
    width: 100%;
    height: 180px;
}
.gender-shop .gender-img img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}
.gender-shop .gender-text {
    font-size: 18px;
    font-weight: 500;
    padding-top: 10px;
}

/* ============================================================
   PRODUCT CARD
============================================================ */
.shop-product {
    position: relative;
    background: #fff;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.shop-product:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.bestseller_badge {
    display: inline-block;
    position: absolute;
    padding: 0 18px 15px;
    clip-path: polygon(
        100% 0,
        0 0,
        0 calc(100% - 1rem),
        1rem 100%,
        1rem calc(100% - 1rem),
        100% calc(100% - 1rem),
        calc(100% - 1.1rem) calc(50% - 1rem / 2)
    );
    left: -1rem;
    border-bottom: 1rem solid transparent;
    top: 0;
}
.bestseller_badge p {
    text-transform: capitalize;
    font-size: 14px;
    padding: 13px 5px 0;
    line-height: 1;
}

.product-img {
    position: relative;
}
.product-img img {
    width: 100%;
    transition: 0.4s ease;
}
.hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.shop-product:hover .hover-img {
    opacity: 1;
}
.shop-product:hover .main-img {
    opacity: 0;
}

.product-info {
    padding: 12px;
}
.product-title {
    font-weight: 400;
    margin-top: 5px;
    color: gray;
    font-size: 18px;
}
.product-info small {
    font-weight: 500;
    font-size: 17px;
    color: #59598f;
}
.product-price {
    font-size: 18px;
}
.new-price {
    color: #000;
    font-weight: 600;
    margin-right: 6px;
}
.old-price {
    color: #888;
    text-decoration: line-through;
    font-size: 16px;
}

.add-cart-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    transition: 0.3s ease;
}
.add-cart-btn:hover {
    background: linear-gradient(135deg, var(--primary-hover), var(--primary));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ============================================================
   WISHLIST & CART BUTTONS (on product cards)
============================================================ */
.wl-btn {
    position: absolute;
    top: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: #666;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.cart-btn {
    left: 10px;
}
.wishlist-btn {
    right: 10px;
}
.wl-btn:hover {
    background: #111;
    color: #fff;
    transform: scale(1.1);
}
.wishlist-btn.wl-active {
    background: var(--primary);
    color: #fff !important;
    box-shadow: 0 6px 15px rgba(123, 27, 27, 0.4);
}
.cart-btn.cart-active {
    background: #000;
    color: #fff !important;
}
.wl-btn i {
    transition: 0.3s ease;
}

/* ============================================================
   PRODUCTS PAGE FILTER
============================================================ */
.filter-bar {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.filters-left {
    flex: 1;
}
.filter-btn {
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    padding: 8px 0;
}
.filter-btn:hover {
    color: #000;
}
.filter-dropdown {
    min-width: 260px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.custom-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    cursor: pointer;
    font-size: 14px;
}
.custom-check input {
    display: none;
}
.checkmark {
    width: 16px;
    height: 16px;
    border: 1.5px solid #bbb;
    border-radius: 3px;
    position: relative;
}
.custom-check input:checked + .checkmark {
    background: #000;
    border-color: #000;
}
.custom-check input:checked + .checkmark::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.label-text {
    flex: 1;
}
.count {
    color: #999;
    font-size: 13px;
}

.price-dropdown {
    width: 320px;
}
.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}
.price-inputs input {
    width: 100%;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
}
.price-inputs input:focus {
    border-color: #000;
}

.range-wrapper {
    position: relative;
    width: 100%;
    height: 45px;
}
.range-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 6px;
    background: #e5e5e5;
    border-radius: 5px;
    top: 50%;
    transform: translateY(-50%);
}
.slider-track {
    position: absolute;
    height: 6px;
    background: #000;
    border-radius: 5px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.range-wrapper input[type="range"] {
    position: absolute;
    width: 100%;
    height: 45px;
    background: none;
    pointer-events: none;
    appearance: none;
    -webkit-appearance: none;
}
.range-wrapper input[type="range"]::-webkit-slider-runnable-track {
    background: transparent;
}
.range-wrapper input[type="range"]::-webkit-slider-thumb {
    pointer-events: auto;
    appearance: none;
    -webkit-appearance: none;
    height: 18px;
    width: 18px;
    background: #000;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px #ccc;
    position: relative;
    z-index: 2;
}
.range-wrapper input[type="range"]::-moz-range-thumb {
    pointer-events: auto;
    height: 18px;
    width: 18px;
    background: #000;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* ============================================================
   PRODUCT DETAIL PAGE
============================================================ */
.breadcrumb-wrap {
    background: var(--primary-ultra-light);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}
.breadcrumb-item a {
    color: var(--primary);
    font-size: 0.82rem;
}
.breadcrumb-item.active {
    color: var(--text-mid);
    font-size: 0.82rem;
}
.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-light);
}

.gallery-sticky {
    position: sticky;
    top: 20px;
}
.main-img-wrap {
    position: relative;
    width: 100%;
    border-radius: var(--radius);
    background: var(--primary-ultra-light);
    border: 1px solid var(--border);
    cursor: crosshair;
    box-shadow: var(--shadow);
}
.main-img-wrap .img-clip {
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}
.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.zoom-lens {
    position: absolute;
    border: 2px solid var(--primary);
    background: rgba(123, 27, 27, 0.12);
    pointer-events: none;
    border-radius: 4px;
    display: none;
    z-index: 10;
}
.zoom-result {
    position: absolute;
    top: 0;
    left: calc(100% + 16px);
    width: 370px;
    height: 370px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background-repeat: no-repeat;
    background-color: var(--white);
    box-shadow: var(--shadow-hover);
    display: none;
    z-index: 100;
    pointer-events: none;
}
.gallery-zoom-wrapper:hover .zoom-lens,
.gallery-zoom-wrapper:hover .zoom-result {
    display: block;
}
.img-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    z-index: 5;
}

.thumb-swiper-wrap {
    padding: 4px 2px;
}
.thumb-swiper-wrap .swiper-slide {
    width: auto !important;
}
.thumb-swiper-wrap .swiper-slide img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition:
        border-color 0.25s,
        transform 0.2s;
    display: block;
}
.thumb-swiper-wrap .swiper-slide.active img,
.thumb-swiper-wrap .swiper-slide:hover img {
    border-color: var(--primary);
}

.brand-tag {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.detail-product-title {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.stars {
    color: var(--gold);
    font-size: 0.9rem;
}
.rating-num {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
}
.review-count {
    color: var(--primary);
    font-size: 0.85rem;
    border-bottom: 1px dashed var(--primary);
}
.verified-badge {
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 4px;
}
.price-current {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}
.price-original {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
}
.price-discount {
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}
.price-note {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--primary);
    transition: background 0.2s;
}
.trust-item i {
    font-size: 1.1rem;
}
.trust-item:hover {
    background: var(--primary);
    color: var(--white);
}

.delivery-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 18px;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
}
.delivery-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 10px;
}
.delivery-label i {
    color: var(--primary);
    margin-right: 4px;
}
.pincode-row {
    display: flex;
    gap: 8px;
}
.pincode-input {
    flex: 1;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s;
    background: var(--primary-ultra-light);
}
.pincode-input:focus {
    border-color: var(--primary);
}
.pincode-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 10px 22px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: background 0.2s;
}
.pincode-btn:hover {
    background: var(--primary-hover);
}
.delivery-result {
    font-size: 0.82rem;
    margin-top: 10px;
    min-height: 18px;
    color: #2e7d32;
    font-weight: 500;
}

.gift-wrap-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-light);
    border: 1px dashed var(--primary);
    border-radius: var(--radius);
    padding: 12px 16px;
    cursor: pointer;
    font-size: 0.88rem;
    margin-bottom: 20px;
    transition: background 0.2s;
}
.gift-wrap-row:hover {
    background: #edd8d8;
}
.gift-wrap-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
}
.gift-icon {
    font-size: 1.2rem;
}

.cta-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}
.btn-buy,
.btn-cart {
    flex: 1;
    padding: 14px 20px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s;
    border: 2px solid var(--primary);
}
.btn-buy {
    background: var(--white);
    color: var(--primary);
}
.btn-buy:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}
.btn-cart {
    background: var(--primary);
    color: var(--white);
}
.btn-cart:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.wishlist-row {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}
.btn-wishlist,
.btn-share {
    flex: 1;
    background: none;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 10px;
    font-size: 0.85rem;
    color: var(--text-mid);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
}
.btn-wishlist:hover,
.btn-wishlist.active {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}
.btn-share:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.offers-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 18px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}
.offers-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.offers-title i {
    color: var(--primary);
    margin-right: 6px;
}
.offers-title small {
    color: var(--text-light);
    font-weight: 400;
}
.offer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.84rem;
    color: var(--text-mid);
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 8px;
}
.offer-item:last-child {
    margin-bottom: 0;
}
.offer-item:hover {
    background: var(--primary-light);
    border-color: var(--primary);
}
.offer-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.offer-item strong {
    color: var(--text-dark);
}

.desc-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 28px;
    box-shadow: var(--shadow);
}
.desc-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 14px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}
.desc-body {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.75;
    overflow: hidden;
    max-height: 80px;
    transition: max-height 0.4s ease;
}
.desc-body.expanded {
    max-height: 500px;
}
.desc-body p {
    margin-bottom: 8px;
}
.show-more-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 0 0;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}
.show-more-btn:hover {
    gap: 8px;
}

.reviews-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}
.reviews-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.write-review-btn {
    background: none;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}
.write-review-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.review-card {
    background: var(--primary-ultra-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    height: auto !important;
}
.reviewer-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.reviewer-avatar {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.reviewer-name {
    font-weight: 600;
    font-size: 0.88rem;
    margin: 0;
    color: var(--text-dark);
}
.reviewer-date {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
}
.verified {
    color: var(--primary);
    font-size: 0.75rem;
}
.review-stars {
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 8px;
}
.review-text {
    font-size: 0.84rem;
    color: var(--text-mid);
    line-height: 1.65;
    margin: 0;
}
.review-pagination {
    margin-top: 14px !important;
    position: relative !important;
    bottom: auto !important;
}
.review-pagination .swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.3;
}
.review-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 20px;
    border-radius: 4px;
}

.product-detail-section .product-title {
    font-weight: 400;
    margin-top: 0;
    color: #000;
    font-size: 16px;
    margin: 0;
}
.product-detail-section .product-info small {
    font-weight: 400;
    font-size: 12px;
    color: #59598f;
}
.product-detail-section .add-cart-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #fff;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    padding: 4px 10px;
    transition: 0.3s ease;
}

/* ============================================================
   CART PAGE
============================================================ */
.cart-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
}
.page-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.country-select {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 9px 12px;
    background: #fff;
    width: 120px;
    flex-shrink: 0;
}
.country-select img {
    width: 22px;
    border-radius: 2px;
}
.country-select select {
    border: none;
    outline: none;
    font-size: 14px;
    background: transparent;
    cursor: pointer;
}

.pincode-group {
    position: relative;
    flex: 1;
}
.pincode-group input {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 9px 75px 9px 14px;
    font-size: 14px;
    outline: none;
    background: #fff8f5;
    transition: border-color 0.3s;
}
.pincode-group input:focus {
    border-color: var(--primary);
}
.pincode-group input::placeholder {
    color: #bbb;
}
.check-btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0 16px;
    background: transparent;
    border: none;
    border-left: 1px solid var(--border);
    border-radius: 0 8px 8px 0;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.check-btn:hover {
    background: var(--primary-light);
}

.product-img-wrap {
    width: 110px;
    height: 110px;
    border-radius: 10px;
    background: #f5f0ea;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-name {
    font-size: 15px;
    font-weight: 500;
}
.product-weight {
    font-size: 13px;
    color: var(--muted);
}

.qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}
.qty-control button {
    width: 32px;
    height: 32px;
    border: none;
    background: #faf9f8;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}
.qty-control button:hover {
    background: var(--primary-light);
}
.qty-control span {
    width: 36px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    height: 32px;
    line-height: 32px;
}

.remove-btn {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}
.remove-btn:hover {
    color: var(--primary);
}

.gift-section {
    border-top: 1px solid var(--border);
    padding: 14px 20px;
}
.gift-msg-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1.5px dashed #ccc;
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    transition: all 0.25s ease;
}
.gift-msg-btn:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.gift-wrapper-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px dashed #ccc;
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.25s ease;
    user-select: none;
    margin-bottom: 0;
}
.gift-wrapper-label:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}
.gift-wrapper-label.active {
    border-color: var(--primary);
    background: var(--primary-light);
    border-style: solid;
}
.wrapper-price {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    background: #fde8e8;
    padding: 2px 8px;
    border-radius: 20px;
}

.gift-msg-preview {
    background: var(--primary-light);
    border: 1px solid #e8c4c4;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: #555;
    display: none;
}
.gift-msg-preview.show {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.preview-edit {
    font-size: 12px;
    color: var(--primary);
    cursor: pointer;
    font-weight: 600;
    text-decoration: underline;
    white-space: nowrap;
    margin-left: auto;
}

.badge-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
}
.badge-icon {
    width: 42px;
    height: 42px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}
.badge-text strong {
    font-size: 13px;
    font-weight: 600;
    display: block;
}
.badge-text span {
    font-size: 12px;
    color: var(--muted);
}

.coupon-box {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 13px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: border-color 0.2s;
}
.coupon-box:hover {
    border-color: var(--primary);
}
.coupon-label {
    font-size: 14px;
    font-weight: 500;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 6px 0;
}
.summary-row .label {
    color: #555;
}
.text-green {
    color: var(--green);
    font-weight: 600;
}
.divider {
    border-top: 1px solid var(--border);
    margin: 8px 0;
}
.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 0 4px;
}
.you-save {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--muted);
    padding-bottom: 16px;
}
.wrapper-charge {
    display: none;
}
.wrapper-charge.show {
    display: flex;
}

.checkout-btn {
    width: 100%;
    padding: 13px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.checkout-btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -70%;
    width: 40%;
    height: 200%;
    background: rgba(255, 255, 255, 0.15);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}
.checkout-btn:hover::after {
    left: 140%;
}
.checkout-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(123, 27, 27, 0.3);
}

.modal-content {
    border-radius: 16px;
    border: none;
}
.modal-header {
    border-bottom: 1px solid var(--border);
    padding: 18px 24px;
}
.modal-title {
    font-size: 18px;
    font-weight: 600;
}
.modal-body {
    padding: 20px 24px;
}
.modal-footer {
    border-top: 1px solid var(--border);
    padding: 14px 24px;
}
.form-label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
}
.form-control {
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    padding: 9px 14px;
}
.form-control:focus {
    border-color: var(--primary);
    box-shadow: none;
}
.char-count {
    font-size: 12px;
    color: var(--muted);
    text-align: right;
}
.btn-cancel {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: none;
    font-size: 14px;
    transition: background 0.2s;
}
.btn-cancel:hover {
    background: #f5f5f5;
}
.btn-save-msg {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}
.btn-save-msg:hover {
    background: var(--primary-hover);
}

/* ============================================================
   BREADCRUMB
============================================================ */
.bc {
    background: #fdf5f5;
    border-bottom: 1px solid #f0e4e4;
    padding: 12px 0;
}
.bc-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.84rem;
}
.bc-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #7a6e66;
}
.bc-left a {
    color: #7a6e66;
    display: flex;
    align-items: center;
    gap: 5px;
}
.bc-left a:hover {
    color: var(--primary);
}
.bc-left .sep {
    color: #d0c8c0;
}
.bc-left .current {
    color: var(--primary);
    font-weight: 600;
}
.bc-back {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.82rem;
}
.bc-back:hover {
    opacity: 0.8;
    color: var(--primary);
}

/* ============================================================
   BLOG PAGE
============================================================ */
.title-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    margin: 10px 0 0;
}
.section-sub {
    font-size: 0.8rem;
    color: var(--primary);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.blogs-section {
    padding: 50px 0 80px;
    background: var(--cream);
}
.blog-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(123, 27, 27, 0.12);
}

.card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 230px;
}
.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card:hover .card-img-wrap img {
    transform: scale(1.06);
}

.card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-hover);
    padding: 5px 14px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(123, 27, 27, 0.3);
    font-weight: 500;
}

.card-body-custom {
    padding: 26px 26px 30px;
}
.card-date {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}
.card-title-custom {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-text-custom {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 20px;
}

.card-footer-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}
.author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8d5c4, #c8845a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}
.author-name {
    font-size: 0.75rem;
    color: var(--dark);
    letter-spacing: 0.05em;
}
.read-link {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary-hover);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}
.read-link:hover {
    gap: 10px;
    color: var(--primary);
}
.read-link::after {
    content: "→";
}

/* ============================================================
   NEWSLETTER
============================================================ */
.newsletter-section {
    background: linear-gradient(135deg, #fff8f6 0%, #fef9e3 50%, #fdeae6 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.newsletter-section::before {
    content: "✦";
    position: absolute;
    font-size: 14rem;
    color: rgba(123, 27, 27, 0.08);
    bottom: -40px;
    left: 3%;
    line-height: 1;
    pointer-events: none;
}
.newsletter-section h3 {
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}
.newsletter-section p {
    color: var(--primary);
    font-size: 0.88rem;
    margin-bottom: 32px;
}
.newsletter-form {
    display: flex;
    max-width: 460px;
    margin: 0 auto;
    border: 1px solid rgba(123, 27, 27, 0.5);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 3px;
    overflow: hidden;
}
.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 14px 20px;
    color: var(--dark);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
}
.newsletter-form input::placeholder {
    color: var(--muted);
}
.newsletter-form button {
    background: var(--primary);
    border: none;
    color: #000;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 14px 24px;
    cursor: pointer;
    transition: background 0.3s;
}
.newsletter-form button:hover {
    background: var(--primary-hover);
}

/* ============================================================
   BLOG DETAIL PAGE
============================================================ */
.article-category {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.article-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--ink);
    margin-bottom: 20px;
}
.article-subtitle {
    font-size: 18px;
    color: var(--muted);
    font-weight: 300;
    max-width: 640px;
    margin-bottom: 36px;
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 28px;
    flex-wrap: wrap;
}
.meta-info .author-name {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--ink);
    margin-bottom: 2px;
}
.meta-info .meta-details {
    font-size: 0.8rem;
    color: var(--muted);
}
.meta-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
}
.reading-time {
    font-size: 0.82rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-img-wrap {
    margin: 25px 0;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}
.featured-img-placeholder {
    width: 100%;
    height: 460px;
}
.featured-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content p {
    margin-bottom: 15px;
    color: #2d2a27;
    text-align: justify;
}
.article-content h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--ink);
    margin: 2.5rem 0 1rem;
    letter-spacing: -0.3px;
}
.article-content h3 {
    font-size: 1.3rem;
    color: var(--ink);
    margin: 2rem 0 0.8rem;
}

.pullquote {
    border-left: 3px solid var(--primary);
    background: var(--primary-light);
    border-radius: 0 12px 12px 0;
    padding: 24px 28px;
    margin: 2.5rem 0;
}
.pullquote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--ink);
    margin: 0 0 8px;
    line-height: 1.6;
}
.pullquote cite {
    font-size: 0.82rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-style: normal;
}

.inline-img {
    width: 100%;
    border-radius: 12px;
    background: linear-gradient(135deg, #e8e2d9, #d4cec4);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.9rem;
    margin: 2rem 0;
    letter-spacing: 0.04em;
}

.sidebar {
    position: sticky;
    top: 90px;
}
.sidebar-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
}
.sidebar-heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.related-post {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}
.related-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.related-post:hover {
    opacity: 0.7;
}
.related-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    flex-shrink: 0;
}
.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.related-post-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
    margin-bottom: 4px;
}
.related-post-date {
    font-size: 0.77rem;
    color: var(--muted);
}

.read-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--primary);
    width: 0%;
    transition: width 0.1s linear;
    z-index: 9999;
}

.share-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}
.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.share-btn:hover {
    transform: translateY(-4px);
    color: #fff;
}
.facebook {
    background: #1877f2;
}
.twitter {
    background: #000;
}
.linkedin {
    background: #0a66c2;
}
.whatsapp {
    background: #25d366;
}
.instagram {
    background: linear-gradient(
        45deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    );
}
.facebook:hover {
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}
.twitter:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.linkedin:hover {
    box-shadow: 0 6px 20px rgba(10, 102, 194, 0.4);
}
.whatsapp:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.instagram:hover {
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
}

/* ============================================================
   CONTACT PAGE
============================================================ */
.info-section {
    background: var(--cream);
}
.info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 36px 30px;
    height: 100%;
    position: relative;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
    overflow: hidden;
}
.info-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(123, 27, 27, 0.1);
}
.info-card:hover::before {
    transform: scaleX(1);
}

.info-icon-wrap {
    position: relative;
    width: 62px;
    height: 62px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--primary);
    font-size: 1.4rem;
    transition:
        background 0.3s,
        color 0.3s;
}
.info-card:hover .info-icon-wrap {
    background: var(--primary);
    color: #fff;
}
.icon-ring {
    position: absolute;
    inset: -6px;
    border: 1.5px dashed var(--primary-light);
    border-radius: 20px;
    transition: border-color 0.3s;
}
.info-card:hover .icon-ring {
    border-color: rgba(123, 27, 27, 0.2);
}

.info-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}
.info-card-text {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 8px;
}
.info-card-text strong {
    color: var(--ink);
    font-weight: 600;
}
.info-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-top: 10px;
    transition:
        gap 0.3s,
        color 0.2s;
    gap: 6px;
}
.info-link:hover {
    color: var(--primary-hover);
    gap: 10px;
}

.form-map-section {
    padding: 0 0 80px;
    background: var(--cream);
}
.form-panel {
    background: var(--white);
    border-radius: 20px 0 0 20px;
    padding: 52px 48px;
    height: 100%;
    border: 1px solid var(--border);
    border-right: none;
}
.panel-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
}
.panel-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--dark);
    margin: 8px 0 10px;
    line-height: 1.2;
}
.panel-sub {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 34px;
    line-height: 1.7;
}

.form-group-custom {
    margin-bottom: 4px;
}
.form-label-custom {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 7px;
}
.form-label-custom span {
    color: var(--primary);
}
.form-input-custom {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--ink);
    background: var(--warm-white);
    outline: none;
    transition:
        border-color 0.3s,
        box-shadow 0.3s,
        background 0.3s;
    appearance: none;
}
.form-input-custom::placeholder {
    color: #c0b8b2;
}
.form-input-custom:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(123, 27, 27, 0.08);
}
textarea.form-input-custom {
    resize: vertical;
    min-height: 130px;
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}
.btn-shine {
    position: absolute;
    top: -50%;
    left: -70%;
    width: 40%;
    height: 200%;
    background: rgba(255, 255, 255, 0.12);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}
.submit-btn:hover .btn-shine {
    left: 140%;
}
.submit-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(123, 27, 27, 0.3);
}

.success-msg {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 20px;
}
.success-msg.show {
    display: flex;
}
.success-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.success-msg h5 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 10px;
}
.success-msg p {
    color: var(--muted);
    font-size: 0.9rem;
}

.map-panel {
    position: relative;
    height: 100%;
    min-height: 560px;
    border-radius: 0 20px 20px 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-left: none;
}
.map-panel iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: sepia(20%) saturate(0.9);
}
.map-overlay-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 8px 18px;
    border-radius: 100px;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(123, 27, 27, 0.3);
}

.bottom-section {
    padding: 0 0 90px;
    background: var(--cream);
}
.hours-card,
.social-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 36px 34px;
    height: 100%;
}
.hours-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.hours-header i {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.hours-header h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}
.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px dashed var(--border);
    font-size: 0.88rem;
}
.hours-list li:last-child {
    border-bottom: none;
}
.hours-list .day {
    color: var(--ink);
    font-weight: 500;
}
.hours-list .time {
    color: var(--muted);
}
.hours-list .closed-tag {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.78rem;
    background: var(--primary-light);
    padding: 2px 12px;
    border-radius: 100px;
}
.hours-note {
    font-size: 0.78rem;
    color: var(--muted);
    background: var(--cream);
    padding: 10px 14px;
    border-radius: 8px;
    margin: 0;
}

.social-sub {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 24px;
}
.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.social-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
    color: #fff;
}
.social-btn i {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.social-btn:hover {
    transform: translateX(6px);
    color: #fff;
}
.social-btn.facebook {
    background: #1877f2;
}
.social-btn.instagram {
    background: linear-gradient(
        45deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    );
}
.social-btn.whatsapp {
    background: #25d366;
}
.social-btn.twitter {
    background: #000;
}
.social-btn.facebook:hover {
    box-shadow: 0 8px 24px rgba(24, 119, 242, 0.35);
}
.social-btn.instagram:hover {
    box-shadow: 0 8px 24px rgba(220, 39, 67, 0.35);
}
.social-btn.whatsapp:hover {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.social-btn.twitter:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* ============================================================
   ORDER CONFIRM PAGE
============================================================ */
.confirm-wrap {
    min-height: 80vh;
    background: #faf6f0;
    padding: 60px 16px 80px;
    font-family: "DM Sans", sans-serif;
}
.confirm-box {
    max-width: 560px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e8ddd5;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
    animation: fadeUp 0.5s ease both;
}
.cb-top {
    background: linear-gradient(135deg, var(--primary), #4e0f0f);
    padding: 40px 32px 32px;
    text-align: center;
    color: #fff;
}
.check-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 18px;
    animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}
.cb-top h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.7rem;
    margin-bottom: 8px;
}
.cb-top p {
    font-size: 0.88rem;
    opacity: 0.8;
    max-width: 320px;
    margin: 0 auto;
    line-height: 1.6;
}
.order-id-bar {
    background: var(--primary-light);
    border-bottom: 1px solid #f0d5d5;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}
.order-id-bar span {
    color: #7a6e66;
}
.order-id-bar strong {
    color: var(--primary);
    font-size: 0.9rem;
}
.cb-body {
    padding: 24px 28px;
}
.item-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f0ebe3;
}
.item-row:last-of-type {
    border-bottom: none;
}
.item-emoji {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff0e8, #f5dfc0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.item-name {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 3px;
}
.item-meta {
    font-size: 0.78rem;
    color: #7a6e66;
}
.item-price {
    font-weight: 700;
    color: var(--primary);
    margin-left: auto;
    white-space: nowrap;
}
.summary {
    background: #faf6f0;
    border-radius: 12px;
    padding: 16px 18px;
    margin: 20px 0;
    font-size: 0.88rem;
}
.sum-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    color: #7a6e66;
}
.sum-row.total {
    color: #1a1209;
    font-weight: 700;
    font-size: 0.95rem;
    border-top: 1px solid #e8ddd5;
    margin-top: 8px;
    padding-top: 12px;
}
.sum-row.total span:last-child {
    color: var(--primary);
}
.addr-box {
    border: 1px solid #e8ddd5;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    line-height: 1.65;
}
.addr-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.action-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.btn-p {
    flex: 1;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: background 0.2s;
    font-family: "DM Sans", sans-serif;
    text-decoration: none;
}
.btn-p:hover {
    background: var(--primary-hover);
    color: #fff;
}
.btn-o {
    flex: 1;
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    padding: 11px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: all 0.2s;
    font-family: "DM Sans", sans-serif;
    text-decoration: none;
}
.btn-o:hover {
    background: var(--primary);
    color: #fff;
}

/* ============================================================
   ACCOUNT PAGE
============================================================ */
#toast {
    background-color: var(--primary);
    color: #fff;
}

.hero-banner {
    background: linear-gradient(135deg, #f5ebe0 0%, #faf0e6 50%, #f0e4d4 100%);
    padding: 80px 0;
    text-align: center;
}
.hero-banner h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--primary);
    margin-bottom: 16px;
}
.hero-banner p {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 32px;
}

.btn-maroon {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-maroon:hover {
    background: var(--primary-hover);
    color: white;
}
.btn-outline-maroon {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    padding: 11px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    cursor: pointer;
}
.btn-outline-maroon:hover {
    background: var(--primary);
    color: white;
}

.custom-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 5, 2, 0.55);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.custom-modal-overlay.show {
    display: flex;
}
.modal-box {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 1050px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    display: flex;
    animation: modalIn 0.3s ease;
}

.modal-left {
    background: linear-gradient(160deg, #fdf0e0 0%, #f5dfc0 100%);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 50%;
    text-align: center;
}
.modal-left .illustration {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #fff5eb, #f0d5b0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(184, 134, 78, 0.2);
}
.modal-left .illustration i {
    font-size: 2.8rem;
    color: var(--primary);
}
.modal-left h5 {
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 8px;
}
.modal-left p {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.55;
}
.benefits-row {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.benefit-chip {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 5px 12px;
    font-size: 0.75rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 5px;
}
.benefit-chip i {
    color: var(--primary);
}

.modal-right {
    flex: 1;
    padding: 40px 36px;
    position: relative;
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: var(--bg);
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
}
.modal-close:hover {
    background: var(--border);
}
.modal-right h4 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 6px;
}
.modal-right .sub {
    color: var(--muted);
    font-size: 0.88rem;
    margin-bottom: 28px;
}

.form-label-sm {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
    display: block;
}
.input-group-phone {
    display: flex;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--input-bg);
    transition: border-color 0.2s;
}
.input-group-phone:focus-within {
    border-color: var(--primary);
}
.phone-prefix {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    border-right: 1.5px solid var(--border);
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
}
.phone-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 13px 14px;
    font-size: 0.95rem;
    color: var(--text);
    outline: none;
    font-family: "DM Sans", sans-serif;
}
.phone-input::placeholder {
    color: #bbb;
}

.custom-input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    background: var(--input-bg);
    padding: 12px 16px;
    font-size: 0.95rem;
    color: var(--text);
    outline: none;
    font-family: "DM Sans", sans-serif;
    transition: border-color 0.2s;
}
.custom-input:focus {
    border-color: var(--primary);
}
.custom-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.terms-text {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 20px;
    text-align: center;
}
.terms-text a {
    color: var(--primary);
    text-decoration: underline;
}

.otp-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.otp-box {
    width: 48px;
    height: 52px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: var(--input-bg);
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
    font-family: "DM Sans", sans-serif;
}
.otp-box:focus {
    border-color: var(--primary);
    background: var(--white);
}
.otp-sent-to {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 20px;
}
.otp-sent-to strong {
    color: var(--text);
}
.resend-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.83rem;
    color: var(--muted);
}
.resend-link {
    color: var(--primary);
    cursor: pointer;
    font-weight: 600;
    display: none;
}
#otpTimer {
    font-weight: 600;
    color: var(--primary);
}

#accountPage {
    display: none;
    min-height: 80vh;
    padding: 40px 0 80px;
}
.account-title {
    font-size: 1.85rem;
    color: var(--text);
    margin-bottom: 32px;
}
.account-sidebar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}
.sidebar-user-card {
    background: linear-gradient(135deg, var(--primary), #4a0d0d);
    padding: 24px 20px;
    color: white;
    text-align: center;
}
.sidebar-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 10px;
}
.sidebar-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 3px;
}
.sidebar-phone {
    font-size: 0.8rem;
    opacity: 0.75;
}

.sidebar-nav {
    padding: 8px 0;
}
.sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    cursor: pointer;
    transition: all 0.18s;
    border-left: 3px solid transparent;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 500;
}
.sidebar-nav-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}
.sidebar-nav-item.active {
    background: var(--primary-light);
    color: var(--primary);
    border-left-color: var(--primary);
    font-weight: 600;
}
.sidebar-nav-item i {
    font-size: 1rem;
    width: 18px;
    text-align: center;
}

.sidebar-logout {
    padding: 12px 20px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
}
.logout-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e74c3c;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0;
    background: none;
    border: none;
    width: 100%;
}
.logout-btn:hover {
    opacity: 0.8;
}

.tab-panel {
    display: none;
}
.tab-panel.active {
    display: block;
}
.panel-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}
.panel-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: var(--primary-light);
    border-bottom: 1px solid #e8c4c4;
}
.panel-card-header h6 {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0;
}
.panel-card-body {
    padding: 24px;
}

.info-row {
    display: flex;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
}
.info-row:last-child {
    border-bottom: none;
}
.info-label {
    width: 160px;
    color: var(--muted);
    font-size: 0.88rem;
    flex-shrink: 0;
}
.info-colon {
    margin-right: 12px;
    color: var(--muted);
}
.info-val {
    color: var(--text);
    font-weight: 500;
    font-size: 0.92rem;
}
.btn-edit-details {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    padding: 8px 22px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-edit-details:hover {
    background: var(--primary);
    color: white;
}
.edit-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group-custom label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 5px;
    display: block;
}

.order-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
}
.order-card-header {
    background: var(--bg);
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}
.order-id {
    font-size: 0.82rem;
    color: var(--muted);
}
.order-id strong {
    color: var(--text);
}
.order-date {
    font-size: 0.8rem;
    color: var(--muted);
}
.order-status {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 4px 12px;
    border-radius: 100px;
}
.status-delivered {
    background: #e8f8f0;
    color: #1a7a4a;
}
.status-processing {
    background: #fff8e1;
    color: #b8860b;
}
.status-cancelled {
    background: #fee8e8;
    color: #c0392b;
}
.order-card-body {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.order-thumb {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f5ebe0, #e0c8a8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    overflow: hidden;
}
.order-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.order-info {
    flex: 1;
}
.order-product-name {
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 3px;
}
.order-meta {
    font-size: 0.8rem;
    color: var(--muted);
}
.order-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}
.btn-invoice {
    border: 1.5px solid var(--border);
    background: white;
    color: var(--muted);
    padding: 7px 16px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    white-space: nowrap;
}
.btn-invoice:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.address-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 14px;
    position: relative;
    transition: border-color 0.2s;
}
.address-card.default {
    border-color: var(--primary);
    background: var(--primary-light);
}
.address-type-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid #e8c4c4;
    margin-bottom: 10px;
}
.address-type-badge.home-badge {
    background: #e8f4ff;
    color: #1a5fa8;
    border-color: #b8d8f0;
}
.address-name {
    font-weight: 700;
    font-size: 0.92rem;
    margin-bottom: 4px;
}
.address-text {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.55;
}
.address-phone {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 6px;
}
.default-tag {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 0.72rem;
    color: var(--primary);
    font-weight: 700;
    background: white;
    border: 1px solid #e8c4c4;
    padding: 2px 10px;
    border-radius: 100px;
}
.address-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.addr-action-btn {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 0;
    transition: color 0.2s;
}
.addr-action-btn:hover {
    color: var(--primary);
}
.addr-action-btn.delete-btn:hover {
    color: #e74c3c;
}

.add-address-btn {
    border: 1.5px dashed var(--border);
    border-radius: 12px;
    padding: 22px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--muted);
}
.add-address-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}
.add-address-btn i {
    font-size: 1.5rem;
    margin-bottom: 6px;
    display: block;
}
.add-address-btn span {
    font-size: 0.88rem;
    font-weight: 600;
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}
.wishlist-grid .wl-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #ccc;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 2;
}
.wishlist-grid .wl-btn:hover {
    background: #fff;
    color: var(--primary);
    transform: scale(1.1);
}
.wishlist-grid .wl-btn.wl-active {
    color: var(--primary);
    background: #fff;
}
.wishlist-grid .wl-empty {
    text-align: center;
    padding: 60px 20px;
    color: #aaa;
}
.wishlist-grid .wl-empty i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 12px;
    display: block;
}
.wishlist-grid .wl-empty a {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.88rem;
}

.toast-msg {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--text);
    color: white;
    padding: 12px 22px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 2000;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
    pointer-events: none;
}
.toast-msg.show {
    opacity: 1;
    transform: translateY(0);
}

.addr-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 5, 2, 0.5);
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.addr-modal-overlay.show {
    display: flex;
}
.addr-modal-box {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    width: 100%;
    max-width: 520px;
    animation: modalIn 0.3s ease;
}
.addr-modal-box h5 {
    font-size: 1.3rem;
    margin-bottom: 24px;
}

/* ============================================================
   FOOTER
============================================================ */
.footer-bottom {
    background: var(--primary);
    color: #bbb;
    padding: 50px 0 20px;
}
.footer-bottom h6 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 15px;
}
.footer-bottom ul {
    list-style: none;
    padding: 0;
}
.footer-bottom ul li {
    margin-bottom: 8px;
}
.footer-bottom ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.footer-bottom ul li a:hover {
    color: #fff;
}
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #bbb;
}
.footer-contact i {
    color: #fff;
    font-size: 14px;
    min-width: 16px;
}
.payment-icons img {
    background: #fff;
    padding: 3px 5px;
    border-radius: 4px;
    margin: 3px 4px 0 0;
}
hr {
    border-color: #ffffff20;
}
.footer-last {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 13px;
    color: #aaa;
}
.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}
.social-icons span {
    font-size: 13px;
    color: #bbb;
}
.social-icons a {
    color: #bbb;
    font-size: 16px;
    transition: color 0.2s;
}
.social-icons a:hover {
    color: #fff;
}

/* ============================================================
   CHECKOUT PAGE
============================================================ */
.co-page {
    padding: 40px 0 80px;
}
.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 36px;
}
.step-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    border: 2px solid #e8ddd5;
    background: #fff;
    color: #aaa;
    transition: all 0.3s;
}
.step-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 0 4px var(--primary-light);
}
.step-dot.done {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}
.step-lbl {
    font-size: 0.78rem;
    font-weight: 600;
    color: #aaa;
}
.step-lbl.active,
.step-lbl.done {
    color: var(--primary);
}
.step-line {
    width: 48px;
    height: 2px;
    background: #e8ddd5;
    margin: 0 4px;
}
.step-line.done {
    background: var(--primary);
}
.co-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
}
.co-panel {
    background: #fff;
    border: 1px solid #e8ddd5;
    border-radius: 16px;
    padding: 24px;
}
.co-step {
    display: none;
}
.co-step.active {
    display: block;
}

.f-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.f-grid.g1 {
    grid-template-columns: 1fr;
}
.f-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #7a6e66;
    margin-bottom: 5px;
}
.f-inp {
    width: 100%;
    border: 1.5px solid #e8ddd5;
    border-radius: 10px;
    padding: 10px 13px;
    font-size: 0.9rem;
    font-family: "DM Sans", sans-serif;
    background: #fdf9f6;
    outline: none;
    color: #1a1209;
    transition: border-color 0.2s;
}
.f-inp:focus {
    border-color: var(--primary);
}
.f-sel {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.addr-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}
.addr-card {
    border: 1.5px solid #e8ddd5;
    border-radius: 12px;
    padding: 14px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}
.addr-card.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}
.addr-card input[type="radio"] {
    position: absolute;
    top: 12px;
    right: 12px;
    accent-color: var(--primary);
}
.addr-card-type {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 5px;
}
.addr-card-name {
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 3px;
}
.addr-card-text {
    font-size: 0.8rem;
    color: #7a6e66;
    line-height: 1.5;
}

.or-divider {
    text-align: center;
    font-size: 0.78rem;
    color: #aaa;
    margin: 16px 0;
    position: relative;
}
.or-divider::before,
.or-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 44%;
    height: 1px;
    background: #e8ddd5;
}
.or-divider::before {
    left: 0;
}
.or-divider::after {
    right: 0;
}

.pay-opts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pay-opt {
    border: 1.5px solid #e8ddd5;
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
}
.pay-opt.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}
.pay-opt input[type="radio"] {
    accent-color: var(--primary);
}
.pay-opt-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.pay-opt-label {
    font-weight: 600;
    font-size: 0.9rem;
}
.pay-opt-sub {
    font-size: 0.76rem;
    color: #7a6e66;
    margin-top: 2px;
}
.pay-sub-form {
    margin-top: 14px;
    display: none;
}
.pay-sub-form.show {
    display: block;
}

.upi-row {
    display: flex;
    gap: 8px;
}
.upi-row .f-inp {
    flex: 1;
}
.upi-verify {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    font-family: "DM Sans", sans-serif;
}
.upi-verify:hover {
    background: var(--primary-hover);
}

.coupon-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}
.coupon-row .f-inp {
    flex: 1;
}
.coupon-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
}
.coupon-btn:hover {
    background: var(--primary-hover);
}
.coupon-success {
    font-size: 0.8rem;
    color: #2a8a4a;
    font-weight: 600;
    display: none;
}

.review-block {
    border: 1px solid #e8ddd5;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
}
.review-block-head {
    background: var(--primary-light);
    padding: 10px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.review-block-head a {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    text-decoration: underline;
}
.review-block-body {
    padding: 14px 16px;
    font-size: 0.86rem;
    line-height: 1.7;
    color: #1a1209;
}
.review-item-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0ebe3;
}
.review-item-row:last-child {
    border-bottom: none;
}
.review-item-emoji {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #fff0e8, #f5dfc0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.review-item-name {
    font-weight: 600;
    font-size: 0.86rem;
}
.review-item-meta {
    font-size: 0.76rem;
    color: #7a6e66;
}
.review-item-price {
    margin-left: auto;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

.summary-box {
    background: #fff;
    border: 1px solid #e8ddd5;
    border-radius: 16px;
    padding: 20px;
    position: sticky;
    top: 20px;
}
.summary-title {
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    margin-bottom: 16px;
}
.sum-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.sum-thumb {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: linear-gradient(135deg, #fff0e8, #f5dfc0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.sum-thumb img {
    width: 100%;
    height: 100%;
}
.sum-name {
    font-size: 0.82rem;
    font-weight: 600;
    flex: 1;
}
.sum-price {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--primary);
}
.sum-divider {
    height: 1px;
    background: #f0ebe3;
    margin: 14px 0;
}
.sum-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 4px 0;
    color: #7a6e66;
}
.sum-row.total {
    font-weight: 800;
    font-size: 0.98rem;
    color: #1a1209;
    padding-top: 10px;
    border-top: 1px solid #e8ddd5;
    margin-top: 6px;
}
.sum-row.total span:last-child {
    color: var(--primary);
}
.sum-row .green {
    color: #2a8a4a;
}

.co-nav {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}
.btn-next {
    flex: 1;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 13px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
}
.btn-next:hover {
    background: var(--primary-hover);
}
.btn-back {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    transition: all 0.2s;
}
.btn-back:hover {
    background: var(--primary-light);
}
.safe-badge {
    text-align: center;
    font-size: 0.75rem;
    color: #aaa;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.safe-badge i {
    color: #2a8a4a;
}

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes popIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(12px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
.fade-up {
    animation: fadeUp 0.7s ease forwards;
    opacity: 0;
}
.fade-up-d1 {
    animation-delay: 0.1s;
}
.fade-up-d2 {
    animation-delay: 0.22s;
}
.fade-up-d3 {
    animation-delay: 0.34s;
}
.fade-up-d4 {
    animation-delay: 0.4s;
}

/* ============================================================
   SWIPER
============================================================ */
.swiper-slide {
    transition-timing-function: ease-in-out;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
    .co-layout {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 560px) {
    .f-grid {
        grid-template-columns: 1fr;
    }
    .addr-cards {
        grid-template-columns: 1fr;
    }
}
