/* ================================================
   DIVYA STORE — Frontend CSS
   Theme: Cream / White / Orange
   ================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', Arial, sans-serif; background: #f5f0e8; color: #1a1a1a; font-size: 14px; line-height: 1.5; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
ul { list-style: none; }

/* ── NAVBAR ── */
.navbar {
    background: #fff;
    border-bottom: 1px solid #ede8e0;
    height: 62px;
    display: flex;
    align-items: center;
    padding: 0 32px;
    position: sticky;
    top: 0;
    z-index: 200;
    gap: 24px;
}
.nav-logo {
    font-size: 20px;
    font-weight: 700;
    color: #c4520a;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-logo span { color: #1a1a1a; }

.nav-search {
    flex: 1;
    max-width: 340px;
    position: relative;
}
.nav-search input {
    width: 100%;
    background: #f5f0e8;
    border: 1px solid #e8e2d8;
    border-radius: 8px;
    padding: 8px 12px 8px 36px;
    font-size: 13.5px;
    color: #333;
    font-family: inherit;
    outline: none;
    transition: border-color .15s;
}
.nav-search input:focus { border-color: #c4520a; background: #fff; }
.nav-search i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
    font-size: 15px;
    pointer-events: none;
}

.nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
}
.nav-links a {
    padding: 6px 12px;
    font-size: 13.5px;
    font-weight: 500;
    color: #555;
    border-radius: 7px;
    transition: all .12s;
    white-space: nowrap;
}
.nav-links a:hover { background: #fff5ef; color: #c4520a; }
.nav-links a.active { color: #c4520a; font-weight: 600; }

.nav-actions { display: flex; gap: 8px; align-items: center; margin-left: auto; }
.nav-icon-btn {
    width: 38px; height: 38px;
    border: 1px solid #e8e2d8;
    border-radius: 9px;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    color: #555;
    font-size: 17px;
    cursor: pointer;
    position: relative;
    transition: all .12s;
}
.nav-icon-btn:hover { border-color: #c4520a; color: #c4520a; background: #fff5ef; }
.cart-count {
    position: absolute;
    top: -5px; right: -5px;
    background: #c4520a;
    color: #fff;
    border-radius: 50%;
    width: 17px; height: 17px;
    font-size: 10px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.btn-signin {
    background: #c4520a;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: background .12s;
}
.btn-signin:hover { background: #a8450a; }

/* ── HERO ── */
.hero {
    background: #fff8f2;
    border-bottom: 1px solid #ede8e0;
    padding: 40px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.hero-badge {
    display: inline-block;
    background: #fff3ea;
    color: #c4520a;
    border: 1px solid #fad4b2;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 14px;
}
.hero-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 10px;
}
.hero-title span { color: #c4520a; }
.hero-sub {
    font-size: 14.5px;
    color: #888;
    line-height: 1.65;
    max-width: 420px;
    margin-bottom: 22px;
}
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-primary {
    background: #c4520a;
    color: #fff;
    border: none;
    border-radius: 9px;
    padding: 11px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: background .12s;
    text-decoration: none;
}
.btn-primary:hover { background: #a8450a; color: #fff; }
.btn-outline {
    background: #fff;
    color: #c4520a;
    border: 1.5px solid #c4520a;
    border-radius: 9px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all .12s;
    text-decoration: none;
}
.btn-outline:hover { background: #fff5ef; }
.hero-stats { display: flex; gap: 24px; margin-top: 22px; }
.hstat-num { font-size: 18px; font-weight: 700; color: #c4520a; }
.hstat-label { font-size: 11.5px; color: #aaa; margin-top: 2px; }
.hero-divider { width: 1px; background: #e8e2d8; }

.hero-card {
    background: #fff;
    border: 1px solid #ede8e0;
    border-radius: 16px;
    width: 230px;
    min-height: 185px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color .15s;
}
.hero-card:hover { border-color: #c4520a; }
.hero-card-icon { font-size: 68px; line-height: 1; }
.hero-card-label { font-size: 12.5px; color: #aaa; font-weight: 500; }
.hero-card-btn {
    background: #c4520a;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 6px 16px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 4px;
    font-family: inherit;
}

/* ── STRIP ── */
.info-strip {
    background: #fff8f2;
    border-top: 1px solid #fad4b2;
    border-bottom: 1px solid #fad4b2;
    padding: 12px 32px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.strip-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #666; font-weight: 500; }
.strip-item span { font-size: 18px; }
.strip-div { width: 1px; height: 20px; background: #e8e2d8; }

/* ── SECTION ── */
.section { padding: 28px 32px; }
.section-sm { padding: 16px 32px 0; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.section-title { font-size: 17px; font-weight: 700; color: #1a1a1a; }
.see-all { font-size: 13.5px; color: #c4520a; font-weight: 600; cursor: pointer; background: none; border: none; font-family: inherit; }
.see-all:hover { text-decoration: underline; }

/* ── CATEGORIES ── */
.cat-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.cat-row::-webkit-scrollbar { display: none; }
.cat-card {
    background: #fff;
    border: 1px solid #ede8e0;
    border-radius: 12px;
    padding: 14px 18px;
    min-width: 115px;
    text-align: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all .15s;
    text-decoration: none;
    display: block;
}
.cat-card:hover, .cat-card.active { border-color: #c4520a; background: #fff8f3; }
.cat-icon { font-size: 30px; margin-bottom: 6px; }
.cat-name { font-size: 12.5px; font-weight: 600; color: #444; }
.cat-count { font-size: 11px; color: #bbb; margin-top: 2px; }

/* ── PRODUCT GRID ── */
.prod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
    gap: 16px;
}
.prod-card {
    background: #fff;
    border: 1px solid #ede8e0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color .15s, transform .1s;
    display: flex;
    flex-direction: column;
}
.prod-card:hover { border-color: #c4520a; transform: translateY(-2px); }

.prod-img {
    height: 158px;
    background: #fdf6f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 58px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.prod-img img { width: 100%; height: 100%; object-fit: cover; }
.prod-badge {
    position: absolute;
    top: 8px; left: 8px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}
.badge-hot  { background: #d44; }
.badge-new  { background: #2e8b57; }
.badge-sale { background: #9c27b0; }

.wish-btn {
    position: absolute;
    top: 8px; right: 8px;
    background: #fff;
    border: 1px solid #e8e2d8;
    border-radius: 8px;
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: #ccc;
    transition: all .12s;
    z-index: 2;
}
.wish-btn:hover, .wish-btn.active { color: #c4520a; border-color: #c4520a; }

.prod-info { padding: 12px; flex: 1; display: flex; flex-direction: column; }
.prod-name { font-size: 13.5px; font-weight: 600; color: #222; line-height: 1.35; margin-bottom: 4px; }
.prod-sub  { font-size: 12px; color: #aaa; margin-bottom: 10px; flex: 1; }
.prod-footer { display: flex; align-items: center; justify-content: space-between; }
.prod-price { font-size: 15.5px; font-weight: 700; color: #c4520a; }
.prod-mrp   { font-size: 11.5px; color: #bbb; text-decoration: line-through; font-weight: 400; margin-left: 3px; }
.prod-rating { font-size: 11.5px; color: #f59e0b; font-weight: 600; margin-top: 2px; }
.prod-add {
    background: #fff5ef;
    border: 1.5px solid #fad4b2;
    color: #c4520a;
    border-radius: 8px;
    width: 32px; height: 32px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
    transition: all .12s;
    font-family: inherit;
    flex-shrink: 0;
}
.prod-add:hover { background: #c4520a; color: #fff; border-color: #c4520a; }

/* ── OFFER BANNER ── */
.offer-banner {
    margin: 4px 32px 28px;
    background: linear-gradient(135deg, #fff8f2, #fdebd8);
    border: 1px solid #fad4b2;
    border-radius: 14px;
    padding: 26px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.offer-tag { font-size: 11px; font-weight: 700; color: #c4520a; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.offer-title { font-size: 19px; font-weight: 700; color: #1a1a1a; margin-bottom: 5px; }
.offer-sub { font-size: 13.5px; color: #888; margin-bottom: 16px; }
.offer-code { font-weight: 700; color: #c4520a; font-size: 15px; letter-spacing: 1px; }
.offer-emoji { font-size: 72px; opacity: .8; flex-shrink: 0; line-height: 1; }

/* ── FOOTER ── */
.site-footer {
    background: #fff;
    border-top: 1px solid #ede8e0;
    padding: 16px 32px;
    text-align: center;
    font-size: 12.5px;
    color: #aaa;
}

/* ── PRODUCT DETAIL ── */
.detail-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 24px 32px;
    background: #f5f0e8;
}
.detail-img-box {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #ede8e0;
    padding: 22px;
}
.detail-main-img {
    height: 300px;
    background: #fdf6f0;
    border-radius: 10px;
    border: 1px solid #ede8e0;
    display: flex; align-items: center; justify-content: center;
    font-size: 100px;
    margin-bottom: 14px;
    overflow: hidden;
}
.detail-main-img img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.detail-thumbs { display: flex; gap: 8px; }
.dthumb {
    width: 58px; height: 58px;
    background: #fdf6f0;
    border: 1.5px solid #ede8e0;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    cursor: pointer;
    overflow: hidden;
    transition: border-color .12s;
}
.dthumb:hover, .dthumb.active { border-color: #c4520a; }
.dthumb img { width: 100%; height: 100%; object-fit: cover; }

.detail-info { display: flex; flex-direction: column; gap: 14px; }
.detail-cat { font-size: 12px; font-weight: 700; color: #c4520a; text-transform: uppercase; letter-spacing: .8px; }
.detail-title { font-size: 22px; font-weight: 700; color: #1a1a1a; line-height: 1.3; }
.detail-rating { display: flex; align-items: center; gap: 8px; }
.stars { color: #f59e0b; font-size: 15px; }
.rating-num { font-size: 13.5px; font-weight: 600; color: #333; }
.rating-count { font-size: 12.5px; color: #aaa; }
.stock-badge { margin-left: auto; background: #dcfce7; color: #166534; font-size: 12px; font-weight: 700; padding: 3px 11px; border-radius: 20px; }
.stock-badge.out { background: #fee2e2; color: #991b1b; }

.price-row {
    display: flex; align-items: baseline; gap: 10px;
    padding: 14px 0;
    border-top: 1px solid #f0ebe3;
    border-bottom: 1px solid #f0ebe3;
}
.detail-price { font-size: 28px; font-weight: 700; color: #c4520a; }
.detail-mrp { font-size: 15px; color: #bbb; text-decoration: line-through; }
.detail-discount { background: #dcfce7; color: #166534; font-size: 12.5px; font-weight: 700; padding: 3px 9px; border-radius: 5px; }
.save-text { font-size: 12.5px; color: #16a34a; font-weight: 600; }

.detail-desc { font-size: 14px; color: #666; line-height: 1.7; }

.opt-label { font-size: 12px; font-weight: 700; color: #999; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
    border: 1.5px solid #e0dbd4;
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all .12s;
    background: #fff;
}
.pill:hover, .pill.active { border-color: #c4520a; color: #c4520a; background: #fff8f3; }

.qty-row { display: flex; align-items: center; gap: 12px; }
.qty-ctrl { display: flex; align-items: center; border: 1.5px solid #e0dbd4; border-radius: 9px; overflow: hidden; }
.qty-btn { width: 36px; height: 36px; background: #f8f4ee; border: none; font-size: 20px; cursor: pointer; color: #555; font-weight: 700; font-family: inherit; transition: background .1s; }
.qty-btn:hover { background: #ede8e0; }
.qty-num { width: 44px; text-align: center; font-size: 15px; font-weight: 600; color: #1a1a1a; }
.stock-left { font-size: 12.5px; color: #aaa; }

.detail-actions { display: flex; gap: 10px; }
.btn-cart {
    flex: 1;
    background: #fff;
    color: #c4520a;
    border: 1.5px solid #c4520a;
    border-radius: 10px;
    padding: 13px;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    display: flex; align-items: center; justify-content: center; gap: 7px;
    transition: all .12s;
}
.btn-cart:hover { background: #fff5ef; }
.btn-buy {
    flex: 1;
    background: #c4520a;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background .12s;
}
.btn-buy:hover { background: #a8450a; }

.detail-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.dtag { background: #f5f0e8; color: #888; border-radius: 7px; padding: 5px 11px; font-size: 12px; font-weight: 500; }

.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 32px 20px; }
.feat-item { background: #fff; border: 1px solid #ede8e0; border-radius: 10px; padding: 13px; display: flex; gap: 10px; align-items: flex-start; }
.feat-icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.feat-title { font-size: 13.5px; font-weight: 600; color: #333; }
.feat-sub { font-size: 12px; color: #aaa; margin-top: 2px; }

.rev-tabs { display: flex; border-bottom: 1px solid #e8e2d8; margin: 0 32px 16px; }
.rtab { padding: 10px 18px; font-size: 13.5px; font-weight: 500; color: #999; cursor: pointer; border-bottom: 2px solid transparent; transition: all .12s; }
.rtab.active { color: #c4520a; border-bottom-color: #c4520a; font-weight: 600; }
.rcard { background: #fff; border: 1px solid #ede8e0; border-radius: 10px; padding: 14px 16px; margin: 0 32px 10px; }
.rname { font-size: 13.5px; font-weight: 600; color: #333; }
.rtext { font-size: 13.5px; color: #666; line-height: 1.65; margin-top: 6px; }

/* ── BREADCRUMB ── */
.breadcrumb {
    background: #fff;
    padding: 11px 32px;
    border-bottom: 1px solid #ede8e0;
    font-size: 12.5px;
    color: #aaa;
    display: flex; align-items: center; gap: 6px;
}
.breadcrumb a { color: #c4520a; font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.bc-sep { color: #d8d0c8; }

/* ── CART PAGE ── */
.cart-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 22px; padding: 24px 32px; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { background: #fdf8f4; padding: 10px 14px; text-align: left; font-size: 12px; font-weight: 700; color: #999; text-transform: uppercase; letter-spacing: .5px; border-bottom: 1px solid #ede8e0; }
.cart-table td { padding: 14px; border-bottom: 1px solid #f5f0e8; vertical-align: middle; }
.cart-table tr:last-child td { border-bottom: none; }
.cart-prod-img { width: 56px; height: 56px; background: #fdf6f0; border-radius: 8px; border: 1px solid #ede8e0; display: flex; align-items: center; justify-content: center; font-size: 28px; overflow: hidden; flex-shrink: 0; }
.cart-prod-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-qty { display: flex; align-items: center; border: 1.5px solid #e0dbd4; border-radius: 8px; overflow: hidden; width: fit-content; }
.cart-qty button { width: 30px; height: 30px; background: #f8f4ee; border: none; font-size: 16px; cursor: pointer; font-family: inherit; }
.cart-qty span { width: 36px; text-align: center; font-size: 13.5px; font-weight: 600; }
.remove-btn { background: none; border: none; color: #e04040; cursor: pointer; font-size: 18px; padding: 4px; }
.remove-btn:hover { color: #c00; }

.order-summary { background: #fff; border: 1px solid #ede8e0; border-radius: 12px; padding: 20px; height: fit-content; position: sticky; top: 80px; }
.summary-title { font-size: 15px; font-weight: 700; color: #1a1a1a; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid #f0ebe3; }
.summary-row { display: flex; justify-content: space-between; align-items: center; font-size: 13.5px; padding: 7px 0; color: #555; }
.summary-row.total { font-size: 16px; font-weight: 700; color: #1a1a1a; border-top: 1px solid #f0ebe3; margin-top: 6px; padding-top: 12px; }
.summary-row.total span:last-child { color: #c4520a; }
.coupon-row { display: flex; gap: 8px; margin: 14px 0; }
.coupon-row input { flex: 1; background: #f9f6f2; border: 1px solid #e0dbd4; border-radius: 7px; padding: 8px 12px; font-size: 13px; font-family: inherit; outline: none; }
.coupon-row input:focus { border-color: #c4520a; }
.coupon-row button { background: #fff5ef; border: 1.5px solid #c4520a; color: #c4520a; border-radius: 7px; padding: 0 14px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: inherit; }
.free-del { background: #dcfce7; color: #166534; font-size: 12px; font-weight: 600; padding: 7px 12px; border-radius: 7px; margin: 10px 0; text-align: center; }
.empty-cart { text-align: center; padding: 60px 20px; color: #bbb; }
.empty-cart i { font-size: 50px; display: block; margin-bottom: 14px; }
.empty-cart p { font-size: 15px; margin-bottom: 18px; }

/* ── CHECKOUT ── */
.checkout-wrap { display: grid; grid-template-columns: 1fr 360px; gap: 22px; padding: 24px 32px; }
.form-card { background: #fff; border: 1px solid #ede8e0; border-radius: 12px; padding: 22px; margin-bottom: 18px; }
.form-card-title { font-size: 15px; font-weight: 700; color: #1a1a1a; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid #f0ebe3; display: flex; align-items: center; gap: 8px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1/-1; }
.form-label { font-size: 12.5px; font-weight: 600; color: #666; }
.form-label .req { color: #c4520a; }
.form-control { background: #fff; border: 1px solid #e0dbd4; border-radius: 8px; padding: 10px 12px; font-size: 13.5px; color: #1a1a1a; font-family: inherit; width: 100%; outline: none; transition: border-color .15s; appearance: none; }
.form-control:focus { border-color: #c4520a; box-shadow: 0 0 0 3px rgba(196,82,10,.1); }
.payment-options { display: flex; gap: 10px; flex-wrap: wrap; }
.pay-opt { flex: 1; min-width: 130px; border: 1.5px solid #e0dbd4; border-radius: 9px; padding: 13px; cursor: pointer; transition: all .12s; display: flex; align-items: center; gap: 8px; }
.pay-opt:hover, .pay-opt.active { border-color: #c4520a; background: #fff8f3; }
.pay-opt input { accent-color: #c4520a; width: 15px; height: 15px; cursor: pointer; }

/* ── SHOP PAGE ── */
.shop-wrap { display: grid; grid-template-columns: 230px 1fr; gap: 22px; padding: 24px 32px; }
.sidebar-filter { height: fit-content; position: sticky; top: 80px; }
.filter-card { background: #fff; border: 1px solid #ede8e0; border-radius: 12px; padding: 18px; margin-bottom: 14px; }
.filter-title { font-size: 13.5px; font-weight: 700; color: #1a1a1a; margin-bottom: 12px; }
.filter-item { display: flex; align-items: center; gap: 8px; padding: 6px 0; cursor: pointer; font-size: 13.5px; color: #555; }
.filter-item input { accent-color: #c4520a; width: 14px; height: 14px; cursor: pointer; }
.price-range { display: flex; gap: 8px; align-items: center; margin-top: 8px; }
.price-input { width: 80px; background: #f9f6f2; border: 1px solid #e0dbd4; border-radius: 7px; padding: 7px 10px; font-size: 13px; font-family: inherit; outline: none; }
.price-input:focus { border-color: #c4520a; }

/* ── ALERTS ── */
.alert { padding: 12px 16px; border-radius: 8px; font-size: 13.5px; font-weight: 500; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info    { background: #fff3ea; color: #c4520a; border: 1px solid #fad4b2; }

/* ── ORDER SUCCESS ── */
.success-wrap { max-width: 560px; margin: 48px auto; padding: 0 16px; text-align: center; }
.success-icon { font-size: 72px; margin-bottom: 16px; }
.success-title { font-size: 24px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
.success-sub { font-size: 14.5px; color: #888; margin-bottom: 26px; line-height: 1.6; }
.order-box { background: #fff; border: 1px solid #ede8e0; border-radius: 12px; padding: 20px; text-align: left; margin-bottom: 22px; }
.order-box-row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid #f5f0e8; font-size: 13.5px; }
.order-box-row:last-child { border-bottom: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .navbar { padding: 0 16px; gap: 12px; }
    .nav-search { max-width: 220px; }
    .hero { padding: 28px 16px; }
    .hero-card { display: none; }
    .section, .section-sm { padding: 22px 16px 0; }
    .info-strip { padding: 12px 16px; }
    .offer-banner { margin: 4px 16px 22px; }
    .prod-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
    .detail-wrap { grid-template-columns: 1fr; padding: 16px; }
    .feat-grid { padding: 0 16px 16px; grid-template-columns: 1fr 1fr; }
    .rev-tabs, .rcard { margin-left: 16px; margin-right: 16px; }
    .breadcrumb { padding: 10px 16px; }
    .cart-wrap, .checkout-wrap { grid-template-columns: 1fr; padding: 16px; }
    .shop-wrap { grid-template-columns: 1fr; padding: 16px; }
    .sidebar-filter { position: static; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-title { font-size: 24px; }
    .feat-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
}
