/* ===== PRINT & STITCH — Production Styles ===== */

/* --- CSS Custom Properties --- */
:root {
  --red: #d42030;
  --red-dark: #b01a28;
  --red-light: #f4e0e2;
  --black: #1a1a1a;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --nav-height: 72px;
  --section-padding: 80px 0;
  --container-max: 1200px;
  --container-padding: 0 20px;

  --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);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  -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 {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}


/* ===== LOADING SCREEN ===== */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-logo {
  width: 120px;
  height: 120px;
  animation: loadingPulse 1.2s ease-in-out infinite;
}

.loading-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
}

.loading-bar {
  width: 120px;
  height: 3px;
  background: var(--gray-200);
  border-radius: 3px;
  overflow: hidden;
}

.loading-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--red);
  border-radius: 3px;
  animation: loadingSlide 1s ease-in-out infinite;
}

@keyframes loadingPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes loadingSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}


/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  transition: color var(--transition);
  z-index: 1001;
}

.navbar.scrolled .nav-logo {
  color: var(--black);
}

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

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.navbar.scrolled .nav-links a {
  color: var(--gray-700);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
}

.nav-links a.nav-external {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: linear-gradient(135deg, #fff8f8 0%, #fff0f0 100%);
  border: 1.5px solid rgba(212, 32, 48, 0.2);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--red) !important;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 8px rgba(212, 32, 48, 0.08);
  transition: all var(--transition);
}
.nav-links a.nav-external i { font-size: 1rem; }
.nav-links a.nav-external::after { display: none !important; }
.nav-links a.nav-external:hover {
  background: linear-gradient(135deg, #fff0f0 0%, #ffe4e6 100%);
  border-color: rgba(212, 32, 48, 0.4);
  color: var(--red-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(212, 32, 48, 0.15);
}

.nav-links a.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--red);
  color: var(--white) !important;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  white-space: nowrap;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.nav-links a.nav-cta i { font-size: 1.05rem; }

.nav-links a.nav-cta::after {
  display: none !important;
}

.nav-links a.nav-cta:hover {
  background: var(--red-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 32, 48, 0.3);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.navbar.scrolled .nav-hamburger span {
  background: var(--black);
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

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


/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--black) 0%, #2d1015 50%, var(--black) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-bg-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--black) 0%, #2d1015 40%, #1a1a2e 100%);
  position: absolute;
  inset: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.6) 0%, rgba(26,26,26,0.8) 100%);
  z-index: 1;
}

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

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

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

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray-300);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 32, 48, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
}


/* ===== SECTION COMMON ===== */
.section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
}

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


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

.about-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.about-content h2 span {
  color: var(--red);
}

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

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.stat-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-light);
  border-radius: var(--radius-sm);
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--red);
}

.stat-info h4 {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.stat-info p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 0;
}


/* ===== SERVICES (TABBED) ===== */
.services-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-600);
  background: var(--gray-100);
  transition: all var(--transition);
}

.tab-btn:hover {
  background: var(--gray-200);
}

.tab-btn.active {
  background: var(--red);
  color: var(--white);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

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

.service-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
}

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

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

.service-card-img .placeholder-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-img .placeholder-icon svg {
  width: 48px;
  height: 48px;
  fill: var(--gray-300);
}

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

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

.service-card-body p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}


/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--red);
  border-radius: 50%;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--red);
  transition: all var(--transition);
}

.step-card:hover .step-number {
  background: var(--red);
  color: var(--white);
}

.step-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
}

.step-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--gray-400);
}

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

.step-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}


/* ===== GALLERY ===== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-600);
  background: var(--gray-100);
  transition: all var(--transition);
}

.filter-btn:hover {
  background: var(--gray-200);
}

.filter-btn.active {
  background: var(--red);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  transition: transform var(--transition), opacity 0.4s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item.hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,26,26,0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-placeholder svg {
  width: 32px;
  height: 32px;
  fill: var(--gray-300);
}


/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  transition: background var(--transition);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.25rem;
  transition: background var(--transition);
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}


/* ===== WHY CHOOSE US ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-100);
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-light);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--red);
}

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

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}


/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-form > p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(212, 32, 48, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-submit {
  width: 100%;
  padding: 14px 32px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-submit svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}

.form-status.success {
  display: block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.form-status.error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* Contact Info Sidebar */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-header h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-info-header p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-100);
}

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

.channel-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.channel-icon svg {
  width: 24px;
  height: 24px;
}

.channel-icon.whatsapp {
  background: #e8f5e9;
}

.channel-icon.whatsapp svg {
  fill: #25d366;
}

.channel-icon.messenger {
  background: #e3f2fd;
}

.channel-icon.messenger svg {
  fill: #0084ff;
}

.channel-icon.phone {
  background: var(--red-light);
}

.channel-icon.phone svg {
  fill: var(--red);
}

.channel-text h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.channel-text p {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* Business Info Box */
.business-info-box {
  padding: 24px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  margin-top: 8px;
}

.business-info-box h4 {
  font-size: 1rem;
  margin-bottom: 16px;
}

.business-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.business-detail:last-child {
  margin-bottom: 0;
}

.business-detail svg {
  width: 18px;
  height: 18px;
  fill: var(--gray-400);
  flex-shrink: 0;
  margin-top: 2px;
}

.business-detail p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.map-embed {
  margin-top: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.map-embed iframe {
  display: block;
  width: 100%;
}


/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: var(--gray-300);
  padding: 64px 0 0;
}

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

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  color: var(--gray-400);
}

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

.footer-logo img {
  height: 36px;
}

.footer-logo span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
}

.footer h4 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--gray-400);
  transition: color var(--transition);
}

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

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

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gray-400);
  transition: color var(--transition);
}

.social-link:hover {
  color: var(--white);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--gray-500);
}


/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }


/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-padding: 64px 0;
  }

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

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

  .steps-grid::before {
    display: none;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* Tablet portrait */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
    --section-padding: 56px 0;
  }

  /* Mobile Nav */
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 0;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-mobile-overlay {
    display: block;
  }

  .nav-links a {
    color: var(--gray-700) !important;
    font-size: 1rem;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav-links a.nav-external {
    margin-top: 12px;
    width: 100%;
    justify-content: center;
    padding: 10px 18px;
  }

  .nav-links a.nav-cta {
    margin-top: 8px;
    width: 100%;
    justify-content: center;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat-card {
    flex: 1;
    min-width: 200px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 28px;
  }

  /* Lightbox */
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

/* Mobile */
@media (max-width: 480px) {
  :root {
    --section-padding: 48px 0;
  }

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

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

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

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

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

  .about-stats {
    flex-direction: column;
  }

  .stat-card {
    min-width: unset;
  }

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

  .contact-form {
    padding: 20px;
  }

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

/* Small mobile */
@media (max-width: 375px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 16px;
  }
}


/* ===== PRODUCTS & PRICING ===== */
.products-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.product-tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-600);
  background: var(--gray-100);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all var(--transition);
}

.product-tab-btn:hover { background: var(--gray-200); }
.product-tab-btn.active { background: var(--red); color: var(--white); }

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

.products-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-400);
  font-size: 0.95rem;
}

.products-loading i { animation: spin 1s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.products-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-400);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-100);
}

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

.product-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
}

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

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

.product-category-tag,
.product-card-category {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  background: var(--red-light);
  color: var(--red);
}

.product-category-tag.printing { background: var(--red-light); color: var(--red); }
.product-category-tag.personalized { background: #eff6ff; color: #1d4ed8; }

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

.product-price,
.product-card-price {
  font-size: 0.9rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 12px;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.8rem;
  border-radius: 50px;
}

.view-product-btn,
.product-view-btn {
  width: 100%;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.view-product-btn:hover,
.product-view-btn:hover { background: var(--red-dark); }

.product-card-bulk-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.product-card-bulk-badge i {
  color: var(--red);
}

.product-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  font-size: 2.5rem;
}


/* ===== PRODUCT MODAL ===== */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.product-modal.active { opacity: 1; visibility: visible; }

.product-modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  position: relative;
  animation: fadeIn 0.3s ease;
}

.product-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--gray-600);
  z-index: 1;
  transition: all var(--transition);
}

.product-modal-close:hover { background: var(--gray-200); color: var(--black); }

.product-modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.product-modal-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

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

.modal-image-placeholder {
  position: absolute;
  color: var(--gray-300);
  font-size: 4rem;
}

.product-modal-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.product-modal-info h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.product-modal-info > p {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-modal-pricing {
  margin-bottom: 24px;
}

.base-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}

.base-price-row span { color: var(--gray-500); font-size: 0.9rem; }
.base-price-row strong { color: var(--red); font-size: 1.1rem; }

.tier-table {
  width: 100%;
  margin-top: 12px;
  border-collapse: collapse;
}

.tier-table th {
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-200);
}

.tier-table td {
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--gray-100);
}

.tier-table td:last-child { font-weight: 600; color: var(--red); }

.tier-table tr.active-tier {
  background: var(--red-light);
}

.tier-table tr.active-tier td {
  font-weight: 700;
}

.product-modal-order {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.product-modal-order label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
  display: block;
}

.qty-input {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 16px;
}

.qty-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  font-size: 1rem;
  color: var(--gray-700);
  transition: all var(--transition);
}

.qty-btn:first-child { border-radius: 8px 0 0 8px; }
.qty-btn:last-child { border-radius: 0 8px 8px 0; }
.qty-btn:hover { background: var(--gray-200); }

.qty-input input {
  width: 60px;
  height: 40px;
  text-align: center;
  border: 1px solid var(--gray-200);
  border-left: none;
  border-right: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  outline: none;
}

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

.calculated-price span { color: var(--gray-500); }
.calculated-price strong { font-size: 1.25rem; color: var(--black); }

.add-to-cart-btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
  border-radius: 50px;
  font-size: 1rem;
}


/* ===== CART DRAWER ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  max-width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 2600;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  transition: right 0.3s ease;
}

.cart-drawer.active { right: 0; }

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

.cart-header h3 {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--gray-600);
  transition: all var(--transition);
}

.cart-close:hover { background: var(--gray-200); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-empty {
  text-align: center;
  padding: 40px 0;
  color: var(--gray-400);
}

.cart-empty i { font-size: 2.5rem; display: block; margin-bottom: 8px; }

.cart-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: flex-start;
}

.cart-item-img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gray-100);
}

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

.cart-item-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  font-size: 1.2rem;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-info h4 {
  font-size: 0.9rem;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-unit-price {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.qty-input-sm .qty-btn {
  width: 28px;
  height: 28px;
  font-size: 0.75rem;
}

.qty-input-sm .qty-btn:first-child { border-radius: 6px 0 0 6px; }
.qty-input-sm .qty-btn:last-child { border-radius: 0 6px 6px 0; }

.cart-qty-input {
  width: 40px;
  height: 28px;
  text-align: center;
  border: 1px solid var(--gray-200);
  border-left: none;
  border-right: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  outline: none;
  -moz-appearance: textfield;
}

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

.cart-item-total {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--black);
  white-space: nowrap;
}

.cart-item-remove {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  color: var(--gray-400);
  font-size: 1rem;
  flex-shrink: 0;
  transition: all var(--transition);
}

.cart-item-remove:hover { color: #dc2626; background: #fef2f2; }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--gray-200);
}

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

.cart-total span { font-size: 0.95rem; color: var(--gray-500); }
.cart-total strong { font-size: 1.2rem; }

.cart-checkout-btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
  border-radius: 50px;
  font-size: 1rem;
}


/* ===== FLOATING CART FAB ===== */
.cart-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(212,32,48,0.4);
  z-index: 900;
  transition: all var(--transition);
}

.cart-fab:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(212,32,48,0.5); }

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--black);
  color: var(--white);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ===== ORDER SUMMARY (in contact form) ===== */
.order-summary {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
}

.order-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.order-summary-header h4 {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.order-summary-edit {
  background: none;
  border: none;
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: inherit;
}
.order-summary-edit:hover { text-decoration: underline; }

.summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
}
.summary-item:last-child { border-bottom: none; }

.summary-item-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gray-100);
}
.summary-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.summary-item-placeholder {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  font-size: 1.2rem;
}

.summary-item-info {
  flex: 1;
  min-width: 0;
}
.summary-item-info strong {
  display: block;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.summary-item-info span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.summary-item-price {
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.order-summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  margin-top: 4px;
  font-weight: 700;
  font-size: 1.05rem;
  border-top: 2px solid var(--black);
}

/* Form row half (phone + email side by side) */
.form-row-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}


/* ===== RESPONSIVE — NEW COMPONENTS ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Product modal */
  .product-modal-body { grid-template-columns: 1fr; }
  .product-modal-image { aspect-ratio: 16/9; }
  .product-modal-info { padding: 24px; }
  .product-modal-info h3 { font-size: 1.2rem; }

  /* Cart */
  .cart-drawer { width: 100%; }
  .cart-item-img { width: 48px; height: 48px; }

  /* Products grid */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-card-body { padding: 16px; }

  /* Form layouts */
  .form-row-half { grid-template-columns: 1fr; }

  /* Order summary */
  .order-summary { padding: 16px; }
  .summary-item-img { width: 40px; height: 40px; }
  .summary-item-info strong { font-size: 0.85rem; }
  .summary-item-price { font-size: 0.85rem; }

  /* Feature cards */
  .feature-card { padding: 24px; }
  .feature-icon { width: 44px; height: 44px; }
}

@media (max-width: 480px) {
  /* Loading screen */
  .loading-logo { width: 88px; height: 88px; }
  .loading-bar { width: 88px; }

  /* Products */
  .products-grid { grid-template-columns: 1fr; }
  .product-tab-btn { padding: 8px 14px; font-size: 0.8rem; }

  /* Product modal */
  .product-modal { padding: 12px; }
  .product-modal-info { padding: 20px; }
  .product-modal-info h3 { font-size: 1.1rem; }
  .product-modal-pricing { padding: 14px; }
  .tier-table th { font-size: 0.7rem; padding: 8px; }
  .tier-table td { font-size: 0.85rem; padding: 8px; }
  .qty-input input { width: 50px; }

  /* Cart drawer */
  .cart-header { padding: 16px; }
  .cart-items { padding: 12px; }
  .cart-footer { padding: 12px 16px; }
  .cart-item { gap: 10px; }
  .cart-item-img { width: 44px; height: 44px; }
  .cart-item-controls { gap: 8px; }

  /* Order summary in form */
  .order-summary { padding: 14px; }
  .order-summary-header h4 { font-size: 0.9rem; }
  .order-summary-edit { font-size: 0.8rem; }
  .summary-item { gap: 10px; padding: 8px 0; }
  .summary-item-img { width: 36px; height: 36px; }
  .summary-item-info strong { font-size: 0.8rem; }
  .summary-item-info span { font-size: 0.75rem; }
  .summary-item-price { font-size: 0.8rem; }
  .order-summary-total { font-size: 0.95rem; }

  /* Feature cards */
  .feature-card { padding: 20px; }
  .feature-icon { width: 40px; height: 40px; }

  /* Nav buttons in mobile menu */
  .nav-links a.nav-external { padding: 10px 16px; font-size: 0.82rem; }
  .nav-links a.nav-cta { padding: 12px 20px; font-size: 0.9rem; }

  /* Hero buttons */
  .hero-ctas .btn { padding: 12px 24px; }
}

@media (max-width: 375px) {
  /* Loading screen */
  .loading-logo { width: 72px; height: 72px; }
  .loading-bar { width: 72px; }

  /* Product modal */
  .product-modal-info { padding: 16px; }
  .product-modal-info h3 { font-size: 1rem; }

  /* Cart */
  .cart-item-img { width: 40px; height: 40px; }

  /* Step cards */
  .step-card p { max-width: 180px; }

  /* Feature cards */
  .feature-card { padding: 16px; }
}
