/* ============================================
   ORYNTLABS PRINT — Design System & Base Styles
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --orange: #F67B00;
  --orange-hover: #E06D00;
  --orange-light: rgba(246, 123, 0, 0.08);
  --navy: #0D1B2A;
  --navy-light: #1B2D45;
  --navy-dark: #091420;
  --gray-light: #F5F7FA;
  --gray: #E0E4EA;
  --gray-medium: #9CA3AF;
  --gray-dark: #6B7280;
  --white: #FFFFFF;
  --black: #111827;
  --success: #10B981;
  --error: #EF4444;
  --warning: #F59E0B;
  --info: #3B82F6;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(13, 27, 42, 0.06);
  --shadow-md: 0 4px 12px rgba(13, 27, 42, 0.08);
  --shadow-lg: 0 8px 30px rgba(13, 27, 42, 0.10);
  --shadow-xl: 0 12px 40px rgba(13, 27, 42, 0.14);

  --transition: 0.25s ease;
  --transition-fast: 0.15s ease;

  --container: 1200px;
  --container-narrow: 960px;
  --header-height: 120px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  color: var(--gray-dark);
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

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

.container-narrow {
  max-width: var(--container-narrow);
}

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

.section-lg {
  padding: 100px 0;
}

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

.section-navy {
  background-color: var(--navy);
  color: var(--white);
}

.section-navy h2,
.section-navy h3,
.section-navy h4 {
  color: var(--white);
}

.section-navy p {
  color: rgba(255, 255, 255, 0.7);
}

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

.section-header .badge {
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* --- Badge --- */
.badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  background-color: var(--orange-light);
  color: var(--orange);
}

.badge-navy {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.badge-success {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

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

.btn-primary:hover {
  background-color: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(246, 123, 0, 0.3);
}

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

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

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

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

.btn-outline-white {
  border: 2px solid var(--white);
  color: var(--white);
}

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

.btn-ghost {
  color: var(--navy);
  padding: 10px 16px;
}

.btn-ghost:hover {
  background-color: var(--gray-light);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --- Header --- */
.header-top {
  background-color: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  padding: 8px 0;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

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

.header-top a,
.header-top span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
}

.header-top a:hover {
  color: var(--orange);
}

.header-top svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.header-main {
  background-color: var(--white);
  border-bottom: 1px solid var(--gray);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition-fast);
}

.logo-img:hover {
  opacity: 0.85;
}

.header-main .logo-img {
  height: 44px;
}

.footer .logo-img {
  height: 38px;
  filter: brightness(0) invert(1);
}

.mobile-nav .logo-img {
  height: 40px;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy);
  line-height: 1.1;
}

.logo-text span {
  color: var(--orange);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-nav a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--orange);
  background-color: var(--orange-light);
}

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

.header-action-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--navy);
  transition: all var(--transition-fast);
  position: relative;
}

.header-action-btn:hover {
  background-color: var(--gray-light);
  color: var(--orange);
}

.header-action-btn svg {
  width: 20px;
  height: 20px;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background-color: var(--orange);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-cta {
  margin-left: 8px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--navy);
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  z-index: 200;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray);
}

.mobile-nav-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.mobile-nav-close svg {
  width: 24px;
  height: 24px;
}

.mobile-nav-links {
  padding: 16px 24px;
}

.mobile-nav-links a {
  display: block;
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--gray);
}

.mobile-nav-links a:hover {
  color: var(--orange);
}

.mobile-nav-cta {
  padding: 16px 24px;
}

.mobile-nav-contact {
  padding: 16px 24px;
  border-top: 1px solid var(--gray);
}

.mobile-nav-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: var(--gray-dark);
  font-size: 0.95rem;
}

.mobile-nav-contact svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
}

/* Language Switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.lang-switch a {
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.6);
}

.lang-switch a.active {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.15);
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(246, 123, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(246, 123, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-text h1 span {
  color: var(--orange);
}

.hero-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

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

.hero-store-image {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  aspect-ratio: 4/3;
  border: 3px solid rgba(255, 255, 255, 0.15);
}

.hero-image-placeholder {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(10px);
}

.hero-image-placeholder svg {
  width: 80px;
  height: 80px;
  color: var(--orange);
  opacity: 0.6;
}

.hero-image-placeholder span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Hero Trust Bar */
.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: rgba(246, 123, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
}

.trust-text h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.trust-text p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  margin: 0;
}

/* --- Categories Grid --- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  display: block;
}

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

.category-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background-color: var(--orange-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-icon svg {
  width: 32px;
  height: 32px;
  color: var(--orange);
}

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

.category-card p {
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.category-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
}

/* --- Product Cards --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray);
  overflow: hidden;
  transition: all var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.product-card-image {
  aspect-ratio: 4/3;
  background-color: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.product-card-body {
  padding: 20px;
}

.product-card-body h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.product-card-body p {
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.product-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--orange);
  font-size: 1.1rem;
}

.product-price small {
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--gray-medium);
}

/* --- How It Works --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.step-card {
  text-align: center;
  padding: 24px;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background-color: var(--orange);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.88rem;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray);
  padding: 28px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--warning);
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--orange);
  font-size: 0.9rem;
}

.testimonial-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--gray-medium);
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hover) 100%);
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
  color: var(--white);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

.cta-banner .btn {
  background-color: var(--white);
  color: var(--orange);
}

.cta-banner .btn:hover {
  background-color: var(--navy);
  color: var(--white);
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 16px 0;
  background-color: var(--gray-light);
}

.breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.breadcrumbs a {
  color: var(--gray-medium);
}

.breadcrumbs a:hover {
  color: var(--orange);
}

.breadcrumbs span {
  color: var(--gray-medium);
}

.breadcrumbs .current {
  color: var(--navy);
  font-weight: 500;
}

/* --- Footer --- */
.footer {
  background-color: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  font-size: 0.9rem;
  margin: 16px 0 24px;
  max-width: 300px;
}

.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  padding: 5px 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background-color: var(--orange);
  color: var(--white);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
}

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

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
  color: var(--orange);
}

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group label .required {
  color: var(--error);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  border: 1.5px solid var(--gray);
  border-radius: var(--radius-md);
  background-color: var(--white);
  color: var(--black);
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-light);
}

.form-control::placeholder {
  color: var(--gray-medium);
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B7280' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 6l3.5 4 3.5-4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

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

/* --- Pages Layout --- */
.page-header {
  background-color: var(--navy);
  color: var(--white);
  padding: 48px 0 40px;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 8px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

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

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

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

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gray-medium);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

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

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.7;
}

/* --- Cart --- */
.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th {
  text-align: left;
  padding: 14px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-medium);
  border-bottom: 2px solid var(--gray);
}

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

.cart-product-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-product-image {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  background-color: var(--gray-light);
  flex-shrink: 0;
  overflow: hidden;
}

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

.cart-qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--gray);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.cart-qty-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
  transition: background-color var(--transition-fast);
}

.cart-qty-btn:hover {
  background-color: var(--gray-light);
}

.cart-qty-input {
  width: 48px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--gray);
  border-right: 1px solid var(--gray);
  font-weight: 600;
  font-size: 0.95rem;
}

.cart-summary {
  background-color: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.cart-summary h3 {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.95rem;
}

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

.cart-summary-row.total span:last-child {
  color: var(--orange);
  font-size: 1.25rem;
}

.cart-empty {
  text-align: center;
  padding: 80px 24px;
}

.cart-empty svg {
  width: 80px;
  height: 80px;
  color: var(--gray);
  margin-bottom: 24px;
}

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

.cart-empty p {
  margin-bottom: 24px;
}

/* --- Checkout --- */
.checkout-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-medium);
}

.checkout-step.active {
  color: var(--orange);
}

.checkout-step.completed {
  color: var(--success);
}

.checkout-step-number {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  border: 2px solid var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
}

.checkout-step.active .checkout-step-number {
  border-color: var(--orange);
  background-color: var(--orange);
  color: var(--white);
}

.checkout-step.completed .checkout-step-number {
  border-color: var(--success);
  background-color: var(--success);
  color: var(--white);
}

.checkout-step-connector {
  width: 40px;
  height: 2px;
  background-color: var(--gray);
  flex-shrink: 0;
}

/* --- Upload Area --- */
.upload-area {
  border: 2px dashed var(--gray);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}

.upload-area:hover,
.upload-area.dragover {
  border-color: var(--orange);
  background-color: var(--orange-light);
}

.upload-area svg {
  width: 48px;
  height: 48px;
  color: var(--gray-medium);
  margin-bottom: 16px;
}

.upload-area h4 {
  margin-bottom: 8px;
}

.upload-area p {
  font-size: 0.85rem;
}

.upload-file-list {
  margin-top: 16px;
}

.upload-file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background-color: var(--gray-light);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.upload-file-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.upload-file-info svg {
  width: 20px;
  height: 20px;
  color: var(--success);
}

.upload-file-name {
  font-size: 0.9rem;
  font-weight: 500;
}

.upload-file-size {
  font-size: 0.78rem;
  color: var(--gray-medium);
}

.upload-file-remove {
  color: var(--gray-medium);
  padding: 4px;
}

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

/* --- Configurator --- */
.configurator {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray);
  padding: 32px;
}

.configurator-step {
  padding: 20px 0;
  border-bottom: 1px solid var(--gray);
}

.configurator-step:last-child {
  border-bottom: none;
}

.configurator-step-label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-medium);
  margin-bottom: 12px;
}

.configurator-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.configurator-option {
  padding: 10px 20px;
  border: 2px solid var(--gray);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.configurator-option:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.configurator-option.selected {
  border-color: var(--orange);
  background-color: var(--orange);
  color: var(--white);
}

/* Price Summary */
.price-summary {
  background-color: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 100px;
}

.price-summary h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.price-line {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.92rem;
}

.price-line.total {
  border-top: 2px solid var(--gray);
  margin-top: 12px;
  padding-top: 14px;
  font-weight: 700;
  font-size: 1.15rem;
}

.price-line.total span:last-child {
  color: var(--orange);
}

.price-delivery {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  font-size: 0.85rem;
  color: var(--success);
}

.price-delivery svg {
  width: 16px;
  height: 16px;
}

/* --- Account --- */
.account-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}

.account-sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray);
  padding: 24px;
}

.account-user {
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--gray);
}

.account-avatar {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background-color: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
}

.account-user h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.account-user p {
  font-size: 0.82rem;
  color: var(--gray-medium);
}

.account-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  transition: all var(--transition-fast);
}

.account-nav a:hover,
.account-nav a.active {
  background-color: var(--orange-light);
  color: var(--orange);
}

.account-nav a svg {
  width: 18px;
  height: 18px;
}

/* --- Order Timeline --- */
.order-timeline {
  position: relative;
  padding-left: 32px;
}

.order-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--gray);
}

.timeline-item {
  position: relative;
  padding-bottom: 32px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -32px;
  top: 2px;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  border: 3px solid var(--gray);
  background-color: var(--white);
  z-index: 1;
}

.timeline-item.completed .timeline-dot {
  border-color: var(--success);
  background-color: var(--success);
}

.timeline-item.active .timeline-dot {
  border-color: var(--orange);
  background-color: var(--orange);
}

.timeline-content h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 0.82rem;
  color: var(--gray-medium);
}

/* --- Blog --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray);
  overflow: hidden;
  transition: all var(--transition);
}

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

.blog-card-image {
  aspect-ratio: 16/9;
  background-color: var(--gray-light);
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange);
  margin-bottom: 8px;
}

.blog-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.blog-card-body h3 a:hover {
  color: var(--orange);
}

.blog-card-body p {
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--gray-medium);
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* --- Filter Sidebar --- */
.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
}

.filter-sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray);
  padding: 24px;
  position: sticky;
  top: 90px;
  height: fit-content;
}

.filter-group {
  margin-bottom: 24px;
}

.filter-group h4 {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.88rem;
  cursor: pointer;
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
  accent-color: var(--orange);
  width: 16px;
  height: 16px;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

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

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

.catalog-sort select {
  padding: 8px 36px 8px 12px;
  border: 1px solid var(--gray);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236B7280' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 6l3.5 4 3.5-4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

/* --- Notification / Toast --- */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  z-index: 300;
  transform: translateY(120%);
  transition: transform 0.3s ease;
}

.toast.show {
  transform: translateY(0);
}

.toast-success { border-left: 4px solid var(--success); }
.toast-error { border-left: 4px solid var(--error); }
.toast-info { border-left: 4px solid var(--info); }

/* --- Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 250;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--gray-medium);
}

.modal-close:hover {
  background-color: var(--gray-light);
  color: var(--navy);
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
}

/* --- Utilities --- */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-navy { color: var(--navy); }
.text-gray { color: var(--gray-dark); }
.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* Visually hidden for a11y */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* RTL support */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .breadcrumbs .container {
  flex-direction: row-reverse;
}

/* --- Product Detail --- */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.product-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}

.product-detail-image-placeholder {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--gray-light) 0%, var(--gray) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--gray-medium);
}

.product-detail-image-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.5;
}

.product-detail-image-placeholder span {
  font-size: 0.9rem;
}

.product-detail-info h1 {
  margin-bottom: 12px;
}

.product-detail-description {
  font-size: 1.02rem;
  line-height: 1.7;
}

.configurator-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.product-upload-section {
  margin-top: 32px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray);
}

.upload-section-title {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.product-actions {
  margin-top: 24px;
}

.product-actions .btn {
  width: 100%;
}

.price-summary-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--gray);
}

.price-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray-dark);
}

.price-badge svg {
  width: 16px;
  height: 16px;
  color: var(--success);
  flex-shrink: 0;
}

.product-detail-left {
  min-width: 0;
}

/* Focus visible */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #25D366;
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.whatsapp-float-text {
  line-height: 1.2;
}

.whatsapp-float-text small {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    left: 16px;
    padding: 12px 18px;
    font-size: 0.82rem;
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }

  .whatsapp-float-text small {
    display: none;
  }
}
