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

:root {
  --primary: #0EA89D;
  --primary-dark: #0B8A80;
  --primary-light: #E6F7F5;
  --accent: #D4A84B;
  --accent-dark: #B8912E;
  --text-dark: #2D3436;
  --text-body: #636E72;
  --text-light: #B2BEC3;
  --border: #DFE6E9;
  --bg-light: #F8F9FA;
  --bg-green-1: #EDF9F7;
  --bg-green-2: #D4ECE8;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --max-width: 1200px;
  --header-height: 80px;
}

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: var(--text-body);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* Announcement Bar */
.announcement-bar {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.announcement-bar a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 600;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

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

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-auth {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-link {
  position: relative;
  font-size: 1.3rem;
  padding: 6px 10px;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.cart-link:hover { background: var(--bg-light); }

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

.cart-count.hidden { display: none; }
.hidden { display: none !important; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  font-family: inherit;
}

.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(14, 168, 157, 0.3); }

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

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

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

.btn-lg { padding: 14px 36px; font-size: 1rem; }
.btn-sm { padding: 6px 16px; font-size: 0.8rem; }

.btn-danger { background: var(--accent); color: var(--white); }
.btn-danger:hover { background: #d04440; }

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

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Sections */
.section { padding: 80px 0; }
.section-bg-light { background: var(--bg-light); }
.section-bg-green { background: linear-gradient(135deg, var(--bg-green-1), var(--bg-green-2)); }

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

/* Hero Section */
.hero {
  padding: 60px 0 80px;
  background: linear-gradient(135deg, var(--bg-green-1) 0%, #eefaf0 50%, var(--white) 100%);
}

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

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 16px;
}

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

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 32px;
  max-width: 480px;
}

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

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 180px);
  gap: 12px;
}

.gallery-item { border-radius: var(--radius); overflow: hidden; background: var(--bg-green-1); }
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; font-weight: 800;
  color: var(--primary);
  background: linear-gradient(135deg, var(--bg-green-1), var(--bg-green-2));
}

/* Features Bar */
.features-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 24px 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.feature-card {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border-radius: var(--radius);
  background: var(--bg-light); transition: all 0.3s;
}

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

.feature-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}

.feature-text h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.feature-text p { font-size: 0.8rem; color: var(--text-light); }

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

.category-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 28px 16px; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--border);
  transition: all 0.3s; cursor: pointer; text-align: center;
}

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

.category-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--bg-green-1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}

.category-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); }

/* Split Content */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-image {
  border-radius: var(--radius-lg); overflow: hidden; min-height: 400px;
  background: linear-gradient(135deg, var(--bg-green-1), var(--bg-green-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; font-weight: 800; color: var(--primary);
}

.split-content h2 {
  font-size: 2rem; font-weight: 800; color: var(--text-dark);
  margin-bottom: 16px; line-height: 1.2;
}

.split-content h2 span { color: var(--primary); }

.split-content p {
  font-size: 1rem; color: var(--text-body);
  margin-bottom: 24px; line-height: 1.7;
}

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

.testimonial-card {
  padding: 32px; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--border);
  transition: all 0.3s;
}

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

.testimonial-stars { color: #f5a623; font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }

.testimonial-text {
  font-size: 0.95rem; color: var(--text-body);
  line-height: 1.7; margin-bottom: 20px; font-style: italic;
}

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

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

.testimonial-name { font-weight: 700; color: var(--text-dark); font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-light); }

/* FAQ */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }

.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 600; color: var(--text-dark);
  font-size: 1.05rem; user-select: none;
}

.faq-question .faq-toggle { font-size: 1.3rem; transition: transform 0.3s; color: var(--primary); }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

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

.faq-item.open .faq-answer { max-height: 300px; padding-top: 12px; }

/* CTA Section */
.cta-section {
  text-align: center; padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #0B8A80 50%, var(--accent-dark) 100%);
  color: var(--white);
}

.cta-section h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; }
.cta-section p {
  font-size: 1.1rem; max-width: 560px;
  margin: 0 auto 36px; opacity: 0.9;
}

/* Filter Bar */
.filter-bar {
  display: flex; gap: 24px; align-items: flex-start;
  margin-bottom: 32px; padding: 20px 24px;
  background: var(--bg-light); border-radius: var(--radius-lg);
  border: 1px solid var(--border); flex-wrap: wrap;
}

.filter-group { display: flex; flex-direction: column; gap: 8px; min-width: 140px; }

.filter-label {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--text-light);
}

.filter-options { display: flex; gap: 6px; flex-wrap: wrap; }

.filter-chip {
  padding: 6px 14px; border-radius: var(--radius-full);
  border: 1px solid var(--border); background: var(--white);
  font-size: 0.8rem; font-weight: 500; cursor: pointer;
  transition: all 0.2s; color: var(--text-body); font-family: inherit;
}

.filter-chip:hover { border-color: var(--primary); color: var(--primary); }

.filter-chip.active {
  background: var(--primary); color: var(--white);
  border-color: var(--primary);
}

.filter-sort {
  padding: 8px 16px; border-radius: var(--radius-full);
  border: 1px solid var(--border); background: var(--white);
  font-size: 0.85rem; font-weight: 500; color: var(--text-body);
  font-family: inherit; cursor: pointer; outline: none;
}

.filter-sort:focus { border-color: var(--primary); }

.filter-clear {
  font-size: 0.8rem; color: var(--accent); font-weight: 600;
  cursor: pointer; background: none; border: none; font-family: inherit;
  padding: 6px 0; align-self: flex-end;
}

.filter-clear:hover { text-decoration: underline; }

.filter-bar-divider { width: 1px; background: var(--border); align-self: stretch; }

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

.filter-sidebar {
  background: var(--bg-light); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 24px; position: sticky; top: 100px;
}

.filter-sidebar-title {
  font-size: 1rem; font-weight: 800; color: var(--text-dark);
  margin-bottom: 20px; display: flex; justify-content: space-between; align-items: center;
}

.filter-section { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.filter-section:last-of-type { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.filter-section-title {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--text-light); margin-bottom: 10px;
}

.filter-checkbox-group { display: flex; flex-direction: column; gap: 8px; }

.filter-checkbox {
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  font-size: 0.85rem; color: var(--text-body);
}

.filter-checkbox input[type="checkbox"] {
  width: 16px; height: 16px; accent-color: var(--primary); cursor: pointer;
}

.filter-checkbox .count {
  margin-left: auto; font-size: 0.75rem; color: var(--text-light);
}

.filter-toggle-btn {
  display: none; width: 100%; padding: 10px;
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 0.85rem; font-weight: 600;
  color: var(--text-dark); cursor: pointer; font-family: inherit;
  margin-bottom: 16px; text-align: center;
}

.filter-toggle-btn:hover { border-color: var(--primary); color: var(--primary); }

.results-meta {
  font-size: 0.85rem; color: var(--text-light); margin-bottom: 16px;
}

.results-meta strong { color: var(--text-dark); }

@media (max-width: 768px) {
  .products-layout { grid-template-columns: 1fr; }
  .filter-sidebar { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 9999; overflow-y: auto; border-radius: 0; padding: 32px 24px; background: var(--white); }
  .filter-sidebar.open { display: block; }
  .filter-toggle-btn { display: block; }
  .filter-bar { flex-direction: column; gap: 12px; }
  .filter-bar-divider { display: none; }
  .filter-group { min-width: 100%; }
}

/* Footer */
.footer { background: var(--white); border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }

.footer-brand p { margin-top: 16px; font-size: 0.9rem; color: var(--text-body); max-width: 320px; line-height: 1.7; }
.footer h4 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 0.9rem; color: var(--text-body); transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }

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

.social-link {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-light); display: flex; align-items: center; justify-content: center;
  color: var(--text-body); transition: all 0.3s; font-size: 1.1rem;
}

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

.footer-contact li {
  display: flex; gap: 12px; margin-bottom: 14px;
  font-size: 0.9rem; color: var(--text-body);
}

.footer-contact .icon { flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  margin-top: 40px; padding: 20px 0;
  background: linear-gradient(135deg, var(--bg-green-1), var(--bg-green-2));
  text-align: center;
}

.footer-bottom p { font-size: 0.85rem; color: var(--text-body); }
.footer-bottom strong { color: var(--primary); }

/* Page Header */
.page-header {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, var(--bg-green-1), var(--bg-green-2));
  text-align: center;
}

.page-header h1 { font-size: 2.5rem; font-weight: 800; color: var(--text-dark); margin-bottom: 12px; }
.page-header p {
  font-size: 1.05rem; color: var(--text-body); max-width: 600px; margin: 0 auto;
}

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

.product-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); transition: all 0.3s;
  background: var(--white); display: flex; flex-direction: column;
}

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

.product-image {
  height: 220px;
  background: linear-gradient(135deg, var(--bg-green-1), var(--bg-green-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}

.product-info { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.product-info .price { font-size: 1.2rem; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.product-info p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 12px; flex: 1; }
.product-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }

.product-tag {
  padding: 4px 10px; border-radius: var(--radius-full);
  background: var(--bg-green-1); color: var(--primary);
  font-size: 0.75rem; font-weight: 600;
}

.product-actions { display: flex; gap: 8px; }
.product-actions .btn { flex: 1; font-size: 0.85rem; padding: 10px 16px; }

/* Product Badge */
.product-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px; border-radius: var(--radius-full);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; z-index: 2;
}

.product-badge.custom {
  background: var(--primary); color: var(--white);
}

.product-badge.ready {
  background: var(--accent); color: var(--white);
}

.product-image-wrap { position: relative; }

/* Product Tabs */
.product-tabs {
  display: flex; gap: 4px; justify-content: center; margin-bottom: 40px;
  background: var(--bg-light); padding: 4px; border-radius: var(--radius-full);
  max-width: 400px; margin-left: auto; margin-right: auto;
}

.product-tab {
  flex: 1; padding: 12px 24px; border: none; border-radius: var(--radius-full);
  font-family: inherit; font-size: 0.9rem; font-weight: 600; cursor: pointer;
  background: transparent; color: var(--text-body); transition: all 0.3s;
}

.product-tab.active {
  background: var(--white); color: var(--primary); box-shadow: var(--shadow);
}

.product-tab:hover:not(.active) { color: var(--text-dark); }

/* Category Header */
.category-header {
  font-size: 1.35rem; font-weight: 800; color: var(--text-dark);
  margin: 40px 0 20px; padding-bottom: 12px;
  border-bottom: 2px solid var(--bg-green-2);
  display: flex; align-items: center; gap: 10px;
}

.category-header:first-of-type { margin-top: 0; }

.category-icon-small {
  font-size: 1.2rem;
}

/* RTS Card Specific */
.rts-card .product-image {
  display: flex; flex-direction: column; gap: 4px;
  background: linear-gradient(135deg, var(--text-dark), var(--primary-dark));
  color: var(--white); font-size: 2.5rem;
}

.rts-design-name {
  font-size: 0.7rem; font-weight: 600; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px;
}

/* Hero split (two-column USP) */
.hero-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px;
}

.hero-usp-card {
  padding: 28px; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--border);
  text-align: center; transition: all 0.3s;
}

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

.hero-usp-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-green-1), var(--bg-green-2));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; font-size: 1.5rem;
}

.hero-usp-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.hero-usp-card p { font-size: 0.85rem; color: var(--text-body); line-height: 1.5; }

/* Trending Section */
.trending-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}

.trending-header h2 { margin-bottom: 0; }

.view-all-link {
  font-size: 0.9rem; font-weight: 600; color: var(--primary);
  display: flex; align-items: center; gap: 6px;
}

.view-all-link:hover { text-decoration: underline; }

/* Cart Page */
.cart-page { min-height: 60vh; }

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

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

.cart-item-image {
  width: 80px; height: 80px; border-radius: var(--radius);
  background: var(--bg-green-1);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}

.cart-item-info h4 { font-size: 1rem; font-weight: 700; color: var(--text-dark); }
.cart-item-info p { font-size: 0.85rem; color: var(--text-light); }
.cart-item-info .item-price { font-weight: 700; color: var(--primary); margin-top: 4px; }

.cart-item-qty {
  display: flex; align-items: center; gap: 8px;
}

.qty-btn {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--white);
  font-size: 1.1rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: all 0.2s;
}

.qty-btn:hover { border-color: var(--primary); color: var(--primary); }

.qty-value {
  font-weight: 700; color: var(--text-dark); min-width: 24px; text-align: center;
}

.cart-item-total {
  font-weight: 800; color: var(--text-dark); font-size: 1.05rem;
  text-align: right;
}

.cart-item-remove {
  color: var(--text-light); cursor: pointer; transition: color 0.2s;
  background: none; border: none; font-size: 1.2rem;
}

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

.cart-summary {
  margin-top: 32px;
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-light);
  max-width: 400px;
  margin-left: auto;
}

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

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

.cart-summary-row.total {
  border-top: 2px solid var(--border);
  margin-top: 8px; padding-top: 16px;
  font-weight: 800; font-size: 1.15rem; color: var(--text-dark);
}

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

.cart-empty h2 { font-size: 1.5rem; color: var(--text-dark); margin-bottom: 12px; }
.cart-empty p { color: var(--text-light); margin-bottom: 24px; }

/* Checkout Page */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

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

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

.form-control {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 0.95rem; font-family: inherit;
  transition: border-color 0.3s; background: var(--white);
}

.form-control:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 112, 87, 0.1);
}

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

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

.checkout-summary-card {
  padding: 32px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); background: var(--bg-light);
  position: sticky; top: 100px;
}

.checkout-summary-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; }

.checkout-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; font-size: 0.9rem;
}

.checkout-item span:last-child { font-weight: 600; color: var(--text-dark); }

.checkout-total {
  display: flex; justify-content: space-between;
  border-top: 2px solid var(--border); margin-top: 12px;
  padding-top: 16px; font-weight: 800; font-size: 1.15rem;
  color: var(--text-dark);
}

/* Order Confirmation */
.confirmation-page { text-align: center; padding: 80px 0; }

.confirmation-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--bg-green-1); display: flex;
  align-items: center; justify-content: center;
  font-size: 2.5rem; margin: 0 auto 24px;
}

.confirmation-page h1 { font-size: 2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 12px; }
.confirmation-page .order-number { font-size: 1.1rem; color: var(--primary); font-weight: 700; margin-bottom: 8px; }
.confirmation-page p { color: var(--text-body); max-width: 480px; margin: 0 auto 32px; }

.confirmation-details {
  max-width: 500px; margin: 0 auto;
  text-align: left; padding: 24px 32px;
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  background: var(--bg-light);
}

.detail-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.95rem; }
.detail-row.total { border-top: 2px solid var(--border); margin-top: 8px; padding-top: 16px; font-weight: 700; }

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info-list { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }

.contact-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--bg-green-1); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}

.contact-item h4 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.contact-item p { font-size: 0.9rem; color: var(--text-body); line-height: 1.6; }

/* About Page */
.about-mission { text-align: center; max-width: 800px; margin: 0 auto; }
.about-mission h2 { font-size: 2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 20px; }
.about-mission p { font-size: 1.05rem; color: var(--text-body); line-height: 1.8; }

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

.stat-card {
  text-align: center; padding: 32px 16px;
  border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--border);
}

.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.stat-label { font-size: 0.9rem; color: var(--text-body); }

/* Bulk Orders */
.bulk-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.benefit-card {
  padding: 32px; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--border);
  text-align: center; transition: all 0.3s;
}

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

.benefit-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--bg-green-1); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.5rem;
}

.benefit-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.benefit-card p { font-size: 0.9rem; color: var(--text-body); line-height: 1.6; }

/* Printing Types */
.printing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

.printing-card {
  padding: 40px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); background: var(--white);
  transition: all 0.3s;
}

.printing-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.printing-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.printing-card h3 span { color: var(--primary); }
.printing-card p { font-size: 0.95rem; color: var(--text-body); line-height: 1.7; margin-bottom: 16px; }
.printing-features { list-style: disc; padding-left: 20px; }
.printing-features li { font-size: 0.9rem; color: var(--text-body); margin-bottom: 8px; }

/* Toast / Notification */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 10001;
  padding: 16px 24px; border-radius: var(--radius);
  background: var(--text-dark); color: var(--white);
  font-size: 0.9rem; font-weight: 600;
  transform: translateY(100px); opacity: 0;
  transition: all 0.3s; pointer-events: none;
}

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

/* Spinner */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top: 2px solid var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .hero-content h1 { font-size: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .checkout-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }

  .nav {
    display: none; position: absolute; top: var(--header-height);
    left: 0; right: 0; background: var(--white);
    flex-direction: column; padding: 24px; gap: 16px;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
  }

  .nav.open { display: flex; }
  .nav-auth { flex-direction: column; width: 100%; }
  .nav-auth .btn { width: 100%; text-align: center; }
  .hamburger { display: flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-gallery { grid-template-columns: repeat(2, 1fr); grid-template-rows: 150px 150px; }
  .hero-gallery .gallery-item:nth-child(1),
  .hero-gallery .gallery-item:nth-child(2) {
    grid-row: span 1;
    grid-column: span 1;
  }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .split-grid { grid-template-columns: 1fr; gap: 32px; }
  .split-image { min-height: 250px; order: -1; }
  .section { padding: 48px 0; }
  .section-title { font-size: 1.7rem; }
  .categories-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .bulk-benefits { grid-template-columns: 1fr; }
  .printing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 1.8rem; }
  .cta-section h2 { font-size: 1.8rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; text-align: center; }
  .hero-split { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: auto 1fr auto; }
  .cart-item > div:last-child {
    grid-column: 1 / -1;
    text-align: right;
  }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 120px 120px; }
  .gallery-item:nth-child(1) { grid-row: span 1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cart-item { grid-template-columns: 1fr; text-align: center; }
  .cart-item-image { margin: 0 auto; }
  .cart-item-qty { justify-content: center; }
  .cart-item-total { text-align: center; }
}

/* Admin Panel */
.admin-body {
  background: #f5f6fa; font-family: 'Plus Jakarta Sans', sans-serif;
}

.admin-login {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.admin-login-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 48px 40px; width: 100%; max-width: 400px; box-shadow: var(--shadow-hover);
}

.admin-login-card h1 { font-size: 1.5rem; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; text-align: center; }
.admin-login-card p { font-size: 0.9rem; color: var(--text-body); text-align: center; margin-bottom: 32px; }

.admin-login-card .form-group { margin-bottom: 20px; }
.admin-login-card .form-control { background: var(--bg-light); }

.admin-layout { display: flex; min-height: 100vh; }

.admin-sidebar {
  width: 240px; background: var(--text-dark); color: var(--white);
  padding: 24px 0; display: flex; flex-direction: column; flex-shrink: 0;
  overflow: hidden; transition: width 0.3s ease, padding 0.3s ease;
}

.admin-sidebar .logo { padding: 0 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 16px; color: var(--white); }

.admin-nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px; color: rgba(255,255,255,0.7); font-size: 0.9rem; font-weight: 500;
  transition: all 0.2s; text-decoration: none;
}

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

.admin-nav-item.logout { margin-top: auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }

.admin-main { flex: 1; padding: 32px; overflow-y: auto; }

.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.admin-header h1 { font-size: 1.5rem; font-weight: 800; color: var(--text-dark); }

.stats-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 32px; }

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

.stat-card-admin .stat-value { font-size: 2rem; font-weight: 800; color: var(--primary); }
.stat-card-admin .stat-label { font-size: 0.85rem; color: var(--text-light); margin-top: 4px; }

.admin-table-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow);
}

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; padding: 14px 20px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-light); background: var(--bg-light); border-bottom: 1px solid var(--border); }
.admin-table td { padding: 14px 20px; font-size: 0.9rem; color: var(--text-dark); border-bottom: 1px solid var(--border); }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--bg-light); }

.status-badge {
  display: inline-block; padding: 4px 12px; border-radius: var(--radius-full);
  font-size: 0.75rem; font-weight: 600;
}

.status-badge.paid { background: #E6F7F5; color: var(--primary); }
.status-badge.processing { background: #FFF3E0; color: #E67E22; }
.status-badge.shipped { background: #E3F2FD; color: #1976D2; }
.status-badge.delivered { background: #E8F5E9; color: #2E7D32; }
.status-badge.created { background: #F5F5F5; color: #9E9E9E; }
.status-badge.confirmed { background: #FFF3E0; color: #E67E22; }
.status-badge.failed { background: #FFEBEE; color: #C62828; }

.admin-body .btn-sm, .admin-layout .btn-sm { padding: 6px 14px; font-size: 0.8rem; }
.btn-outline-sm { padding: 6px 14px; font-size: 0.8rem; border: 1px solid var(--border); border-radius: var(--radius-full); background: var(--white); color: var(--text-body); cursor: pointer; font-family: inherit; transition: all 0.2s; }
.btn-outline-sm:hover { border-color: var(--primary); color: var(--primary); }

.admin-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--primary);
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
  transition: background 0.2s;
  line-height: 1;
}

.admin-mobile-toggle:hover { background: var(--primary-dark); }

.admin-sidebar-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4); z-index: 9997;
  display: none;
}

.admin-sidebar-overlay.open { display: block; }

@media (min-width: 769px) {
  .admin-sidebar:not(.open) {
    width: 0;
    padding: 0;
  }
  .admin-sidebar:not(.open) .logo,
  .admin-sidebar:not(.open) .admin-nav-item {
    opacity: 0;
    pointer-events: none;
  }
  .admin-sidebar-overlay { display: none !important; }
}

@media (max-width: 768px) {
  .admin-sidebar {
    position: fixed; top: 0; left: 0;
    width: 260px; height: 100vh; z-index: 9998;
    padding: 24px 0;
    transform: translateX(0);
    transition: transform 0.3s ease;
    box-shadow: 2px 0 16px rgba(0,0,0,0.2);
  }

  .admin-sidebar:not(.open) { transform: translateX(-100%); }

  .admin-main { padding: 16px; width: 100%; }

  .admin-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }

  .admin-header h1 { font-size: 1.15rem; flex: 1; }

  .admin-header .btn {
    padding: 8px 16px;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .admin-table-wrap { overflow-x: auto; }

  .admin-table { min-width: 500px; }

  .admin-table th,
  .admin-table td { padding: 10px 12px; font-size: 0.8rem; }

  .stats-cards { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .stat-card-admin { padding: 16px; }

  .stat-card-admin .stat-value { font-size: 1.4rem; }

  .admin-modal { margin: 12px; padding: 20px; }

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

  .admin-nav-item { padding: 10px 20px; font-size: 0.85rem; }

  body.sidebar-open { overflow: hidden; }
}

@media (max-width: 480px) {
  .stats-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .admin-main { padding: 12px; }
  .admin-header { flex-wrap: wrap; }
  .admin-header .btn { width: 100%; order: 3; }
}

.admin-form-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 32px; max-width: 600px; box-shadow: var(--shadow);
}

.admin-form-card h2 { font-size: 1.2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 24px; }

.admin-modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5); display: none; align-items: center; justify-content: center;
  z-index: 9999;
}

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

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

.admin-modal h2 { font-size: 1.2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 20px; }
.admin-modal .form-group { margin-bottom: 16px; }
.admin-modal .form-control { background: var(--bg-light); }

/* Generic modal overlay (for images-modal, variants-modal) */
.modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5); display: none; align-items: center; justify-content: center;
  z-index: 9999;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  width: 100%; max-width: 600px; max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-hover);
}
.modal h2 { font-size: 1.2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 20px; }
.modal-close {
  float: right; font-size: 1.5rem; cursor: pointer; color: var(--text-light);
  line-height: 1;
}
.modal-close:hover { color: var(--text-dark); }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in { animation: fadeInUp 0.6s ease forwards; }
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
