/* ============================================================
   THEME03 - "Fresh & Friendly"
   Color: Green #2e7d32 (primary), Orange #ff6f00 (accent)
   Background: Light green #f0f7f0
   Font: Nunito (rounded, friendly)
   Layout: Right sidebar (opposite of theme01)
   Cards: large border-radius 20px, soft shadows
   Buttons: rounded 30px, orange CTA
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');

/* -- Reset & Base -- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: 'Nunito', 'Be Vietnam Pro', sans-serif;
    font-size: 15px;
    color: #333;
    background: #f0f7f0;
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: #2e7d32; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* -- Variables -- */
:root {
    --primary:     #2e7d32;
    --primary-d:   #1b5e20;
    --accent:      #ff6f00;
    --accent-d:    #e65100;
    --dark:        #2c2c2c;
    --gray:        #666;
    --light-green: #f0f7f0;
    --light-green2:#e8f5e9;
    --border:      #c8e6c9;
    --white:       #fff;
    --radius:      12px;
    --radius-lg:   20px;
    --shadow:      0 2px 12px rgba(46,125,50,.08);
    --shadow-lg:   0 8px 28px rgba(46,125,50,.12);
    --transition:  .25s ease;
}

/* -- Container -- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* -- Section title -- */
.section-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary);
    display: inline-block;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 16px rgba(46,125,50,.10);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 0;
    flex-wrap: wrap;
}

/* Logo - left */
.header-logo { flex-shrink: 0; order: 0; }
.logo-img { height: 48px; width: auto; }
.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
}

/* Hotline - restyle as decorative search-like bar in middle */
.header-hotline {
    flex: 1;
    order: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-green2);
    border-radius: 30px;
    padding: 8px 24px;
    font-size: 14px;
    color: var(--gray);
    max-width: 420px;
    margin: 0 auto;
}
.hotline-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-left: 6px;
}

/* Cart icon - right */
.cart-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    order: 2;
}
.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid var(--white);
    line-height: 1;
}

/* Navigation */
.main-nav { order: 3; width: 100%; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-list {
    display: flex;
    gap: 4px;
    align-items: center;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    border-radius: var(--radius);
    transition: var(--transition);
    white-space: nowrap;
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
    color: var(--primary);
    background: rgba(46,125,50,.08);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 200;
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: block;
    padding: 9px 16px;
    font-size: 14px;
    color: var(--dark);
    border-bottom: 1px solid var(--light-green2);
    transition: var(--transition);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--light-green2); color: var(--primary); }

/* ============================================================
   HERO / BANNER - rounded bottom corners
   ============================================================ */
.hero-banner {
    width: 100%;
    max-height: 480px;
    overflow: hidden;
    position: relative;
    border-radius: 0 0 24px 24px;
}
.hero-banner img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(27,94,32,.55), transparent);
    display: flex;
    align-items: center;
    border-radius: 0 0 24px 24px;
}
.hero-content {
    color: var(--white);
    padding: 0 60px;
    max-width: 560px;
}
.hero-content h1 { font-size: 36px; font-weight: 800; margin-bottom: 12px; line-height: 1.3; }
.hero-content p  { font-size: 16px; margin-bottom: 24px; opacity: .9; }
.btn-hero {
    display: inline-block;
    padding: 12px 32px;
    background: var(--accent);
    color: var(--white);
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(255,111,0,.3);
}
.btn-hero:hover {
    background: var(--accent-d);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,111,0,.4);
}

/* ============================================================
   MAIN CONTENT LAYOUT - right sidebar
   ============================================================ */
.main-content { padding: 40px 0; }

/* Main content LEFT, sidebar RIGHT */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 32px;
    align-items: start;
}

.content-main {}

/* -- Sidebar -- */
.sidebar {}
.sidebar-block {
    background: var(--light-green2);
    border-radius: var(--radius-lg);
    border: none;
    padding: 20px;
    margin-bottom: 24px;
}
.sidebar-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
}
.sidebar-cats li { border-bottom: 1px solid rgba(46,125,50,.1); }
.sidebar-cats li:last-child { border-bottom: none; }
.sidebar-cats li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 4px;
    font-size: 14px;
    color: var(--gray);
    transition: var(--transition);
}
.sidebar-cats li a:hover,
.sidebar-cats li a.active { color: var(--primary); padding-left: 8px; }

/* ============================================================
   PRODUCT CARDS - larger, more rounded, softer shadows
   ============================================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 20px;
}

/* Masonry: first card spans 2 rows on home */
.products-grid .product-card:first-child {
    grid-row: span 2;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: none;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.product-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--light-green);
    border-radius: var(--radius) var(--radius) 0 0;
}
.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.product-card:hover .product-thumb img { transform: scale(1.06); }

/* Discount badge - orange */
.badge-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.product-info { padding: 14px; }

.product-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.product-price { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
/* Green price */
.price-normal  { font-size: 16px; font-weight: 700; color: var(--primary); }
.price-old     { font-size: 13px; color: #999; text-decoration: line-through; }

/* Orange add-to-cart button */
.btn-add-cart {
    display: block;
    width: 100%;
    padding: 9px;
    margin-top: 10px;
    background: var(--accent);
    color: var(--white);
    text-align: center;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(255,111,0,.2);
}
.btn-add-cart:hover {
    background: var(--accent-d);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(255,111,0,.35);
    transform: translateY(-1px);
}

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.product-detail {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.product-gallery {}
.gallery-main {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 12px;
    aspect-ratio: 1 / 1;
    background: var(--light-green);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.gallery-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.gallery-thumb {
    width: 68px;
    height: 68px;
    border: 2px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}
.gallery-thumb:hover,
.gallery-thumb.active { border-color: var(--primary); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-detail-info {}
.product-detail-name { font-size: 24px; font-weight: 800; margin-bottom: 12px; line-height: 1.4; }
.product-detail-sku  { font-size: 13px; color: var(--gray); margin-bottom: 16px; }

.product-detail-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--light-green2);
    border-radius: var(--radius);
}
/* Green price */
.detail-price-normal { font-size: 28px; font-weight: 800; color: var(--primary); }
.detail-price-old    { font-size: 16px; color: #999; text-decoration: line-through; }

.product-stock { font-size: 14px; margin-bottom: 20px; }
.stock-in  { color: var(--primary); font-weight: 700; }
.stock-out { color: #e74c3c; font-weight: 700; }

/* Orange CTA buttons */
.btn-buy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--accent);
    color: var(--white);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 4px 14px rgba(255,111,0,.25);
    font-family: 'Nunito', sans-serif;
}
.btn-buy:hover {
    background: var(--accent-d);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,111,0,.4);
}

/* Tabs */
.product-tabs { margin-top: 32px; }
.tab-nav { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 24px; }
.tab-btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--gray);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
    font-family: 'Nunito', sans-serif;
}
.tab-btn.active, .tab-btn:hover { color: var(--primary); border-bottom-color: var(--primary); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel p, .tab-panel li { line-height: 1.8; font-size: 14px; color: var(--gray); }

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

.post-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: none;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.post-card:hover { box-shadow: var(--shadow-lg); transform: scale(1.02); }

.post-thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--light-green);
}
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.post-card:hover .post-thumb img { transform: scale(1.04); }

.post-info { padding: 16px; }
.post-date { font-size: 12px; color: var(--gray); margin-bottom: 8px; }
.post-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.post-title:hover { color: var(--primary); }
.post-excerpt { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* Post Detail */
.post-detail-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
}
.post-detail-title { font-size: 28px; font-weight: 800; margin-bottom: 12px; line-height: 1.4; }
.post-detail-meta  { font-size: 13px; color: var(--gray); margin-bottom: 24px; }
.post-detail-thumb { margin-bottom: 24px; border-radius: var(--radius); overflow: hidden; }
.post-detail-thumb img { width: 100%; }
.post-detail-content { font-size: 15px; line-height: 1.9; color: #444; }
.post-detail-content h2, .post-detail-content h3 { margin: 24px 0 12px; color: var(--dark); }
.post-detail-content p  { margin-bottom: 16px; }
.post-detail-content img { border-radius: var(--radius); margin: 16px 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}
.contact-info h2 { font-size: 22px; font-weight: 800; margin-bottom: 20px; color: var(--primary); }
.contact-info p  { font-size: 14px; color: var(--gray); margin-bottom: 12px; line-height: 1.7; }
.contact-info strong { color: var(--dark); }

.contact-form h2 { font-size: 22px; font-weight: 800; margin-bottom: 20px; color: var(--primary); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: 'Nunito', sans-serif;
    transition: var(--transition);
    outline: none;
    background: var(--light-green);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); background: var(--white); }
.form-group textarea { min-height: 120px; resize: vertical; }

.btn-submit {
    padding: 12px 32px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Nunito', sans-serif;
    box-shadow: 0 4px 14px rgba(255,111,0,.25);
}
.btn-submit:hover {
    background: var(--accent-d);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255,111,0,.35);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination-wrap { margin-top: 32px; display: flex; justify-content: center; }
.pagination { display: flex; gap: 6px; flex-wrap: wrap; }
.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
    color: var(--gray);
    background: var(--white);
    transition: var(--transition);
}
.pagination li.active a,
.pagination li a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
    font-size: 13px;
    color: var(--gray);
    padding: 12px 0;
    margin-bottom: 16px;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { margin: 0 6px; }

/* ============================================================
   CART
   ============================================================ */
.cart-layout { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.cart-table thead th { background: var(--light-green2); padding: 13px 16px; text-align: left; font-size: 13px; font-weight: 700; color: var(--dark); border-bottom: 2px solid var(--border); }
.cart-table tbody td { padding: 14px 16px; border-bottom: 1px solid #f0f0f0; vertical-align: middle; }
.cart-table tbody tr:last-child td { border-bottom: none; }
.cart-product { display: flex; align-items: center; gap: 12px; }
.cart-thumb { width: 68px; height: 68px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--border); flex-shrink: 0; }
.cart-product-name { font-size: 14px; font-weight: 700; color: #222; display: block; margin-bottom: 3px; }
.cart-product-name:hover { color: var(--primary); }
.cart-sku { font-size: 12px; color: #aaa; }
.cart-price { font-size: 15px; font-weight: 700; color: var(--primary); }
.cart-price-old { font-size: 12px; color: #bbb; text-decoration: line-through; display: block; }
.cart-subtotal { font-size: 15px; font-weight: 700; color: var(--primary); }
.qty-control { display: flex; align-items: center; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; width: fit-content; }
.qty-btn { width: 30px; height: 34px; border: none; background: var(--light-green2); cursor: pointer; font-size: 16px; font-weight: 700; color: var(--dark); }
.qty-btn:hover { background: var(--primary); color: var(--white); }
.qty-input { width: 46px; height: 34px; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); text-align: center; font-size: 14px; font-weight: 600; outline: none; -moz-appearance: textfield; }
.qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.btn-remove { background: none; border: none; cursor: pointer; font-size: 20px; color: #ccc; padding: 4px 8px; border-radius: var(--radius); }
.btn-remove:hover { color: #e74c3c; background: #fff0f0; }
.cart-summary { background: var(--white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); position: sticky; top: 90px; }
.cart-summary-title { font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; color: var(--gray); border-bottom: 1px solid #f5f5f5; }
.summary-total { font-size: 16px; font-weight: 800; color: var(--dark); padding-top: 14px; border-bottom: none !important; border-top: 2px solid var(--border); }
.summary-total span:last-child { font-size: 20px; color: var(--primary); }
.checkout-note { background: var(--light-green2); border: 1px solid var(--border); border-radius: var(--radius); padding: 10px 14px; font-size: 12px; color: var(--gray); margin: 16px 0; line-height: 1.65; }
.btn-checkout { display: block; width: 100%; padding: 15px; background: var(--accent); color: var(--white); border: none; border-radius: 30px; font-size: 16px; font-weight: 700; cursor: pointer; transition: var(--transition); box-shadow: 0 4px 14px rgba(255,111,0,.25); font-family: 'Nunito', sans-serif; }
.btn-checkout:hover:not(:disabled) { background: var(--accent-d); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,111,0,.4); }
.btn-checkout:disabled { opacity: .6; cursor: not-allowed; }

/* ============================================================
   FOOTER - dark green
   ============================================================ */
.site-footer {
    background: #1b5e20;
    color: #c8e6c9;
    margin-top: 60px;
    padding: 48px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}
.footer-col {}
.footer-heading { font-size: 15px; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.site-footer p  { font-size: 13px; line-height: 1.8; margin-bottom: 8px; }
.site-footer a  { color: #a5d6a7; transition: var(--transition); }
.site-footer a:hover { color: #fff; }

.footer-links { display: flex; flex-direction: column; gap: 6px; }
.footer-links a { font-size: 13px; }

.footer-posts { display: flex; flex-direction: column; gap: 12px; }
.footer-posts li { border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 10px; }
.footer-posts a  { font-size: 13px; display: block; margin-bottom: 2px; }
.footer-posts .post-date { font-size: 11px; color: #81c784; }

.footer-icon { margin-right: 6px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 16px 0;
    text-align: center;
    font-size: 13px;
    color: #81c784;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.mt-0 { margin-top: 0 !important; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.text-center { text-align: center; }
.empty-msg { text-align: center; padding: 48px 0; color: var(--gray); font-size: 15px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .content-layout { grid-template-columns: 1fr 200px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Header mobile */
    .header-hotline { display: none; }
    .nav-toggle { display: flex; }
    .main-nav { width: 100%; order: 3; }
    .nav-list {
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 8px 0;
        border-top: 1px solid var(--border);
    }
    .nav-list.open { display: flex; }
    .nav-list > li > a { padding: 10px 16px; border-radius: 0; }
    .dropdown {
        position: static; opacity: 1; visibility: visible;
        transform: none; box-shadow: none; border: none;
        background: var(--light-green2); border-radius: 0;
    }

    /* 1 column - right sidebar moves to bottom */
    .content-layout { grid-template-columns: 1fr; }
    .sidebar { order: 2; }
    .content-main { order: 1; }
    .product-detail-grid { grid-template-columns: 1fr; }
    .contact-wrap { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-content { padding: 0 24px; }
    .hero-content h1 { font-size: 24px; }
    .hero-banner { border-radius: 0 0 16px 16px; }

    /* Cart responsive */
    .cart-layout { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
    .hide-sm { display: none; }

    /* Masonry off on mobile */
    .products-grid .product-card:first-child { grid-row: span 1; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .posts-grid { grid-template-columns: 1fr; }
}
