* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #182E36;
    --gold-light: #335561;
    --black: #0D0D0D;
    --white: #FFFFFF;
    --beige: #ececec;
    --beige-dark: #335561;
    --text-muted: #6B6459;
}

body {
    font-family: 'Georgia', serif;
    background: #fff;
    color: #1a1a1a;
}

img {
    width: 100%;
    height: 100%;
}

.btn-gold {
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 14px 36px;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: background .3s;
}

.btn-gold:hover {
    background: #A8853A;
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    padding: 12px 32px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: all .3s;
}

.btn-outline:hover {
    background: var(--gold);
    color: #fff;
}

.section-label {
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-size: 34px;
    font-weight: 400;
    color: var(--black);
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-sub {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 480px;
}

.divider-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 24px;
}

/* ===== NAV ===== */
nav {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: .5px solid #E0D8CE;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 72px;
    position: sticky;
    top: 0;
    z-index: 200;
}

.logo {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--black);
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo span {
    color: var(--gold);
}
.logo img {
    width: 60px;
}

/* SEARCH BAR */
.search-wrap {
    flex: 1;
    max-width: 480px;
    position: relative;
    margin: 0 24px;
}

.search-box {
    display: flex;
    align-items: center;
    border: .5px solid #DDD5C8;
    background: #FAFAF8;
    height: 40px;
    transition: border-color .2s;
}

.search-box:focus-within {
    border-color: var(--gold);
}

.search-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    color: var(--black);
    padding: 0 8px;
}

.search-input::placeholder {
    color: #B0A898;
}

.search-clear {
    width: 32px;
    height: 32px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: none;
    border: none;
    color: #B0A898;
    flex-shrink: 0;
}

.search-clear.visible {
    display: flex;
}

.search-clear:hover {
    color: var(--black);
}

/* SUGGESTION BOX */
.suggest-box {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: .5px solid #E0D8CE;
    z-index: 300;
    max-height: 380px;
    overflow-y: auto;
}

.suggest-box.open {
    display: block;
}

.suggest-section-title {
    font-family: 'Arial', sans-serif;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 14px 16px 8px;
    border-bottom: .5px solid #F5F0E8;
}

.suggest-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background .15s;
}

.suggest-item:hover {
    background: #FAF7F2;
}

.suggest-item:hover .suggest-name {
    color: var(--gold);
}

.suggest-thumb {
    width: 44px;
    height: 44px;
    background: var(--beige);
    flex-shrink: 0;
    overflow: hidden;
}

.suggest-thumb svg {
    width: 100%;
    height: 100%;
}

.suggest-name {
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    color: var(--black);
}

.suggest-cat {
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

.suggest-price {
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    margin-left: auto;
    flex-shrink: 0;
}

.suggest-kw {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    cursor: pointer;
    transition: background .15s;
}

.suggest-kw:hover {
    background: #FAF7F2;
}

.suggest-kw-text {
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    color: var(--black);
}

.suggest-kw em {
    color: var(--gold);
    font-style: normal;
    font-weight: 600;
}

.suggest-divider {
    height: .5px;
    background: #F0EAE0;
    margin: 4px 0;
}

.no-results {
    padding: 20px 16px;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}

/* NAV RIGHT */
.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.icon-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .2s;
}

.icon-btn:hover {
    opacity: .7;
}

.badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    font-family: 'Arial', sans-serif;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* HAMBURGER */
.ham-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
}

.ham-btn span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--black);
    transition: all .3s;
}

/* HAM DRAWER — slides from RIGHT */
.ham-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 500;
}

.ham-overlay.open {
    display: block;
}

.ham-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: #fff;
    z-index: 600;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
}

.ham-drawer.open {
    transform: translateX(0);
}

.ham-head {
    padding: 24px 28px;
    border-bottom: .5px solid #E8E0D0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ham-close {
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ham-body {
    flex: 1;
    padding: 32px 28px;
    overflow-y: auto;
}

.ham-nav-links {
    list-style: none;
    margin-bottom: 36px;
}

.ham-nav-links li {
    border-bottom: .5px solid #F0EAE0;
}

.ham-nav-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    transition: color .2s;
}

.ham-nav-links a:hover {
    color: var(--gold);
}

.ham-nav-links a::after {
    content: '›';
    font-size: 18px;
    color: #ccc;
}

.ham-section-title {
    font-family: 'Arial', sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.ham-address {
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.ham-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color .2s;
}

.ham-contact a:hover {
    color: var(--gold);
}

.ham-social {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

.ham-social-btn {
    width: 36px;
    height: 36px;
    border: .5px solid #E0D8CE;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: none;
    transition: border-color .2s;
}

.ham-social-btn:hover {
    border-color: var(--gold);
}

/* OVERLAYS */
.overlay-bg {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 400;
    justify-content: flex-end;
    align-items: flex-start;
}

.overlay-bg.active {
    display: flex;
}

.overlay-center {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 400;
    justify-content: center;
    align-items: center;
}

.overlay-center.active {
    display: flex;
}

/* CART DRAWER */
.cart-drawer {
    width: 420px;
    background: #fff;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.drawer-header {
    padding: 28px 28px 20px;
    border-bottom: .5px solid #E8E0D0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-title {
    font-size: 20px;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 1px;
}

.drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-items {
    flex: 1;
    padding: 20px 28px;
    overflow-y: auto;
    max-height: 55vh;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: .5px solid #F0EAE0;
}

.cart-item-img {
    width: 72px;
    height: 72px;
    background: var(--beige);
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 15px;
    color: var(--black);
    margin-bottom: 3px;
}

.cart-item-sub {
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.cart-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-item-price {
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    color: var(--gold);
    font-weight: 600;
}

.qty-ctrl {
    display: flex;
    align-items: center;
}

.qty-btn {
    background: none;
    border: .5px solid #DDD;
    width: 26px;
    height: 26px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
}

.qty-val {
    width: 32px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    color: var(--black);
}

.cart-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: #bbb;
    font-size: 14px;
    margin-left: 8px;
}

.cart-remove:hover {
    color: #E84A4A;
}

.cart-footer {
    padding: 20px 28px 28px;
    border-top: .5px solid #E8E0D0;
}

.cart-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.cart-row.total {
    font-size: 17px;
    color: var(--black);
    font-weight: 600;
    border-top: .5px solid #E8E0D0;
    padding-top: 12px;
    margin-top: 4px;
}

.cart-row.total span:last-child {
    color: var(--gold);
}

.btn-checkout {
    width: 100%;
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 15px;
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background .3s;
}

.btn-checkout:hover {
    background: #A8853A;
}

.btn-continue {
    width: 100%;
    background: none;
    color: var(--text-muted);
    border: .5px solid #DDD;
    padding: 12px;
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
}

.cart-empty {
    text-align: center;
    padding: 48px 20px;
}

.cart-empty p {
    font-family: 'Arial', sans-serif;
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 16px;
}

/* WISHLIST */
.wishlist-modal {
    background: #fff;
    width: 560px;
    max-width: 95vw;
    border-radius: 0;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.wishlist-body {
    padding: 24px 28px;
    overflow-y: auto;
    flex: 1;
}

.wl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.wl-card {
    background: var(--beige);
    position: relative;
    cursor: pointer;
}

.wl-card:hover .wl-img-inner {
    transform: scale(1.04);
}

.wl-img {
    height: 160px;
    overflow: hidden;
}

.wl-img-inner {
    width: 100%;
    height: 100%;
    transition: transform .4s;
}

.wl-info {
    padding: 14px 16px 16px;
}

.wl-name {
    font-size: 14px;
    color: var(--black);
    margin-bottom: 3px;
}

.wl-price {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.wl-add {
    width: 100%;
    background: var(--black);
    color: #fff;
    border: none;
    padding: 9px;
    font-family: 'Arial', sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .3s;
}

.wl-add:hover {
    background: var(--gold);
}

.wl-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, .9);
    border: none;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    color: #888;
}

.wl-remove:hover {
    color: #E84A4A;
}

.wl-empty {
    text-align: center;
    padding: 48px 20px;
}

.wl-empty p {
    font-family: 'Arial', sans-serif;
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 12px;
}

/* LOGIN */
.login-modal {
    background: #fff;
    width: 820px;
    max-width: 96vw;
    height: 520px;
    display: flex;
    overflow: hidden;
}

.login-visual {
    width: 340px;
    flex-shrink: 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px 32px;
}

.login-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0, 0, 0, .4) 0%, rgba(0, 0, 0, .75) 100%);
}

.login-visual-content {
    position: relative;
    z-index: 2;
}

.login-visual-tag {
    font-family: 'Arial', sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.login-visual-title {
    font-size: 28px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
}

.login-visual-title em {
    color: var(--gold);
    font-style: italic;
}

.login-visual-sub {
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.6;
}

.login-form-side {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.login-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 28px;
}

.login-tab {
    flex: 1;
    padding: 11px;
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: none;
    border: .5px solid #E0D8CE;
    cursor: pointer;
    color: var(--text-muted);
    transition: all .2s;
}

.login-tab.active {
    background: var(--black);
    color: #fff;
    border-color: var(--black);
}

.login-field {
    margin-bottom: 16px;
}

.login-field label {
    display: block;
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.login-field input {
    width: 100%;
    border: .5px solid #E0D8CE;
    padding: 11px 14px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: var(--black);
    outline: none;
    transition: border-color .2s;
}

.login-field input:focus {
    border-color: var(--gold);
}

.btn-login-submit {
    width: 100%;
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 13px;
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    margin-top: 6px;
    transition: background .3s;
}

.btn-login-submit:hover {
    background: #A8853A;
}

.login-forgot {
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    color: var(--gold);
    text-align: right;
    margin-top: 6px;
    cursor: pointer;
}






/* FOOTER */
footer {
    background: var(--black);
    color: #fff;
    padding: 64px 48px 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    border-bottom: .5px solid rgba(255, 255, 255, .1);
    padding-bottom: 48px;
}

.footer-brand p {
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.7;
    margin: 16px 0 24px;
}

.social-row {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color .2s;
    background: none;
}

.social-btn:hover {
    border-color: var(--gold);
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: color .2s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.newsletter-form {
    display: flex;
    margin-top: 8px;
}

.newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, .07);
    border: .5px solid rgba(255, 255, 255, .15);
    border-right: none;
    padding: 11px 16px;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    color: #fff;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, .35);
}

.newsletter-btn {
    background: var(--gold);
    border: none;
    padding: 11px 18px;
    cursor: pointer;
    color: #fff;
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, .3);
}

/* WHATSAPP FIXED */
#wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
}

.wa-btn {
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: transform .2s;
}

.wa-btn:hover {
    transform: scale(1.08);
}

.wa-popup {
    display: none;
    position: absolute;
    bottom: 68px;
    right: 0;
    width: 300px;
    background: #fff;
    border: .5px solid #E0D8CE;
    overflow: hidden;
}

.wa-popup.open {
    display: block;
}

.wa-pop-header {
    background: #075E54;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #128C7E;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-pop-name {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.wa-pop-status {
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, .7);
}

.wa-pop-body {
    padding: 16px 20px;
    background: #ECE5DD;
}

.wa-bubble {
    background: #fff;
    padding: 12px 16px;
    border-radius: 0 8px 8px 8px;
    margin-bottom: 12px;
}

.wa-bubble p {
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    color: #1a1a1a;
    line-height: 1.5;
}

.wa-bubble time {
    display: block;
    font-size: 10px;
    color: #999;
    text-align: right;
    margin-top: 4px;
}

.wa-pop-input {
    padding: 12px 16px;
    display: flex;
    gap: 8px;
    align-items: center;
    background: #f0f0f0;
}

.wa-text-in {
    flex: 1;
    background: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 20px;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    outline: none;
}

.wa-send {
    background: #25D366;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TOAST */
#toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: #fff;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    padding: 12px 24px;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
    white-space: nowrap;
    z-index: 9998;
}

#toast.show {
    opacity: 1;
}

/* =========================================
   RESPONSIVE DESIGN (GLOBAL)
   ========================================= */

/* Tablets & Smaller (max-width: 1024px) */
@media (max-width: 1024px) {
    nav {
        padding: 0 20px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .login-modal {
        width: 90vw;
        height: auto;
        min-height: 520px;
    }
    .login-visual {
        width: 280px;
    }
}

/* Mobile & Small Tablets (max-width: 767px) */
@media (max-width: 767px) {
    nav {
        padding: 0 16px;
        height: 64px;
    }
    
    .logo {
        font-size: 18px;
    }
    .logo img {
        width: 50px;
    }
    
    /* Search Bar on Mobile */
    .search-wrap {
        position: static; /* Let it break out if needed, or hide/iconize it */
        margin: 0 12px;
        display: none; /* Simplest approach: hide inline search, or make it toggleable via JS. We'll hide it for mobile and rely on a dedicated search page or toggle if added later. Assuming it needs to show: let's try to fit it */
    }
    /* Let's try to show a compressed search wrap instead of hiding it */
    @media (max-width: 767px) {
        .search-wrap {
            display: block;
        }
        .search-box {
            height: 36px;
        }
        .search-input {
            font-size: 12px;
            width: 100%;
        }
    }
    /* Wait, on very small screens, nav with logo + search + icons will overflow. Let's make search wrap take the second row or hide entirely. Let's hide it and user can use off-canvas for it, or we just compress it. Let's compress it heavily. */
    .nav-right {
        gap: 4px;
    }
    .icon-btn {
        width: 32px;
        height: 32px;
    }
    .icon-btn svg {
        width: 18px;
        height: 18px;
    }
    .ham-btn {
        width: 32px;
        height: 32px;
    }
    .ham-btn span {
        width: 18px;
    }

    /* Cart Drawer */
    .cart-drawer {
        width: 100vw;
    }
    .cart-item-img {
        width: 60px;
        height: 60px;
    }
    
    /* Wishlist Modal */
    .wishlist-modal {
        width: 100vw;
        height: 100vh;
        max-height: 100vh;
    }
    .wl-grid {
        grid-template-columns: 1fr;
    }
    
    /* Login Modal */
    .login-modal {
        flex-direction: column;
        width: 100vw;
        height: 100vh;
        max-height: 100vh;
        overflow-y: auto;
    }
    .login-visual {
        width: 100%;
        height: 200px;
        padding: 24px;
    }
    .login-form-side {
        padding: 24px;
    }
    
    /* Footer */
    footer {
        padding: 48px 24px 24px;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
    
    /* WhatsApp */
    #wa-float {
        bottom: 20px;
        right: 20px;
    }
    .wa-popup {
        width: 280px;
        bottom: 60px;
    }
}

/* Very Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    /* Hide search text input, show only icon? Or just rely on what we did above */
    .search-input {
        width: 80px; /* Force it small so layout doesn't break */
    }
    .search-input:focus {
        width: 120px;
        position: absolute;
        right: 0;
        background: #FAFAF8;
        z-index: 10;
        height: 100%;
    }
}
