/* =============================================
   Peaksun Group - Main Stylesheet
   Colors from old site: Orange #E8500A, Green #6DB33F, Dark #2C2C2C
   ============================================= */

:root {
  --primary: #E8500A;
  --primary-dark: #C43D00;
  --secondary: #6DB33F;
  --secondary-dark: #4E8A2A;
  --accent: #F5A623;
  --dark: #2C2C2C;
  --text: #333333;
  --text-light: #666666;
  --bg-light: #F8F9FA;
  --bg-grey: #EEEEEE;
  --border: #DDDDDD;
  --white: #FFFFFF;
  --shadow: 0 2px 12px rgba(0,0,0,0.1);
  --shadow-hover: 0 6px 24px rgba(0,0,0,0.18);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.25s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Noto Sans TC', 'Microsoft JhengHei', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

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

/* =============================================
   Top Bar
   ============================================= */
.top-bar {
  background: var(--dark);
  color: #ccc;
  font-size: 13px;
  padding: 6px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: #ccc; }
.top-bar a:hover { color: var(--white); }
.top-bar .top-bar-links a {
  margin-left: 16px;
}

/* =============================================
   Header
   ============================================= */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.site-logo img { height: 60px; }
.site-logo .logo-text {
  display: flex;
  flex-direction: column;
}
.site-logo .logo-text .en { font-size: 10px; color: var(--text-light); letter-spacing: 0.5px; line-height: 1.3; }
.site-logo .logo-text .zh { font-size: 22px; font-weight: 700; color: var(--primary); }
.header-contact {
  text-align: right;
  font-size: 14px;
  color: var(--text-light);
}
.header-contact .phone {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}
.header-contact .tagline {
  font-size: 12px;
  color: var(--secondary);
  font-weight: 600;
}

/* =============================================
   Navigation
   ============================================= */
.main-nav {
  background: var(--primary);
}
.main-nav .nav-inner {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  overflow: hidden;
}
.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  flex: 1;
  overflow: hidden;
}
.main-nav ul li {
  position: relative;
}
.main-nav ul li > a {
  display: block;
  color: var(--white);
  padding: 14px 10px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
  letter-spacing: -0.2px;
}
.main-nav ul li > a:hover,
.main-nav ul li.active > a {
  background: var(--primary-dark);
  color: var(--white);
}
.main-nav ul li .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  box-shadow: var(--shadow-hover);
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 999;
}
.main-nav ul li:hover .dropdown { display: block; }
.main-nav ul li .dropdown a {
  display: block;
  padding: 10px 16px;
  color: var(--text);
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}
.main-nav ul li .dropdown a:hover {
  background: var(--bg-light);
  color: var(--primary);
}
.nav-cta {
  margin-left: auto;
  padding: 0 8px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-cta a {
  background: var(--accent);
  color: var(--dark) !important;
  padding: 9px 12px !important;
  border-radius: var(--radius);
  font-weight: 700 !important;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
}
.nav-cta a:hover {
  background: #e09400 !important;
}

/* =============================================
   Container
   ============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   Hero / Banner Slider
   ============================================= */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.hero-slider .slide {
  display: none;
  position: relative;
}
.hero-slider .slide.active { display: block; }
.hero-slider .slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.hero-slider .slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
  padding: 40px 40px 30px;
}
.hero-slider .slide-caption h2 { font-size: 32px; margin-bottom: 8px; }
.hero-slider .slide-caption p { font-size: 16px; opacity: 0.9; }
.slider-controls {
  position: absolute;
  bottom: 20px;
  right: 30px;
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.slider-dot.active { background: var(--white); }
.slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  padding: 12px 16px;
  font-size: 20px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
}
.slider-prev { left: 16px; }
.slider-next { right: 16px; }
.slider-prev:hover, .slider-next:hover { background: var(--primary); }

/* =============================================
   Business Category Cards
   ============================================= */
.biz-categories {
  padding: 60px 0;
  background: var(--bg-light);
}
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 {
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 8px;
}
.section-title .divider {
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin: 0 auto 12px;
  border-radius: 2px;
}
.section-title p { color: var(--text-light); font-size: 15px; }

.biz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.biz-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}
.biz-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.biz-card .biz-img {
  position: relative;
  overflow: hidden;
  height: 260px;
}
.biz-card .biz-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.biz-card:hover .biz-img img { transform: scale(1.05); }
.biz-card .biz-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.biz-card.printing .biz-badge { background: var(--secondary); }
.biz-card .biz-body {
  padding: 24px;
}
.biz-card .biz-body h3 {
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 10px;
}
.biz-card .biz-body p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.7;
}
.biz-card .biz-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.biz-tag {
  background: var(--bg-light);
  color: var(--text);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  border: 1px solid var(--border);
}
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--secondary-dark);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-sm { padding: 6px 14px; font-size: 12px; }

/* =============================================
   Promotions Section
   ============================================= */
.promotions-section {
  padding: 60px 0;
  background: var(--white);
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.promo-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: var(--white);
}
.promo-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.promo-card .promo-img {
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-card .promo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promo-card .promo-body {
  padding: 20px;
}
.promo-card .promo-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
}
.promo-card h4 {
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 8px;
}
.promo-card p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.promo-card .promo-date {
  font-size: 12px;
  color: var(--text-light);
}

/* =============================================
   Product Grid
   ============================================= */
.products-section { padding: 60px 0; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.product-card .prod-img {
  height: 200px;
  overflow: hidden;
  background: var(--bg-grey);
  position: relative;
}
.product-card .prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  cursor: zoom-in;
}
.product-card:hover .prod-img img { transform: scale(1.08); }
.prod-zoom-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .prod-zoom-btn { opacity: 1; }
.product-card .prod-body { padding: 16px; }
.product-card .prod-body h4 {
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 6px;
}
.product-card .prod-body p {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.product-card .prod-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.product-card .prod-price span { font-size: 12px; font-weight: normal; color: var(--text-light); }
.product-card .prod-actions {
  display: flex;
  gap: 8px;
}

/* =============================================
   Category Sidebar
   ============================================= */
.page-with-sidebar {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  padding: 40px 0;
}
.sidebar {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.sidebar-title {
  background: var(--primary);
  color: white;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
}
.sidebar-menu { list-style: none; }
.sidebar-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--text);
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.sidebar-menu li a:hover,
.sidebar-menu li.active a {
  background: var(--bg-light);
  color: var(--primary);
  padding-left: 28px;
}
.sidebar-menu li.cat-parent > a {
  font-weight: 600;
  background: var(--bg-light);
}
.sidebar-menu li.cat-child > a {
  padding-left: 32px;
  font-size: 13px;
}

/* =============================================
   Self-Service Platform (Stepper)
   ============================================= */
.platform-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}
.platform-hero h1 { font-size: 36px; margin-bottom: 12px; }
.platform-hero p { font-size: 18px; opacity: 0.9; margin-bottom: 30px; }
.platform-actions { display: flex; gap: 16px; justify-content: center; }

.stepper-container { padding: 40px 0; }
.stepper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 0;
}
.step-item {
  display: flex;
  align-items: center;
}
.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
}
.step-item.active .step-circle {
  background: var(--primary);
  color: white;
}
.step-item.completed .step-circle {
  background: var(--secondary);
  color: white;
}
.step-label {
  margin-left: 8px;
  font-size: 13px;
  color: var(--text-light);
  white-space: nowrap;
}
.step-item.active .step-label { color: var(--primary); font-weight: 600; }
.step-item.completed .step-label { color: var(--secondary); }
.step-connector {
  width: 50px;
  height: 2px;
  background: var(--border);
  margin: 0 8px;
}
.step-item.completed + .step-item .step-connector,
.step-connector.completed { background: var(--secondary); }

.step-panel { display: none; }
.step-panel.active { display: block; }

/* Order Summary Panel */
.order-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
  align-items: start;
}
.order-summary {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: sticky;
  top: 80px;
}
.order-summary .summary-header {
  background: var(--dark);
  color: white;
  padding: 16px 20px;
  border-radius: var(--radius) var(--radius) 0 0;
  font-weight: 700;
}
.order-summary .summary-body { padding: 20px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.summary-row:last-child { border-bottom: none; }
.summary-row .label { color: var(--text-light); }
.summary-row .value { font-weight: 600; }
.summary-total {
  background: var(--bg-light);
  padding: 16px 20px;
  border-radius: 0 0 var(--radius) var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.summary-total .total-label { font-size: 15px; font-weight: 600; }
.summary-total .total-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

/* Form Styles */
.form-section {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  margin-bottom: 24px;
}
.form-section h3 {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group label .required { color: var(--primary); margin-left: 4px; }
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232,80,10,0.1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}
.option-item {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.option-item:hover { border-color: var(--primary); }
.option-item.selected {
  border-color: var(--primary);
  background: rgba(232,80,10,0.05);
}
.option-item .opt-name { font-size: 14px; font-weight: 600; }
.option-item .opt-price { font-size: 12px; color: var(--primary); margin-top: 4px; }
.upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.upload-area:hover, .upload-area.dragover {
  border-color: var(--primary);
  background: rgba(232,80,10,0.03);
}
.upload-area .upload-icon { font-size: 48px; color: var(--text-light); margin-bottom: 12px; }
.upload-area p { color: var(--text-light); font-size: 14px; }
.upload-area .upload-hint { font-size: 12px; margin-top: 8px; }
.step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* =============================================
   Stores Page
   ============================================= */
.stores-section { padding: 40px 0; }
.stores-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
}
.stores-list { overflow-y: auto; max-height: 600px; }
.store-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
  border-left: 4px solid transparent;
}
.store-item:hover, .store-item.active {
  border-left-color: var(--primary);
  box-shadow: var(--shadow-hover);
}
.store-item h4 { font-size: 16px; color: var(--dark); margin-bottom: 8px; }
.store-item p { font-size: 13px; color: var(--text-light); margin-bottom: 4px; }
.store-type-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px;
}
.store-type-badge.store { background: #e3f2fd; color: #1976d2; }
.store-type-badge.smart_locker { background: #e8f5e9; color: #388e3c; }
#map-container {
  height: 600px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* =============================================
   Help Center / Blog
   ============================================= */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.article-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.article-card .art-img {
  height: 180px;
  overflow: hidden;
  background: var(--bg-grey);
}
.article-card .art-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-card .art-body { padding: 20px; }
.article-card .art-cat {
  display: inline-block;
  background: var(--bg-light);
  color: var(--primary);
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 10px;
}
.article-card h4 { font-size: 16px; color: var(--dark); margin-bottom: 8px; }
.article-card p { font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
.article-card .art-date { font-size: 12px; color: var(--text-light); }

/* =============================================
   Downloads
   ============================================= */
.downloads-list { }
.download-item {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 12px;
  transition: var(--transition);
}
.download-item:hover { box-shadow: var(--shadow-hover); }
.download-item .dl-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 16px;
  flex-shrink: 0;
}
.download-item .dl-info { flex: 1; }
.download-item .dl-info h4 { font-size: 15px; color: var(--dark); margin-bottom: 4px; }
.download-item .dl-info p { font-size: 13px; color: var(--text-light); }
.download-item .dl-meta {
  font-size: 12px;
  color: var(--text-light);
  margin-right: 20px;
  text-align: right;
}

/* =============================================
   Lightbox (Image Zoom)
   ============================================= */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.2);
  color: white;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =============================================
   Footer
   ============================================= */
.site-footer {
  background: var(--dark);
  color: #ccc;
  padding: 50px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .brand-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand p { font-size: 13px; line-height: 1.8; margin-bottom: 16px; }
.footer-brand .contact-info p {
  font-size: 13px;
  margin-bottom: 6px;
}
.footer-brand .contact-info a { color: #ccc; }
.footer-col h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #aaa; font-size: 13px; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #888;
}
.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: #ccc; }

/* =============================================
   Breadcrumb
   ============================================= */
.breadcrumb {
  background: var(--bg-light);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.breadcrumb ol li::after { content: '›'; color: var(--text-light); margin-left: 8px; }
.breadcrumb ol li:last-child::after { content: ''; }
.breadcrumb ol li a { color: var(--text-light); }
.breadcrumb ol li:last-child { color: var(--text); font-weight: 600; }

/* =============================================
   Page Header
   ============================================= */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, #444 100%);
  color: white;
  padding: 40px 0;
}
.page-header h1 { font-size: 32px; margin-bottom: 8px; }
.page-header p { font-size: 15px; opacity: 0.8; }

/* =============================================
   Alert / Notice
   ============================================= */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 14px;
}
.alert-success { background: #e8f5e9; color: #2e7d32; border-left: 4px solid #4caf50; }
.alert-error { background: #ffebee; color: #c62828; border-left: 4px solid #f44336; }
.alert-info { background: #e3f2fd; color: #1565c0; border-left: 4px solid #2196f3; }
.alert-warning { background: #fff8e1; color: #f57f17; border-left: 4px solid #ffc107; }

/* =============================================
   Mobile Menu Toggle
   ============================================= */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

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

@media (max-width: 768px) {
  .biz-grid { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .page-with-sidebar { grid-template-columns: 1fr; }
  .order-layout { grid-template-columns: 1fr; }
  .stores-layout { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-slider .slide img { height: 260px; }
  .hero-slider .slide-caption h2 { font-size: 22px; }
  .mobile-menu-toggle { display: block; }
  .main-nav ul { display: none; flex-direction: column; width: 100%; }
  .main-nav ul.open { display: flex; }
  .main-nav ul li .dropdown { position: static; box-shadow: none; }
  .stepper { justify-content: flex-start; overflow-x: auto; }
  .form-row { grid-template-columns: 1fr; }
  .platform-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .container { padding: 0 12px; }
}
