/* ===== NAVESHA_GIFTORY DESIGN SYSTEM ===== */

/* --- CSS Variables --- */
:root {
  --primary: #1C1C1C;
  --primary-light: #333333;
  --accent: #E10600;
  --accent-hover: #B00020;
  --accent-light: #FFE5E5;
  --white: #ffffff;
  --light-bg: #F8F9FA;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #adb5bd;
  --gray-500: #6c757d;
  --gray-600: #495057;
  --gray-700: #343a40;
  --text-dark: #1C1C1C;
  --text-muted: #6c757d;
  --border: #E5E5E5;
  --success: #28a745;
  --danger: #dc3545;
  --warning: #ffc107;
  --info: #17a2b8;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --transition: all 0.3s ease;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
}

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

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

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

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  font-family: var(--font-main);
  transition: var(--transition);
}

input, select, textarea {
  font-family: var(--font-main);
  border: 2px solid var(--gray-300);
  border-radius: var(--border-radius-sm);
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.15);
}

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

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

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

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(225,6,0,0.3);
}

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

.btn-secondary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.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; }

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

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

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo span {
  color: var(--accent);
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-600);
  position: relative;
}

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

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cart {
  position: relative;
  font-size: 1.3rem;
  color: var(--gray-600);
  cursor: pointer;
}

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

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

/* --- HERO SECTION --- */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

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

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

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

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

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

.hero-text p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-600);
  font-size: 0.9rem;
}

.hero-badge i {
  color: var(--accent);
}

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

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

.hero-mockup {
  width: 100%;
  max-width: 480px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-poster-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 480px;
}

.hero-poster-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.hero-poster-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.hero-poster-card .size {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.hero-poster-card .label {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 4px;
}

.hero-poster-card .price {
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 8px;
}

/* --- POSTER SIZE CARDS --- */
.sizes-section {
  background: var(--light-bg);
}

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

.size-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid transparent;
}

.size-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.size-card .size-icon {
  width: 80px;
  height: 100px;
  background: var(--gray-100);
  border-radius: var(--border-radius-sm);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.size-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.size-card .dimensions {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.size-card .price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.size-card .paper-types {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 15%;
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  z-index: 0;
}

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

.step-number {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--accent);
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- TESTIMONIALS --- */
.testimonials-section {
  background: linear-gradient(135deg, #E10600 0%, #B00020 100%);
}

.testimonials-section .section-title,
.testimonials-section .section-subtitle {
  color: var(--white);
}

.testimonials-section .section-subtitle {
  color: rgba(255,255,255,0.6);
}

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

.testimonial-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--border-radius);
  padding: 32px;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 16px;
}

.testimonial-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
}

.testimonial-info h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
}

.testimonial-info span {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

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

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

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

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

.faq-question i {
  transition: var(--transition);
  color: var(--accent);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding: 0 24px 20px;
  max-height: 200px;
}

/* --- FOOTER --- */
.footer {
  background: #1C1C1C;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}

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

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand h3 span {
  color: var(--accent);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

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

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

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

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* --- POSTER PRODUCT PAGE --- */
.product-page {
  padding-top: 100px;
  padding-bottom: 60px;
}

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

.preview-box {
  background: var(--gray-100);
  border-radius: var(--border-radius);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--gray-300);
  position: relative;
  overflow: hidden;
}

.preview-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.preview-placeholder {
  text-align: center;
  color: var(--text-muted);
}

.preview-placeholder i {
  font-size: 3rem;
  margin-bottom: 12px;
  color: var(--gray-400);
}

.product-config {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.product-config h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

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

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

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

.config-option {
  padding: 10px 20px;
  border: 2px solid var(--gray-300);
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  background: var(--white);
  transition: var(--transition);
}

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

.config-option.selected {
  border-color: var(--accent);
  background: rgba(225, 6, 0, 0.08);
  color: var(--primary);
}

.quantity-input {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid var(--gray-300);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  width: fit-content;
}

.quantity-btn {
  width: 44px;
  height: 44px;
  background: var(--gray-100);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.quantity-input input {
  width: 60px;
  text-align: center;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 0;
}

.quantity-input input:focus {
  box-shadow: none;
}

.price-display {
  background: var(--gray-100);
  border-radius: var(--border-radius-sm);
  padding: 20px;
  margin: 24px 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.price-row:last-child {
  margin-bottom: 0;
  padding-top: 12px;
  border-top: 1px solid var(--gray-300);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.upload-zone {
  border: 2px dashed var(--gray-300);
  border-radius: var(--border-radius-sm);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 20px;
}

.upload-zone:hover {
  border-color: var(--accent);
  background: rgba(225, 6, 0, 0.03);
}

.upload-zone i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.upload-zone p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.upload-zone .formats {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 4px;
}

/* --- MAGAZINE PAGE --- */
.magazine-form {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.range-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  outline: none;
  border: none;
  padding: 0;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.range-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 8px;
}

.delivery-estimate {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.2);
  border-radius: var(--border-radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.delivery-estimate i {
  color: var(--success);
  font-size: 1.2rem;
}

.delivery-estimate span {
  font-size: 0.95rem;
  color: var(--success);
  font-weight: 500;
}

/* --- CART & CHECKOUT --- */
.cart-page {
  padding-top: 100px;
  padding-bottom: 60px;
  min-height: 80vh;
}

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

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  background: var(--gray-100);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 1.5rem;
}

.cart-item-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.cart-item-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cart-item-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.cart-item-remove {
  background: none;
  color: var(--gray-400);
  font-size: 1.2rem;
  padding: 8px;
}

.cart-item-remove:hover {
  color: var(--danger);
}

.cart-summary {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  padding: 28px;
  position: sticky;
  top: 100px;
}

.cart-summary h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary);
}

.coupon-input {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.coupon-input input {
  flex: 1;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.summary-row.total {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  padding-top: 12px;
  border-top: 1px solid var(--gray-200);
  margin-top: 8px;
}

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

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

.checkout-step.active {
  color: var(--accent);
  font-weight: 600;
}

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

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.checkout-step.active .step-circle {
  background: var(--accent);
  color: var(--white);
}

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

.step-connector {
  width: 40px;
  height: 2px;
  background: var(--gray-200);
}

/* --- ORDER TRACKING --- */
.tracking-page {
  padding-top: 100px;
  padding-bottom: 60px;
  min-height: 80vh;
}

.tracking-form {
  max-width: 500px;
  margin: 0 auto 40px;
  background: var(--white);
  padding: 36px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.tracking-result {
  max-width: 600px;
  margin: 0 auto;
  display: none;
}

.tracking-timeline {
  position: relative;
  padding-left: 40px;
}

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

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

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

.timeline-dot {
  position: absolute;
  left: -32px;
  top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--white);
}

.timeline-step.completed .timeline-dot {
  background: var(--success);
}

.timeline-step.active .timeline-dot {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(225, 6, 0, 0.2);
}

.timeline-step h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.timeline-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.timeline-step.inactive h4 {
  color: var(--gray-400);
}

/* --- ABOUT PAGE --- */
.about-hero {
  padding-top: 120px;
  padding-bottom: 60px;
  background: linear-gradient(135deg, #E10600, #B00020);
  text-align: center;
}

.about-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.about-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: -40px;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.stat-card .number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-card .label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

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

.about-image {
  background: var(--gray-100);
  border-radius: var(--border-radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gray-400);
}

/* --- CONTACT PAGE --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

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

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-200);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(225, 6, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.contact-form h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--primary);
}

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

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

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

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

/* --- LOGIN/SIGNUP --- */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 40px;
  background: var(--light-bg);
}

.auth-card {
  max-width: 440px;
  width: 100%;
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.auth-card h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  text-align: center;
}

.auth-card .auth-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

.social-btn {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius-sm);
  background: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.social-btn:hover {
  border-color: var(--gray-300);
  background: var(--gray-100);
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.auth-footer a {
  color: var(--accent);
  font-weight: 600;
}

/* --- DASHBOARD --- */
.dashboard-page {
  padding-top: 90px;
  padding-bottom: 60px;
  min-height: 100vh;
  background: var(--light-bg);
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
}

.dashboard-sidebar {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  height: fit-content;
  position: sticky;
  top: 100px;
}

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

.sidebar-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 12px;
}

.sidebar-user h4 {
  font-size: 1rem;
  font-weight: 600;
}

.sidebar-user p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-600);
  margin-bottom: 4px;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: rgba(225, 6, 0, 0.08);
  color: var(--accent);
}

.sidebar-nav a.active {
  font-weight: 600;
}

.dashboard-content {
  min-width: 0;
}

.dashboard-header {
  margin-bottom: 24px;
}

.dashboard-header h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.dashboard-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

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

.dash-stat-card .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.dash-stat-card .value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.orders-table {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

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

.orders-table th {
  text-align: left;
  padding: 16px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--gray-100);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.orders-table td {
  padding: 16px 20px;
  font-size: 0.95rem;
  border-top: 1px solid var(--gray-200);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.status-processing {
  background: rgba(23, 162, 184, 0.1);
  color: var(--info);
}

.status-printing {
  background: rgba(255, 193, 7, 0.1);
  color: #d4a300;
}

.status-shipped {
  background: rgba(225, 6, 0, 0.08);
  color: var(--accent);
}

.status-delivered {
  background: rgba(40, 167, 69, 0.1);
  color: var(--success);
}

/* --- ADMIN DASHBOARD --- */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.admin-stat-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent);
}

.admin-stat-card .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.admin-stat-card .value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.admin-stat-card .change {
  font-size: 0.8rem;
  color: var(--success);
  margin-top: 4px;
}

.admin-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

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

.admin-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary);
}

/* --- EMPTY STATES --- */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-state i {
  font-size: 3rem;
  color: var(--gray-300);
  margin-bottom: 16px;
}

.empty-state h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.empty-state p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* --- TOAST NOTIFICATIONS --- */
.toast-container {
  position: fixed;
  top: 90px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--white);
  border-radius: var(--border-radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  animation: slideIn 0.3s ease;
  border-left: 4px solid var(--success);
}

.toast.error {
  border-left-color: var(--danger);
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* --- PAGE HEADER (reusable subpage header) --- */
.page-header {
  padding-top: 120px;
  padding-bottom: 40px;
  background: linear-gradient(135deg, #E10600, #B00020);
  text-align: center;
}

.page-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

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

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-badges {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
  }
  .hero-poster-grid {
    margin: 0 auto;
  }
  .sizes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid::before {
    display: none;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-layout {
    grid-template-columns: 1fr;
  }
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-content {
    grid-template-columns: 1fr;
  }
  .dashboard-layout {
    grid-template-columns: 1fr;
  }
  .dashboard-sidebar {
    position: static;
  }
  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .admin-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.active {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .hero-poster-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .sizes-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 50px 0;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .cart-item {
    grid-template-columns: 60px 1fr;
    gap: 12px;
  }
  .cart-item-price {
    grid-column: 2;
  }
  .dashboard-stats {
    grid-template-columns: 1fr;
  }
  .admin-stats {
    grid-template-columns: 1fr;
  }
  .checkout-step span {
    display: none;
  }
}
