@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,600;0,8..60,700;1,8..60,400&family=Inter:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --primary: #1e2a3a;
  --secondary: #3d4d66;
  --accent: #c45c26;
  --bg: #f8f7f4;
  --bg-light: #eeece6;
  --bg-alt: #e2dfd7;
  --text: #2a2a2a;
  --text-light: #5c5c5c;
  --border: #d9d4cc;
  --success: #2e7d32;
  --error: #c62828;
  --shadow: 0 2px 20px rgba(0,0,0,0.06);
  --radius: 4px;
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 500;
  line-height: 1.3;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==================== HEADER / FOOTER CHROME ==================== */
.site-chrome {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 10px 36px rgba(26, 35, 50, 0.07);
}

.announcement-bar {
  background: linear-gradient(92deg, #141824 0%, #252a3a 42%, #141824 100%);
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  padding: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--accent);
}

.announcement-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 24px;
}

header.site-header,
header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 35, 50, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

#main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--primary);
}

.logo span {
  color: var(--accent);
  font-weight: 700;
  margin-left: 2px;
}

nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
}

nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: var(--transition);
}

nav a:hover::after { width: 100%; }
nav a:hover { color: var(--accent); }

.header-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-icons a {
  position: relative;
  color: var(--primary);
  font-size: 1.1rem;
}

.header-icons a:hover { color: var(--accent); }

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--primary);
  padding: 4px;
}

/* ==================== CHECKOUT HEADER ==================== */
.checkout-header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.back-to-cart {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
}

.back-to-cart:hover { color: var(--accent); }

.secure-badge {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f6f3 0%, #ede8e0 100%);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 0 60px;
}

.hero-tag {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.hero p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-block;
  padding: 14px 40px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  background: #b8943d;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.75rem;
}

.btn-block { width: 100%; }

/* ==================== SECTIONS ==================== */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-light);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto;
}

.section-tag {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

/* ==================== PRODUCT GRID ==================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
  overflow: hidden;
}

.product-card .product-image {
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
  aspect-ratio: 3/4;
}

.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-card .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 0.68rem;
  padding: 4px 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  z-index: 2;
}

.product-card .badge.sale { background: var(--error); }

.product-card .quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26,26,26,0.9);
  color: #fff;
  text-align: center;
  padding: 12px;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  cursor: pointer;
  border: none;
  width: 100%;
}

.product-card:hover .quick-add {
  transform: translateY(0);
}

.product-info {
  padding: 16px 0;
}

.product-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.product-info .price {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.product-info .price .original {
  text-decoration: line-through;
  color: var(--text-light);
  margin-left: 8px;
  font-weight: 400;
}

/* ==================== CATEGORIES ==================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.category-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover img { transform: scale(1.08); }

.category-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.6));
}

.category-card .category-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  color: #fff;
}

.category-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.category-card .shop-link {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

/* ==================== FEATURES ==================== */
.features {
  background: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.feature-item .icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.feature-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

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

/* ==================== NEWSLETTER ==================== */
.newsletter {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.newsletter h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.newsletter p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }

.newsletter-form button {
  padding: 14px 30px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.newsletter-form button:hover { background: #b8943d; }

/* ==================== FOOTER ==================== */
footer.site-footer,
footer {
  position: relative;
  background: linear-gradient(165deg, #121a26 0%, #1a2332 38%, #1e2d3f 100%);
  color: rgba(255, 255, 255, 0.82);
  padding: 0 0 0;
  margin-top: 48px;
}

.footer-ribbon {
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent), transparent);
  opacity: 0.95;
}

.site-footer > .container {
  padding-top: 56px;
}

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

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-col a:hover { color: var(--accent); }

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.payment-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.payment-icons span {
  background: rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 1.2rem;
  font-weight: 500;
}

/* ==================== SHOP PAGE ==================== */
.page-banner {
  background: var(--bg-light);
  padding: 60px 0;
  text-align: center;
}

.page-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.page-banner .breadcrumb {
  font-size: 0.82rem;
  color: var(--text-light);
}

.page-banner .breadcrumb a:hover { color: var(--accent); }

.shop-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
  padding: 50px 0;
}

.shop-sidebar h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.shop-sidebar .filter-group { margin-bottom: 30px; }

.shop-sidebar label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: var(--text);
  cursor: pointer;
}

.shop-sidebar input[type="checkbox"] { accent-color: var(--accent); }

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.shop-toolbar .result-count {
  font-size: 0.85rem;
  color: var(--text-light);
}

.shop-toolbar select {
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 0.85rem;
  cursor: pointer;
  outline: none;
}

/* ==================== PRODUCT DETAIL ==================== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 50px 0;
}

.product-gallery .main-image {
  background: var(--bg-light);
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 12px;
}

.product-gallery .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery .thumbnails {
  display: flex;
  gap: 10px;
}

.product-gallery .thumbnails img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.product-gallery .thumbnails img:hover,
.product-gallery .thumbnails img.active {
  border-color: var(--accent);
}

.product-details h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.product-details .price-display {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.product-details .description {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.size-selector, .color-selector {
  margin-bottom: 24px;
}

.size-selector label, .color-selector label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.size-options, .color-options { display: flex; gap: 8px; }

.size-options button {
  padding: 10px 18px;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--transition);
}

.size-options button:hover,
.size-options button.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.color-options button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.color-options button.active { border-color: var(--primary); }

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

.quantity-selector label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 16px;
}

.quantity-selector button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
}

.quantity-selector input {
  width: 50px;
  height: 40px;
  text-align: center;
  border: 1px solid var(--border);
  border-left: none;
  border-right: none;
  font-size: 0.9rem;
  outline: none;
}

.add-to-cart-section {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.product-meta {
  font-size: 0.85rem;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.product-meta p { margin-bottom: 8px; }
.product-meta strong { color: var(--text); }

/* ==================== CART ==================== */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}

.cart-table th {
  text-align: left;
  padding: 16px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--primary);
}

.cart-table td {
  padding: 24px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.cart-item-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-item-info img {
  width: 100px;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.cart-item-info h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.cart-item-info .variant {
  font-size: 0.82rem;
  color: var(--text-light);
  display: block;
  margin-top: 4px;
}

.cart-qty {
  display: flex;
  align-items: center;
}

.cart-qty button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  font-size: 0.9rem;
}

.cart-qty button:hover {
  background: var(--bg-light);
}

.cart-qty input {
  width: 48px;
  height: 36px;
  text-align: center;
  border: 1px solid var(--border);
  border-left: none;
  border-right: none;
  font-size: 0.85rem;
  outline: none;
}

.remove-btn {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 0.8rem;
  text-decoration: underline;
  transition: var(--transition);
  text-decoration: underline;
}

.remove-btn:hover { color: var(--error); }

.cart-summary {
  max-width: 400px;
  margin-left: auto;
  background: var(--bg-light);
  padding: 30px;
}

.cart-summary h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.cart-summary .summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.cart-summary .summary-row.total {
  font-weight: 600;
  font-size: 1.1rem;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 16px;
}

/* ==================== CHECKOUT ==================== */
.checkout-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  padding: 20px 0 50px;
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

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

.checkout-section {
  margin-bottom: 36px;
}

.checkout-section h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.order-summary-toggle {
  display: none;
}

.order-summary-box {
  background: var(--bg-light);
  padding: 30px;
  position: sticky;
  top: 100px;
}

/* ==================== POLICY PAGES ==================== */
.policy-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.policy-page h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.policy-page .last-updated {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

.policy-page h2 {
  font-size: 1.3rem;
  margin-top: 36px;
  margin-bottom: 14px;
}

.policy-page h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 10px;
}

.policy-page p {
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 14px;
  color: var(--text);
}

.policy-page ul, .policy-page ol {
  padding-left: 24px;
  margin-bottom: 14px;
}

.policy-page ul { list-style: disc; }
.policy-page ol { list-style: decimal; }

.policy-page li {
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 6px;
}

.policy-page a { color: var(--accent); text-decoration: underline; }
.policy-page a:hover { color: var(--secondary); }

/* ==================== CONTACT / ABOUT ==================== */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.about-section img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 60px 0;
  text-align: center;
}

.value-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.value-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px 0;
}

.contact-info-box {
  margin-bottom: 30px;
}

.contact-info-box h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.contact-info-box p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

/* ==================== FAQ ==================== */
.faq-list { max-width: 700px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: var(--text);
}

.faq-question .icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ==================== EMPTY CART ==================== */
.empty-cart {
  text-align: center;
  padding: 80px 0;
}

.empty-cart h2 { margin-bottom: 12px; }

.empty-cart p {
  color: var(--text-light);
  margin-bottom: 30px;
}

/* ==================== ACTIVE NAV LINK ==================== */
nav a.active { color: var(--accent); }
nav a.active::after { width: 100%; }

/* ==================== MOBILE NAV (SLIDE-IN) ==================== */
.mobile-nav-close { display: none; }
.mobile-nav-overlay { display: none; }

@media (max-width: 768px) {
  .mobile-menu-btn { display: flex; align-items: center; justify-content: center; }

  .checkout-header-right { gap: 12px; }
  .back-to-cart span { display: none; }
  .back-to-cart { font-size: 1.1rem; }
  .secure-badge span { display: none; }
  .secure-badge { font-size: 1.1rem; }

  #main-nav {
    position: fixed;
    left: auto;
    transform: none;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    padding: 0;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 30px rgba(0,0,0,0.15);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }

  #main-nav.active { right: 0; }

  #main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 60px 0 20px;
  }

  #main-nav ul li {
    border-bottom: 1px solid var(--border);
  }

  #main-nav a {
    display: block;
    padding: 16px 24px;
    font-size: 0.92rem;
  }

  #main-nav a:hover, #main-nav a.active {
    background: var(--bg-light);
    color: var(--accent);
  }

  #main-nav a::after { display: none; }

  .mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text);
    z-index: 10;
    transition: var(--transition);
  }

  .mobile-nav-close:hover {
    background: var(--bg-light);
    color: var(--accent);
  }

  .mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .mobile-nav-overlay.active {
    display: block;
    opacity: 1;
  }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 420px;
    padding: 60px 0;
    text-align: center;
    justify-content: center;
    background: url('../images/hero.jpg?v=4') center center / cover no-repeat;
    background-color: #ede8e0;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.75);
    z-index: 1;
  }
  .hero-content {
    max-width: 100%;
    padding: 0 24px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .hero h1 { font-size: 2rem; color: var(--primary); }
  .hero p { margin-bottom: 28px; color: var(--text); }
  .hero .btn { margin: 0 8px 12px 0; }
  .hero .btn-outline { margin-left: 0 !important; }
  .hero-image { display: none; }

  /* Solimot editorial hero — stacked panel on small screens */
  body.brand-solimot .hero.hero-sol-editorial .hero-sol-visual {
    min-height: 38vh;
  }
  body.brand-solimot .hero.hero-sol-editorial .hero-sol-panel {
    margin: 0 16px 28px;
    max-width: none;
  }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: 1fr; }
  .category-card { height: 250px; }

  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { display: none; }
  .product-detail { grid-template-columns: 1fr; gap: 30px; }
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary-wrapper { order: -1; }

  .order-summary-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-bottom: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--accent);
  }

  .order-summary-toggle .toggle-left {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .order-summary-toggle .toggle-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
  }

  .order-summary-toggle.active .toggle-arrow {
    transform: rotate(180deg);
  }

  .order-summary-toggle .toggle-total {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
  }

  .order-summary-box {
    position: static;
    margin: 0 0 24px;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    border: 1px solid var(--border);
    border-top: none;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  .order-summary-box.open {
    max-height: 600px;
    padding: 20px;
  }
  .about-section { grid-template-columns: 1fr; }
  .about-section img { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .cart-table thead { display: none; }
  .cart-table tbody { display: block; }
  .cart-table tr {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
  }
  .cart-table td { border: none; padding: 0; }

  .cart-table td:first-child { width: 100%; margin-bottom: 14px; }
  .cart-item-info img { width: 80px; height: 100px; border-radius: 6px; }

  .cart-price-cell,
  .cart-qty-cell,
  .cart-remove-cell {
    display: flex;
    align-items: center;
  }
  .cart-price-cell { font-weight: 600; margin-right: auto; }
  .cart-qty-cell { margin: 0 16px; }
  .cart-remove-cell { }
  .cart-total-cell { display: none; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .newsletter-form { flex-direction: column; }
  .newsletter-form input, .newsletter-form button { width: 100%; }

  .page-banner h1 { font-size: 1.8rem; }
  .section-header h2 { font-size: 1.6rem; }

  .product-details h1 { font-size: 1.5rem; }
  .product-gallery .thumbnails img { width: 60px; height: 75px; }

  .form-row { grid-template-columns: 1fr; }

}

@media (max-width: 480px) {
  .header-inner { padding: 12px 16px; }
  .logo { font-size: 1.3rem; }
  .container { padding: 0 16px; }
  .announcement-bar { font-size: 0.7rem; padding: 6px 0; }

  .hero { padding: 40px 0; }
  .hero-content { padding: 0 16px; }
  .hero h1 { font-size: 1.6rem; margin-bottom: 14px; }
  .hero-tag { font-size: 0.7rem; letter-spacing: 2px; margin-bottom: 14px; }
  .hero p { font-size: 0.88rem; margin-bottom: 22px; line-height: 1.7; }
  .hero .btn {
    display: block;
    width: 100%;
    margin: 0 0 14px 0 !important;
  }
  .btn { padding: 12px 24px; font-size: 0.75rem; }

  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-info h3 { font-size: 0.82rem; }
  .product-info .price { font-size: 0.82rem; }

  .features-grid { grid-template-columns: 1fr; gap: 24px; }
  .section { padding: 50px 0; }

  .category-card { height: 200px; }
  .category-card h3 { font-size: 1.2rem; }

  .cart-table th:nth-child(4),
  .cart-table td:nth-child(4) { display: none; }

  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ========== Solimot — editorial (warm paper, Fraunces + Jakarta, full-bleed hero) ========== */
body.brand-solimot {
  --primary: #1c1917;
  --secondary: #57534e;
  --accent: #c2410c;
  --bg: #faf7f2;
  --bg-light: #f0ebe3;
  --bg-alt: #e7e0d4;
  --text: #292524;
  --text-light: #78716c;
  --border: #d6d0c6;
  --shadow: 0 12px 48px rgba(28, 25, 23, 0.08);
}
body.brand-solimot,
body.brand-solimot button,
body.brand-solimot input {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
}
body.brand-solimot h1,
body.brand-solimot h2,
body.brand-solimot h3,
body.brand-solimot h4,
body.brand-solimot h5 {
  font-family: "Fraunces", "Source Serif 4", Georgia, serif;
  font-weight: 600;
}
body.brand-solimot .site-chrome--sol {
  box-shadow: 0 1px 0 rgba(28, 25, 23, 0.06);
}
body.brand-solimot .ann-sol:not(.ann-sol--minimal) {
  background: linear-gradient(92deg, #101321 0%, #1a2133 45%, #101321 100%);
  color: #ece8df;
  border-bottom: 2px solid var(--accent);
}
body.brand-solimot .ann-sol.ann-sol--minimal {
  background: #f0ebe3;
  color: #44403c;
  border-bottom: 1px solid var(--border);
  text-align: center;
  font-size: 0.78rem;
  text-transform: none;
}
body.brand-solimot .ann-sol-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
}
body.brand-solimot .ann-sol.ann-sol--minimal .ann-sol-inner {
  justify-content: center;
  max-width: 960px;
  padding: 8px 20px;
  gap: 6px 10px;
}
body.brand-solimot .ann-sol-dot {
  color: #a8a29e;
}
body.brand-solimot .ann-sol-mail {
  color: var(--accent);
  font-weight: 600;
}
body.brand-solimot .ann-sol-mail:hover {
  text-decoration: underline;
}
body.brand-solimot .ann-sol-brandline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
}
body.brand-solimot .ann-sol-brandline strong {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  color: #fff;
  font-weight: 600;
}
body.brand-solimot .ann-sol-brandline span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(236, 232, 223, 0.72);
}
body.brand-solimot .ann-sol-services {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(236, 232, 223, 0.9);
}
body.brand-solimot .ann-sol-services i { color: var(--accent); margin-right: 6px; }
body.brand-solimot .ann-sol-pipe { color: rgba(236, 232, 223, 0.25); font-weight: 300; }
body.brand-solimot .ann-sol-services a { color: inherit; }
body.brand-solimot .ann-sol-services a:hover { color: var(--accent); }

body.brand-solimot .header-sol--editorial {
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
body.brand-solimot .header-sol:not(.header-sol--editorial) {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
body.brand-solimot .header-sol-inner--editorial {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
}
body.brand-solimot .header-sol-inner:not(.header-sol-inner--editorial) {
  max-width: 1320px;
  margin: 0 auto;
  padding: 12px 24px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}
body.brand-solimot .header-sol--checkout .header-sol-inner {
  max-width: 1200px;
  justify-content: space-between;
}
body.brand-solimot .logo-sol {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
body.brand-solimot .logo-sol span {
  color: var(--accent);
  font-weight: 700;
}
body.brand-solimot #main-nav.nav-sol {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  position: static;
  transform: none;
  left: auto;
  min-width: 0;
}
body.brand-solimot #main-nav.nav-sol ul {
  gap: 4px 6px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
body.brand-solimot #main-nav.nav-sol a {
  padding: 6px 2px 4px;
  margin: 0 10px 0 0;
  border-radius: 0;
  letter-spacing: 0;
  font-size: 0.9rem;
  text-transform: none;
  font-weight: 500;
  color: var(--text-light);
  border-bottom: 2px solid transparent;
}
body.brand-solimot #main-nav.nav-sol a::after {
  display: none;
}
body.brand-solimot #main-nav.nav-sol a:hover {
  background: transparent;
  color: var(--primary);
  border-bottom-color: var(--border);
}
body.brand-solimot #main-nav.nav-sol a.active {
  background: transparent;
  color: var(--primary);
  border-bottom-color: var(--accent);
}
body.brand-solimot .header-sol-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}
body.brand-solimot .header-sol-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 52px;
  min-height: 44px;
  font-size: 1rem;
  color: var(--primary);
  padding: 0 14px;
  border: 2px solid var(--primary);
  border-radius: 0;
  background: transparent;
  transition: var(--transition);
}
body.brand-solimot .header-sol-cart:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
body.brand-solimot .btn-sol-outline {
  display: inline-block;
  padding: 12px 26px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  border-radius: 0;
  transition: var(--transition);
}
body.brand-solimot .btn-sol-outline:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

body.brand-solimot .btn-sol-pill {
  border-radius: 999px;
  padding: 14px 32px;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 600;
}
body.brand-solimot .btn-sol-ghost {
  border-radius: 999px;
  border-width: 2px;
  text-transform: none;
  letter-spacing: 0.04em;
  font-weight: 600;
}
body.brand-solimot .hero-cta--sol {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
  width: 100%;
  max-width: none;
}
body.brand-solimot .hero-cta--sol .btn {
  margin: 0 !important;
  width: auto;
  min-width: 140px;
  text-align: center;
  box-sizing: border-box;
}
@media (max-width: 520px) {
  body.brand-solimot .hero-cta--sol .btn {
    width: 100%;
  }
}

body.brand-solimot .footer-jc {
  margin-top: 0;
  padding: 0;
}
body.brand-solimot .footer-jc-strip {
  background: #1c1917;
  color: #faf7f2;
  border-top: none;
}
body.brand-solimot .footer-jc-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}
body.brand-solimot .footer-jc-strip-kicker {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.55);
  font-weight: 600;
  margin-bottom: 6px;
}
body.brand-solimot .footer-jc-strip-text p {
  margin: 0;
  color: #faf7f2;
  font-size: 1rem;
  max-width: 440px;
}
body.brand-solimot .footer-jc-body {
  background: #faf7f2;
  color: var(--text);
  padding: 0 0 12px;
  border-top: 1px solid var(--border);
}
body.brand-solimot .footer-jc-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 48px 0 36px;
  border-bottom: 1px solid var(--border);
}
body.brand-solimot .footer-jc-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  margin-top: 14px;
  color: var(--text-light);
}
body.brand-solimot .footer-jc-logo {
  color: var(--primary) !important;
  font-size: 1.5rem;
}
body.brand-solimot .footer-jc-logo.logo-sol span {
  color: var(--accent);
}
body.brand-solimot .footer-jc-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
}
body.brand-solimot .footer-jc-col a {
  color: #44403c;
  font-size: 0.88rem;
}
body.brand-solimot .footer-jc-col a:hover {
  color: var(--accent);
}
body.brand-solimot .footer-jc-social a {
  background: #fff;
  border: 2px solid var(--border);
  color: var(--primary);
}
body.brand-solimot .footer-jc-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff !important;
}
body.brand-solimot .footer-jc-bar {
  padding: 24px 0 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-light);
}
body.brand-solimot .footer-jc-copy {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}
body.brand-solimot .footer-jc-legal {
  flex: 1 1 280px;
  margin: 0;
  line-height: 1.6;
  color: #78716c;
}
body.brand-solimot .footer-jc-pay {
  color: #a8a29e;
}

body.brand-solimot .hero.hero-sol-editorial {
  position: relative;
  display: block;
  min-height: 0;
  height: auto;
  max-height: none;
  padding: 0;
  background: var(--bg);
  overflow: hidden;
}
body.brand-solimot .hero-sol-visual {
  position: relative;
  width: 100%;
  min-height: 58vh;
  max-height: 85vh;
}
body.brand-solimot .hero-sol-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body.brand-solimot .hero-sol-wrap {
  max-width: 1280px;
  margin: -120px auto 0;
  padding: 0 24px 64px;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
body.brand-solimot .hero-sol-panel {
  pointer-events: auto;
  max-width: 520px;
  padding: 40px 44px;
  background: rgba(255, 255, 255, 0.94);
  border-left: 5px solid var(--accent);
  box-shadow: var(--shadow);
}
body.brand-solimot .hero.hero-sol-editorial .hero-tag {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
body.brand-solimot .hero.hero-sol-editorial h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.12;
  margin-bottom: 16px;
  color: var(--primary);
  font-weight: 700;
}
body.brand-solimot .hero.hero-sol-editorial p {
  font-size: 1.02rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 28px;
}

body.brand-solimot .section-sol .section-header {
  text-align: left;
  margin-left: 0;
  margin-bottom: 40px;
  max-width: 640px;
}
body.brand-solimot .section-sol .section-header p {
  margin: 0;
}
body.brand-solimot .section-sol .section-tag {
  letter-spacing: 0.14em;
  color: var(--accent);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.7rem;
}
body.brand-solimot .categories-grid--sol {
  gap: 16px;
  grid-template-columns: 1.15fr 1fr 1fr;
}
body.brand-solimot .categories-grid--sol .category-card:first-child {
  min-height: 440px;
}
body.brand-solimot.features-sol .features-grid {
  text-align: left;
  gap: 28px;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
body.brand-solimot.features-sol .feature-item .icon {
  color: var(--accent);
  font-size: 1.75rem;
}
body.brand-solimot.features-sol .feature-item h4 {
  font-family: "Fraunces", serif;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.05rem;
}
body.brand-solimot .newsletter-sol {
  background: var(--bg-light);
  color: var(--primary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}
body.brand-solimot .newsletter-sol h2 {
  color: var(--primary);
}
body.brand-solimot .newsletter-sol p {
  color: var(--text-light);
}
body.brand-solimot .newsletter-sol .newsletter-form input {
  background: #fff;
  border: 2px solid var(--border);
  color: var(--primary);
}
body.brand-solimot .newsletter-sol .newsletter-form input::placeholder {
  color: #a8a29e;
}
body.brand-solimot .newsletter-sol .newsletter-form button {
  background: var(--primary);
  color: #fff;
}
body.brand-solimot .newsletter-sol .newsletter-form button:hover {
  background: var(--accent);
}

@media (max-width: 1024px) {
  body.brand-solimot .hero-sol-wrap {
    margin-top: -80px;
  }
  body.brand-solimot .footer-jc-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  body.brand-solimot .categories-grid--sol {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  body.brand-solimot .hero.hero-sol-editorial {
    padding: 0;
    text-align: left;
    justify-content: flex-start;
    min-height: 0;
    background: var(--bg);
  }
  body.brand-solimot .hero.hero-sol-editorial::before {
    content: none;
    display: none;
  }
  body.brand-solimot .ann-sol.ann-sol--minimal .ann-sol-inner {
    flex-direction: column;
    gap: 4px;
  }
  body.brand-solimot .ann-sol-dot {
    display: none;
  }
  body.brand-solimot .ann-sol-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  body.brand-solimot .ann-sol-services {
    justify-content: center;
  }
  body.brand-solimot .header-sol-inner--editorial,
  body.brand-solimot .header-sol-inner:not(.header-sol-inner--editorial) {
    flex-wrap: wrap;
    align-items: center;
  }
  body.brand-solimot #main-nav.nav-sol {
    order: 3;
    flex: 1 1 100%;
    width: 100%;
    border-top: 1px solid var(--border);
    padding-top: 12px;
    justify-content: stretch;
  }
  body.brand-solimot #main-nav.nav-sol ul {
    width: 100%;
    justify-content: flex-start;
  }
  body.brand-solimot .hero-sol-wrap {
    margin-top: 0;
    padding: 0 16px 40px;
  }
  body.brand-solimot .hero-sol-panel {
    padding: 28px 22px;
  }
  body.brand-solimot .hero-sol-visual {
    min-height: 42vh;
    max-height: 55vh;
  }
  body.brand-solimot .features-sol .features-grid {
    grid-template-columns: 1fr;
  }
  body.brand-solimot .footer-jc-grid {
    grid-template-columns: 1fr;
  }
  body.brand-solimot .footer-jc-strip-inner {
    flex-direction: column;
    text-align: center;
  }
}
