/* ============================================
   FARMFRESH POULTRY — "FARMHOUSE MARKET" CSS
   (complete structural + visual redesign)
   ============================================ */

:root {
    --primary: #22402c;
    --primary-dark: #142719;
    --primary-light: #4c6f52;
    --accent: #bc4b23;
    --accent-dark: #963a19;
    --gold: #d9a441;
    --danger: #a53232;
    --text: #22201b;
    --text-muted: #6c6558;
    --text-light: #a49a86;
    --bg: #f8f3e9;
    --bg-card: #fffdf8;
    --border: #ddd2ba;
    --shadow-sm: 0 1px 0 rgba(34,32,27,.05);
    --shadow: 6px 6px 0 rgba(34,64,44,.10);
    --shadow-lg: 10px 10px 0 rgba(34,64,44,.14);
    --radius: 3px;
    --radius-sm: 2px;
    --radius-lg: 3px;
    --transition: all .22s ease;
    --font: 'Fraunces', serif;
    --font-body: 'Work Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); min-height: 100vh; line-height: 1.65; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary-light); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4, h5 { font-family: var(--font); font-weight: 600; line-height: 1.18; color: var(--text); letter-spacing: -.01em; }

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-body); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .07em; padding: 15px 28px; border-radius: var(--radius); border: 2px solid transparent; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.btn-primary { background: var(--primary); color: #fdf8ec; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--gold); }
.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--gold); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fdf8ec; }
.btn-danger { background: var(--danger); color: #fff; border-color: var(--danger); }
.btn-danger:hover { background: #862626; }
.btn-sm { padding: 10px 18px; font-size: 11px; }
.btn-lg { padding: 18px 38px; font-size: 14px; }
.btn-block { width: 100%; justify-content: center; }
.btn-primary-sm { background: var(--primary); color: #fdf8ec; padding: 10px 18px; border-radius: var(--radius); font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; font-family: var(--font-body); transition: var(--transition); border: 2px solid var(--primary); }
.btn-primary-sm:hover { background: var(--primary-dark); }
.btn-outline-sm { border: 2px solid var(--primary); color: var(--primary); padding: 8px 16px; border-radius: var(--radius); font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; font-family: var(--font-body); transition: var(--transition); }
.btn-outline-sm:hover { background: var(--primary); color: #fdf8ec; }

/* ============================================ TOPBAR ============================================ */
.topbar { background: var(--primary-dark); color: rgba(253,248,236,.8); font-size: 12.5px; position: relative; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.topbar-left { display: flex; align-items: center; gap: 22px; }
.topbar-left span { display: flex; align-items: center; gap: 7px; }
.topbar-left i { color: var(--gold); font-size: 11px; }
.topbar-right { display: flex; align-items: center; gap: 0; letter-spacing: .06em; text-transform: uppercase; font-size: 10.5px; font-weight: 700; background: var(--accent); color: #fff; height: 40px; padding: 0 22px; margin-right: -24px; }
.topbar-right i { margin-right: 7px; color: var(--gold); }

/* ============================================ NAVBAR ============================================ */
.navbar { position: sticky; top: 0; z-index: 1000; background: var(--bg-card); border-bottom: 3px solid var(--primary); transition: var(--transition); }
.nav-inner { display: flex; align-items: center; gap: 20px; height: 84px; position: relative; }
.nav-logo { display: flex; flex-direction: column; align-items: flex-start; text-decoration: none; margin-right: auto; }
.logo-img { height: 48px; width: auto; object-fit: contain; }
.logo-text { display: flex; align-items: center; gap: 11px; font-family: var(--font); font-size: 24px; font-weight: 600; font-style: italic; color: var(--primary); letter-spacing: -.01em; }
.logo-text i { font-size: 20px; color: var(--accent); font-style: normal; }
.logo-tag { font-family: var(--font-body); font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--accent); margin-top: 2px; padding-left: 31px; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; position: absolute; left: 50%; transform: translateX(-50%); }
.nav-link { font-family: var(--font-body); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--text); padding: 10px 18px; border-radius: 0; transition: var(--transition); position: relative; }
.nav-link::after { content: ''; position: absolute; left: 18px; right: 18px; bottom: 4px; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: var(--transition); }
.nav-link:hover, .nav-link.active-link { color: var(--accent); }
.nav-link:hover::after, .nav-link.active-link::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.cart-btn { position: relative; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 2px solid var(--primary); color: var(--primary); font-size: 16px; transition: var(--transition); }
.cart-btn:hover { background: var(--primary); color: #fdf8ec; }
.cart-badge { position: absolute; top: -8px; right: -8px; background: var(--accent); color: #fff; width: 20px; height: 20px; border-radius: 50%; font-size: 10.5px; font-weight: 700; display: flex; align-items: center; justify-content: center; font-family: var(--font-body); border: 2px solid var(--bg-card); }
.user-dropdown { position: relative; }
.user-btn { display: flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 600; font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--primary); background: transparent; border: 2px solid var(--primary); cursor: pointer; padding: 10px 16px; border-radius: 0; transition: var(--transition); }
.user-btn:hover { background: var(--primary); color: #fdf8ec; }
.user-btn i:first-child { font-size: 16px; }
.user-menu { position: absolute; top: calc(100% + 10px); right: 0; background: var(--bg-card); border: 2px solid var(--primary); border-radius: 0; box-shadow: 5px 5px 0 rgba(34,64,44,.15); min-width: 190px; overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: var(--transition); z-index: 100; }
.user-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.user-menu a { display: flex; align-items: center; gap: 10px; padding: 14px 18px; font-size: 13px; font-family: var(--font-body); font-weight: 600; color: var(--text); border-bottom: 1px solid var(--border); transition: var(--transition); }
.user-menu a:last-child { border-bottom: none; }
.user-menu a:hover { background: var(--bg); color: var(--accent); }
.user-menu .logout-link:hover { background: #f5e6e0; color: var(--danger); }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 7px; width: 42px; height: 42px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--primary); transition: var(--transition); transform-origin: center; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-right { display: none; align-items: center; gap: 8px; margin-left: auto; }
.mobile-menu { display: none; flex-direction: column; background: var(--bg-card); border-top: 2px solid var(--primary); overflow: hidden; max-height: 0; transition: max-height .35s ease, padding .25s ease; padding: 0 24px; }
.mobile-menu.open { display: flex; max-height: 520px; padding: 18px 24px 30px; }
.mobile-nav-links { list-style: none; margin-bottom: 18px; }
.mobile-nav-links li a { display: flex; align-items: center; gap: 12px; padding: 14px 4px; font-family: var(--font-body); font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--text); border-bottom: 1px solid var(--border); transition: var(--transition); }
.mobile-nav-links li:last-child a { border-bottom: none; }
.mobile-nav-links li a:hover { color: var(--accent); padding-left: 10px; }
.mobile-nav-links li a i { width: 20px; color: var(--accent); font-size: 15px; }
.mobile-auth { display: flex; gap: 10px; padding-top: 10px; border-top: 1px solid var(--border); }
.mobile-btn { flex: 1; justify-content: center; text-align: center; }

/* ============================================ FLASH ============================================ */
.flash-message { position: fixed; top: 92px; right: 20px; z-index: 9999; display: flex; align-items: center; gap: 12px; padding: 16px 22px; border-radius: var(--radius); border-left: 4px solid; font-family: var(--font-body); font-weight: 600; font-size: 14px; max-width: 400px; background: var(--bg-card); box-shadow: var(--shadow-lg); animation: slideIn .4s ease; }
.flash-success { border-color: var(--primary); color: var(--primary); }
.flash-error { border-color: var(--danger); color: var(--danger); }
.flash-info { border-color: var(--gold); color: #7a5c14; }
.flash-close { background: none; border: none; cursor: pointer; font-size: 20px; line-height: 1; margin-left: auto; opacity: .5; color: inherit; }
.flash-close:hover { opacity: 1; }
@keyframes slideIn { from { opacity: 0; transform: translateX(30px);} to { opacity: 1; transform: translateX(0);} }

/* ============================================ HERO SLIDER (split-screen) ============================================ */
.hero-slider { position: relative; height: 600px; overflow: hidden; border-bottom: 3px solid var(--primary); }
.swiper-slide-hero { position: relative; height: 600px; display: flex; flex-direction: row-reverse; }
.slide-media { position: relative; width: 56%; height: 100%; flex-shrink: 0; }
.slide-media img, .slide-media video { width: 100%; height: 100%; object-fit: cover; }
.slide-overlay { display: none; }
.slide-overlay-default { position: relative; width: 56%; height: 100%; flex-shrink: 0; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.slide-content { position: relative; top: auto; left: auto; transform: none; width: 44%; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 0 60px; z-index: 5; background: var(--primary-dark); }
.slide-tag { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--gold); font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 0; margin-bottom: 22px; border-bottom: 2px solid var(--gold); padding-bottom: 10px; width: fit-content; }
.slide-title { font-family: var(--font); font-style: italic; font-size: clamp(30px, 3.6vw, 50px); font-weight: 600; color: #fdf8ec; line-height: 1.1; max-width: 480px; margin-bottom: 22px; }
.slide-subtitle { font-size: clamp(14.5px, 1.4vw, 16px); color: rgba(253,248,236,.75); max-width: 420px; margin-bottom: 34px; line-height: 1.7; }
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.swiper-pagination { bottom: 26px !important; left: 22% !important; width: auto !important; }
.swiper-pagination-bullet { width: 8px; height: 8px; background: rgba(253,248,236,.5) !important; border-radius: 0 !important; opacity: 1 !important; transition: var(--transition); }
.swiper-pagination-bullet-active { background: var(--gold) !important; width: 26px !important; }
.swiper-button-next, .swiper-button-prev { color: var(--primary) !important; background: #fdf8ec; width: 48px !important; height: 48px !important; border-radius: 0; border: 2px solid var(--primary); transition: var(--transition); }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 16px !important; }
.swiper-button-next:hover, .swiper-button-prev:hover { background: var(--gold); border-color: var(--gold); }
.swiper-button-prev { left: 20px !important; }

/* ============================================ SECTIONS ============================================ */
.section { padding: 96px 0; }
.section-alt { background: #f1e9d8; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-tag { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--accent); font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 0 0 8px; margin-bottom: 14px; border-bottom: 2px solid var(--accent); }
.section-heading { font-family: var(--font); font-style: italic; font-size: clamp(28px, 3.6vw, 46px); font-weight: 600; color: var(--text); margin-bottom: 16px; }
.section-subheading { font-size: 16px; color: var(--text-muted); max-width: 560px; margin: 0 auto 48px; }
.section-header { text-align: center; }
.section-header-left { text-align: left; margin-bottom: 44px; }
.section-header-left .section-subheading { margin-left: 0; }

/* ============================================ PRODUCT CARDS (list style) ============================================ */
.products-grid { display: flex; flex-direction: column; gap: 18px; }
.product-card { background: var(--bg-card); border-radius: 0; overflow: hidden; box-shadow: none; border: 2px solid var(--border); border-left: 5px solid var(--primary); transition: var(--transition); position: relative; display: flex; flex-direction: row; align-items: stretch; }
.product-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.product-card-img { position: relative; overflow: hidden; width: 190px; min-width: 190px; height: auto; background: #ece3cf; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-img .no-image { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 52px; color: var(--primary-light); background: #ece3cf; }
.product-badge { position: absolute; top: 12px; left: 0; background: var(--accent); color: #fff; font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: .04em; padding: 5px 12px; }
.product-badge.featured-badge { background: var(--gold); color: var(--primary-dark); left: auto; right: 0; }
.product-card-body { padding: 20px 24px; flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.product-category { font-family: var(--font-body); font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.product-name { font-family: var(--font); font-style: italic; font-size: 20px; font-weight: 600; color: var(--text); margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-short-desc { font-size: 13.5px; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 14px; max-width: 460px; }
.product-price-row { display: flex; align-items: center; gap: 10px; }
.product-price { font-family: var(--font); font-size: 22px; font-weight: 600; color: var(--primary); }
.product-old-price { font-size: 14px; color: var(--text-light); text-decoration: line-through; }
.product-unit { font-size: 11px; color: var(--text-muted); margin-left: auto; background: transparent; border: 1px solid var(--border); padding: 4px 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.product-card-footer { padding: 20px 24px 20px 0; display: flex; flex-direction: column; justify-content: center; gap: 10px; min-width: 190px; }
.add-to-cart-btn { width: 100%; padding: 13px 16px; background: var(--primary); color: #fdf8ec; border: 2px solid var(--primary); cursor: pointer; font-family: var(--font-body); font-weight: 600; font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em; display: flex; align-items: center; justify-content: center; gap: 8px; transition: var(--transition); }
.add-to-cart-btn:hover { background: var(--accent); border-color: var(--accent); }
.view-detail-link { display: block; text-align: center; font-family: var(--font-body); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); transition: var(--transition); }
.view-detail-link:hover { color: var(--accent); }

/* ============================================ FEATURES ============================================ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; border: 2px solid var(--primary); }
.feature-card { background: var(--bg-card); padding: 40px 26px; text-align: left; border: none; border-right: 2px solid var(--primary); box-shadow: none; transition: var(--transition); }
.feature-card:last-child { border-right: none; }
.feature-card:hover { background: var(--primary); }
.feature-icon { width: 54px; height: 54px; border-radius: 0; background: transparent; display: flex; align-items: center; justify-content: center; margin: 0 0 18px; font-size: 28px; color: var(--accent); transition: var(--transition); }
.feature-card:hover .feature-icon { color: var(--gold); }
.feature-card h3 { font-family: var(--font); font-style: italic; font-size: 19px; font-weight: 600; margin-bottom: 10px; transition: var(--transition); }
.feature-card:hover h3 { color: #fdf8ec; }
.feature-card p { font-size: 13.5px; color: var(--text-muted); transition: var(--transition); }
.feature-card:hover p { color: rgba(253,248,236,.75); }

/* ============================================ ABOUT ============================================ */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 0; align-items: stretch; border: 2px solid var(--primary); }
.about-img-wrap { position: relative; }
.about-img-main { width: 100%; height: 100%; border-radius: 0; aspect-ratio: auto; object-fit: cover; box-shadow: none; }
.about-img-badge { position: absolute; bottom: 0; right: 0; background: var(--accent); color: #fff; border-radius: 0; padding: 22px 28px; text-align: left; box-shadow: none; font-family: var(--font); }
.about-img-badge .number { font-size: 38px; font-weight: 600; line-height: 1; font-style: italic; }
.about-img-badge .label { font-size: 12px; opacity: .9; text-transform: uppercase; letter-spacing: .05em; }
.about-content { padding: 50px 50px 50px 44px; background: var(--bg-card); }
.about-content h2 { font-style: italic; font-size: clamp(26px, 3vw, 38px); margin-bottom: 20px; }
.about-content p { color: var(--text-muted); margin-bottom: 20px; font-size: 15.5px; }
.about-stats { display: flex; gap: 36px; margin: 30px 0; padding-top: 26px; border-top: 2px solid var(--border); }
.stat { text-align: left; }
.stat .num { font-family: var(--font); font-style: italic; font-size: 30px; font-weight: 600; color: var(--accent); }
.stat .lbl { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; }

/* ============================================ CTA ============================================ */
.cta-section { background: var(--primary-dark); padding: 90px 0; text-align: left; position: relative; overflow: hidden; border-radius: 0; margin: 0; max-width: none; }
.cta-section::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 8px; background: var(--gold); }
.cta-section .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 28px; }
.cta-section h2 { font-family: var(--font); font-style: italic; font-size: clamp(26px, 3.4vw, 40px); font-weight: 600; color: #fdf8ec; margin-bottom: 10px; position: relative; }
.cta-section p { color: rgba(253,248,236,.7); font-size: 16px; margin-bottom: 0; position: relative; }
.cta-section .btn { position: relative; }

/* ============================================ PRODUCT DETAIL ============================================ */
.product-detail { padding: 60px 0; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: start; border: 2px solid var(--primary); }
.product-gallery-main { border-radius: 0; overflow: hidden; aspect-ratio: 1; background: #ece3cf; box-shadow: none; border-right: 2px solid var(--primary); }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbs { display: flex; gap: 10px; margin-top: 0; padding: 16px; flex-wrap: wrap; border-right: 2px solid var(--primary); border-top: 1px solid var(--border); }
.thumb { width: 66px; height: 66px; border-radius: 0; overflow: hidden; cursor: pointer; border: 2px solid var(--border); transition: var(--transition); }
.thumb:hover, .thumb.active { border-color: var(--accent); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info { padding: 44px 44px 44px 40px; }
.product-info h1 { font-style: italic; font-size: clamp(24px, 2.6vw, 34px); margin-bottom: 8px; }
.product-info .category-link { font-size: 12px; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.price-block { display: flex; align-items: baseline; gap: 14px; margin: 22px 0; padding-bottom: 22px; border-bottom: 2px solid var(--border); }
.price-main { font-family: var(--font); font-style: italic; font-size: 34px; font-weight: 600; color: var(--primary); }
.price-old { font-size: 18px; color: var(--text-light); text-decoration: line-through; }
.price-save { font-family: var(--font-body); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: #fff; background: var(--accent); padding: 5px 12px; }
.product-meta { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.meta-row { display: flex; align-items: center; gap: 10px; font-size: 14.5px; }
.meta-label { font-weight: 700; color: var(--text); min-width: 90px; text-transform: uppercase; font-size: 12px; letter-spacing: .04em; }
.meta-value { color: var(--text-muted); }
.stock-in { color: var(--primary); font-weight: 700; }
.stock-out { color: var(--danger); font-weight: 700; }
.qty-selector { display: flex; align-items: center; gap: 0; margin-bottom: 24px; border: 2px solid var(--primary); width: fit-content; }
.qty-btn { width: 42px; height: 44px; display: flex; align-items: center; justify-content: center; background: transparent; border: none; cursor: pointer; font-size: 18px; color: var(--primary); transition: var(--transition); }
.qty-btn:hover { background: var(--primary); color: #fdf8ec; }
.qty-input { width: 56px; height: 44px; text-align: center; border: none; border-left: 2px solid var(--primary); border-right: 2px solid var(--primary); background: transparent; font-family: var(--font); font-size: 16px; font-weight: 600; outline: none; }
.product-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.product-description { margin-top: 40px; }
.product-description h3 { font-style: italic; font-size: 20px; margin-bottom: 16px; }
.product-description p, .product-description ul { color: var(--text-muted); font-size: 15px; }
.product-description ul { padding-left: 20px; margin-top: 10px; }
.product-description li { margin-bottom: 6px; }

/* ============================================ CART ============================================ */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 0; align-items: start; border: 2px solid var(--primary); }
.cart-layout > div:first-child { border-right: 2px solid var(--primary); padding: 8px; }
.cart-table { width: 100%; border-collapse: collapse; border-spacing: 0; }
.cart-table th { font-family: var(--font-body); font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; padding: 14px 16px; text-align: left; border-bottom: 2px solid var(--border); }
.cart-table td { padding: 18px 16px; background: transparent; vertical-align: middle; border-bottom: 1px solid var(--border); }
.cart-table td:first-child, .cart-table td:last-child { border-radius: 0; }
.cart-product { display: flex; align-items: center; gap: 16px; }
.cart-product-img { width: 66px; height: 66px; border-radius: 0; overflow: hidden; background: #ece3cf; flex-shrink: 0; border: 1px solid var(--border); }
.cart-product-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-product-name { font-family: var(--font); font-style: italic; font-weight: 600; font-size: 15.5px; }
.cart-product-unit { font-size: 12px; color: var(--text-muted); }
.cart-remove { background: none; border: none; cursor: pointer; color: var(--text-muted); font-size: 16px; transition: var(--transition); }
.cart-remove:hover { color: var(--danger); }
.order-summary-card { background: var(--primary-dark); border-radius: 0; border: none; padding: 32px; box-shadow: none; position: sticky; top: 96px; color: #fdf8ec; }
.order-summary-card h3 { font-family: var(--font); font-style: italic; font-size: 20px; font-weight: 600; margin-bottom: 24px; color: #fdf8ec; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(253,248,236,.15); font-size: 14.5px; color: rgba(253,248,236,.8); }
.summary-row:last-child { border-bottom: none; }
.summary-total { font-family: var(--font); font-style: italic; font-size: 21px; font-weight: 600; color: var(--gold); }
.empty-cart { text-align: center; padding: 84px 20px; background: var(--bg-card); border-radius: 0; border: 2px solid var(--border); }
.empty-cart i { font-size: 56px; color: var(--text-light); margin-bottom: 20px; }
.empty-cart h3 { font-style: italic; font-size: 22px; margin-bottom: 10px; }
.empty-cart p { color: var(--text-muted); margin-bottom: 28px; }

/* ============================================ FORMS / AUTH (split screen) ============================================ */
.auth-page { min-height: calc(100vh - 84px); display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; justify-content: center; background: var(--bg); padding: 0; }
.auth-page::before { content: '\f7e2'; font-family: 'Font Awesome 6 Free'; font-weight: 900; background: var(--primary-dark); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 120px; opacity: .9; }
.auth-card { background: var(--bg-card); border-radius: 0; padding: 60px 64px; width: 100%; max-width: none; box-shadow: none; border: none; display: flex; flex-direction: column; justify-content: center; }
.auth-header { text-align: left; margin-bottom: 36px; }
.auth-icon { display: none; }
.auth-header h1 { font-style: italic; font-size: 32px; margin-bottom: 8px; }
.auth-header p { color: var(--text-muted); font-size: 14.5px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-body); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--text); margin-bottom: 9px; }
.form-group label i { color: var(--accent); margin-right: 6px; }
.form-input { width: 100%; padding: 14px 16px; border: 2px solid var(--border); border-radius: 0; font-size: 15px; color: var(--text); transition: var(--transition); background: var(--bg); outline: none; }
.form-input:focus { border-color: var(--primary); background: #fff; }
.form-input.error { border-color: var(--danger); }
.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 6px; }
.form-error { font-size: 13px; color: var(--danger); margin-top: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.auth-footer { text-align: left; margin-top: 24px; font-size: 13.5px; color: var(--text-muted); }
.auth-footer a { color: var(--accent); font-weight: 700; }
.auth-footer a:hover { text-decoration: underline; }
.divider { display: flex; align-items: center; gap: 12px; margin: 24px 0; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.divider span { font-size: 13px; color: var(--text-muted); }

/* ============================================ CHECKOUT ============================================ */
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 0; border: 2px solid var(--primary); }
.checkout-form-card { background: var(--bg-card); border-radius: 0; border: none; border-right: 2px solid var(--primary); padding: 40px; box-shadow: none; }
.checkout-form-card h2 { font-style: italic; font-size: 22px; margin-bottom: 28px; display: flex; align-items: center; gap: 10px; }
.checkout-form-card h2 i { color: var(--accent); }

/* ============================================ ORDER DETAIL ============================================ */
.order-detail-card { background: var(--bg-card); border-radius: 0; border: 2px solid var(--primary); overflow: hidden; box-shadow: none; }
.order-header { background: var(--primary-dark); padding: 30px 38px; color: #fdf8ec; }
.order-header h2 { font-size: 22px; font-family: var(--font); font-style: italic; margin-bottom: 4px; }
.order-header p { opacity: .75; font-size: 14px; }
.order-body { padding: 38px; }
.order-status-pill { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 7px 18px; border-radius: 0; margin-bottom: 28px; border: 2px solid; }
.status-pending { background: transparent; color: #8a5a00; border-color: #8a5a00; }
.status-processing { background: transparent; color: #2440a8; border-color: #2440a8; }
.status-shipped { background: transparent; color: var(--primary); border-color: var(--primary); }
.status-delivered { background: var(--primary); color: #fdf8ec; border-color: var(--primary); }
.status-cancelled { background: transparent; color: var(--danger); border-color: var(--danger); }
.order-items-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.order-items-table th { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); font-weight: 700; padding: 12px 16px; border-bottom: 2px solid var(--border); text-align: left; }
.order-items-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 14.5px; }
.order-totals { background: var(--bg); border-radius: 0; border: 1px solid var(--border); padding: 22px; }
.totals-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14.5px; }
.totals-final { font-family: var(--font); font-style: italic; font-size: 21px; font-weight: 600; color: var(--primary); border-top: 2px solid var(--border); padding-top: 14px; margin-top: 6px; }

/* ============================================ ORDER LIST ============================================ */
.orders-table { width: 100%; border-collapse: collapse; }
.orders-table th { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; padding: 14px 16px; border-bottom: 2px solid var(--border); text-align: left; }
.orders-table td { padding: 16px; border-bottom: 1px solid var(--border); font-size: 14.5px; }
.orders-table tr:hover td { background: var(--bg); }

/* ============================================ PRODUCTS LISTING ============================================ */
.products-page { padding: 56px 0; }
.products-layout { display: grid; grid-template-columns: 250px 1fr; gap: 0; border-top: 2px solid var(--primary); }
.sidebar-card { background: transparent; border-radius: 0; border: none; border-right: 2px solid var(--primary); padding: 32px 28px 32px 0; position: sticky; top: 96px; box-shadow: none; }
.sidebar-title { font-family: var(--font); font-style: italic; font-size: 18px; font-weight: 600; margin-bottom: 18px; }
.cat-filter-list { list-style: none; }
.cat-filter-list li a { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-radius: 0; border-bottom: 1px solid var(--border); font-size: 13.5px; font-weight: 600; color: var(--text); transition: var(--transition); }
.cat-filter-list li a:hover, .cat-filter-list li a.active { color: var(--accent); padding-left: 6px; }
.cat-filter-list .count { font-size: 11px; background: transparent; color: var(--text-muted); padding: 2px 0; border-radius: 0; }
.products-layout > div:last-child { padding: 32px 0 32px 40px; }

/* ============================================ PAGINATION ============================================ */
.pagination-nav { margin-top: 48px; }
.pagination { display: flex; gap: 0; justify-content: center; flex-wrap: wrap; border: 2px solid var(--primary); width: fit-content; margin: 0 auto; }
.pagination li a, .pagination li.active a { display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 0; font-family: var(--font-body); font-weight: 700; font-size: 14px; background: transparent; border-right: 1px solid var(--border); color: var(--text); transition: var(--transition); }
.pagination li:last-child a { border-right: none; }
.pagination li a:hover { background: var(--primary); color: #fdf8ec; }
.pagination li.active a { background: var(--accent); color: #fff; }

/* ============================================ PAGE HERO ============================================ */
.page-hero { background: var(--primary-dark); padding: 70px 0; text-align: left; position: relative; overflow: hidden; border-radius: 0; border-bottom: 8px solid var(--gold); }
.page-hero .container { position: relative; }
.page-hero h1 { color: #fdf8ec; font-style: italic; font-size: clamp(30px, 4vw, 48px); margin-bottom: 10px; }
.page-hero p { color: rgba(253,248,236,.7); font-size: 16px; }
.breadcrumb { display: flex; align-items: center; justify-content: flex-start; gap: 8px; font-size: 12.5px; color: rgba(253,248,236,.6); margin-top: 14px; text-transform: uppercase; letter-spacing: .04em; }
.breadcrumb a { color: rgba(253,248,236,.8); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(253,248,236,.35); }

/* ============================================ ABOUT PAGE (unique story layout) ============================================ */
.story-banner { position: relative; height: 380px; overflow: hidden; }
.story-banner img { width: 100%; height: 100%; object-fit: cover; }
.story-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, var(--primary-dark) 0%, rgba(20,39,25,.35) 55%, rgba(20,39,25,.15) 100%); }
.story-banner-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 0; z-index: 2; }
.story-banner-caption span { display: inline-block; color: var(--gold); font-family: var(--font-body); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 10px; }
.story-banner-caption h1 { color: #fdf8ec; font-style: italic; font-size: clamp(30px, 4.4vw, 54px); max-width: 640px; }
.story-section { padding: 70px 0; }
.story-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; align-items: start; }
.story-copy p:first-of-type::first-letter { font-family: var(--font); font-style: italic; font-size: 62px; font-weight: 600; color: var(--accent); float: left; line-height: .75; margin: 8px 10px 0 0; }
.story-copy p { color: var(--text-muted); font-size: 16px; margin-bottom: 18px; line-height: 1.85; }
.story-quote-card { background: var(--primary-dark); color: #fdf8ec; padding: 38px 34px; border-left: 6px solid var(--gold); position: sticky; top: 110px; }
.story-quote-card i.fa-quote-left { color: var(--gold); font-size: 26px; margin-bottom: 16px; display: block; }
.story-quote-card p { font-family: var(--font); font-style: italic; font-size: 19px; line-height: 1.55; margin-bottom: 20px; }
.story-quote-card .quote-author { font-family: var(--font-body); font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gold); }
.story-quote-card .quote-role { font-size: 12px; color: rgba(253,248,236,.55); margin-top: 3px; }

.stats-ribbon { background: var(--primary); padding: 0; }
.stats-ribbon-inner { display: flex; }
.stats-ribbon-item { flex: 1; text-align: center; padding: 44px 20px; border-right: 1px solid rgba(253,248,236,.18); }
.stats-ribbon-item:last-child { border-right: none; }
.stats-ribbon-item .num { font-family: var(--font); font-style: italic; font-size: 42px; font-weight: 600; color: #fdf8ec; line-height: 1; }
.stats-ribbon-item .lbl { font-size: 12px; color: rgba(253,248,236,.65); text-transform: uppercase; letter-spacing: .06em; margin-top: 8px; }

.value-list { display: flex; flex-direction: column; }
.value-list-item { display: grid; grid-template-columns: 90px 1fr; gap: 24px; padding: 34px 0; border-top: 1px solid var(--border); align-items: flex-start; }
.value-list-item:last-child { border-bottom: 1px solid var(--border); }
.value-list-item .value-index { font-family: var(--font); font-style: italic; font-size: 36px; font-weight: 600; color: var(--accent); }
.value-list-item h3 { font-style: italic; font-size: 19px; margin-bottom: 8px; }
.value-list-item p { color: var(--text-muted); font-size: 14.5px; max-width: 640px; }

.visit-band { background: var(--bg-card); border: 2px solid var(--primary); display: grid; grid-template-columns: 1fr 1fr; }
.visit-band-text { padding: 46px; }
.visit-band-text span.section-tag { margin-bottom: 14px; }
.visit-band-text h3 { font-style: italic; font-size: 26px; margin-bottom: 14px; }
.visit-band-text p { color: var(--text-muted); font-size: 15px; margin-bottom: 22px; line-height: 1.75; }
.visit-band-map { background: repeating-linear-gradient(135deg, #ece3cf, #ece3cf 12px, #e2d7bc 12px, #e2d7bc 24px); position: relative; min-height: 260px; display: flex; align-items: center; justify-content: center; border-left: 2px solid var(--primary); }
.visit-band-map i { font-size: 40px; color: var(--accent); background: var(--bg-card); width: 74px; height: 74px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid var(--primary); }

/* ============================================ CONTACT PAGE (unique strip layout) ============================================ */
.info-strip { display: grid; grid-template-columns: repeat(4, 1fr); border: 2px solid var(--primary); margin-bottom: 56px; }
.info-strip-item { padding: 30px 26px; border-right: 1px solid var(--border); }
.info-strip-item:last-child { border-right: none; }
.info-strip-item i { font-size: 22px; color: var(--accent); margin-bottom: 14px; display: block; }
.info-strip-item strong { display: block; font-family: var(--font); font-style: italic; font-size: 16px; margin-bottom: 6px; }
.info-strip-item span { color: var(--text-muted); font-size: 13.5px; line-height: 1.6; }

/* ============================================ TEXT PAGES ============================================ */
.text-page { padding: 76px 0; }
.text-page-inner { max-width: 800px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 2px solid var(--primary); }
.contact-info { padding: 44px; }
.contact-info h3 { font-style: italic; font-size: 24px; margin-bottom: 20px; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 0; background: transparent; border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center; font-size: 17px; color: var(--accent); }
.contact-form-card { background: var(--primary-dark); border-radius: 0; border: none; border-left: 2px solid var(--primary); padding: 44px; box-shadow: none; }
.contact-form-card h3 { font-style: italic; font-size: 22px; margin-bottom: 28px; color: #fdf8ec; }
.contact-form-card .form-group label { color: rgba(253,248,236,.85); }
.contact-form-card .form-input { background: rgba(253,248,236,.06); border-color: rgba(253,248,236,.2); color: #fdf8ec; }
.contact-form-card .form-input:focus { border-color: var(--gold); background: rgba(253,248,236,.1); }
.policy-content h2 { font-style: italic; font-size: 26px; margin: 36px 0 14px; color: var(--text); }
.policy-content h3 { font-size: 19px; margin: 24px 0 12px; color: var(--text); }
.policy-content p { color: var(--text-muted); margin-bottom: 16px; font-size: 15px; }
.policy-content ul { color: var(--text-muted); padding-left: 24px; margin-bottom: 16px; }
.policy-content li { margin-bottom: 8px; font-size: 15px; }

/* ============================================ FOOTER ============================================ */
.footer { background: var(--primary-dark); color: rgba(253,248,236,.8); margin-top: auto; border-radius: 0; border-top: none; }
.footer-marquee { background: var(--gold); color: var(--primary-dark); overflow: hidden; white-space: nowrap; border-bottom: 3px solid var(--primary-dark); }
.footer-marquee-track { display: inline-flex; align-items: center; gap: 0; animation: footerMarquee 26s linear infinite; padding: 11px 0; }
.footer-marquee-track span { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font); font-style: italic; font-weight: 600; font-size: 14.5px; text-transform: uppercase; letter-spacing: .04em; padding: 0 28px; }
.footer-marquee-track span i { font-size: 8px; }
@keyframes footerMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.footer-newsletter { border-bottom: 1px solid rgba(253,248,236,.15); }
.footer-newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 34px 0; flex-wrap: wrap; }
.footer-newsletter h3 { font-family: var(--font); font-style: italic; color: #fdf8ec; font-size: 22px; margin-bottom: 4px; }
.footer-newsletter p { font-size: 13.5px; color: rgba(253,248,236,.6); }
.footer-newsletter-form { display: flex; gap: 0; border: 2px solid rgba(253,248,236,.3); }
.footer-newsletter-form input { background: transparent; border: none; padding: 13px 16px; color: #fdf8ec; font-size: 13.5px; width: 240px; outline: none; }
.footer-newsletter-form button { background: var(--accent); border: none; color: #fff; padding: 0 22px; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; cursor: pointer; transition: var(--transition); }
.footer-newsletter-form button:hover { background: var(--accent-dark); }
.footer-top { padding: 56px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr 1.3fr; gap: 0; }
.footer-col { padding: 0 32px; border-left: 1px solid rgba(253,248,236,.14); }
.footer-col:first-child { padding-left: 0; border-left: none; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font); font-style: italic; font-size: 23px; font-weight: 600; color: #fdf8ec; margin-bottom: 16px; }
.footer-logo i { color: var(--gold); }
.footer-desc { font-size: 13.5px; color: rgba(253,248,236,.55); line-height: 1.75; margin-bottom: 22px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(253,248,236,.25); background: transparent; color: rgba(253,248,236,.8); display: flex; align-items: center; justify-content: center; font-size: 13px; transition: var(--transition); }
.footer-social a:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-3px); }
.footer-heading { font-family: var(--font); font-style: italic; font-size: 15px; font-weight: 600; color: #fdf8ec; margin-bottom: 18px; text-transform: none; letter-spacing: 0; }
.footer-links li { margin-bottom: 11px; position: relative; }
.footer-links li a { font-size: 13.5px; color: rgba(253,248,236,.55); transition: var(--transition); padding-left: 14px; position: relative; display: inline-block; }
.footer-links li a::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 1px; background: var(--gold); transition: var(--transition); }
.footer-links li a:hover { color: var(--gold); padding-left: 18px; }
.footer-links li a:hover::before { width: 10px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: rgba(253,248,236,.55); margin-bottom: 13px; }
.footer-contact li i { color: var(--gold); margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(253,248,236,.12); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12.5px; color: rgba(253,248,236,.45); }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 12.5px; color: rgba(253,248,236,.5); text-transform: uppercase; letter-spacing: .04em; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================ COMMON ============================================ */
.card { background: var(--bg-card); border-radius: 0; border: 2px solid var(--border); box-shadow: none; }
.page-header { margin-bottom: 40px; }
.page-header h1 { font-style: italic; font-size: clamp(26px, 3vw, 38px); margin-bottom: 8px; }
.page-header p { color: var(--text-muted); font-size: 15.5px; }

/* ============================================ RESPONSIVE ============================================ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-content { padding: 40px; }
    .cart-layout { grid-template-columns: 1fr; }
    .cart-layout > div:first-child { border-right: none; border-bottom: 2px solid var(--primary); }
    .checkout-grid { grid-template-columns: 1fr; }
    .checkout-form-card { border-right: none; border-bottom: 2px solid var(--primary); }
    .products-layout { grid-template-columns: 1fr; border-top: none; }
    .sidebar-card { position: static; border-right: none; border-bottom: 2px solid var(--primary); padding: 24px 0; }
    .products-layout > div:last-child { padding: 24px 0; }
    .product-detail-grid { grid-template-columns: 1fr; }
    .product-gallery-main, .product-thumbs { border-right: none; border-bottom: 2px solid var(--primary); }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-card { border-left: none; border-top: 2px solid var(--primary); }
    .auth-page { grid-template-columns: 1fr; }
    .auth-page::before { display: none; }
    .topbar-left span:nth-child(2) { display: none; }
}
@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none !important; }
    .mobile-right { display: flex; }
    .nav-toggle { display: flex; }
    .mobile-menu { display: none; }
    .mobile-menu.open { display: flex; }
    body.nav-open { overflow: hidden; }
    .topbar { display: none; }
    .hero-slider { height: 520px; }
    .swiper-slide-hero { height: 520px; flex-direction: column; }
    .slide-media, .slide-overlay-default { width: 100%; height: 55%; }
    .slide-content { width: 100%; height: 45%; padding: 28px 26px; }
    .swiper-pagination { left: 26px !important; bottom: 16px !important; }
    .auth-card { padding: 40px 28px; }
    .about-img-badge { right: 0; bottom: 0; }
    .about-stats { flex-wrap: wrap; gap: 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .product-card { flex-direction: column; }
    .product-card-img { width: 100%; height: 200px; min-width: 0; }
    .product-card-footer { min-width: 0; padding: 0 20px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .feature-card { border-bottom: 2px solid var(--primary); }
    .flash-message { left: 16px; right: 16px; top: 84px; max-width: 100%; }
    .cta-section .container { flex-direction: column; align-items: flex-start; }
    .footer-newsletter-inner { flex-direction: column; align-items: flex-start; }
    .footer-newsletter-form { width: 100%; }
    .footer-newsletter-form input { flex: 1; width: auto; }
}
@media (max-width: 480px) {
    .hero-slider { height: 460px; }
    .swiper-slide-hero { height: 460px; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-card { border-right: none; }
    .slide-btns { flex-direction: column; }
}