@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* =====================
   DESIGN TOKENS
===================== */
:root {
    --green:        #1C3A2E;
    --green-light:  #2E5A47;
    --green-hover:  #122618;
    --gold:         #C4A35A;
    --gold-light:   #D4B470;
    --cream:        #FAF8F5;
    --beige:        #F0EBE3;
    --white:        #FFFFFF;
    --text:         #1A1A1A;
    --text-mid:     #5C5753;
    --text-light:   #9A9591;
    --border:       #E8E2DA;
    --shadow:       0 4px 24px rgba(28, 58, 46, 0.08);
    --shadow-lg:    0 8px 40px rgba(28, 58, 46, 0.13);
    --radius:       4px;
    --radius-lg:    10px;
    --transition:   all 0.25s ease;
}

/* =====================
   RESET & BASE
===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.02em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* =====================
   LAYOUT
===================== */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

/* =====================
   HEADER / NAV
===================== */
header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 68px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.logo-sub {
    font-size: 0.62rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mid);
    transition: var(--transition);
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}

.nav-links a:hover {
    color: var(--green);
    border-bottom-color: var(--gold);
}

.nav-cart-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-icon {
    display: block;
    flex-shrink: 0;
}

/* =====================
   BUTTONS
===================== */
.btn {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    padding: 12px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background: var(--green-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(28, 58, 46, 0.25);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
}

.btn-gold:hover {
    background: var(--gold-light);
    box-shadow: 0 4px 16px rgba(196, 163, 90, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--green);
    border: 1.5px solid var(--green);
    padding: 11px 28px;
}

.btn-outline:hover {
    background: var(--green);
    color: var(--white);
}

.btn-hero {
    background: var(--gold);
    color: var(--white);
    padding: 15px 42px;
    font-size: 0.82rem;
}

.btn-hero:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(196, 163, 90, 0.4);
}

.btn.small { padding: 8px 18px; font-size: 0.72rem; }

.btn-secondary {
    background: var(--gold);
    color: var(--white);
}
.btn-secondary:hover {
    background: var(--gold-light);
}

.btn-danger {
    background: #c0392b;
    color: #fff;
    padding: 6px 14px;
    font-size: 0.72rem;
}
.btn-danger:hover { background: #a93226; }

/* =====================
   HERO
===================== */
.hero {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 55%, #3D7A5F 100%);
    color: var(--white);
    padding: 110px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.hero-content {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.6rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    color: var(--white);
}

.hero-content h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-content p {
    font-size: 1rem;
    opacity: 0.82;
    margin-bottom: 36px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-divider {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 20px;
    opacity: 0.6;
}

/* =====================
   FEATURES STRIP
===================== */
.features {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 52px 28px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1240px;
    margin: 0 auto;
    text-align: center;
}

.feature-item .feature-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 14px;
    color: var(--gold);
}

.feature-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* =====================
   FEATURED SECTION
===================== */
.featured-section {
    padding: 72px 28px;
    max-width: 1240px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--green);
}

.section-subtitle {
    font-size: 0.82rem;
    color: var(--text-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.see-all-wrap {
    text-align: center;
    margin-top: 48px;
}

/* =====================
   PRODUCT CARDS
===================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.product-card-img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    background: rgb(227, 233, 229);
    padding: 20px;
    transition: transform 0.4s ease;
}

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

.product-card-body {
    padding: 18px 20px 22px;
}

.category-badge {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(196, 163, 90, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    border: 1px solid rgba(196, 163, 90, 0.25);
}

.product-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-card .desc-short {
    font-size: 0.82rem;
    color: var(--text-mid);
    margin-bottom: 14px;
    line-height: 1.6;
}

.price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--green);
    display: block;
    margin-bottom: 16px;
}

.card-btns {
    display: flex;
    gap: 8px;
}

.card-link { display: block; }
.card-link:hover h3 { color: var(--gold); }

/* =====================
   PAGE HEADER
===================== */
.page-hero {
    background: var(--green);
    color: var(--white);
    padding: 56px 28px;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 0.88rem;
    opacity: 0.7;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* =====================
   FILTER BAR
===================== */
.filter-wrap {
    padding: 28px;
    max-width: 1240px;
    margin: 0 auto;
}

.filter-bar {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
}

.filter-bar input,
.filter-bar select {
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.87rem;
    color: var(--text);
    padding: 6px 4px;
}

.filter-bar input { flex: 1; min-width: 200px; }
.filter-bar select { width: auto; cursor: pointer; color: var(--text-mid); }

.filter-divider {
    width: 1px;
    height: 20px;
    background: var(--border);
}

.product-count {
    font-size: 0.8rem;
    color: var(--text-light);
    padding: 0 28px;
    margin-bottom: 16px;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}

.products-wrap {
    padding: 0 28px 72px;
    max-width: 1240px;
    margin: 0 auto;
}

/* =====================
   PRODUCT DETAIL
===================== */
.product-detail-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 60px 28px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.main-image-wrap {
    background: rgb(227, 233, 229);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
}

.main-image-wrap.zoomed { cursor: zoom-out; }
.main-image-wrap.zoomed img { pointer-events: none; }

#main-product-img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    padding: 32px;
    transition: transform 0.3s ease;
}

.thumbnail-strip {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.thumbnail-item {
    width: 70px;
    height: 70px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    background: var(--beige);
    padding: 4px;
    transition: var(--transition);
}

.thumbnail-item img { width: 100%; height: 100%; object-fit: contain; }
.thumbnail-item.active, .thumbnail-item:hover { border-color: var(--gold); }

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-arrow:hover { background: var(--white); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.nav-arrow.prev { left: 12px; }
.nav-arrow.next { right: 12px; }

.product-detail-info .category-badge { margin-bottom: 14px; }
.product-detail-info h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.product-detail-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 24px;
}

.product-detail-desc {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.quantity-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.quantity-wrap label {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 500;
}

.quantity-wrap input {
    width: 70px;
    padding: 10px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.quantity-wrap input:focus { border-color: var(--green); }

/* =====================
   CART
===================== */
.cart-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 28px;
}

.cart-wrap h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    color: var(--green);
    margin-bottom: 32px;
    font-weight: 400;
}

.cart-table-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 24px;
}

/* =====================
   TABLES
===================== */
table { width: 100%; border-collapse: collapse; }

table th {
    background: var(--green);
    color: var(--white);
    padding: 14px 16px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    text-align: left;
}

table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 0.87rem;
    vertical-align: middle;
    color: var(--text);
}

tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: #FDFCFB; }

/* =====================
   FORMS
===================== */
.form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    max-width: 600px;
    margin: 60px auto;
}

.form-wrap h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--green);
    margin-bottom: 8px;
}

.form-wrap .form-sub {
    font-size: 0.84rem;
    color: var(--text-light);
    margin-bottom: 28px;
}

.form-group { margin-bottom: 18px; }

label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 7px;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="file"],
textarea,
select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: var(--text);
    background: var(--cream);
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--green);
    background: var(--white);
}

textarea { resize: vertical; }

/* =====================
   CHECKOUT
===================== */
.checkout-wrap {
    max-width: 640px;
    margin: 0 auto;
    padding: 60px 28px;
}

.checkout-wrap h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--green);
    margin-bottom: 6px;
}

.checkout-total-line {
    font-size: 0.9rem;
    color: var(--text-mid);
    margin-bottom: 32px;
}

.checkout-total-line strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--green);
}

.checkout-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.thank-you {
    text-align: center;
    padding: 60px 28px;
}

.thank-you h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--green);
    margin-bottom: 16px;
    font-weight: 400;
}

.thank-you p { color: var(--text-mid); margin-bottom: 10px; }
.thank-you .order-id {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

/* =====================
   FOOTER
===================== */
footer {
    background: var(--green);
    color: rgba(255,255,255,0.75);
    padding: 48px 28px 28px;
    margin-top: 72px;
}

.footer-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: start;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 24px;
}

.footer-brand .logo-name { color: var(--white); font-size: 1.4rem; }
.footer-brand .logo-sub { color: var(--gold-light); }
.footer-tagline {
    font-size: 0.8rem;
    margin-top: 10px;
    opacity: 0.6;
    line-height: 1.7;
    max-width: 260px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: right;
}

.footer-links a {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    opacity: 0.45;
    flex-wrap: wrap;
    gap: 8px;
}

/* =====================
   ADMIN PANELS
===================== */
.admin-header {
    background: var(--green);
    padding: 0;
    border-bottom: 3px solid var(--gold);
}

.admin-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 0 28px;
    max-width: 1240px;
    margin: 0 auto;
}

.admin-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.admin-logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
}

.admin-logo-sub {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-top: 2px;
}

.admin-nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
}

.admin-nav-links a {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}

.admin-nav-links a:hover {
    color: var(--white);
    border-bottom-color: var(--gold);
}

.admin-main {
    max-width: 1240px;
    margin: 0 auto;
    padding: 40px 28px 80px;
}

.admin-main h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--green);
    margin-bottom: 28px;
    font-weight: 400;
}

.admin-main h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--green);
    margin-bottom: 20px;
    font-weight: 400;
}

.admin-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 32px;
}

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

.form-row { margin-bottom: 16px; }

.badge {
    background: rgba(196, 163, 90, 0.12);
    color: var(--gold);
    border: 1px solid rgba(196, 163, 90, 0.3);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 32px 0;
}

/* =====================
   LOGIN PAGE
===================== */
.login-page {
    min-height: 100vh;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.login-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.login-card .login-logo { margin-bottom: 8px; }
.login-card .login-logo .logo-name { justify-content: center; font-size: 2rem; }
.login-card .login-logo .logo-sub { text-align: center; }
.login-card .login-divider {
    width: 32px;
    height: 2px;
    background: var(--gold);
    margin: 16px auto 28px;
}

.login-card h2 {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 24px;
}

.login-card .form-group { text-align: left; }

/* =====================
   UTILITIES
===================== */
.mb-20  { margin-bottom: 20px; }
.mt-20  { margin-top: 20px; }
.text-right { text-align: right; }
.text-center { text-align: center; }
.text-muted { color: var(--text-light); font-size: 0.85rem; }

/* =====================
   HAMBURGER BUTTON
===================== */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 200;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
    transition: all 0.25s ease;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.4rem; }
    .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-links { text-align: left; }
    .form-grid-2 { grid-template-columns: 1fr; }
    .filter-bar { flex-direction: column; align-items: stretch; }
    .filter-divider { display: none; }
    .section-header { flex-direction: column; align-items: flex-start; }

    /* Mobile nav */
    .nav-toggle { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--border);
        border-bottom: 3px solid var(--gold);
        flex-direction: column;
        gap: 0;
        padding: 8px 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        z-index: 100;
    }

    .nav-links.open { display: flex; }

    .nav-links li { width: 100%; }

    .nav-links a {
        display: block;
        padding: 14px 28px;
        border-bottom: none;
        font-size: 0.85rem;
        color: var(--text);
    }

    .nav-links a.nav-cart-link {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .nav-links a:hover {
        background: var(--beige);
        color: var(--green);
    }

    header nav {
        position: relative;
        flex-wrap: nowrap;
    }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.9rem; }
    .admin-main { padding: 24px 16px; }
    .container { padding: 0 16px; }
    .cart-wrap, .checkout-wrap, .product-detail-wrap { padding: 32px 16px; }
}
