﻿:root {
  --ink: #191919;
  --muted: #6b6b6b;
  --line: #e6e2dc;
  --surface: #ffffff;
  --soft: #f7f5f2;
  --accent: #4F7D32;
  --accent-dark: #3F6728;
  --danger: #a73939;
  --radius: 16px;
  --shadow: 0 16px 45px rgba(30, 26, 20, .08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--surface); color: var(--ink); font-family: "Arimo", Arial, sans-serif; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent-dark); }
img { max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
.shell { width: min(1220px, calc(100% - 32px)); margin-inline: auto; }
.top-promo { background: #1e1e1e; color: #fff; text-align: center; padding: 7px 16px; font-size: 14px; }
.site-header { position: relative; z-index: 30; background: #fff; border-bottom: 1px solid var(--line); }
.header-main { min-height: 102px; display: grid; grid-template-columns: 190px minmax(0, 1fr); align-items: center; gap: 32px; }
.logo img { width: 175px; max-height: 75px; object-fit: contain; }
.header-tools { display: flex; width: 100%; min-width: 0; align-items: center; justify-content: flex-end; gap: 18px; }
.site-search { display: flex; flex: 1 1 auto; width: 100%; min-width: 280px; max-width: none; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--soft); }
.site-search input { width: 100%; border: 0; outline: 0; padding: 11px 18px; background: transparent; }
.site-search button { border: 0; padding: 0 18px; color: #fff; background: var(--accent); cursor: pointer; }
.tool-link, .cart-link { display: inline-flex; align-items: center; min-height: 32px; font-weight: 600; white-space: nowrap; }
.cart-link { margin-right: 2px; padding-right: 20px; border-right: 1px solid #cfc9c0; }
.mobile-account-nav { display: none; }
.cart-count { display: inline-grid; place-items: center; min-width: 25px; height: 25px; padding: 0 6px; background: var(--accent); color: #fff; border-radius: 999px; }
.nav-toggle { display: none; background: transparent; border: 0; font-size: 28px; cursor: pointer; }
.mobile-nav-head, .submenu-toggle, .nav-backdrop { display: none; }
.nav-backdrop[hidden] { display: none !important; }
.main-nav { border-top: 1px solid var(--line); }
.nav-list { display: flex; align-items: stretch; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-list > li { position: relative; }
.nav-list > li > a { display: block; padding: 14px 16px; font-weight: 600; }
.nav-list > li:hover > a { background: var(--soft); }
.mega-menu { position: absolute; top: 100%; right: 0; display: none; grid-template-columns: repeat(3, minmax(150px, 1fr)); min-width: 620px; padding: 22px; gap: 4px 20px; background: #fff; border: 1px solid var(--line); border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow); }
.brand-menu { min-width: 760px; grid-template-columns: repeat(4, minmax(130px, 1fr)); }
.mega-menu a { padding: 7px 6px; color: #3a3a3a; }
.has-menu:hover .mega-menu { display: grid; }
.shipping-strip { background: var(--soft); text-align: center; }
.shipping-strip button { border: 0; background: transparent; padding: 8px 16px; font-weight: 600; cursor: pointer; }
.site-main { min-height: 55vh; }
.page-section { padding: 42px 0 64px; }
.page-header { margin-bottom: 30px; }
.page-header h1 { margin: 0 0 8px; font-family: "Rubik", sans-serif; font-size: clamp(30px, 4vw, 48px); line-height: 1.18; }
.page-header p { max-width: 880px; margin: 0; color: var(--muted); font-size: 18px; }
.breadcrumbs { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; padding: 16px 0; margin: 0; color: var(--muted); font-size: 14px; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-right: 7px; color: #aaa; }
.hero { padding: 24px 0 28px; }
.hero-image { overflow: hidden; border-radius: 22px; box-shadow: var(--shadow); }
.hero-image img { width: 100%; display: block; }
.hero-copy { max-width: 1020px; margin: 28px auto 0; text-align: center; }
.hero-copy h1 { font: 600 clamp(31px, 4vw, 48px)/1.2 "Rubik", sans-serif; margin: 0 0 14px; }
.hero-copy p { color: #464646; font-size: 18px; }
.section-title { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin: 0 0 22px; }
.section-title h2 { margin: 0; font: 600 clamp(25px, 3vw, 36px)/1.2 "Rubik", sans-serif; }
.section-title a { color: var(--accent-dark); font-weight: 600; }
.brands-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 12px; }
.brand-card { min-height: 100px; display: grid; place-items: center; padding: 14px; border: 1px solid var(--line); background: #fff; border-radius: 14px; transition: transform .2s ease, box-shadow .2s ease; }
.brand-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.product-grid.compact { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.product-card { position: relative; overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-image { aspect-ratio: 1 / 1; display: grid; place-items: center; padding: 18px; background: #fff; border-bottom: 1px solid var(--line); }
.product-image img { width: 100%; height: 100%; object-fit: contain; }
.product-body { display: flex; flex-direction: column; flex: 1; padding: 16px; }
.product-body h3 { margin: 0 0 8px; font-size: 17px; line-height: 1.35; }
.product-brand { color: var(--muted); font-size: 14px; margin-top: auto; }
.price-row { display: flex; align-items: baseline; gap: 9px; margin: 10px 0; }
.price { font-size: 20px; font-weight: 700; }
.old-price { color: #999; text-decoration: line-through; }
.rating { letter-spacing: 1px; color: #9b7e20; font-size: 14px; }
.badge { position: absolute; top: 12px; right: 12px; z-index: 2; padding: 6px 10px; border-radius: 999px; background: #fff; box-shadow: 0 5px 20px rgba(0,0,0,.12); font-size: 12px; font-weight: 700; }
.badge.sale { background: #a53232; color: #fff; }
.badge.limited { background: #ba7b25; color: #fff; }
.badge.back { background: var(--accent); color: #fff; }
.content-card { padding: clamp(22px, 4vw, 46px); border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow); }
.article-content { direction: rtl; font-size: 18px; }
.article-content h2, .article-content h3, .article-content h4 { font-family: "Rubik", sans-serif; margin-top: 34px; }
.article-content p { margin: 0 0 18px; }
.article-content li { margin-bottom: 7px; }
.article-content a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 3px; }
.article-content img { border-radius: 16px; }
.form-card { max-width: 860px; margin: 0 auto; padding: clamp(22px, 4vw, 42px); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); background: #fff; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 700; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 1px solid #d7d3cc; border-radius: 10px; padding: 11px 13px; background: #fff; outline: 0; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(79,125,50,.14); }
.form-field textarea { min-height: 135px; resize: vertical; }
.btn { width: 100%; display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 10px 22px; border: 1px solid transparent; border-radius: 5px; font-weight: 700; cursor: pointer; }
.btn-primary { color: #fff; background: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-secondary { background: #fff; border-color: var(--line); }
.btn-danger { color: #fff; background: var(--danger); }
.alert { margin: 0 0 22px; padding: 14px 18px; border-radius: 12px; border: 1px solid; }
.alert-danger { color: #7e2727; background: #fff3f3; border-color: #efcaca; }
.alert-success { color: #315e34; background: #f0faf1; border-color: #cbe6cd; }
.filter-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin: 0 0 24px; padding: 14px; background: var(--soft); border-radius: 14px; }
.filter-bar select, .filter-bar input { min-height: 42px; border: 1px solid var(--line); border-radius: 9px; padding: 8px 12px; background: #fff; }
.pagination { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 32px 0 0; padding: 0; }
.pagination a, .pagination span { min-width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); }
.pagination .active { background: var(--accent); color: #fff; border-color: var(--accent); }
.table-wrap { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; background: #fff; }
.data-table th, .data-table td { padding: 13px 12px; border-bottom: 1px solid var(--line); text-align: right; vertical-align: middle; }
.data-table th { background: var(--soft); font-weight: 700; }
.data-table img { width: 76px; height: 76px; object-fit: contain; }

.cart-table .btn { width: auto; min-width: 72px; }
.cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 28px; align-items: start; }
.cart-summary { position: sticky; top: 20px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); }
.summary-row { display: flex; justify-content: space-between; gap: 15px; padding: 9px 0; }
.summary-row.total { margin-top: 8px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 21px; font-weight: 700; }
.account-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-bottom: 30px; }
.stat-card { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); }
.stat-card strong { display: block; font-size: 28px; }
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--soft); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 24px 0; text-align: center; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid span { color: var(--muted); font-size: 14px; }
.site-footer { padding-top: 44px; background: #191919; color: #eee; }
.footer-grid { display: grid; grid-template-columns: 2fr 1.4fr .8fr; gap: 42px; }
.site-footer h2 { font-size: 18px; margin: 0 0 14px; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links.columns { columns: 3; column-gap: 24px; }
.footer-links li { break-inside: avoid; margin-bottom: 7px; }
.footer-links a { color: #cfcfcf; font-size: 14px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { margin-top: 38px; padding: 16px; border-top: 1px solid #343434; text-align: center; color: #aaa; font-size: 13px; }
.modal-shell { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 20px; background: rgba(0,0,0,.58); }
.modal-shell.is-open { display: grid; }
.modal-shell[hidden] { display: none !important; }
body.modal-open { overflow: hidden; }
.modal-card { position: relative; width: min(720px, 100%); max-height: 88vh; overflow: auto; padding: 30px; border-radius: 20px; background: #fff; box-shadow: var(--shadow); }
.modal-close { position: absolute; top: 9px; left: 12px; border: 0; background: transparent; font-size: 28px; cursor: pointer; }
.empty-state { text-align: center; padding: 70px 20px; border: 1px dashed #cfc9c0; border-radius: 20px; background: var(--soft); }
.status-note { margin: 18px 0; padding: 13px 16px; border-right: 4px solid var(--accent); background: var(--soft); }
.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
@media (max-width: 1050px) {
  .site-header { z-index: 1000; }
  .header-main { grid-template-columns: 160px minmax(0, 1fr); }
  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    justify-self: end;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #fff;
    line-height: 1;
  }
  .nav-toggle:hover { background: var(--soft); }
  .header-tools { grid-column: 1 / -1; padding-bottom: 16px; }
  .tool-link { display: none; }
  .mobile-account-nav { display: block; margin-top: 18px; border-top: 2px solid var(--accent) !important; }
  .mobile-account-nav > a { font-weight: 700; color: var(--accent-dark); }
  body.nav-open { overflow: hidden; }
  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: none;
    background: rgba(0, 0, 0, .48);
    backdrop-filter: blur(2px);
  }
  .nav-backdrop.is-open { display: block; }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1002;
    display: block;
    visibility: hidden;
    width: min(88vw, 390px);
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    border: 0;
    background: #fff;
    box-shadow: -18px 0 45px rgba(0, 0, 0, .18);
    opacity: 0;
    transform: translateX(105%);
    transition: transform .25s ease, opacity .2s ease, visibility 0s linear .25s;
  }
  .main-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0s;
  }
  .mobile-nav-head {
    position: sticky;
    top: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 66px;
    padding: 12px 18px;
    border-bottom: 1px solid var(--line);
    background: #fff;
  }
  .mobile-nav-head strong { font: 600 21px/1.2 "Rubik", sans-serif; }
  .mobile-nav-close {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: var(--soft);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
  }
  .main-nav .nav-shell { width: 100%; padding: 8px 16px 30px; }
  .nav-list { display: block; padding: 0; }
  .nav-list > li { position: relative; border-bottom: 1px solid var(--line); }
  .nav-list > li > a { padding: 15px 8px; padding-left: 54px; font-size: 17px; }
  .nav-list > li:hover > a { background: transparent; }
  .submenu-toggle {
    position: absolute;
    top: 7px;
    left: 2px;
    z-index: 2;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 5px;
    background: var(--soft);
    color: var(--ink);
    cursor: pointer;
  }
  .submenu-toggle span { display: block; transition: transform .2s ease; }
  .has-menu.submenu-open > .submenu-toggle span { transform: rotate(180deg); }
  .mega-menu, .brand-menu {
    position: static;
    display: none;
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 5px 12px 14px;
    border: 0;
    border-radius: 5px;
    box-shadow: none;
    background: var(--soft);
  }
  .has-menu:hover > .mega-menu { display: none; }
  .has-menu.submenu-open > .mega-menu { display: grid; }
  .mega-menu a { padding: 11px 8px; border-bottom: 1px solid rgba(0, 0, 0, .07); }
  .mega-menu a:last-child { border-bottom: 0; }
  .product-grid.compact { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .brands-grid { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 820px) {
  .header-main {
    position: relative;
    display: grid;
    grid-template-columns: minmax(88px, 1fr) auto minmax(88px, 1fr);
    grid-template-areas:
      "menu logo cart"
      "search search search";
    align-items: center;
    gap: 12px 8px;
    min-height: auto;
    padding: 14px 0 16px;
  }
  .logo { grid-area: logo; margin-inline: auto; }
  .logo img { width: 150px; }
  .nav-toggle {
    grid-area: menu;
    position: static;
    justify-self: right;
  }
  .header-tools { display: contents; }
  .site-search {
    grid-area: search;
    width: 100%;
    min-width: 0;
    direction: rtl;
  }
  .cart-link {
    grid-area: cart;
    justify-self: left;
    margin: 0;
    padding: 0;
    border: 0;
    direction: rtl;
  }
  .tool-link { display: none; }
  .product-grid, .product-grid.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid section:first-child { grid-column: 1 / -1; }
  .account-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .shell { width: min(100% - 22px, 1220px); }
  .header-main {
    grid-template-columns: minmax(82px, 1fr) auto minmax(82px, 1fr);
    padding: 12px 0 14px;
    gap: 10px 6px;
  }
  .logo img { width: 125px; }
  .cart-link { font-size: 14px; }
  .main-nav { width: min(92vw, 390px); }
  .mega-menu, .brand-menu { grid-template-columns: 1fr; padding: 5px 10px 12px; }
  .product-grid, .product-grid.compact { gap: 12px; }
  .product-image { padding: 10px; }
  .product-body { padding: 12px; }
  .product-body h3 { font-size: 15px; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid section:first-child { grid-column: auto; }
  .footer-links.columns { columns: 2; }
  .data-table th, .data-table td { padding: 10px 8px; font-size: 13px; }
}
.product-detail { display:grid; grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr); gap:clamp(28px,5vw,70px); align-items:start; }
.product-detail-image { min-height:520px; display:grid; place-items:center; padding:32px; border:1px solid var(--line); border-radius:24px; background:#fff; }
.product-detail-image img { width:100%; height:100%; max-height:560px; object-fit:contain; }
.product-detail-copy { position:sticky; top:20px; padding:clamp(22px,3vw,38px); border:1px solid var(--line); border-radius:24px; background:#fff; box-shadow:var(--shadow); }
.product-detail-copy h1 { margin:6px 0 18px; font:600 clamp(28px,4vw,44px)/1.18 "Rubik",sans-serif; }
.product-brand-large { margin:0; color:var(--muted); font-weight:700; }
.product-detail-price { display:flex; gap:12px; align-items:baseline; margin:20px 0; }
.product-detail-price .price { font-size:32px; }
.quantity-field { max-width:120px; margin:24px 0 14px; }
.btn-large { width:100%; min-height:52px; min-width:0; font-size:18px; }
.order-totals { width:min(100%,430px); margin:24px 0 0 auto; padding:18px; border-radius:14px; background:var(--soft); }
.article-gallery { display:grid; gap:28px; margin-top:30px; }
.article-gallery figure { margin:0; padding:18px; border:1px solid var(--line); border-radius:16px; background:var(--soft); text-align:center; }
.article-gallery figcaption { margin-bottom:12px; font-weight:700; color:darkred; }
.article-content center { display:block; margin:24px 0; }
.article-content center img { max-width:100%; height:auto; }
button[disabled] { opacity:.55; cursor:not-allowed; }
@media (max-width:820px) { .product-detail { grid-template-columns:1fr; } .product-detail-image { min-height:360px; } .product-detail-copy { position:static; } }

.cookie-consent { position:fixed; left:0; right:0; bottom:0; z-index:999999; padding:12px 14px; background:rgba(20,20,20,.96); color:#fff; font-size:14px; }
.cookie-consent__inner { width:min(100%,980px); margin:0 auto; display:flex; gap:12px; align-items:center; justify-content:space-between; }
.cookie-consent__text { margin:0; }
.cookie-consent__btn { min-width:100px; border:0; border-radius:9px; padding:10px 16px; background:#fff; color:#111; font-weight:700; cursor:pointer; }
@media (max-width:700px){.cookie-consent__inner{flex-direction:column;align-items:stretch}.cookie-consent__btn{width:100%}}

/* Checkout, registration and payment */
.form-actions { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; margin-top:24px; }
.auth-options { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; margin-top:26px; padding-top:24px; border-top:1px solid var(--line); }
.auth-options a { display:flex; flex-direction:column; gap:3px; padding:16px; border:1px solid var(--line); border-radius:5px; background:var(--soft); }
.auth-options a:hover { border-color:var(--accent); background:#fff; }
.auth-options span { color:var(--muted); font-size:14px; }
.checkout-form-card { max-width:940px; }
.form-section + .form-section { margin-top:30px; padding-top:28px; border-top:1px solid var(--line); }
.form-section h2, .summary-section h2 { margin:0 0 18px; font:600 23px/1.25 "Rubik",sans-serif; }
.shipping-options { margin:0; padding:0; list-style:none; }
.shipping-options li { display:flex; align-items:center; gap:10px; min-height:50px; padding:10px 14px; border:1px solid var(--line); border-radius:5px; background:#fff; }
.shipping-options li + li { margin-top:9px; }
.shipping-options input { width:18px; height:18px; accent-color:var(--accent); }
.shipping-options label { flex:1; cursor:pointer; }
.summary-section + .summary-section { margin-top:32px; padding-top:30px; border-top:1px solid var(--line); }
.section-heading-row { display:flex; align-items:center; justify-content:space-between; gap:18px; }
.section-heading-row a { color:var(--accent-dark); font-weight:700; text-decoration:underline; text-underline-offset:3px; }
.checkout-summary-content { padding:clamp(22px,3vw,36px); }
.cart-summary .btn + .btn { margin-top:10px; }
.payment-layout { display:grid; grid-template-columns:minmax(0,1fr) 350px; gap:28px; align-items:start; }
.payment-card { max-width:none; margin:0; }
.payment-summary { position:sticky; top:20px; }
.security-note { display:flex; flex-direction:column; gap:5px; margin:0 0 22px; padding:18px; border:1px solid #d9e2cf; border-radius:5px; background:#f4f8ef; }
.security-note span { color:var(--muted); }
.payment-card .btn + .btn { margin-top:10px; }
@media (max-width:820px) {
  .payment-layout { grid-template-columns:1fr; }
  .payment-summary { position:static; }
}
@media (max-width:560px) {
  .form-actions, .auth-options { grid-template-columns:1fr; }
  .section-heading-row { align-items:flex-start; flex-direction:column; gap:4px; }
}

/* Login page actions - v14 */
.login-form-card { max-width: 680px; }
.login-actions { margin-top: 24px; }
.login-actions .btn { width: 100%; }
.forgot-password-link {
  display: block;
  width: max-content;
  margin: 12px auto 0;
  padding: 4px 8px;
  border: 0;
  background: transparent;
  color: var(--accent-dark);
  font: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.forgot-password-link:hover { color: var(--accent); }
.auth-divider {
  height: 0;
  margin: 24px 0;
  border: 0;
  border-top: 1px solid var(--line);
}
.login-secondary-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.login-secondary-actions .btn { width: 100%; }
.login-secondary-actions .btn-secondary:hover {
  border-color: var(--accent);
  background: var(--soft);
  color: var(--accent-dark);
}


/* Secure payment methods */
.payment-methods { display:grid; gap:18px; margin-bottom:22px; }
.payment-method-card { padding:20px; border:1px solid var(--line); border-radius:10px; background:var(--soft); }
.payment-method-card h2 { margin:0 0 8px; font:600 22px/1.25 "Rubik",sans-serif; }
.payment-method-card p { margin:0 0 16px; color:var(--muted); }
.payment-method-divider { display:flex; align-items:center; gap:12px; color:var(--muted); font-weight:700; }
.payment-method-divider::before, .payment-method-divider::after { content:""; flex:1; height:1px; background:var(--line); }
.btn-paypal { color:#111; background:#ffc439; border-color:#ffc439; }
.btn-paypal:hover { color:#111; background:#f2ba36; border-color:#f2ba36; }
.payment-config-note { margin:10px 0 0 !important; font-size:14px; color:var(--danger) !important; }
