:root {
    --gold: #d4af37;
    --gold-dark: #9f7d12;
    --black: #050505;
    --surface: #101010;
    --surface-2: #181818;
    --surface-3: #222;
    --text: #f8f8f8;
    --muted: #aaa;
    --danger: #ff4757;
    --success: #25d366;
    --border: rgba(212, 175, 55, 0.2);
    --shadow: 0 20px 55px rgba(0, 0, 0, 0.55);
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 90% 0%, rgba(212, 175, 55, 0.13), transparent 28%),
        linear-gradient(145deg, #050505, #101010 50%, #070707);
    color: var(--text);
    font-family: "Poppins", "Noto Sans Sinhala", sans-serif;
}

body.with-bottom-nav {
    padding-bottom: 86px;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

.container {
    width: min(1160px, 90%);
    margin: 0 auto;
}

.page-main {
    min-height: calc(100vh - 80px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 72px;
    padding: 13px 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 5, 5, 0.82);
    backdrop-filter: blur(16px);
}

.brand {
    text-decoration: none;
    font-size: clamp(17px, 3vw, 23px);
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    white-space: nowrap;
}

.brand span,
.gold {
    color: var(--gold);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.desktop-nav a,
.desktop-nav button {
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: #ddd;
    padding: 9px 13px;
    text-decoration: none;
    font-size: 13px;
    cursor: pointer;
    transition: 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.desktop-nav button:hover {
    border-color: var(--border);
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.icon-btn,
.back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 42px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: white;
    padding: 8px 14px;
    text-decoration: none;
    cursor: pointer;
    transition: 0.25s ease;
}

.icon-btn:hover,
.back-btn:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.cart-count {
    display: inline-grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--gold);
    color: #000;
    padding: 0 6px;
    font-size: 11px;
    font-weight: 800;
}

.mobile-menu-btn {
    display: none;
}

.mobile-menu {
    position: fixed;
    inset: 72px 0 auto 0;
    z-index: 1900;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 16px 5%;
    border-bottom: 1px solid #222;
    background: rgba(5, 5, 5, 0.98);
}

.mobile-menu.open {
    display: grid;
}

.mobile-menu a {
    border: 1px solid #222;
    border-radius: 14px;
    padding: 13px;
    color: #ddd;
    text-align: center;
    text-decoration: none;
}

.hero {
    position: relative;
    min-height: calc(100vh - 72px);
    display: grid;
    place-items: center;
    overflow: hidden;
    text-align: center;
}

.hero-slider,
.hero-slide,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-slide {
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.6s ease, transform 7s linear;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.1);
}

.hero-overlay {
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.82)),
        radial-gradient(circle at center, transparent, rgba(0, 0, 0, 0.72));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(850px, 90%);
}

.eyebrow {
    margin-bottom: 13px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(45px, 11vw, 92px);
    line-height: 0.95;
    letter-spacing: -3px;
    text-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.hero-copy {
    max-width: 650px;
    margin: 20px auto 0;
    color: #ddd;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    transition: 0.25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #050505;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #fff;
    box-shadow: 0 14px 35px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.07);
    color: white;
}

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

.btn-danger {
    border-color: rgba(255, 71, 87, 0.35);
    background: rgba(255, 71, 87, 0.1);
    color: #ff7180;
}

.top-info {
    position: absolute;
    top: 18px;
    left: 5%;
    right: 5%;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    color: #ddd;
    font-size: 12px;
}

#welcome-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #050505;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#welcome-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.reveal-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--gold);
    transition: width 1.4s ease;
}

.reveal-circle.open {
    width: 310vmax;
}

.welcome-content {
    position: relative;
    z-index: 2;
    text-align: center;
    mix-blend-mode: difference;
}

.welcome-content h2 {
    font-size: clamp(38px, 10vw, 85px);
    letter-spacing: 8px;
}

.welcome-content p {
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: 4px;
}

.section {
    padding: 76px 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.section-heading h1,
.section-heading h2 {
    font-size: clamp(27px, 6vw, 45px);
    line-height: 1.15;
}

.section-heading p {
    max-width: 580px;
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.7;
}

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

.category-card {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 30px;
    box-shadow: var(--shadow);
    text-decoration: none;
    transition: 0.35s ease;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 25%, rgba(0, 0, 0, 0.9));
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

.category-card:hover {
    transform: translateY(-7px);
    border-color: var(--gold);
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-content {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    padding: 35px;
}

.category-content h2 {
    font-size: clamp(30px, 6vw, 46px);
}

.category-content p {
    margin: 8px 0 20px;
    color: #ccc;
}

.feature-grid,
.policy-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.feature-card,
.policy-card,
.contact-card,
.content-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 23px;
    background: rgba(17, 17, 17, 0.88);
    padding: 25px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
}

.feature-card i,
.policy-card i,
.contact-card .contact-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 17px;
    border-radius: 18px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    font-size: 23px;
}

.feature-card h3,
.policy-card h3,
.contact-card h3 {
    margin-bottom: 9px;
}

.feature-card p,
.policy-card p,
.contact-card p,
.content-card p,
.content-card li {
    color: #aaa;
    line-height: 1.75;
    font-size: 14px;
}

.page-hero {
    padding: 65px 0 30px;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(32px, 7vw, 52px);
}

.page-hero p {
    max-width: 650px;
    margin: 12px auto 0;
    color: #aaa;
    line-height: 1.7;
}

.shop-toolbar {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    align-items: center;
    margin: 22px 0 28px;
}

.search-box {
    position: relative;
}

.search-box i {
    position: absolute;
    top: 50%;
    left: 17px;
    transform: translateY(-50%);
    color: var(--gold);
}

.search-box input,
.toolbar-select,
.form-control {
    width: 100%;
    min-height: 48px;
    border: 1px solid #303030;
    border-radius: 14px;
    outline: none;
    background: #111;
    color: #fff;
    padding: 12px 15px;
    transition: 0.25s ease;
}

.search-box input {
    padding-left: 46px;
}

.search-box input:focus,
.toolbar-select:focus,
.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #222;
    border-radius: 22px;
    background: #111;
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.38);
}

.product-image-wrap {
    position: relative;
    height: 330px;
    overflow: hidden;
    background: #191919;
    cursor: zoom-in;
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.55s ease;
}

.product-card:hover .product-image-wrap img {
    transform: scale(1.07);
}

.product-badge,
.stock-badge {
    position: absolute;
    top: 11px;
    z-index: 2;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 800;
}

.product-badge {
    left: 11px;
    background: var(--gold);
    color: #050505;
}

.stock-badge {
    right: 11px;
    background: rgba(0, 0, 0, 0.75);
    color: #cfcfcf;
    backdrop-filter: blur(8px);
}

.stock-badge.low {
    color: #ffca5c;
}

.stock-badge.out {
    color: #ff7180;
}

.wishlist-btn {
    position: absolute;
    right: 11px;
    bottom: 11px;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.68);
    color: white;
    cursor: pointer;
}

.wishlist-btn.active {
    background: white;
    color: var(--danger);
}

.product-body {
    padding: 16px;
}

.product-body h3 {
    min-height: 43px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 9px 0 12px;
}

.product-price {
    color: var(--gold);
    font-size: 18px;
    font-weight: 800;
}

.product-code {
    color: #777;
    font-size: 10px;
}

.product-controls {
    display: grid;
    grid-template-columns: 1fr 84px;
    gap: 8px;
    margin-bottom: 10px;
}

.product-controls select,
.product-controls input {
    width: 100%;
    min-height: 42px;
    border: 1px solid #333;
    border-radius: 11px;
    outline: none;
    background: #1e1e1e;
    color: white;
    padding: 9px;
}

.add-to-cart-btn {
    width: 100%;
    min-height: 44px;
    border: 0;
    border-radius: 12px;
    background: var(--gold);
    color: #050505;
    font-weight: 800;
    cursor: pointer;
    transition: 0.25s ease;
}

.add-to-cart-btn:hover:not(:disabled) {
    background: white;
}

.add-to-cart-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 70px 20px;
    color: #777;
    text-align: center;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 4999;
    display: none;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(3px);
}

.cart-overlay.show {
    display: block;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -430px;
    z-index: 5000;
    display: flex;
    flex-direction: column;
    width: min(410px, 93vw);
    height: 100vh;
    border-left: 1px solid var(--gold);
    background: #0b0b0b;
    box-shadow: -18px 0 55px rgba(0, 0, 0, 0.55);
    transition: right 0.35s ease;
}

.cart-drawer.open {
    right: 0;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px;
    border-bottom: 1px solid #222;
}

.cart-header h2 {
    color: var(--gold);
    font-size: 19px;
}

.cart-close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #1d1d1d;
    color: white;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 17px;
}

.cart-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 12px;
    margin-bottom: 12px;
    border: 1px solid #272727;
    border-radius: 15px;
    background: #151515;
    padding: 11px;
}

.cart-item img {
    width: 64px;
    height: 78px;
    border-radius: 10px;
    object-fit: cover;
}

.cart-item h4 {
    font-size: 12px;
    line-height: 1.45;
}

.cart-item p {
    margin-top: 3px;
    color: #999;
    font-size: 10px;
}

.cart-item-price {
    margin-top: 7px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
}

.quantity-control {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 9px;
    border: 1px solid #333;
    border-radius: 999px;
    padding: 4px;
}

.quantity-control button {
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    border: 0;
    border-radius: 50%;
    background: #252525;
    color: white;
    cursor: pointer;
}

.quantity-control span {
    min-width: 18px;
    text-align: center;
    font-size: 11px;
}

.remove-item-btn {
    align-self: start;
    border: 0;
    background: none;
    color: var(--danger);
    cursor: pointer;
}

.cart-footer {
    border-top: 1px solid #222;
    background: #0e0e0e;
    padding: 18px;
}

.cart-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 13px;
}

.cart-total-row strong {
    color: var(--gold);
    font-size: 20px;
}

.cart-footer-actions {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
}

.image-modal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: rgba(0, 0, 0, 0.93);
    backdrop-filter: blur(7px);
}

.image-modal.show {
    display: flex;
}

.image-modal img {
    max-width: min(900px, 92vw);
    max-height: 84vh;
    border: 2px solid var(--gold);
    border-radius: 18px;
    object-fit: contain;
}

.modal-close {
    position: fixed;
    top: 20px;
    right: 22px;
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    border: 1px solid #444;
    border-radius: 50%;
    background: #171717;
    color: white;
    cursor: pointer;
}

.floating-whatsapp,
.back-to-top {
    position: fixed;
    z-index: 1700;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.floating-whatsapp {
    right: 20px;
    bottom: 92px;
    background: var(--success);
    font-size: 26px;
}

.back-to-top {
    right: 20px;
    bottom: 157px;
    visibility: hidden;
    opacity: 0;
    background: #333;
    transition: 0.25s ease;
}

.back-to-top.show {
    visibility: visible;
    opacity: 1;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1800;
    display: none;
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #252525;
    background: rgba(7, 7, 7, 0.96);
    backdrop-filter: blur(15px);
}

.bottom-nav a,
.bottom-nav button {
    display: grid;
    place-items: center;
    gap: 3px;
    min-height: 67px;
    border: 0;
    background: transparent;
    color: #777;
    text-decoration: none;
    font-size: 10px;
    cursor: pointer;
}

.bottom-nav i {
    font-size: 19px;
}

.bottom-nav .active {
    color: var(--gold);
}

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

.form-group {
    display: grid;
    gap: 7px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    color: #ccc;
    font-size: 12px;
    font-weight: 600;
}

textarea.form-control {
    min-height: 105px;
    resize: vertical;
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 24px;
    align-items: start;
    padding: 35px 0 80px;
}

.checkout-card,
.order-summary-card {
    border: 1px solid var(--border);
    border-radius: 26px;
    background: rgba(15, 15, 15, 0.92);
    padding: 25px;
    box-shadow: var(--shadow);
}

.order-summary-card {
    position: sticky;
    top: 92px;
}

.checkout-card h2,
.order-summary-card h2 {
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 20px;
}

.checkout-summary-item {
    display: grid;
    grid-template-columns: 54px 1fr auto;
    gap: 11px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #333;
}

.checkout-summary-item img {
    width: 54px;
    height: 66px;
    border-radius: 9px;
    object-fit: cover;
}

.checkout-summary-item h4 {
    font-size: 11px;
}

.checkout-summary-item p {
    color: #888;
    font-size: 10px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 13px;
    color: #bbb;
    font-size: 13px;
}

.summary-line.total {
    padding-top: 15px;
    border-top: 1px solid #333;
    color: var(--gold);
    font-size: 18px;
    font-weight: 800;
}

.notice {
    margin: 17px 0;
    border-left: 4px solid var(--gold);
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.08);
    padding: 13px 15px;
    color: #bbb;
    font-size: 12px;
    line-height: 1.65;
}

.contact-card {
    text-align: center;
}

.contact-card .contact-icon {
    margin-left: auto;
    margin-right: auto;
}

.contact-action {
    margin-top: 16px;
}

.hours-table,
.size-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 15px;
}

.hours-table th,
.hours-table td,
.size-table th,
.size-table td {
    border-bottom: 1px solid #2a2a2a;
    padding: 13px;
    text-align: left;
    font-size: 13px;
}

.hours-table th,
.size-table th {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.content-card h2,
.content-card h3 {
    margin: 18px 0 8px;
    color: var(--gold);
}

.content-card ul,
.content-card ol {
    padding-left: 20px;
}

.site-footer {
    margin-top: 55px;
    border-top: 1px solid #202020;
    background: #080808;
    padding: 42px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
}

.footer-grid h3,
.footer-grid h4 {
    margin-bottom: 13px;
}

.footer-grid p,
.footer-grid a {
    color: #888;
    font-size: 13px;
    line-height: 1.8;
    text-decoration: none;
}

.footer-links {
    display: grid;
    gap: 5px;
}

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

.footer-bottom {
    margin-top: 28px;
    border-top: 1px solid #1d1d1d;
    padding-top: 18px;
    color: #555;
    text-align: center;
    font-size: 11px;
}

.success-wrap {
    min-height: calc(100vh - 72px);
    display: grid;
    place-items: center;
    padding: 40px 0;
}

.success-card {
    width: min(620px, 90%);
    border: 1px solid var(--border);
    border-radius: 30px;
    background: #101010;
    padding: 42px 25px;
    text-align: center;
    box-shadow: var(--shadow);
}

.success-icon {
    display: grid;
    place-items: center;
    width: 85px;
    height: 85px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.12);
    color: var(--success);
    font-size: 38px;
}

.success-card p {
    margin: 12px auto 24px;
    max-width: 500px;
    color: #aaa;
    line-height: 1.75;
}

.order-number {
    display: inline-block;
    margin: 10px 0;
    border: 1px dashed var(--gold);
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.07);
    padding: 11px 17px;
    color: var(--gold);
    font-weight: 800;
}

@media (max-width: 980px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: inline-flex;
    }

    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .order-summary-card {
        position: static;
    }
}

@media (max-width: 760px) {
    .site-header {
        min-height: 65px;
    }

    .header-actions .hide-mobile,
    .top-info {
        display: none;
    }

    .bottom-nav {
        display: grid;
    }

    .category-grid,
    .feature-grid,
    .policy-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 460px;
    }

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

    .shop-toolbar .search-box {
        grid-column: 1 / -1;
    }

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

    .product-image-wrap {
        height: 270px;
    }

    .product-body {
        padding: 12px;
    }

    .product-controls {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: auto;
    }

    .section {
        padding: 55px 0;
    }
}

@media (max-width: 430px) {
    .brand {
        font-size: 15px;
    }

    .icon-btn,
    .back-btn {
        min-height: 39px;
        padding: 7px 10px;
    }

    .product-grid {
        gap: 9px;
    }

    .product-image-wrap {
        height: 220px;
    }

    .product-body h3 {
        min-height: 52px;
        font-size: 12px;
    }

    .product-price {
        font-size: 15px;
    }

    .category-content {
        padding: 25px;
    }
}
