/* ============================================================
   1800MEDICS.DE — COMPLETE STYLESHEET
   ============================================================ */

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

:root {
    --red: #e63946;
    --red-dark: #c1121f;
    --red-light: rgba(230, 57, 70, 0.08);
    --navy: #0d1b2a;
    --navy-mid: #1a2538;
    --charcoal: #2d3748;
    --gray-light: #f7f8fa;
    --gray-mid: #e4e8ee;
    --gray-text: #6b7280;
    --white: #ffffff;
    --font: 'Outfit', sans-serif;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
    --shadow: 0 4px 24px rgba(0,0,0,0.09);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.14);
    --shadow-red: 0 8px 28px rgba(230, 57, 70, 0.32);
    --radius: 10px;
    --radius-lg: 16px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font); background: var(--white); color: var(--charcoal); line-height: 1.6; overflow-x: hidden; max-width: 100vw; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
input, select, textarea, button { max-width: 100%; box-sizing: border-box; font-family: var(--font); }
section, header, footer, div, main, nav { max-width: 100vw; overflow-x: hidden; }

.container { max-width: 1300px; margin: 0 auto; padding: 0 28px; width: 100%; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 15px 34px;
    border-radius: 8px; font-family: var(--font); font-weight: 700; font-size: 15px;
    cursor: pointer; border: 2px solid transparent; transition: var(--transition); letter-spacing: 0.3px;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-3px); box-shadow: var(--shadow-red); }
.btn-outline { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline:hover { background: var(--red); color: var(--white); transform: translateY(-3px); box-shadow: var(--shadow-red); }
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ============================================================
   ANNOUNCEMENT BAR
============================================================ */
.announcement-bar { background: var(--navy); color: #8a9bb0; padding: 10px 0; font-size: 13px; font-weight: 500; }
.announcement-bar .inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.ann-item { display: flex; align-items: center; gap: 8px; padding: 2px 24px; border-right: 1px solid rgba(255,255,255,0.08); }
.ann-item:last-child { border-right: none; }
.ann-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; flex-shrink: 0; }
.ann-item .hl { color: var(--white); font-weight: 600; }

/* ============================================================
   HEADER
============================================================ */
header { background: var(--white); position: sticky; top: 0; z-index: 900; box-shadow: 0 1px 0 var(--gray-mid), var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.logo { display: inline-flex; align-items: center; font-weight: 900; font-size: 24px; color: var(--navy); white-space: nowrap; flex-shrink: 0; gap: 1px; }
.logo-cross { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; background: var(--red); color: var(--white); border-radius: 5px; font-size: 20px; font-weight: 900; line-height: 1; margin: 0 2px; }

/* Main nav */
nav.main-nav { flex: 1; display: flex; justify-content: center; }
nav.main-nav > ul { display: flex; align-items: center; gap: 2px; }
nav.main-nav > ul > li { position: relative; }
nav.main-nav > ul > li > a { display: flex; align-items: center; gap: 4px; padding: 8px 13px; font-weight: 600; font-size: 14px; color: var(--charcoal); border-radius: 7px; transition: var(--transition); white-space: nowrap; }
nav.main-nav > ul > li > a:hover, nav.main-nav > ul > li:hover > a { color: var(--red); background: var(--red-light); }
.nav-arrow { font-size: 9px; opacity: 0.6; transition: transform 0.2s; }
nav.main-nav > ul > li:hover > a .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 8px; padding-top: 16px; min-width: 210px; opacity: 0; visibility: hidden; transition: opacity 0.22s var(--ease), visibility 0.22s var(--ease); z-index: 999; }
.dropdown::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); border-radius: var(--radius) var(--radius) 0 0; }
nav.main-nav > ul > li:hover .dropdown { opacity: 1; visibility: visible; }
.dropdown a { display: block; padding: 10px 16px; font-size: 14px; font-weight: 500; color: var(--charcoal); border-radius: 6px; transition: var(--transition); }
.dropdown a:hover { background: var(--red-light); color: var(--red); padding-left: 22px; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.icon-btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; background: var(--gray-light); color: var(--charcoal); transition: var(--transition); cursor: pointer; border: none; }
.icon-btn:hover { background: var(--red); color: var(--white); }
.cart-wrap { position: relative; }
.cart-count { position: absolute; top: -5px; right: -5px; background: var(--red); color: var(--white); width: 18px; height: 18px; border-radius: 50%; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; pointer-events: none; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: var(--transition); }

/* Mobile menu */
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--white); z-index: 9999; padding: 24px; overflow-y: auto; flex-direction: column; }
.mobile-menu.open { display: flex; }
.mobile-menu-hdr { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-mid); }
.mobile-close { font-size: 30px; color: var(--charcoal); cursor: pointer; background: none; border: none; line-height: 1; }
.mob-nav-row { padding: 14px 0; border-bottom: 1px solid var(--gray-mid); font-size: 16px; font-weight: 700; color: var(--navy); }
.mob-nav-row a { display: block; }
.mob-sub { display: block; padding: 9px 20px; font-size: 14px; font-weight: 500; color: var(--gray-text); }

/* ============================================================
   SECTION HEADERS
============================================================ */
.section-hdr { text-align: center; margin-bottom: 52px; }
.section-tag { display: inline-block; background: var(--red-light); color: var(--red); padding: 4px 14px; border-radius: 100px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 14px; }
.section-title { font-size: clamp(26px, 4vw, 42px); font-weight: 800; color: var(--navy); line-height: 1.18; margin-bottom: 12px; }
.section-sub { font-size: 16px; color: var(--gray-text); max-width: 540px; margin: 0 auto; line-height: 1.55; }

/* ============================================================
   HERO
============================================================ */
.hero { padding: 96px 0 80px; text-align: center; position: relative; overflow: hidden; }
.hero-bg-cross { position: absolute; font-size: 900px; font-weight: 900; color: rgba(230, 57, 70, 0.028); top: 50%; left: 50%; transform: translate(-50%, -50%); line-height: 1; pointer-events: none; user-select: none; z-index: 0; }
.hero > .container { position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--red-light); color: var(--red); padding: 6px 18px; border-radius: 100px; font-size: 13px; font-weight: 700; margin-bottom: 26px; text-transform: uppercase; letter-spacing: 0.5px; }
.hero-badge::before { content: ''; width: 7px; height: 7px; background: var(--red); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero h1 { font-size: clamp(38px, 6.5vw, 78px); font-weight: 900; color: var(--navy); line-height: 1.08; margin-bottom: 22px; }
.hero h1 .accent { color: var(--red); }
.hero-sub { font-size: clamp(17px, 2.5vw, 22px); color: var(--gray-text); font-weight: 400; max-width: 620px; margin: 0 auto 14px; line-height: 1.55; }
.hero-note { font-size: 14px; color: #9ca3af; max-width: 480px; margin: 0 auto 42px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 56px; justify-content: center; flex-wrap: wrap; margin-top: 64px; padding-top: 52px; border-top: 1px solid var(--gray-mid); }
.stat-item { text-align: center; }
.stat-num { font-size: 40px; font-weight: 900; color: var(--navy); line-height: 1; }
.stat-num em { color: var(--red); font-style: normal; }
.stat-label { font-size: 13px; color: var(--gray-text); font-weight: 500; margin-top: 6px; }

/* ============================================================
   TRUST BAR
============================================================ */
.trust-bar { background: var(--gray-light); border-top: 1px solid var(--gray-mid); border-bottom: 1px solid var(--gray-mid); padding: 28px 0; }
.trust-bar .inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-ico { width: 46px; height: 46px; background: var(--white); border-radius: 10px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); flex-shrink: 0; }
.trust-ico svg { width: 22px; height: 22px; }
.trust-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); }
.trust-text span { font-size: 12px; color: var(--gray-text); }

/* ============================================================
   CATEGORIES
============================================================ */
.categories { padding: 84px 0; }
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.cat-card { display: flex; flex-direction: column; align-items: center; text-align: center; background: var(--white); border: 1.5px solid var(--gray-mid); border-radius: var(--radius-lg); padding: 0 18px 24px; transition: var(--transition); cursor: pointer; position: relative; overflow: hidden; }
.cat-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--red); transform: scaleX(0); transition: transform 0.28s var(--ease); }
.cat-card:hover { border-color: rgba(230, 57, 70, 0.3); transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.cat-card:hover::after { transform: scaleX(1); }
.cat-img { width: 100%; aspect-ratio: 1; background: var(--gray-light); display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 16px; margin-bottom: 16px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.cat-img img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform 0.3s ease; }
.cat-card:hover .cat-img img { transform: scale(1.08); }
.cat-name { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.cat-desc { font-size: 12px; color: var(--gray-text); line-height: 1.45; margin-bottom: 18px; flex: 1; }
.cat-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; padding: 7px 18px; border-radius: 8px; font-size: 12px; font-weight: 700; color: var(--red); border: 1.5px solid var(--red); transition: var(--transition); }
.cat-card:hover .cat-link { background: var(--red); color: var(--white); }

/* ============================================================
   PRODUCT CARDS
============================================================ */
.prod-section { padding: 60px 0; }
.prod-section:nth-child(even) { background: var(--gray-light); }
.prod-grid { display: grid; gap: 20px; }
.prod-cols-4 { grid-template-columns: repeat(4, 1fr); }
.prod-card { background: var(--white); border: 1.5px solid var(--gray-mid); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.prod-card:hover { border-color: rgba(230,57,70,0.3); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.prod-img { width: 100%; aspect-ratio: 1; background: var(--gray-light); display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 16px; }
.prod-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.prod-info { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.prod-name { font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.4; }
.prod-price { font-size: 18px; font-weight: 800; color: var(--red); }
.prod-btn { margin-top: auto; }

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-us { padding: 84px 0; }
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.why-card { text-align: center; padding: 36px 20px; background: var(--white); border: 1.5px solid var(--gray-mid); border-radius: var(--radius-lg); transition: var(--transition); }
.why-card:hover { border-color: rgba(230,57,70,0.3); transform: translateY(-5px); box-shadow: var(--shadow); }
.why-ico { width: 66px; height: 66px; background: var(--red-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.why-ico svg { width: 30px; height: 30px; color: var(--red); }
.why-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-desc { font-size: 13px; color: var(--gray-text); line-height: 1.6; }

/* ============================================================
   SEO CONTENT
============================================================ */
.seo-content { padding: 84px 0; background: var(--gray-light); }
.seo-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.seo-block h2 { font-size: 27px; font-weight: 800; color: var(--navy); margin-bottom: 16px; padding-bottom: 14px; position: relative; }
.seo-block h2::after { content: ''; position: absolute; bottom: 0; left: 0; width: 44px; height: 3px; background: var(--red); border-radius: 2px; }
.seo-block h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin: 26px 0 10px; }
.seo-block p { font-size: 15px; color: var(--charcoal); line-height: 1.72; margin-bottom: 14px; }
.seo-block a { color: var(--red); font-weight: 600; }
.seo-block a:hover { text-decoration: underline; }

/* ============================================================
   BRANDS
============================================================ */
.brands { padding: 84px 0; }
.brands-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.brand-card { background: var(--white); border: 1.5px solid var(--gray-mid); border-radius: var(--radius); padding: 16px 10px; text-align: center; font-size: 13px; font-weight: 700; color: var(--charcoal); transition: var(--transition); }
.brand-card:hover { border-color: var(--red); color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow-sm); }

/* ============================================================
   SHOP PAGE HERO
============================================================ */
.shop-hero { background: var(--navy); padding: 48px 0; text-align: center; }
.shop-hero h1 { color: var(--white); font-size: 36px; font-weight: 800; }
.shop-hero .breadcrumb { color: #8a9bb0; font-size: 14px; margin-bottom: 8px; }
.shop-hero .breadcrumb a { color: #8a9bb0; }
.shop-hero .breadcrumb a:hover { color: var(--red); }

/* Category filter bar */
.filter-bar { padding: 16px 0; border-bottom: 1px solid var(--gray-mid); display: flex; gap: 8px; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
.filter-btn { padding: 8px 20px; border-radius: 100px; font-size: 13px; font-weight: 600; border: 1.5px solid var(--gray-mid); color: var(--charcoal); background: var(--white); cursor: pointer; transition: var(--transition); flex-shrink: 0; }
.filter-btn:hover, .filter-btn.active { background: var(--red); color: var(--white); border-color: var(--red); }

/* Search */
.search-bar { padding: 20px 0; }
.search-input { width: 100%; padding: 14px 20px; border: 1.5px solid var(--gray-mid); border-radius: 8px; font-size: 15px; font-family: var(--font); outline: none; transition: var(--transition); }
.search-input:focus { border-color: var(--red); box-shadow: 0 0 0 3px var(--red-light); }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; padding: 40px 0; }
.page-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 8px; border: 1.5px solid var(--gray-mid); font-weight: 600; font-size: 14px; color: var(--charcoal); cursor: pointer; transition: var(--transition); background: var(--white); }
.page-btn:hover, .page-btn.active { background: var(--red); color: var(--white); border-color: var(--red); }

/* ============================================================
   SINGLE PRODUCT PAGE
============================================================ */
.product-page { padding: 40px 0 80px; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-image { background: var(--gray-light); border-radius: var(--radius-lg); padding: 32px; display: flex; align-items: center; justify-content: center; aspect-ratio: 1; }
.product-image img { max-width: 100%; max-height: 100%; object-fit: contain; }
.product-details h1 { font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 16px; line-height: 1.3; }
.product-price-tag { font-size: 32px; font-weight: 900; color: var(--red); margin-bottom: 24px; }
.product-meta { font-size: 14px; color: var(--gray-text); margin-bottom: 24px; line-height: 1.8; }
.product-meta span { display: block; }
.product-description { padding: 48px 0; }
.product-description h2 { font-size: 22px; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }
.product-description p { font-size: 15px; line-height: 1.75; color: var(--charcoal); margin-bottom: 14px; }
.product-description a { color: var(--red); font-weight: 600; }

/* ============================================================
   CART PAGE
============================================================ */
.cart-page { padding: 40px 0 80px; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; padding: 12px 16px; border-bottom: 2px solid var(--gray-mid); font-size: 13px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; }
.cart-table td { padding: 16px; border-bottom: 1px solid var(--gray-mid); vertical-align: middle; }
.cart-table .cart-item-img { width: 70px; height: 70px; object-fit: contain; background: var(--gray-light); border-radius: 8px; padding: 4px; }
.cart-item-name { font-weight: 600; color: var(--navy); font-size: 14px; }
.cart-item-name a { color: var(--navy); }
.cart-item-name a:hover { color: var(--red); }
.cart-item-price { font-weight: 700; color: var(--charcoal); }
.qty-control { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--gray-mid); border-radius: 6px; overflow: hidden; width: fit-content; }
.qty-btn { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: var(--gray-light); border: none; cursor: pointer; font-size: 16px; font-weight: 700; color: var(--charcoal); }
.qty-btn:hover { background: var(--red); color: var(--white); }
.qty-val { width: 40px; height: 32px; text-align: center; border: none; font-size: 14px; font-weight: 700; font-family: var(--font); }
.cart-remove { background: none; border: none; color: var(--gray-text); cursor: pointer; font-size: 18px; transition: color 0.2s; }
.cart-remove:hover { color: var(--red); }
.cart-totals { max-width: 400px; margin-left: auto; margin-top: 32px; }
.cart-totals table { width: 100%; }
.cart-totals td { padding: 10px 0; font-size: 15px; }
.cart-totals td:last-child { text-align: right; font-weight: 700; }
.cart-totals .total-row td { font-size: 20px; font-weight: 900; color: var(--red); border-top: 2px solid var(--navy); padding-top: 16px; }
.cart-warning { background: #fef3cd; border: 1px solid #ffc107; border-radius: 8px; padding: 14px 20px; font-size: 14px; margin-bottom: 24px; }
.cart-empty { text-align: center; padding: 80px 20px; }
.cart-empty p { font-size: 18px; color: var(--gray-text); margin-bottom: 24px; }

/* ============================================================
   CHECKOUT PAGE
============================================================ */
.checkout-page { padding: 40px 0 80px; }
.checkout-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }
.checkout-form h2 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-mid); border-radius: 8px;
    font-size: 15px; font-family: var(--font); outline: none; transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px var(--red-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.payment-options { margin: 24px 0; }
.payment-option { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1.5px solid var(--gray-mid); border-radius: 8px; margin-bottom: 8px; cursor: pointer; transition: var(--transition); }
.payment-option:hover { border-color: var(--red); }
.payment-option.selected { border-color: var(--red); background: var(--red-light); }
.payment-option input[type="radio"] { accent-color: var(--red); }
.payment-option label { cursor: pointer; font-weight: 600; font-size: 15px; }
.payment-disabled { opacity: 0.5; pointer-events: none; }
.payment-disabled-msg { font-size: 12px; color: var(--red); margin-top: 4px; }

/* Order summary sidebar */
.order-summary { background: var(--gray-light); border-radius: var(--radius-lg); padding: 28px; position: sticky; top: 100px; }
.order-summary h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.summary-item { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; border-bottom: 1px solid var(--gray-mid); }
.summary-item .name { flex: 1; color: var(--charcoal); }
.summary-item .qty { color: var(--gray-text); margin: 0 8px; }
.summary-item .price { font-weight: 700; white-space: nowrap; }
.summary-total { display: flex; justify-content: space-between; padding: 16px 0 0; font-size: 20px; font-weight: 900; color: var(--red); border-top: 2px solid var(--navy); margin-top: 8px; }

/* ============================================================
   CONFIRMATION PAGE
============================================================ */
.confirm-page { padding: 60px 0 80px; }
.confirm-box { max-width: 650px; margin: 0 auto; background: var(--gray-light); border-radius: var(--radius-lg); padding: 40px; text-align: center; }
.confirm-box h1 { font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.confirm-box .order-num { font-size: 18px; color: var(--red); font-weight: 700; margin-bottom: 32px; }
.payment-instructions { text-align: left; background: var(--white); border-radius: var(--radius); padding: 24px; margin: 24px 0; border-left: 4px solid var(--red); }
.payment-instructions h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.payment-instructions p { font-size: 14px; line-height: 1.8; color: var(--charcoal); margin-bottom: 8px; }
.payment-instructions .mono { font-family: monospace; background: var(--gray-light); padding: 4px 8px; border-radius: 4px; font-size: 13px; word-break: break-all; }
.screenshot-upload { margin-top: 32px; text-align: center; }
.screenshot-upload input[type="file"] { margin: 12px 0; }
.upload-success { color: #16a34a; font-weight: 700; font-size: 15px; margin-top: 12px; }

/* ============================================================
   LEGAL / BLOG PAGES
============================================================ */
.page-content { padding: 48px 0 80px; }
.page-content .container { max-width: 860px; }
.page-content h1 { font-size: 32px; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.page-content h2 { font-size: 22px; font-weight: 700; color: var(--navy); margin: 28px 0 12px; }
.page-content h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin: 22px 0 10px; }
.page-content p { font-size: 15px; line-height: 1.75; color: var(--charcoal); margin-bottom: 14px; }
.page-content a { color: var(--red); font-weight: 600; }
.page-content a:hover { text-decoration: underline; }
.page-content ul, .page-content ol { margin: 0 0 16px 20px; }
.page-content li { font-size: 15px; line-height: 1.75; margin-bottom: 6px; }

/* Blog listing */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: var(--white); border: 1.5px solid var(--gray-mid); border-radius: var(--radius-lg); padding: 28px; transition: var(--transition); }
.blog-card:hover { border-color: rgba(230,57,70,0.3); transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: 14px; color: var(--gray-text); line-height: 1.6; margin-bottom: 16px; }
.blog-card .read-more { color: var(--red); font-weight: 700; font-size: 14px; }

/* ============================================================
   FOOTER
============================================================ */
.custom-footer { background: var(--navy); font-family: var(--font); color: #8899aa; }
.custom-footer a { color: #8899aa; text-decoration: none; transition: color 0.2s; }
.custom-footer a:hover { color: var(--red); }
.cf-inner { max-width: 1300px; margin: 0 auto; padding: 48px 28px 0; }
.cf-disclaimer { border-left: 3px solid var(--red); padding: 14px 18px; font-size: 12px; line-height: 1.65; color: #5d7080; background: rgba(255,255,255,0.03); border-radius: 0 6px 6px 0; margin-bottom: 48px; }
.cf-disclaimer strong { color: #8899aa; }
.cf-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.cf-logo { display: inline-flex; align-items: center; font-weight: 900; font-size: 22px; color: #fff; gap: 1px; margin-bottom: 14px; }
.cf-logo-cross { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; background: var(--red); color: #fff; border-radius: 5px; font-size: 17px; font-weight: 900; line-height: 1; margin: 0 2px; }
.cf-about p { font-size: 14px; line-height: 1.65; margin: 0 0 18px; }
.cf-payments { display: flex; gap: 6px; flex-wrap: wrap; }
.cf-pay { background: rgba(255,255,255,0.07); color: #8899aa; padding: 5px 11px; border-radius: 5px; font-size: 11px; font-weight: 600; }
.cf-col h4 { font-size: 12px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 18px; }
.cf-col ul { list-style: none; margin: 0; padding: 0; }
.cf-col ul li { margin-bottom: 10px; }
.cf-col ul li a { font-size: 14px; }
.cf-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 24px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 13px; }
.cf-bottom .right { color: #4d606e; font-size: 12px; }

/* ============================================================
   TOAST NOTIFICATION
============================================================ */
.toast { position: fixed; bottom: 24px; right: 24px; background: var(--navy); color: var(--white); padding: 14px 24px; border-radius: 8px; font-size: 14px; font-weight: 600; z-index: 10000; opacity: 0; transform: translateY(20px); transition: all 0.3s ease; pointer-events: none; }
.toast.show { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1140px) {
    .cat-grid { grid-template-columns: repeat(4, 1fr); }
    .why-grid { grid-template-columns: repeat(3, 1fr); }
    .brands-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 960px) {
    nav.main-nav { display: none; }
    .hamburger { display: flex; }
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .seo-inner { grid-template-columns: 1fr; gap: 40px; }
    .cf-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .hero { padding: 60px 0 50px; }
    .hero h1 { font-size: 42px; }
    .prod-cols-4 { grid-template-columns: repeat(3, 1fr); }
    .product-layout { grid-template-columns: 1fr; gap: 32px; }
    .checkout-grid { grid-template-columns: 1fr; }
    .order-summary { position: static; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
    .container { padding: 0 16px; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .brands-grid { grid-template-columns: repeat(3, 1fr); }
    .prod-cols-4 { grid-template-columns: repeat(2, 1fr); }
    .trust-bar .inner { gap: 16px; flex-direction: column; }
    .hero-stats { gap: 24px; }
    .hero { padding: 48px 0 40px; }
    .hero h1 { font-size: 32px; }
    .hero-btns { flex-direction: column; align-items: center; width: 100%; }
    .hero-btns .btn { width: 100%; max-width: 300px; justify-content: center; }
    .ann-item { border-right: none; padding: 3px 14px; font-size: 12px; }
    .cf-grid { grid-template-columns: 1fr; gap: 24px; }
    .categories, .why-us, .seo-content, .brands { padding: 50px 0; }
    .section-hdr { margin-bottom: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .cart-table .hide-mobile { display: none; }
    .blog-grid { grid-template-columns: 1fr; }
    .page-content h1 { font-size: 26px; }
}
@media (max-width: 420px) {
    .container { padding: 0 12px; }
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 26px; }
    .stat-num { font-size: 30px; }
    .prod-cols-4 { gap: 10px; }
}
