﻿@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;700;800&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #000000;
  background: #ffffff;
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 13px;
  border-radius: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: none;
}

.btn-primary {
  background: #FF6B6B;
  color: #ffffff;
  border: none;
}
.btn-primary:hover { background: #e85555; color: #ffffff; }
.btn-primary:active { background: #c94040; }

.btn-outline {
  background: transparent;
  color: #FF6B6B;
  border: 2px solid #FF6B6B;
}
.btn-outline:hover { background: #FF6B6B; color: #ffffff; }

.btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.0;
  background: #FF6B6B;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  transition: background 0.2s;
  cursor: pointer;
}
.btn-sm:hover { background: #e85555; }

.btn-ig-full {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 4px;
  background: #FF6B6B;
  color: #ffffff;
  border: none;
  font-weight: 600;
  font-size: 16px;
  margin-top: 20px;
  transition: background 0.2s;
  cursor: pointer;
}
.btn-ig-full:hover { background: #e85555; }

/* ===== ANNOUNCE BAR ===== */
.announce-bar {
  background: #111111;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 16px;
  letter-spacing: 0.02em;
}
.announce-bar a { color: #FF6B6B; text-decoration: underline; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}

.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 16px;
  transition: color 0.2s;
}
.nav a:hover { color: #FF6B6B; }

.btn-ig {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 13px;
  border-radius: 4px;
  background: #FF6B6B;
  color: #ffffff;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn-ig:hover { background: #e85555; border-color: #e85555; }

/* ===== HERO ===== */
.hero {
  background: #FDF6F0;
  padding: 96px 24px 88px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FF6B6B;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  color: #111111;
  margin-bottom: 22px;
}

.hero-typewriter {
  color: #FF6B6B;
  border-right: 3px solid #FF6B6B;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
}

.hero-sub {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero-deco {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-deco-blob {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle at 40% 40%, #FF6B6B 0%, #FFB347 60%, #FDF6F0 100%);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  opacity: 0.2;
}

.hero-badge { display: none; }

@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-deco { display: none; }
}

/* ===== HERO STRIP ===== */
.hero-strip {
  overflow: hidden;
  height: 240px;
}

.hero-strip-track {
  display: flex;
  width: 200%;
  height: 100%;
  animation: strip-scroll 22s linear infinite;
}

.hero-strip-track:hover { animation-play-state: paused; }

.hero-strip-img {
  flex: 0 0 12.5%;
  overflow: hidden;
  background: #e8e0d8;
}

.hero-strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes strip-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 600px) {
  .hero-strip { height: 140px; }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: #FF6B6B;
  padding: 16px 24px;
}

.trust-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
}

.trust-item i { font-size: 1.1rem; color: #ffffff; }

/* ===== ACCORDION (balloon catalogue) ===== */
.accordion-toggle {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 2px solid #e5e7eb;
  padding: 16px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #FF6B6B;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.accordion-toggle:hover { border-bottom-color: #FF6B6B; }

.accordion-chevron {
  color: #9ca3af;
  font-size: 13px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.accordion-section.is-open .accordion-chevron {
  transform: rotate(180deg);
  color: #FF6B6B;
}

.accordion-body {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding-top 0.3s ease;
}
.accordion-section.is-open .accordion-body {
  max-height: 6000px;
  opacity: 1;
  padding-top: 24px;
  padding-bottom: 32px;
}

/* ===== BOARDS WIZARD ===== */
.wizard-steps {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.wizard-step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #9ca3af;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.wizard-step-dot.active {
  background: #FF6B6B;
  color: #fff;
}

.wizard-step-dot.done {
  background: #FF6B6B;
  color: #fff;
}

.wizard-step-dot.done::before {
  content: '✓';
}

.wizard-step-line {
  flex: 1;
  height: 2px;
  background: #e5e7eb;
  margin: 0 8px;
}

.step-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
}

.step-desc {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 28px;
}

/* Shape selection */
.shape-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 8px;
}

.shape-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px 16px 20px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.shape-card:hover { border-color: #FF6B6B; }
.shape-card.selected {
  border-color: #FF6B6B;
  box-shadow: 0 0 0 3px rgba(255,107,107,0.15);
}

.shape-preview {
  width: 72px;
  height: 152px;
  background: #d1d5db;
  margin: 0 auto 16px;
}

.shape-preview--flat  { border-radius: 4px; }
.shape-preview--round { border-radius: 20px 20px 4px 4px; }
.shape-preview--arch  { border-radius: 50% 50% 4px 4px / 36% 36% 4px 4px; }

.shape-name {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.shape-spec {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

/* Text step */
.board-textarea {
  width: 100%;
  min-height: 110px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.board-textarea:focus { border-color: #FF6B6B; }

.char-counter {
  font-size: 12px;
  color: #9ca3af;
  text-align: right;
  margin: 6px 0 0;
}

/* Design option cards */
.design-options {
  display: flex;
  gap: 20px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.design-option-card {
  flex: 1;
  min-width: 200px;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 28px 20px 24px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.design-option-card:hover { border-color: #FF6B6B; }
.design-option-card.selected {
  border-color: #FF6B6B;
  box-shadow: 0 0 0 3px rgba(255,107,107,0.15);
}

.design-option-icon {
  font-size: 32px;
  color: #FF6B6B;
  margin-bottom: 12px;
}

.design-option-title {
  font-size: 19px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.design-option-desc {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
}

.file-chosen-label {
  font-size: 13px;
  color: #374151;
  margin-top: 12px;
  word-break: break-all;
}

.file-error {
  font-size: 13px;
  color: #dc2626;
  margin-top: 10px;
  line-height: 1.4;
}

/* Wizard navigation row */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
}

.wizard-nav--right { justify-content: flex-end; }

/* Success screen */
.success-screen {
  text-align: center;
  padding: 48px 24px;
}

.success-icon {
  font-size: 64px;
  color: #FF6B6B;
  margin-bottom: 20px;
}

.success-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.success-msg {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 32px;
}

.success-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* boards category card hero shape (used in index.html) */
.boards-hero-shape {
  width: 80px;
  height: 168px;
  background: linear-gradient(135deg, #FF6B6B 0%, #ffa07a 100%);
  border-radius: 50% 50% 4px 4px / 36% 36% 4px 4px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .shape-grid { grid-template-columns: 1fr; }
  .design-options { flex-direction: column; }
}

/* ===== SECTIONS ===== */
.section { padding: 88px 0; }
.section-alt { background: #f7f7f7; color: #1a1a1a; }

.section-title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 10px;
}

.section-alt .section-title { color: #1a1a1a; }

.section-sub {
  text-align: center;
  color: #6b7280;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 56px;
}

.section-alt .section-sub { color: #6b7280; }

/* ===== PRODUCTS ===== */
.product-main-category {
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e5e7eb;
}

.product-main-category:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.main-category-label {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  color: #000000;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}

.main-category-label i {
  color: #FF6B6B;
}

.product-category {
  margin-bottom: 48px;
}
.product-category:last-child { margin-bottom: 0; }

.category-label {
  font-size: 14px;
  font-weight: 700;
  color: #FF6B6B;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.category-label i { color: #FF6B6B; }

.category-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
}

.product-card {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  box-shadow: none;
  transition: transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: #c0c0c0;
  box-shadow: none;
}

.product-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5f5f5;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrap img { transform: scale(1.03); }

.product-info {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: none;
}

.product-info h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  color: #000000;
}

.product-info p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.67;
  color: #757575;
  flex: 1;
}

/* Coming Soon placeholder */
.coming-soon-card {
  background: #f9f9f9;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-height: 160px;
  justify-content: center;
}

.coming-soon-icon {
  font-size: 1.8rem;
  color: #d1d5db;
}

.coming-soon-card p {
  font-size: 14px;
  font-weight: 700;
  color: #757575;
  text-transform: uppercase;
}

/* ===== CATEGORY OVERVIEW ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
}

.category-card {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  box-shadow: none;
  transition: transform 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: #bbb;
  box-shadow: none;
}

.category-card--soon {
  opacity: 0.65;
  cursor: default;
}

.category-card--soon:hover {
  transform: none;
  border-color: #e8e8e8;
}

.category-card-img {
  height: 180px;
  overflow: hidden;
  background: #f5f5f5;
}

.category-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.category-card-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #d1d5db;
}

.category-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: none;
}

.category-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-card-body h3 i { color: #FF6B6B; }

.category-card-body p {
  font-size: 15px;
  color: #757575;
  line-height: 1.5;
  flex: 1;
}

.category-cta {
  font-size: 13px;
  font-weight: 700;
  color: #FF6B6B;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.coming-soon-pill {
  display: inline-block;
  background: #f0f0f0;
  color: #757575;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  align-self: flex-start;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: box-shadow 0.25s ease;
}

.pricing-card:hover {
  box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 14px 0px;
}

.pricing-card.pricing-featured {
  border-color: #FF6B6B;
  border-width: 2px;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #FF6B6B;
  color: #000000;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 13px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pricing-icon {
  font-size: 1.8rem;
  color: #FF6B6B;
  margin-bottom: 14px;
}

.pricing-card h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 36px;
  font-weight: 700;
  color: #FF6B6B;
  line-height: 1.0;
  margin-bottom: 10px;
}

.pricing-price span {
  font-size: 16px;
  font-weight: 400;
  color: #6b7280;
}

.pricing-card > p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.67;
  color: #6b7280;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 5px 0px;
  transition: box-shadow 0.25s ease;
  border-top: 2px solid #FF6B6B;
}

.service-card:hover {
  box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 14px 0px;
}

.service-icon {
  font-size: 1.4rem;
  color: #FF6B6B;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #000000;
}

.service-card p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.67;
  color: #757575;
}

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

.about-text h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.about-text p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.67;
  color: #6b7280;
  margin-bottom: 12px;
}

/* ===== CONTACT ===== */
.contact-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 5px 0px;
  width: 220px;
  transition: box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-top: 2px solid #FF6B6B;
  color: #000000;
}

.contact-card:hover { box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 14px 0px; }
.contact-card.no-link { cursor: default; }
.contact-card.no-link:hover { box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 5px 0px; }

.contact-card i {
  font-size: 1.8rem;
  color: #FF6B6B;
}

.contact-card h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: #000000;
}

.contact-card p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.67;
  color: #757575;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 680px;
  margin: 0 auto 40px;
}

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

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 700;
  color: #000000;
}

.form-input,
.form-textarea {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #000000;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #FF6B6B;
}

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

.form-feedback {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.form-success {
  background: #f0ffd9;
  border: 1px solid #4ade80;
  color: #166534;
}

.form-error {
  background: #fff0f0;
  border: 1px solid #dc2626;
  color: #b91c1c;
}

.contact-alt {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #757575;
  margin-bottom: 20px;
}

/* ===== ARTICLES ===== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.article-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: rgba(0,0,0,0.08) 0 2px 12px;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.article-card:hover {
  box-shadow: rgba(0,0,0,0.18) 0 6px 20px;
  transform: translateY(-3px);
}

.article-card-img {
  height: 200px;
  overflow: hidden;
  background: #FFF5F3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article-card:hover .article-card-img img {
  transform: scale(1.04);
}

.article-card-img-placeholder {
  font-size: 3rem;
  color: #FF6B6B;
  opacity: 0.4;
}

.article-card-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 2px solid #FF6B6B;
}

.article-tag {
  display: inline-block;
  background: #FFF5F3;
  color: #FF6B6B;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  align-self: flex-start;
}

.article-card-body h2 {
  font-size: 17px;
  font-weight: 700;
  color: #000000;
  line-height: 1.35;
}

.article-card-body p {
  font-size: 13px;
  color: #757575;
  line-height: 1.6;
  flex: 1;
}

.article-meta {
  font-size: 12px;
  color: #a0a0a0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-read-more {
  font-size: 13px;
  font-weight: 700;
  color: #FF6B6B;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

/* Article page layout */
.article-main {
  flex: 1;
  padding: 48px 0 80px;
  background: #ffffff;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
}

.article-breadcrumb {
  font-size: 13px;
  color: #757575;
  margin-bottom: 24px;
}

.article-breadcrumb a {
  color: #FF6B6B;
  font-weight: 700;
  text-decoration: none;
}

.article-breadcrumb a:hover { text-decoration: underline; }

.article-breadcrumb span { margin: 0 6px; }

.article-header { margin-bottom: 32px; }

.article-header .article-tag { margin-bottom: 12px; }

.article-header h1 {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  line-height: 1.25;
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .article-header h1 { font-size: 24px; }
}

.article-header-meta {
  font-size: 13px;
  color: #757575;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.article-hero-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 36px;
  background: #FFF5F3;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.article-hero-img img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.article-hero-img-placeholder {
  font-size: 5rem;
  color: #FF6B6B;
  opacity: 0.25;
  padding: 60px;
}

.article-body {
  font-size: 16px;
  line-height: 1.8;
  color: #1a1a1a;
}

.article-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #FFF5F3;
}

.article-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin: 28px 0 12px;
}

.article-body p { margin-bottom: 20px; }

.article-body ul, .article-body ol {
  margin: 0 0 20px 24px;
}

.article-body li { margin-bottom: 8px; }

.article-body strong { color: #000000; }

.article-body a {
  color: #FF6B6B;
  font-weight: 700;
  text-decoration: none;
}

.article-body a:hover { text-decoration: underline; }

.article-body .highlight-box {
  background: #FFF5F3;
  border-left: 4px solid #FF6B6B;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 28px 0;
}

.article-body .highlight-box p { margin-bottom: 0; }

/* Article sidebar */
.article-sidebar { display: flex; flex-direction: column; gap: 24px; }

.sidebar-widget {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: rgba(0,0,0,0.08) 0 2px 12px;
  overflow: hidden;
}

.sidebar-widget-header {
  padding: 14px 20px;
  background: #FF6B6B;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sidebar-widget-body { padding: 20px; }

.sidebar-widget-body p {
  font-size: 14px;
  color: #757575;
  line-height: 1.6;
  margin-bottom: 14px;
}

.sidebar-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: #FF6B6B;
  color: #ffffff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}

.sidebar-cta:hover { background: #e85555; }

.sidebar-article-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  color: inherit;
}

.sidebar-article-link:last-child { border-bottom: none; padding-bottom: 0; }

.sidebar-article-link span {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  line-height: 1.35;
  transition: color 0.2s;
}

.sidebar-article-link:hover span { color: #FF6B6B; }

.sidebar-article-link small {
  font-size: 12px;
  color: #a0a0a0;
}

/* ===== FOOTER ===== */
.footer {
  background: #000000;
  padding: 36px 24px;
  border-top: 1px solid #5e5e5e;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer p {
  font-size: 12px;
  font-weight: 400;
  color: #757575;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: #a7a7a7;
  font-size: 1.2rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #FF6B6B; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 30px; }
}

@media (max-width: 768px) {
  .header-inner { flex-wrap: wrap; gap: 12px; }
  .nav { gap: 18px; flex-wrap: wrap; }
  .hero { padding: 70px 24px 60px; }
  .hero h1 { font-size: 26px; }
  .hero-badge { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .trust-inner { justify-content: center; }
}

@media (max-width: 480px) {
  .nav { display: none; }
  .product-grid, .services-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards { flex-direction: column; align-items: center; }
  .section { padding: 48px 0; }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ===== NAV ACTIONS (cart + login) ===== */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #1a1a1a;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.cart-nav-link:hover { color: #FF6B6B; }

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #FF6B6B;
  color: #000000;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}
.cart-badge--hidden { display: none; }

.nav-login-btn {
  color: #ffffff;
  background: #FF6B6B;
  border: none;
  white-space: nowrap;
}

/* ===== STOCK BADGES ===== */
.product-img-wrap { position: relative; }

.stock-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  pointer-events: none;
}
.stock-badge--in  { background: #FF6B6B; color: #000000; }
.stock-badge--low { background: #f59e0b; color: #000000; }
.stock-badge--out { background: #dc2626; color: #ffffff; }

/* disabled add-to-cart button */
.add-to-cart-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  border-color: #5e5e5e;
}

/* ===== GRID LOADING / ERROR MSG ===== */
.grid-msg {
  grid-column: 1 / -1;
  text-align: center;
  padding: 32px 0;
  color: #757575;
  font-size: 15px;
}
.grid-error { color: #dc2626; }

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.72);
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal-overlay.modal--open { display: flex; }

.modal-box {
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 2px solid #FF6B6B;
  gap: 12px;
}

.modal-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  line-height: 1.3;
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: #757575;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  transition: color 0.2s;
}
.modal-close-btn:hover { color: #000000; }

.modal-body { padding: 20px; display: flex; flex-direction: column; gap: 20px; }

.modal-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #757575;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}
.modal-label-opt { font-weight: 400; text-transform: none; }

.fill-options { display: flex; flex-direction: column; gap: 8px; }

.fill-option {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.fill-option:hover { border-color: #FF6B6B; background: #f9fff0; }
.fill-option input[type="radio"] { accent-color: #FF6B6B; width: 16px; height: 16px; flex-shrink: 0; }
.fill-option:has(input:checked) { border-color: #FF6B6B; background: #f9fff0; }

.fill-option-inner { display: flex; flex-direction: column; gap: 2px; }
.fill-option-name  { font-size: 14px; font-weight: 700; color: #000000; }
.fill-option-desc  { font-size: 12px; color: #757575; }

.modal-section { display: flex; flex-direction: column; }

.modal-text-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.modal-text-input:focus { border-color: #FF6B6B; }

.modal-qty-row { flex-direction: row; align-items: center; justify-content: space-between; }

.qty-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  background: #f5f5f5;
  border: none;
  width: 36px;
  height: 36px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  transition: background 0.2s;
}
.qty-btn:hover { background: #FF6B6B; color: #000000; }

.qty-input {
  width: 52px;
  height: 36px;
  border: none;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  outline: none;
  -moz-appearance: textfield;
}
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

.modal-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 12px 14px;
}
.modal-price-val {
  font-size: 20px;
  font-weight: 700;
  color: #FF6B6B;
}

.modal-footer {
  padding: 0 20px 20px;
}

.modal-add-btn {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 13px;
  background: #FF6B6B;
  color: #000000;
  border-color: #FF6B6B;
}
.modal-add-btn:hover { background: #e85555; border-color: #e85555; color: #000000; }

/* ===== CART TOAST ===== */
.cart-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #000000;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 8px;
  border-left: 3px solid #FF6B6B;
  z-index: 1100;
  white-space: nowrap;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
.cart-toast--show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@media (max-width: 480px) {
  .modal-qty-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .cart-toast { white-space: normal; max-width: calc(100vw - 40px); text-align: center; }
}
