/* ==========================================================================
   CopyMas - Professional Printing E-Commerce
   Comprehensive Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  --primary: #1a365d;
  --primary-light: #2a4a7f;
  --primary-dark: #0f2340;
  --accent: #f6931e;
  --accent-hover: #e07d0a;
  --white: #ffffff;
  --light-gray: #f7f7f7;
  --medium-gray: #e2e2e2;
  --dark-gray: #666666;
  --text: #333333;
  --success: #28a745;
  --danger: #dc3545;
  --warning: #ffc107;
  --font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Instrument Serif', Georgia, serif;
  --max-width: 1200px;
  --header-height: 140px;
  --transition: 0.3s ease;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Landing page dark theme tokens */
  --bg-dark: #0a0a0a;
  --bg-dark-alt: #111111;
  --bg-card: #151515;
  --bg-light: #f5f5f0;
  --whatsapp: #25D366;
  --text-white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.5);
  --text-dark: #333333;
  --text-dark-muted: #666666;
  --border-glow: rgba(246, 147, 30, 0.3);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  color: var(--text);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
}

/* --------------------------------------------------------------------------
   Base Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-dark);
}
h1, h2 {
  font-family: var(--font-display);
  line-height: 1.3;
}

/* Prevent image downloading / dragging */
img {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: auto;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Layout / Container
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.main-content {
  min-height: calc(100vh - var(--header-height) - 400px);
}

/* --------------------------------------------------------------------------
   Top Bar
   -------------------------------------------------------------------------- */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8125rem;
  padding: 6px 0;
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar__link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}

.top-bar__link:hover {
  color: var(--accent);
}

.top-bar__link svg {
  flex-shrink: 0;
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar__text {
  opacity: 0.8;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.header {
  background: var(--white);
  padding: 16px 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.header__logo {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.header__logo-text {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.header__logo-accent {
  color: var(--accent);
}

.header__logo-tagline {
  font-size: 0.6875rem;
  color: var(--dark-gray);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Search Bar */
.header__search {
  flex: 1;
  max-width: 520px;
  position: relative;
}

.search-form {
  display: flex;
  border: 2px solid var(--medium-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.search-form:focus-within {
  border-color: var(--accent);
}

.search-form__input {
  flex: 1;
  padding: 10px 16px;
  border: none;
  outline: none;
  font-size: 0.9375rem;
  background: transparent;
}

.search-form__btn {
  padding: 10px 16px;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition);
}

.search-form__btn:hover {
  background: var(--accent-hover);
}

/* Search Results Dropdown */
.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--medium-gray);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 200;
  max-height: 400px;
  overflow-y: auto;
}

.search-results.active {
  display: block;
}

.search-results__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--light-gray);
  transition: background-color var(--transition);
  cursor: pointer;
}

.search-results__item:hover {
  background: var(--light-gray);
}

.search-results__item-name {
  font-size: 0.9375rem;
  color: var(--text);
}

.search-results__item-price {
  font-size: 0.8125rem;
  color: var(--accent);
  margin-left: auto;
  white-space: nowrap;
}

.search-results__empty {
  padding: 16px;
  text-align: center;
  color: var(--dark-gray);
  font-size: 0.875rem;
}

/* Header Actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* WhatsApp Header Button */
.header__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #25d366;
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background var(--transition);
  text-decoration: none;
}

.header__whatsapp:hover {
  background: #1da851;
  color: var(--white);
}

.header__whatsapp svg {
  flex-shrink: 0;
}

.header__whatsapp-label {
  white-space: nowrap;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
}

.hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Navigation Bar
   -------------------------------------------------------------------------- */
.navbar {
  background: var(--primary);
  position: relative;
  z-index: 90;
}

.navbar__inner {
  display: flex;
  align-items: stretch;
}

.navbar__menu {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.navbar__item {
  position: relative;
}

.navbar__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--transition);
}

.navbar__link:hover,
.navbar__link.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.navbar__link--dropdown {
  cursor: pointer;
}

.navbar__arrow {
  transition: transform var(--transition);
}

.navbar__item--mega:hover .navbar__arrow,
.navbar__item--mega.active .navbar__arrow {
  transform: rotate(180deg);
}

/* Mega Dropdown */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--medium-gray);
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all var(--transition);
  z-index: 100;
  min-width: 700px;
}

.navbar__item--mega:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-dropdown__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 24px;
}

.mega-dropdown__column {
  padding: 0 16px;
}

.mega-dropdown__column:not(:last-child) {
  border-right: 1px solid var(--light-gray);
}

.mega-dropdown__heading {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}

.mega-dropdown__heading:hover {
  color: var(--accent);
}

.mega-dropdown__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mega-dropdown__link {
  display: block;
  font-size: 0.875rem;
  color: var(--dark-gray);
  padding: 4px 0;
  transition: all var(--transition);
}

.mega-dropdown__link:hover {
  color: var(--accent);
  padding-left: 6px;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
  line-height: 1.4;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(246, 147, 30, 0.35);
}

.btn-secondary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-accent {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline-accent:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-sm {
  padding: 6px 16px;
  font-size: 0.8125rem;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1.0625rem;
}

.btn-block {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Product Cards
   -------------------------------------------------------------------------- */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--medium-gray);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.product-card__image {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
  background: var(--light-gray);
}

.product-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.product-card__info {
  padding: 16px;
  flex: 1;
}

.product-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0;
}

.product-card__btn {
  margin: 0 16px 16px;
  text-align: center;
  font-size: 0.875rem;
  padding: 8px 16px;
}

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

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.9375rem;
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(246, 147, 30, 0.15);
}

.form-control::placeholder {
  color: #aaa;
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

select.form-control option:disabled {
  color: #aaa;
  background-color: #f0f0f0;
}

.form-control.is-invalid {
  border-color: var(--danger);
}

.form-error {
  font-size: 0.8125rem;
  color: var(--danger);
  margin-top: 4px;
}

.form-hint {
  font-size: 0.8125rem;
  color: var(--dark-gray);
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 60px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__col {
  min-width: 0;
}

/* Footer Logo */
.footer__logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer__logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.footer__logo-accent {
  color: var(--accent);
}

.footer__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

/* Social Links */
.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all var(--transition);
}

.footer__social-link:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* Footer Headings */
.footer__heading {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

/* Footer Links */
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}

.footer__links a:hover {
  color: var(--accent);
  padding-left: 6px;
}

/* Footer Contact */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__contact li {
  display: flex;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer__contact svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

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

/* Newsletter */
.footer__newsletter {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 0;
}

.footer__newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer__newsletter-text h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.footer__newsletter-text p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

.newsletter-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}

.newsletter-form__input {
  padding: 12px 18px;
  border: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: 0.9375rem;
  width: 300px;
  outline: none;
}

.newsletter-form__btn {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  white-space: nowrap;
}

/* Copyright */
.footer__copyright {
  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.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__copyright-links {
  display: flex;
  gap: 20px;
}

.footer__copyright-links a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer__copyright-links a:hover {
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   WhatsApp Float
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* --------------------------------------------------------------------------
   Chat Widget (bottom-left)
   -------------------------------------------------------------------------- */
#chat-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 998;
}

.chat-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.chat-toggle:hover {
  background: var(--primary-dark, #1a3a5c);
  transform: scale(1.05);
}

.chat-toggle svg {
  flex-shrink: 0;
}

.chat-panel {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 360px;
  max-height: 520px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  overflow: hidden;
}

.chat-panel__header {
  background: var(--primary);
  color: var(--white);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-panel__header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-panel__avatar {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.chat-panel__title {
  font-weight: 600;
  font-size: 0.95rem;
}

.chat-panel__status {
  font-size: 0.75rem;
  opacity: 0.8;
}

.chat-panel__close {
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  padding: 0 4px;
}

.chat-panel__close:hover {
  opacity: 0.7;
}

.chat-panel__messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 300px;
  max-height: 340px;
  background: #f7f8fa;
}

.chat-msg {
  display: flex;
}

.chat-msg--bot {
  justify-content: flex-start;
}

.chat-msg--user {
  justify-content: flex-end;
}

.chat-msg__bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.45;
  word-wrap: break-word;
}

.chat-msg--bot .chat-msg__bubble {
  background: var(--white);
  color: var(--dark-gray);
  border: 1px solid var(--medium-gray);
  border-bottom-left-radius: 4px;
}

.chat-msg--user .chat-msg__bubble {
  background: var(--primary);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.chat-msg--typing .chat-msg__bubble {
  padding: 10px 18px;
}

.typing-dots span {
  animation: typingBounce 1.4s infinite;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-gray);
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

.chat-panel__input {
  display: flex;
  border-top: 1px solid var(--medium-gray);
  padding: 12px;
  gap: 8px;
  background: var(--white);
}

.chat-panel__input input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--medium-gray);
  border-radius: 20px;
  outline: none;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.chat-panel__input input:focus {
  border-color: var(--primary);
}

.chat-panel__input button {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.chat-panel__input button:hover {
  opacity: 0.85;
}

.chat-panel__fallback {
  padding: 8px 16px 12px;
  text-align: center;
  font-size: 0.8rem;
  background: var(--white);
}

.chat-panel__fallback a {
  color: var(--primary);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Hero Carousel
   -------------------------------------------------------------------------- */
.hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--light-gray);
}

.hero-carousel__track {
  display: flex;
  transition: transform 0.5s ease;
}

.hero-carousel__slide {
  min-width: 100%;
  position: relative;
}

.hero-carousel__slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.hero-carousel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 35, 64, 0.92) 0%, rgba(15, 35, 64, 0.7) 50%, rgba(15, 35, 64, 0.15) 100%);
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.hero-carousel__content {
  max-width: 560px;
  color: var(--white);
}

.hero-carousel__content h1 {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-carousel__content p {
  font-size: 1.125rem;
  margin-bottom: 28px;
  opacity: 0.95;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  line-height: 1.6;
}

.btn-accent {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-accent:hover {
  background: #d4850a;
  transform: translateY(-2px);
}

/* Carousel Controls */
.hero-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.hero-carousel__btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.hero-carousel__btn--prev {
  left: 16px;
}

.hero-carousel__btn--next {
  right: 16px;
}

/* Carousel Dots */
.hero-carousel__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.hero-carousel__dot.active {
  background: var(--white);
  transform: scale(1.2);
}

/* --------------------------------------------------------------------------
   Section Headings
   -------------------------------------------------------------------------- */
.section {
  padding: 60px 0;
}

.section--gray {
  background: var(--light-gray);
}

.section__header {
  text-align: center;
  margin-bottom: 40px;
}

.section__title {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.section__subtitle {
  font-size: 1.0625rem;
  color: var(--dark-gray);
  max-width: 600px;
  margin: 0 auto;
}

.section__title-bar {
  width: 50px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 12px auto 0;
}

/* --------------------------------------------------------------------------
   Breadcrumbs
   -------------------------------------------------------------------------- */
.breadcrumbs {
  padding: 16px 0;
  background: var(--light-gray);
  border-bottom: 1px solid var(--medium-gray);
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.875rem;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs__item:not(:last-child)::after {
  content: '/';
  color: var(--dark-gray);
}

.breadcrumbs__link {
  color: var(--dark-gray);
  transition: color var(--transition);
}

.breadcrumbs__link:hover {
  color: var(--accent);
}

.breadcrumbs__current {
  color: var(--primary);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Product Detail Page
   -------------------------------------------------------------------------- */
.product-detail {
  padding: 40px 0 60px;
}

.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.product-detail__gallery {
  min-width: 0;
}

.product-detail__info {
  min-width: 0;
}

/* Gallery */
.product-detail__main-image {
  position: relative;
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--light-gray);
  aspect-ratio: 4 / 3;
  max-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Arrows — hidden by default, appear on hover */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #333;
  padding: 0;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.product-detail__main-image:hover .gallery-arrow {
  opacity: 1;
}

.gallery-arrow:hover {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
  transform: translateY(-50%) scale(1.08);
}

.gallery-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.gallery-arrow--left {
  left: 12px;
}

.gallery-arrow--right {
  right: 12px;
}

/* Main image — fade transition on swap */
.product-detail__main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.product-detail__main-image img.gallery-fade-out {
  opacity: 0;
}

.product-detail__main-image img.gallery-fade-in {
  opacity: 1;
}

/* Image counter badge */
.gallery-counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
  letter-spacing: 0.5px;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

/* Thumbnails — horizontal scroll strip */
.product-detail__thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar but keep scroll functionality */
.product-detail__thumbnails::-webkit-scrollbar {
  height: 4px;
}
.product-detail__thumbnails::-webkit-scrollbar-track {
  background: transparent;
}
.product-detail__thumbnails::-webkit-scrollbar-thumb {
  background: var(--medium-gray);
  border-radius: 4px;
}

.product-thumbnail {
  width: 72px;
  height: 72px;
  min-width: 72px;
  object-fit: cover;
  border: 2px solid var(--medium-gray);
  border-radius: var(--radius-sm);
  cursor: pointer;
  opacity: 0.7;
  transition: border-color 0.2s ease, opacity 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease, filter 0.3s ease;
}

.product-thumbnail:hover {
  border-color: var(--accent);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-thumbnail.active {
  border-color: var(--accent);
  opacity: 1;
  box-shadow: 0 0 0 2px var(--accent);
}


/* Info */
.product-detail__name {
  margin-bottom: 16px;
}

.product-detail__description {
  margin-bottom: 24px;
  color: var(--dark-gray);
  line-height: 1.7;
}

.product-detail__specs {
  margin-bottom: 8px;
}

/* Quantity */
.product-detail__qty {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 160px;
}

.product-detail__qty-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  border: 1px solid var(--medium-gray);
  background: var(--light-gray);
  color: var(--text);
  cursor: pointer;
  transition: background var(--transition);
}

.product-detail__qty-btn:hover {
  background: var(--medium-gray);
}

.product-detail__qty-input {
  width: 80px;
  text-align: center;
  border-radius: 0;
  border-left: none;
  border-right: none;
  -moz-appearance: textfield;
}

.product-detail__qty-input::-webkit-inner-spin-button,
.product-detail__qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Pricing Table */
.product-detail__pricing {
  margin: 24px 0;
}

.product-detail__pricing h4 {
  margin-bottom: 12px;
}

.product-detail__pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.product-detail__pricing-table th,
.product-detail__pricing-table td {
  padding: 10px 16px;
  text-align: left;
  border-bottom: 1px solid var(--medium-gray);
}

.product-detail__pricing-table th {
  background: var(--light-gray);
  font-weight: 600;
  color: var(--primary-dark);
}

.product-detail__pricing-table tr:hover td {
  background: rgba(246, 147, 30, 0.05);
}

.product-detail__pricing-note {
  margin-top: 8px;
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 600;
}

.form-hint {
  margin-top: 6px;
  font-size: 0.75rem;
  color: var(--dark-gray);
  line-height: 1.4;
}

/* Price Display */
.product-detail__price-display {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 24px;
  margin: 24px 0;
  background: linear-gradient(135deg, #fff8f0, #fff3e0);
  border: 2px solid var(--accent);
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-detail__price-display.price-updated {
  transform: scale(1.02);
  box-shadow: 0 0 0 3px rgba(246, 147, 30, 0.3);
}

.product-detail__price-unit,
.product-detail__price-total {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.product-detail__price-display .price-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark-gray);
  font-weight: 600;
  white-space: nowrap;
  min-width: 70px;
}

.product-detail__price-unit span:not(.price-label) {
  font-size: 0.9375rem;
  color: var(--text);
}

.product-detail__price-total strong {
  font-size: 1.5rem;
  color: var(--accent);
}

.product-detail__price-total strong {
  font-size: 1.5rem;
  color: var(--accent);
}

/* Upload */
.product-detail__upload {
  margin-bottom: 24px;
}

.product-detail__upload h4 {
  margin-bottom: 8px;
}

.product-detail__upload-note {
  font-size: 0.8125rem;
  color: var(--dark-gray);
  margin-bottom: 10px;
}

/* Confirm Order via WhatsApp */
.product-detail__order-btn {
  width: 100%;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: #25d366;
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform 0.15s ease;
}

.product-detail__order-btn:hover {
  background: #1da851;
  transform: translateY(-1px);
}

.product-detail__order-btn:active {
  transform: translateY(0);
}

.product-detail__order-btn svg {
  flex-shrink: 0;
}

.product-detail__order-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--dark-gray);
  line-height: 1.5;
  margin-bottom: 16px;
}

/* Related Products */
.product-detail__related {
  padding: 48px 0 60px;
  background: var(--light-gray);
}

.product-detail__related .section-title {
  font-size: 1.5rem;
  margin-bottom: 32px;
  color: var(--primary-dark);
}

/* Product Detail Responsive */
@media (max-width: 768px) {
  .product-detail__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-detail__price-display {
    flex-direction: column;
    gap: 14px;
    padding: 16px;
  }
  .product-detail__price-unit,
  .product-detail__price-total {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .product-detail__price-display .price-label {
    min-width: auto;
  }
  .product-detail__price-total strong {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
    word-break: break-word;
  }
  .product-detail__price-unit span:not(.price-label) {
    font-size: 0.8125rem;
    word-break: break-word;
  }
}

/* --------------------------------------------------------------------------
   Pagination
   -------------------------------------------------------------------------- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 40px;
}

.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}

.pagination__link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pagination__link.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.pagination__link.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Alerts / Messages
   -------------------------------------------------------------------------- */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid transparent;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border-color: #c3e6cb;
}

.alert-danger {
  background: #f8d7da;
  color: #721c24;
  border-color: #f5c6cb;
}

.alert-warning {
  background: #fff3cd;
  color: #856404;
  border-color: #ffeeba;
}

.alert-info {
  background: #d1ecf1;
  color: #0c5460;
  border-color: #bee5eb;
}

.alert__close {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: inherit;
  cursor: pointer;
  opacity: 0.6;
  line-height: 1;
}

.alert__close:hover {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Category Circles (Homepage)
   -------------------------------------------------------------------------- */
.category-circles {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  justify-items: center;
}

.category-circle {
  text-align: center;
  transition: all var(--transition);
}

.category-circle:hover {
  transform: translateY(-6px);
}

.category-circle:hover .category-circle__name {
  color: var(--primary);
}

.category-circle__image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  border: 3px solid var(--medium-gray);
  transition: border-color var(--transition);
  background: var(--light-gray);
}

.category-circle:hover .category-circle__image {
  border-color: var(--accent);
}

.category-circle__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Icon variant for SVG category icons */
.category-circle__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-width: 3px;
  border-style: solid;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.category-circle__icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  border: 2px dashed currentColor;
}

.category-circle:hover .category-circle__icon {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.category-circle:hover .category-circle__icon::after {
  opacity: 0.25;
}

.category-circle__icon svg {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.category-circle:hover .category-circle__icon svg {
  transform: scale(1.08) rotate(-3deg);
}

.category-circle__letter {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.category-circle__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

/* --------------------------------------------------------------------------
   Star Ratings
   -------------------------------------------------------------------------- */
.star-rating {
  display: inline-flex;
  gap: 2px;
  color: var(--warning);
}

.star-rating__star {
  font-size: 1rem;
}

.star-rating__star--empty {
  color: var(--medium-gray);
}

.star-rating__count {
  font-size: 0.8125rem;
  color: var(--dark-gray);
  margin-left: 6px;
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/* --------------------------------------------------------------------------
   Responsive: Tablet (768px - 1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .category-circles {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .products-page__layout {
    grid-template-columns: 200px 1fr;
    gap: 24px;
  }

  .mega-dropdown {
    min-width: 560px;
  }

  .mega-dropdown__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-carousel__slide img {
    height: 320px;
  }

  .hero-carousel__content h1 {
    font-size: 2rem;
  }

  .footer__newsletter-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .newsletter-form__input {
    width: 260px;
  }
}

/* --------------------------------------------------------------------------
   Responsive: Mobile (<768px)
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  :root {
    --header-height: auto;
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }

  /* Top Bar */
  .top-bar__right {
    display: none;
  }

  .top-bar__left {
    gap: 12px;
    font-size: 0.75rem;
  }

  /* Header */
  .header__inner {
    flex-wrap: wrap;
    gap: 12px;
  }

  .header__logo-text {
    font-size: 1.5rem;
  }

  .header__search {
    order: 3;
    max-width: 100%;
    flex-basis: 100%;
  }

  .header__whatsapp-label {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Navigation - Mobile Slide */
  .navbar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    z-index: 100;
    overflow-y: auto;
    transition: right var(--transition);
  }

  .navbar.active {
    right: 0;
  }

  .navbar__inner {
    flex-direction: column;
    padding: 60px 0 20px;
  }

  .navbar__menu {
    flex-direction: column;
  }

  .navbar__link {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Mega Dropdown Mobile */
  .mega-dropdown {
    position: static;
    min-width: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    border: none;
    border-top: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.15);
  }

  .navbar__item--mega.active .mega-dropdown {
    display: block;
  }

  .mega-dropdown__inner {
    grid-template-columns: 1fr;
    padding: 12px 20px;
    gap: 4px;
  }

  .mega-dropdown__column {
    padding: 0;
    border-right: none !important;
  }

  .mega-dropdown__heading {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
    margin-bottom: 6px;
    padding-bottom: 6px;
  }

  .mega-dropdown__link {
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 12px;
  }

  .mega-dropdown__link:hover {
    color: var(--accent);
  }

  /* Products Page - Sidebar collapses to overlay on mobile */
  .products-page__layout {
    grid-template-columns: 1fr;
  }

  .products-page__filter-toggle {
    display: inline-flex;
  }

  .products-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    z-index: 200;
    border-radius: 0;
    overflow-y: auto;
    transition: left var(--transition);
  }

  .products-sidebar.active {
    left: 0;
  }

  .products-sidebar__close {
    display: block;
  }

  /* Product Grid */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-card__info {
    padding: 12px;
  }

  .product-card__name {
    font-size: 0.8125rem;
  }

  .product-card__price {
    font-size: 0.875rem;
  }

  .product-card__btn {
    margin: 0 12px 12px;
    padding: 6px 12px;
    font-size: 0.8125rem;
  }

  /* Category Circles */
  .category-circles {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .category-circle__image {
    width: 80px;
    height: 80px;
  }

  /* Hero */
  .hero-carousel__slide img {
    height: 250px;
  }

  .hero-carousel__overlay {
    padding: 0 20px;
  }

  .hero-carousel__content h1 {
    font-size: 1.5rem;
  }

  .hero-carousel__content p {
    font-size: 0.9375rem;
  }

  /* Footer */
  .footer {
    padding-top: 40px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__newsletter-inner {
    flex-direction: column;
    text-align: center;
  }

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

  .newsletter-form__input {
    width: 100%;
    border-radius: var(--radius-sm);
  }

  .newsletter-form__btn {
    border-radius: var(--radius-sm);
  }

  .footer__copyright {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Section */
  .section {
    padding: 40px 0;
  }

  .section__title {
    font-size: 1.5rem;
  }

  /* Pagination */
  .pagination {
    gap: 2px;
  }

  .pagination__link {
    min-width: 36px;
    height: 36px;
    font-size: 0.8125rem;
  }

  /* Chat Widget */
  .chat-panel {
    width: calc(100vw - 32px);
    left: 16px;
  }

  /* WhatsApp */
  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
  }
}

/* --------------------------------------------------------------------------
   Responsive: Small Mobile (<480px)
   -------------------------------------------------------------------------- */
@media (max-width: 479px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .category-circles {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-carousel__slide img {
    height: 200px;
  }

  .hero-carousel__btn {
    width: 36px;
    height: 36px;
  }
}

/* --------------------------------------------------------------------------
   Products Page Layout
   -------------------------------------------------------------------------- */
.products-page {
  padding: 32px 0 60px;
}

.products-page__layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}

.products-page__filter-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  grid-column: 1 / -1;
}

/* Products Sidebar */
.products-sidebar {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  position: sticky;
  top: 20px;
}

.products-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.products-sidebar__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.products-sidebar__close {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-gray);
  line-height: 1;
}

.products-sidebar__list {
  list-style: none;
}

.products-sidebar__item {
  margin-bottom: 2px;
}

.products-sidebar__link {
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text);
  transition: all var(--transition);
}

.products-sidebar__link:hover {
  background: var(--light-gray);
  color: var(--accent);
}

.products-sidebar__link--active {
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
}

.products-sidebar__link--active:hover {
  background: var(--accent-hover);
  color: var(--white);
}

.products-sidebar__clear {
  display: block;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--medium-gray);
  font-size: 0.85rem;
  color: var(--danger);
  text-align: center;
  transition: color var(--transition);
}

.products-sidebar__clear:hover {
  color: var(--primary);
}

/* Products Main */
.products-main__header {
  margin-bottom: 20px;
}

.products-main__title {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.products-main__count {
  font-size: 0.9rem;
  color: var(--dark-gray);
}

/* Products Search */
.products-search {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.products-search__input {
  flex: 1;
}

.products-search__btn {
  white-space: nowrap;
}

/* Products Empty State */
.products-empty {
  text-align: center;
  padding: 60px 20px;
}

.products-empty svg {
  margin-bottom: 16px;
}

.products-empty h2 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.products-empty p {
  color: var(--dark-gray);
  margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   Category Page
   -------------------------------------------------------------------------- */
.category-page {
  padding: 32px 0 60px;
}

.category-page__header {
  margin-bottom: 24px;
}

.category-page__title {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.category-page__description {
  font-size: 1rem;
  color: var(--dark-gray);
  max-width: 700px;
  line-height: 1.6;
}

.category-page__count {
  font-size: 0.9rem;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

/* Category Pills */
.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.category-pill {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--medium-gray);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
}

.category-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.category-pill--active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.category-pill--active:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
}

/* --------------------------------------------------------------------------
   Cart Page
   -------------------------------------------------------------------------- */
.cart-page {
  padding: 32px 0 60px;
}

.cart-page__title {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.cart-page__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

/* Empty Cart */
.cart-empty {
  text-align: center;
  padding: 80px 20px;
}

.cart-empty__icon {
  margin-bottom: 20px;
}

.cart-empty__message {
  font-size: 1.125rem;
  color: var(--dark-gray);
  margin-bottom: 24px;
}

/* Cart Table */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.cart-table__th {
  text-align: left;
  padding: 14px 16px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark-gray);
  background: var(--light-gray);
  border-bottom: 2px solid var(--medium-gray);
}

.cart-table__td {
  padding: 16px;
  border-bottom: 1px solid var(--medium-gray);
  vertical-align: middle;
}

.cart-table__row:last-child .cart-table__td {
  border-bottom: none;
}

/* Product cell */
.cart-table__product {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}

.cart-table__img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--medium-gray);
  flex-shrink: 0;
}

.cart-table__name {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9375rem;
  line-height: 1.4;
}

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

/* Specs cell */
.cart-table__specs {
  min-width: 120px;
}

.cart-table__spec {
  display: block;
  font-size: 0.8125rem;
  color: var(--dark-gray);
  line-height: 1.6;
}

.cart-table__spec--none {
  font-style: italic;
  color: var(--medium-gray);
}

/* Quantity cell */
.cart-qty-form__input {
  width: 72px;
  padding: 6px 8px;
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  text-align: center;
}

.cart-qty-form__input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(246, 147, 30, 0.15);
}

/* Price cells */
.cart-table__price,
.cart-table__subtotal {
  font-weight: 600;
  white-space: nowrap;
}

.cart-table__subtotal {
  color: var(--primary);
}

/* Remove button */
.cart-remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark-gray);
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-remove-btn:hover {
  color: var(--danger);
  background: rgba(220, 53, 69, 0.08);
}

/* Cart Summary */
.cart-summary {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  position: sticky;
  top: 20px;
}

.cart-summary__title {
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--medium-gray);
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 1rem;
}

.cart-summary__amount {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
}

.cart-summary__actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-summary__continue {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--accent);
  font-weight: 500;
}

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

/* Cart responsive */
@media (max-width: 768px) {
  .cart-page__layout {
    grid-template-columns: 1fr;
  }

  .cart-table {
    display: block;
    overflow-x: auto;
  }

  .cart-table__product {
    min-width: 160px;
  }

  .cart-summary {
    position: static;
  }
}

/* --------------------------------------------------------------------------
   Checkout Page
   -------------------------------------------------------------------------- */
.checkout-page {
  padding: 32px 0 60px;
}

.checkout-page__title {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.checkout-page__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

/* Shipping Form */
.checkout-shipping {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px;
}

.checkout-shipping__heading {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--medium-gray);
}

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

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

.form-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-label__optional {
  font-weight: 400;
  color: var(--dark-gray);
  font-size: 0.8125rem;
}

.required {
  color: var(--danger);
}

.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-family: var(--font-family);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(246, 147, 30, 0.12);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-file {
  padding: 8px;
  font-size: 0.875rem;
}

/* Checkout Summary */
.checkout-summary {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  position: sticky;
  top: 20px;
}

.checkout-summary__heading {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--medium-gray);
}

.checkout-summary__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkout-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkout-item__img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--medium-gray);
  flex-shrink: 0;
}

.checkout-item__info {
  flex: 1;
  min-width: 0;
}

.checkout-item__name {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkout-item__qty {
  font-size: 0.8125rem;
  color: var(--dark-gray);
}

.checkout-item__subtotal {
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

.checkout-summary__divider {
  height: 1px;
  background: var(--medium-gray);
  margin: 20px 0;
}

.checkout-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  margin-bottom: 20px;
}

.checkout-summary__total strong {
  font-size: 1.375rem;
  color: var(--accent);
}

.checkout-summary__btn {
  margin-bottom: 12px;
}

.checkout-summary__back {
  display: block;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--accent);
  font-weight: 500;
}

.checkout-summary__back:hover {
  color: var(--accent-hover);
}

/* Checkout Responsive */
@media (max-width: 768px) {
  .checkout-page__layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }

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

/* --------------------------------------------------------------------------
   Order Confirmation Page
   -------------------------------------------------------------------------- */
.order-page {
  padding: 32px 0 60px;
}

/* Success Banner */
.order-success-banner {
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 32px;
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border-radius: var(--radius-md);
  color: #155724;
}

.order-success-banner__icon {
  margin-bottom: 12px;
}

.order-success-banner__title {
  font-size: 1.75rem;
  margin-bottom: 8px;
  color: #155724;
}

.order-success-banner__text {
  font-size: 1.0625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge--pending {
  background: #fff3cd;
  color: #856404;
}

.badge--processing {
  background: #d1ecf1;
  color: #0c5460;
}

.badge--completed, .badge--verified {
  background: #d4edda;
  color: #155724;
}

.badge--cancelled, .badge--rejected {
  background: #f8d7da;
  color: #721c24;
}

.badge--shipped {
  background: #cce5ff;
  color: #004085;
}

/* Order Layout */
.order-page__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* Bank Details */
.order-bank-details {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px;
}

.order-bank-details__heading {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.order-bank-details__instruction {
  font-size: 0.9375rem;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.order-bank-details__card {
  background: var(--light-gray);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--medium-gray);
}

.order-bank-details__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--medium-gray);
}

.order-bank-details__row:last-child {
  border-bottom: none;
}

.order-bank-details__row--total {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 2px solid var(--primary);
  border-bottom: none;
}

.order-bank-details__label {
  font-size: 0.9375rem;
  color: var(--dark-gray);
}

.order-bank-details__value {
  font-size: 0.9375rem;
  color: var(--text);
}

.order-bank-details__value--amount {
  font-size: 1.25rem;
  color: var(--accent);
}

/* Payment Upload */
.order-payment-upload {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--medium-gray);
}

.order-payment-upload__heading {
  font-size: 1.0625rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.order-payment-upload__text {
  font-size: 0.875rem;
  color: var(--dark-gray);
  margin-bottom: 16px;
}

.order-payment-upload__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-payment-upload__form .form-group {
  margin-bottom: 0;
}

/* Payment Status */
.order-payment-status {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--medium-gray);
}

.order-payment-status__heading {
  font-size: 1.0625rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.order-payment-status__info {
  margin-bottom: 16px;
}

.order-payment-status__label {
  font-size: 0.875rem;
  color: var(--dark-gray);
  margin-bottom: 8px;
}

.order-payment-status__thumb-link {
  display: inline-block;
}

.order-payment-status__thumb {
  max-width: 200px;
  max-height: 200px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid var(--medium-gray);
  cursor: pointer;
  transition: opacity var(--transition);
}

.order-payment-status__thumb:hover {
  opacity: 0.85;
}

/* Order Items Table */
.order-items {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px;
}

.order-items__heading {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--medium-gray);
}

.order-items__table {
  width: 100%;
  border-collapse: collapse;
}

.order-items__table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark-gray);
  background: var(--light-gray);
  border-bottom: 2px solid var(--medium-gray);
}

.order-items__table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--medium-gray);
  vertical-align: middle;
}

.order-items__table tbody tr:last-child td {
  border-bottom: none;
}

.order-items__table tfoot td {
  padding: 16px;
  border-top: 2px solid var(--medium-gray);
  font-size: 1.0625rem;
}

.order-items__product {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.order-items__img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--medium-gray);
  flex-shrink: 0;
}

.order-items__name {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9375rem;
}

/* Order Actions */
.order-page__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

/* Order Responsive */
@media (max-width: 768px) {
  .order-page__layout {
    grid-template-columns: 1fr;
  }

  .order-items__table {
    display: block;
    overflow-x: auto;
  }

  .order-page__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .order-page__actions .btn {
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   Dashboard Page
   -------------------------------------------------------------------------- */
.dashboard-page {
  padding: 32px 0 60px;
}

.dashboard-page__title {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.dashboard-page__section-title {
  font-size: 1.375rem;
  color: var(--primary);
  margin-bottom: 20px;
}

/* User Card */
.dashboard-user-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  margin-bottom: 32px;
}

.dashboard-user-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dashboard-user-card__name {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.dashboard-user-card__detail {
  font-size: 0.9375rem;
  color: var(--dark-gray);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

/* Dashboard Empty State */
.dashboard-empty {
  text-align: center;
  padding: 60px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.dashboard-empty svg {
  margin-bottom: 16px;
}

.dashboard-empty p {
  font-size: 1.0625rem;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

/* Orders Table */
.dashboard-orders-table-wrapper {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.dashboard-orders-table {
  width: 100%;
  border-collapse: collapse;
}

.dashboard-orders-table th {
  text-align: left;
  padding: 14px 20px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark-gray);
  background: var(--light-gray);
  border-bottom: 2px solid var(--medium-gray);
}

.dashboard-orders-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--medium-gray);
  vertical-align: middle;
}

.dashboard-orders-table tbody tr:last-child td {
  border-bottom: none;
}

.dashboard-orders-table tbody tr:hover td {
  background: rgba(246, 147, 30, 0.03);
}

/* Button variants (btn-outline defined with .btn above) */

.btn-sm {
  padding: 6px 14px;
  font-size: 0.8125rem;
}

/* Dashboard Responsive */
@media (max-width: 768px) {
  .dashboard-user-card {
    flex-direction: column;
    text-align: center;
  }

  .dashboard-user-card__detail {
    justify-content: center;
  }

  .dashboard-orders-table-wrapper {
    overflow-x: auto;
  }

  .dashboard-orders-table th,
  .dashboard-orders-table td {
    padding: 12px 14px;
    font-size: 0.875rem;
  }
}

/* --------------------------------------------------------------------------
   Page Hero Banner
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg, #1a365d 0%, #2a4a7f 50%, #3b6cb5 100%);
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: rgba(15, 35, 64, 0.5);
}

.page-hero__title {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.page-hero__subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  max-width: 600px;
}

/* --------------------------------------------------------------------------
   About Page
   -------------------------------------------------------------------------- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-story__heading {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.about-story__text p {
  color: var(--dark-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-story__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--light-gray);
  border: 2px dashed var(--medium-gray);
  border-radius: var(--radius-md);
  min-height: 320px;
  color: var(--dark-gray);
  font-size: 0.9375rem;
}

.about-cards {
  display: grid;
  gap: 28px;
}

.about-cards--two {
  grid-template-columns: repeat(2, 1fr);
}

.about-cards--three {
  grid-template-columns: repeat(3, 1fr);
}

.about-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 32px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-card__icon {
  margin-bottom: 20px;
}

.about-card h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.about-card p {
  color: var(--dark-gray);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.about-equipment__list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

.about-equipment__list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--medium-gray);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
}

.about-equipment__list li:last-child {
  border-bottom: none;
}

.about-equipment__list li strong {
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   Contact Page
   -------------------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 32px;
}

.form-required {
  color: var(--danger);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}

.contact-info-card__icon {
  margin-bottom: 12px;
}

.contact-info-card h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-info-card p {
  font-size: 0.9375rem;
  color: var(--dark-gray);
  line-height: 1.6;
  margin-bottom: 4px;
}

.contact-info-card a {
  color: var(--accent);
  transition: color var(--transition);
}

.contact-info-card a:hover {
  color: var(--accent-hover);
}

.contact-map {
  margin-top: 48px;
}

.contact-map__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--light-gray);
  border: 2px dashed var(--medium-gray);
  border-radius: var(--radius-md);
  min-height: 300px;
  text-align: center;
  padding: 24px;
}

.contact-map__placeholder p {
  color: var(--text);
  font-size: 1.0625rem;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   FAQ Page
   -------------------------------------------------------------------------- */
.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-section {
  margin-bottom: 40px;
}

.faq-section__title {
  font-size: 1.375rem;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}

.faq-item {
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  background: var(--white);
  overflow: hidden;
}

.faq-item__question {
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), color var(--transition);
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform var(--transition);
}

.faq-item[open] .faq-item__question::after {
  content: '\2212';
}

.faq-item__question:hover {
  background: var(--light-gray);
  color: var(--primary);
}

.faq-item[open] .faq-item__question {
  background: var(--primary);
  color: var(--white);
}

.faq-item[open] .faq-item__question::after {
  color: var(--white);
}

.faq-item__answer {
  padding: 16px 20px;
  border-top: 1px solid var(--medium-gray);
}

.faq-item__answer p {
  color: var(--dark-gray);
  line-height: 1.7;
  font-size: 0.9375rem;
  margin-bottom: 12px;
}

.faq-item__answer p:last-child {
  margin-bottom: 0;
}

.faq-item__answer a {
  color: var(--accent);
  font-weight: 500;
}

.faq-item__answer a:hover {
  color: var(--accent-hover);
}

.faq-cta {
  text-align: center;
  padding: 40px;
  background: var(--light-gray);
  border-radius: var(--radius-md);
}

.faq-cta h3 {
  font-size: 1.375rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.faq-cta p {
  color: var(--dark-gray);
  margin-bottom: 20px;
  font-size: 1rem;
}

.faq-cta__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   How to Order Steps
   -------------------------------------------------------------------------- */
.order-steps {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.order-steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--medium-gray);
}

.order-step {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
}

.order-step:last-child {
  margin-bottom: 0;
}

.order-step__number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(26, 54, 93, 0.3);
}

.order-step__content {
  flex: 1;
  padding-top: 8px;
}

.order-step__icon {
  margin-bottom: 8px;
}

.order-step__content h3 {
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.order-step__content p {
  color: var(--dark-gray);
  line-height: 1.7;
  font-size: 0.9375rem;
}

.order-step__content a {
  color: var(--accent);
  font-weight: 500;
}

.order-step__content a:hover {
  color: var(--accent-hover);
}

/* --------------------------------------------------------------------------
   Payment Guide
   -------------------------------------------------------------------------- */
.payment-bank {
  max-width: 700px;
  margin: 0 auto 48px;
}

.payment-bank__title {
  font-size: 1.5rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 24px;
}

.payment-bank__card {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.payment-bank__table {
  width: 100%;
  border-collapse: collapse;
}

.payment-bank__label {
  padding: 8px 16px 8px 0;
  color: var(--dark-gray);
  font-size: 0.9375rem;
  white-space: nowrap;
  vertical-align: top;
}

.payment-bank__value {
  padding: 8px 0;
  color: var(--text);
  font-size: 1rem;
}

.payment-notes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.payment-note {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--light-gray);
  border-radius: var(--radius-md);
}

.payment-note__icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.payment-note strong {
  display: block;
  color: var(--primary);
  margin-bottom: 4px;
  font-size: 0.9375rem;
}

.payment-note p {
  color: var(--dark-gray);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Delivery Page
   -------------------------------------------------------------------------- */
.delivery-table-wrap {
  max-width: 800px;
  margin: 0 auto;
  overflow-x: auto;
}

.delivery-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.delivery-table th {
  background: var(--primary);
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
}

.delivery-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--medium-gray);
  font-size: 0.9375rem;
  vertical-align: top;
}

.delivery-table tbody tr:last-child td {
  border-bottom: none;
}

.delivery-table tbody tr:hover td {
  background: rgba(246, 147, 30, 0.04);
}

.delivery-table__sub {
  display: block;
  font-size: 0.8125rem;
  color: var(--dark-gray);
  margin-top: 4px;
}

.delivery-notes {
  max-width: 800px;
  margin: 48px auto 0;
  padding: 28px;
  background: var(--light-gray);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent);
}

.delivery-notes__list {
  list-style: none;
}

.delivery-notes__list li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 0.9375rem;
  color: var(--dark-gray);
  line-height: 1.6;
}

.delivery-notes__list li::before {
  content: '\2022';
  position: absolute;
  left: 4px;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   Blog Pages
   -------------------------------------------------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card__image {
  height: 200px;
  overflow: hidden;
  background: var(--light-gray);
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: var(--light-gray);
}

.blog-card__body {
  padding: 20px;
}

.blog-card__date {
  font-size: 0.8125rem;
  color: var(--dark-gray);
  display: block;
  margin-bottom: 8px;
}

.blog-card__title {
  font-size: 1.125rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card__title a {
  color: var(--primary);
  transition: color var(--transition);
}

.blog-card__title a:hover {
  color: var(--accent);
}

.blog-card__excerpt {
  font-size: 0.9375rem;
  color: var(--dark-gray);
  line-height: 1.6;
  margin-bottom: 14px;
}

.blog-card__link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
  transition: color var(--transition);
}

.blog-card__link:hover {
  color: var(--accent-hover);
}

.blog-empty {
  text-align: center;
  padding: 60px 20px;
}

.blog-empty svg {
  margin-bottom: 16px;
}

.blog-empty h2 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.blog-empty p {
  color: var(--dark-gray);
  font-size: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

/* Blog Post */
.blog-post {
  max-width: 760px;
  margin: 0 auto;
}

.blog-post__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 32px;
}

.blog-post__image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-post__header {
  margin-bottom: 32px;
}

.blog-post__title {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-post__date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  color: var(--dark-gray);
}

.blog-post__content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text);
}

.blog-post__content p {
  margin-bottom: 18px;
}

.blog-post__content h2 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--primary);
}

.blog-post__content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--primary);
}

.blog-post__content img {
  max-width: 100%;
  border-radius: var(--radius-md);
  margin: 24px 0;
}

.blog-post__content a {
  color: var(--accent);
}

.blog-post__footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--medium-gray);
}

.blog-post__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  transition: color var(--transition);
}

.blog-post__back:hover {
  color: var(--accent-hover);
}

/* --------------------------------------------------------------------------
   Reviews Page
   -------------------------------------------------------------------------- */
.reviews-avg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 16px 0 8px;
}

.reviews-avg__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.reviews-avg__stars {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reviews-avg__count {
  font-size: 0.875rem;
  color: var(--dark-gray);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.review-card__comment {
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 0.9375rem;
}

.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.review-card__author {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.875rem;
}

.review-card__date {
  font-size: 0.8125rem;
  color: var(--dark-gray);
}

/* --------------------------------------------------------------------------
   Static Pages Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .about-cards--three {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .payment-notes__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .page-hero {
    height: 200px;
  }

  .page-hero__title {
    font-size: 1.75rem;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-cards--two,
  .about-cards--three {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-form-wrap {
    padding: 24px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .payment-bank__card {
    flex-direction: column;
    text-align: center;
  }

  .order-steps::before {
    left: 20px;
  }

  .order-step__number {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .order-step {
    gap: 16px;
  }

  .blog-post__title {
    font-size: 1.5rem;
  }

  .delivery-table th,
  .delivery-table td {
    padding: 12px 14px;
    font-size: 0.875rem;
  }
}

/* --------------------------------------------------------------------------
   Search Dropdown
   -------------------------------------------------------------------------- */
.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid var(--medium-gray);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
  max-height: 400px;
  overflow-y: auto;
}
.search-dropdown__item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid var(--light-gray);
  transition: background var(--transition);
}
.search-dropdown__item:hover {
  background: var(--light-gray);
}
.search-dropdown__img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 12px;
}
.search-dropdown__name {
  font-weight: 500;
}
.search-dropdown__price {
  color: var(--accent);
  font-size: 0.9em;
}
.search-dropdown__empty {
  padding: 20px;
  text-align: center;
  color: var(--dark-gray);
}

/* --------------------------------------------------------------------------
   Print Styles
   -------------------------------------------------------------------------- */
@media print {
  .top-bar,
  .header__search,
  .header__actions,
  .navbar,
  .whatsapp-float,
  #chat-widget,
  .footer__newsletter,
  .footer__social {
    display: none !important;
  }

  .footer {
    background: none;
    color: var(--text);
  }

  .footer__heading {
    color: var(--text);
  }
}

/* --------------------------------------------------------------------------
   Landing Page — Dark Theme Overrides (scoped to body.page-home)
   -------------------------------------------------------------------------- */
body.page-home {
  background: var(--bg-dark);
}
body.page-home .top-bar {
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
body.page-home .top-bar__link,
body.page-home .top-bar__text {
  color: var(--text-muted);
}
body.page-home .top-bar__link:hover {
  color: var(--text-white);
}
body.page-home .header {
  background: var(--bg-dark);
}
body.page-home .header__logo-text,
body.page-home .header__logo-tagline {
  color: var(--text-white);
}
body.page-home .header__logo-accent {
  color: var(--accent);
}
body.page-home .search-form__input {
  background: var(--bg-dark-alt);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
}
body.page-home .navbar {
  background: var(--bg-dark-alt);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
body.page-home .navbar__link {
  color: var(--text-muted);
}
body.page-home .navbar__link:hover {
  color: var(--text-white);
}
body.page-home .footer {
  background: var(--bg-dark);
  color: var(--text-muted);
}
body.page-home .footer__heading {
  color: var(--text-white);
}
body.page-home .footer__logo-text {
  color: var(--text-white);
}
body.page-home .footer__desc,
body.page-home .footer__links a,
body.page-home .footer__contact span,
body.page-home .footer__contact a {
  color: var(--text-muted);
}
body.page-home .footer__links a:hover,
body.page-home .footer__contact a:hover {
  color: var(--text-white);
}
body.page-home .footer__newsletter {
  background: var(--bg-dark-alt);
  border-color: rgba(255, 255, 255, 0.05);
}
body.page-home .footer__copyright {
  border-color: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Landing Page — Grain Texture
   -------------------------------------------------------------------------- */
.grain-overlay::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   Landing Page — Shared Animation Utilities
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  .fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .slide-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  .slide-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  .slide-in-left.is-visible,
  .slide-in-right.is-visible {
    opacity: 1;
    transform: translateX(0);
  }
  .scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  .scale-in.is-visible {
    opacity: 1;
    transform: scale(1);
  }
}

/* Reduced motion fallback — show everything immediately */
@media (prefers-reduced-motion: reduce) {
  .fade-in-up,
  .slide-in-left,
  .slide-in-right,
  .scale-in {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --------------------------------------------------------------------------
   Landing Page — Hero
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 47, 0.75);
  z-index: 1;
}
.hero__content {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__badge {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 24px;
}
.hero__accent {
  color: var(--accent);
}
.hero__subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 32px;
}
.hero__pricing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 32px;
}
.hero__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero__price-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.hero__price-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
}
.hero__price-value--accent {
  color: var(--accent);
}
.hero__price-value small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
}
/* Market price — struck-through */
.hero__price-market {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 100, 100, 0.7);
  text-decoration-thickness: 2px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.hero__price-market small {
  font-size: 0.65rem;
}
.hero__price-market.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Save badge */
.hero__price-save {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1a1a2e;
  background: var(--accent);
  padding: 2px 8px;
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s ease 0.1s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}
.hero__price-save.is-visible {
  opacity: 1;
  transform: scale(1);
}
/* Animate the price value during countdown */
.hero__price-value.is-counting {
  transition: color 0.2s ease;
}
.hero__price-divider {
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Hero load animation (CSS-only stagger) */
@media (prefers-reduced-motion: no-preference) {
  @keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero__badge { animation: heroFadeIn 0.6s ease-out 0s both; }
  .hero__title { animation: heroFadeIn 0.6s ease-out 0.15s both; }
  .hero__subtitle { animation: heroFadeIn 0.6s ease-out 0.3s both; }
  .hero__pricing { animation: heroFadeIn 0.6s ease-out 0.45s both; }
  .hero__actions { animation: heroFadeIn 0.6s ease-out 0.6s both; }
}

/* Hero buttons */
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--text-white);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--text-white);
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn-outline-white:hover {
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

/* Hero mobile */
@media (max-width: 767px) {
  .hero {
    padding: 100px 20px 60px;
  }
  .hero__title {
    font-size: clamp(2.25rem, 10vw, 3.5rem);
  }
  .hero__subtitle {
    font-size: 0.95rem;
    padding: 0 8px;
  }
  .hero__pricing {
    flex-direction: column;
    gap: 12px;
    padding: 16px 24px;
    width: 100%;
    max-width: 280px;
  }
  .hero__price-divider {
    width: 60px;
    height: 1px;
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions a {
    width: 100%;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   Landing Page — Trust Strip
   -------------------------------------------------------------------------- */
.trust-strip {
  background: var(--bg-dark-alt);
  padding: 14px 0;
  overflow: hidden;
}
.trust-strip__track {
  overflow: hidden;
}
.trust-strip__content {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
}
.trust-strip__content span {
  flex-shrink: 0;
}
.trust-strip__content .trust-strip__number {
  color: rgba(255, 255, 255, 0.7);
}
.trust-strip__content .trust-strip__divider {
  color: rgba(255, 255, 255, 0.2);
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .trust-strip__content {
    animation: marquee 30s linear infinite;
  }
}

/* --------------------------------------------------------------------------
   Landing Page — Partners Logo Marquee
   -------------------------------------------------------------------------- */
.partners {
  background: var(--bg-dark);
  padding: 60px 0 48px;
  overflow: hidden;
}
.partners__title {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}
.partners__row {
  overflow: hidden;
  position: relative;
  padding: 8px 0;
  cursor: grab;
}
/* Fade edges */
.partners__row::before,
.partners__row::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.partners__row::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark), transparent);
}
.partners__row::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark), transparent);
}
.partners__track {
  display: flex;
  width: max-content;
  animation: marquee-left 60s linear infinite;
}
.partners__row:hover .partners__track,
.partners__row.is-touching .partners__track {
  animation-play-state: paused;
}
@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partners__logos {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 6px;
}
.partner-logo {
  display: block;
  height: 64px;
  width: auto;
  padding: 10px 18px;
  border: none;
  border-radius: 10px;
  background: #ffffff;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
  flex-shrink: 0;
  object-fit: contain;
}
.partner-logo:hover {
  opacity: 1;
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}
.partner-logo--poly {
  border-color: rgba(246, 147, 30, 0.1);
}
.partner-logo--poly:hover {
  border-color: rgba(246, 147, 30, 0.3);
  background: rgba(246, 147, 30, 0.06);
}


/* Partners mobile */
@media (max-width: 767px) {
  .partners {
    padding: 40px 0 32px;
  }
  .partners__title {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  .partner-logo {
    height: 48px;
    padding: 6px 12px;
  }
  .partners__row::before,
  .partners__row::after {
    width: 40px;
  }
}

/* --------------------------------------------------------------------------
   Landing Page — Product Showcase
   -------------------------------------------------------------------------- */
.showcase-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 24px;
  overflow: hidden;
}
.showcase-section--dark {
  background: var(--bg-dark);
  color: var(--text-white);
}
.showcase-section--light {
  background: var(--bg-light);
  color: var(--text-dark);
}
.showcase-section__inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.showcase-section--reverse .showcase-section__inner {
  flex-direction: row-reverse;
}
.showcase-section__photo {
  flex: 0 0 60%;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.showcase-section__photo img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  background-color: var(--bg-card);
}
.showcase-section__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-white);
  background: rgba(0, 0, 0, 0.6);
  padding: 6px 14px;
  border-radius: 20px;
  z-index: 2;
}
.showcase-section--light .showcase-section__badge {
  background: rgba(0, 0, 0, 0.7);
  color: var(--text-white);
}
.showcase-section__text {
  flex: 1;
}
.showcase-section__text h3 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
  line-height: 1.45;
  padding-bottom: 2px;
}
.showcase-section--dark .showcase-section__text h3 {
  color: var(--text-white);
}
.showcase-section--light .showcase-section__text h3 {
  color: var(--text-dark);
}
.showcase-section__text p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.showcase-section--dark .showcase-section__text p {
  color: var(--text-muted);
}
.showcase-section--light .showcase-section__text p {
  color: var(--text-dark-muted);
}
.showcase-section__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}
.showcase-section--dark .pill {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}
.showcase-section--light .pill {
  background: rgba(0, 0, 0, 0.08);
  color: var(--text-dark);
}

/* 01 / Paper — texture background + split comparison */
.showcase-section--paper {
  background:
    /* Paper grain noise — generated via SVG data URI */
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"),
    linear-gradient(160deg, #0d0d0d 0%, #141414 50%, #0a0a0a 100%);
}
.showcase-section--paper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(255, 255, 255, 0.008) 3px,
      rgba(255, 255, 255, 0.008) 4px
    );
  pointer-events: none;
  z-index: 0;
}
.showcase-section--paper .showcase-section__inner {
  position: relative;
  z-index: 1;
}

/* Paper comparison — two swatches side by side */
.paper-compare {
  display: flex;
  align-items: center;
  gap: 16px;
}
a.paper-compare__swatch {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
.paper-compare__swatch {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.paper-compare__swatch:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.paper-compare__swatch--colour {
  border-color: rgba(246, 147, 30, 0.25);
}
.paper-compare__swatch--colour:hover {
  border-color: rgba(246, 147, 30, 0.5);
  box-shadow: 0 20px 40px rgba(246, 147, 30, 0.1);
}
.paper-compare__swatch--bw {
  border-color: rgba(255, 255, 255, 0.12);
}
.paper-compare__swatch--bw:hover {
  border-color: rgba(255, 255, 255, 0.25);
}
.paper-compare__swatch img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  background-color: var(--bg-card);
}
.paper-compare__label {
  padding: 16px;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.paper-compare__weight {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text-white);
}
.paper-compare__weight small {
  font-size: 0.5em;
  font-weight: 500;
  opacity: 0.6;
}
.paper-compare__swatch--colour .paper-compare__weight {
  color: var(--accent);
}
.paper-compare__type {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-top: 4px;
}
.paper-compare__vs {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}
.showcase-section__comparison {
  flex: 0 0 60%;
}

/* Paper comparison mobile */
@media (max-width: 767px) {
  .paper-compare__swatch img {
    height: 180px;
  }
  .paper-compare__weight {
    font-size: 1.75rem;
  }
  .paper-compare__label {
    padding: 12px;
  }
}

/* Binding 2x2 grid */
.showcase-section__binding-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
a.showcase-section__binding-item {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
.showcase-section__binding-item {
  text-align: center;
}
.showcase-section__binding-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-md);
  background-color: var(--bg-card);
}
.showcase-section__binding-item span {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Showcase responsive — tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  .showcase-section__photo {
    flex: 0 0 50%;
    min-width: 320px;
  }
  .showcase-section {
    min-height: 80vh;
  }
}

/* Showcase responsive — mobile */
@media (max-width: 767px) {
  .showcase-section {
    min-height: auto;
    padding: 40px 20px;
    overflow: visible;
  }
  .showcase-section__inner {
    flex-direction: column !important;
    gap: 32px;
  }
  .showcase-section__photo {
    flex: none;
    width: 100%;
    min-height: 250px;
    max-height: 400px;
    height: 50vh;
  }
  .showcase-section__photo img {
    height: 100%;
  }
  .showcase-section__text h3 {
    font-size: 1.5rem;
  }
  .showcase-section__text p {
    font-size: 1rem;
  }
}

/* --------------------------------------------------------------------------
   Landing Page — Pricing
   -------------------------------------------------------------------------- */
.pricing {
  background: var(--bg-dark);
  padding: 100px 24px;
}
.pricing .container {
  max-width: var(--max-width);
  margin: 0 auto;
}
.pricing__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-white);
  text-align: center;
  margin-bottom: 12px;
}
.pricing__sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 60px;
}
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.pricing__card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid transparent;
}
/* box-shadow for glow since border-image breaks border-radius */
.pricing__card--colour {
  border: 1px solid rgba(246, 147, 30, 0.2);
  box-shadow: 0 0 30px rgba(246, 147, 30, 0.05);
}
.pricing__card--bw {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.02);
}
.pricing__header {
  margin-bottom: 24px;
}
.pricing__header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}
.pricing__header p {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.pricing__body {
  margin-bottom: 20px;
}
.pricing__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}
.pricing__row span {
  color: var(--text-muted);
}
.pricing__row strong {
  color: var(--text-white);
  font-weight: 600;
}
.pricing__row--highlight {
  border-bottom: none;
}
.pricing__row--highlight strong {
  color: var(--accent);
  text-shadow: 0 0 20px rgba(246, 147, 30, 0.3);
}
.pricing__best {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-left: 8px;
}
.pricing__binding {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.pricing__card .btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition);
}
.pricing__card--colour .btn {
  background: var(--accent);
  color: var(--text-white);
}
.pricing__card--colour .btn:hover {
  background: var(--accent-hover);
}
.pricing__card--bw .btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-white);
}
.pricing__card--bw .btn:hover {
  border-color: rgba(255, 255, 255, 0.6);
}
.pricing__footnote {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 32px;
}

/* Pricing mobile */
@media (max-width: 767px) {
  .pricing {
    padding: 60px 20px;
  }
  .pricing__title {
    font-size: 1.75rem;
  }
  .pricing__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* --------------------------------------------------------------------------
   Landing Page — How It Works (Scroll-Jack)
   -------------------------------------------------------------------------- */
.how-it-works {
  height: 300vh;
  background: var(--bg-light);
  /* overflow: hidden breaks position: sticky in all browsers */
  overflow: clip;
  position: relative;
}
.how-it-works__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  /* NO overflow: hidden — iOS Safari breaks sticky inside overflow-hidden */
}
.how-it-works__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  padding: 80px 24px 40px;
  flex-shrink: 0;
}
.how-it-works__track {
  display: flex;
  width: 300vw;
  flex: 1;
  will-change: transform;
}
.how-it-works__step {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  position: relative;
}
.how-it-works__number {
  position: absolute;
  font-size: 15rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.how-it-works__icon {
  width: 120px;
  height: 120px;
  margin-bottom: 32px;
  color: var(--text-dark);
}
.how-it-works__icon svg {
  width: 100%;
  height: 100%;
}
.how-it-works__step h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  text-align: center;
}
.how-it-works__step p {
  font-size: 1.125rem;
  color: var(--text-dark-muted);
  text-align: center;
  max-width: 400px;
  line-height: 1.6;
}
.how-it-works__progress {
  height: 4px;
  background: rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.how-it-works__progress-fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: none;
  will-change: width;
}
.how-it-works__skip {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.3);
  text-decoration: none;
  z-index: 5;
}
.how-it-works__skip:hover {
  color: rgba(0, 0, 0, 0.6);
}

/* How It Works mobile */
@media (max-width: 767px) {
  .how-it-works__title {
    font-size: 1.5rem;
    padding: 60px 20px 24px;
  }
  .how-it-works__icon {
    width: 80px;
    height: 80px;
  }
  .how-it-works__step h3 {
    font-size: 1.25rem;
  }
  .how-it-works__step p {
    font-size: 1rem;
  }
  .how-it-works__number {
    font-size: 8rem;
  }
}

/* --------------------------------------------------------------------------
   Landing Page — Reviews
   -------------------------------------------------------------------------- */
.reviews {
  background: var(--bg-dark);
  padding: 100px 24px;
}
.reviews .container {
  max-width: var(--max-width);
  margin: 0 auto;
}
.reviews__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-white);
  text-align: center;
  margin-bottom: 60px;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 28px;
}
.review-card:nth-child(1) { transform: rotate(-2deg); }
.review-card:nth-child(2) { transform: rotate(1deg); margin-top: 24px; }
.review-card:nth-child(3) { transform: rotate(-1deg); margin-top: 48px; }

.review-card__stars {
  margin-bottom: 16px;
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: 2px;
}
.review-card__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}
.review-card__author {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Reviews mobile */
@media (max-width: 767px) {
  .reviews {
    padding: 60px 20px;
  }
  .reviews__title {
    font-size: 1.75rem;
    margin-bottom: 32px;
  }
  .reviews__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .review-card {
    transform: none !important;
    margin-top: 0 !important;
  }
}

/* --------------------------------------------------------------------------
   Landing Page — Final CTA
   -------------------------------------------------------------------------- */
.final-cta {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  position: relative;
  padding: 80px 24px;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(246, 147, 30, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta__content {
  max-width: 600px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.final-cta__title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
  line-height: 1.1;
}
.final-cta__sub {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}
.final-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--whatsapp);
  color: var(--text-white);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition);
}
.btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
  }
  .final-cta .btn-whatsapp {
    animation: whatsappPulse 2s infinite;
  }
}

.final-cta__contact {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Final CTA mobile */
@media (max-width: 767px) {
  .final-cta {
    padding: 60px 20px;
  }
  .final-cta__title {
    font-size: 2rem;
  }
  .final-cta__sub {
    font-size: 1rem;
  }
  .final-cta__actions {
    flex-direction: column;
  }
  .final-cta__actions a {
    width: 100%;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   Landing Page — Sticky Mobile CTA Bar
   -------------------------------------------------------------------------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-dark-alt);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.sticky-cta__inner {
  display: flex;
  gap: 8px;
  padding: 8px 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.sticky-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}
.sticky-cta__btn--quote {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.sticky-cta__btn--whatsapp {
  background: var(--whatsapp);
  color: var(--text-white);
  border: none;
}

/* Hide sticky bar on desktop */
@media (min-width: 768px) {
  .sticky-cta {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Landing Page Enhancements — Registration Marks & Gradient Mesh
   -------------------------------------------------------------------------- */

/* Hero gradient mesh — ambient animated background */
.hero__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0.4;
}
.hero__mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}
.hero__mesh-blob--1 {
  width: 600px;
  height: 600px;
  background: rgba(246, 147, 30, 0.15);
  top: -20%;
  right: -10%;
  animation: meshFloat1 12s ease-in-out infinite;
}
.hero__mesh-blob--2 {
  width: 500px;
  height: 500px;
  background: rgba(26, 54, 93, 0.25);
  bottom: -15%;
  left: -5%;
  animation: meshFloat2 15s ease-in-out infinite;
}
.hero__mesh-blob--3 {
  width: 350px;
  height: 350px;
  background: rgba(246, 147, 30, 0.08);
  top: 40%;
  left: 30%;
  animation: meshFloat3 10s ease-in-out infinite;
}

@keyframes meshFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 30px) scale(1.1); }
}
@keyframes meshFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.05); }
}
@keyframes meshFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, -30px) scale(0.95); }
}

/* CMYK Registration marks — printing craft theme */
.hero__reg-marks {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero__reg-mark {
  position: absolute;
  width: 32px;
  height: 32px;
  opacity: 0.12;
}
.hero__reg-mark svg {
  width: 100%;
  height: 100%;
}
.hero__reg-mark--tl { top: 40px; left: 40px; }
.hero__reg-mark--tr { top: 40px; right: 40px; }
.hero__reg-mark--bl { bottom: 40px; left: 40px; }
.hero__reg-mark--br { bottom: 40px; right: 40px; }
@media (max-width: 767px) {
  .hero__reg-marks { display: none; }
}

/* --------------------------------------------------------------------------
   Section Dividers — Angled Cuts
   -------------------------------------------------------------------------- */
.section-divider {
  position: relative;
  height: 80px;
  margin-top: -1px;
  overflow: hidden;
}
.section-divider--dark-to-light {
  background: var(--bg-light);
}
.section-divider--dark-to-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: -5%;
  width: 110%;
  height: 100%;
  background: var(--bg-dark);
  transform: skewY(-2deg);
  transform-origin: top left;
}
.section-divider--light-to-dark {
  background: var(--bg-dark);
}
.section-divider--light-to-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: -5%;
  width: 110%;
  height: 100%;
  background: var(--bg-light);
  transform: skewY(-2deg);
  transform-origin: top left;
}
@media (max-width: 767px) {
  .section-divider { height: 48px; }
}

/* --------------------------------------------------------------------------
   Enhanced Pricing Cards
   -------------------------------------------------------------------------- */
.pricing__card {
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.pricing__card:hover {
  transform: translateY(-4px);
}
.pricing__card--colour:hover {
  border-color: rgba(246, 147, 30, 0.4);
  box-shadow: 0 0 50px rgba(246, 147, 30, 0.1), 0 20px 40px rgba(0, 0, 0, 0.3);
}
.pricing__card--bw:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.03), 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Popular badge on colour card */
.pricing__popular {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(246, 147, 30, 0.1);
  border: 1px solid rgba(246, 147, 30, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.pricing__popular::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: popularPulse 2s ease-in-out infinite;
}
@keyframes popularPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* --------------------------------------------------------------------------
   Enhanced Review Cards
   -------------------------------------------------------------------------- */
.review-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
}
.review-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
/* Large quotation mark */
.review-card__quote {
  font-size: 4rem;
  line-height: 1;
  color: rgba(246, 147, 30, 0.15);
  font-family: Georgia, serif;
  position: absolute;
  top: 12px;
  left: 20px;
  pointer-events: none;
  user-select: none;
}
/* Avatar initial circle */
.review-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(246, 147, 30, 0.15);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  margin-right: 10px;
  flex-shrink: 0;
}
.review-card__footer {
  display: flex;
  align-items: center;
}

/* --------------------------------------------------------------------------
   Enhanced Showcase Section Headings
   -------------------------------------------------------------------------- */
.showcase-section__text h3 {
  font-family: var(--font-display);
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   Enhanced How It Works
   -------------------------------------------------------------------------- */
.how-it-works__title {
  font-family: var(--font-display);
  line-height: 1.3;
}
.how-it-works__step h3 {
  font-family: var(--font-display);
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   Enhanced Pricing / Reviews / CTA Headings
   -------------------------------------------------------------------------- */
.pricing__title {
  font-family: var(--font-display);
  line-height: 1.3;
}
.reviews__title {
  font-family: var(--font-display);
  line-height: 1.3;
}
.final-cta__title {
  font-family: var(--font-display);
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   Button Hover Enhancements
   -------------------------------------------------------------------------- */
.btn-accent {
  position: relative;
  overflow: hidden;
}
.btn-accent::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-accent:hover::after {
  opacity: 1;
}
.btn-whatsapp {
  position: relative;
  overflow: hidden;
}
.btn-whatsapp::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-whatsapp:hover::after {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Stats Counter Section (replaces inline trust strip stats)
   -------------------------------------------------------------------------- */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 48px 24px;
  background: var(--bg-dark-alt);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.stats-bar__item {
  text-align: center;
}
.stats-bar__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 4px;
}
.stats-bar__number .stats-bar__accent {
  color: var(--accent);
}
.stats-bar__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
@media (max-width: 767px) {
  .stats-bar {
    gap: 16px;
    padding: 28px 12px;
    justify-content: space-evenly;
  }
  .stats-bar__number {
    font-size: 1.25rem;
  }
  .stats-bar__label {
    font-size: 0.6rem;
    letter-spacing: 0.06em;
  }
}
