/* ===== CSS RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: #050505;
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
  /* background: #f0f0f0; */
}

/* img[width][height] {
  height: auto;
} */

/* Placeholder background while images load - prevents blank white flash */
.deal-card img,
.product-circle img,
.lf-card img,
.gift-card img,
.blog-image img,
.hero-banner-img,
.big-idea-bg,
.why-cta-image img {
  background: #f0f0f0;  
}

img.loaded {
  background: transparent;
}

/* ===== LOADING STATES ===== */
.loading-spinner {
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 3px solid #e5e5e5;
  border-top-color: #e19a2b;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.page-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 48px 24px;
  color: #666;
}
.page-loading .loading-spinner {
  flex-shrink: 0;
}

/* ===== UTILITY ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 42px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.2s;
  text-transform: capitalize;
  border: none;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-primary {
  background: #e19a2b;
  color: #000;
}

.btn-outline-white {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ===== HEADER ===== */
.header {
  background: #050505;
  position: sticky;
  top: 0;
  z-index: 1100;
  height: 80px;
  display: flex;
  align-items: center;
  border-radius:  0px 0px 10px 10px;
}

.header-inner {
  max-width: 1800px;
  margin: 0 auto;
  padding: 1px 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 102; /* Above mobile menu */
}

.header-logo .logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

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

.collections-nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.collections-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.collections-nav-link::after {
  content: '▾';
  font-size: 12px;
  line-height: 1;
}

.collections-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 260px;
  padding: 12px 0;
  border: 1px solid rgba(225, 154, 43, 0.18);
  border-radius: 14px;
  background: rgba(5, 5, 5, 0.96);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 120;
}

.collections-nav-item:hover .collections-dropdown,
.collections-nav-item:focus-within .collections-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.collections-dropdown-item {
  display: block;
  padding: 10px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.collections-dropdown-item:hover {
  background: rgba(225, 154, 43, 0.12);
  color: #e19a2b;
}

.collections-dropdown-all {
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.nav-link {
  font-family: 'Archivo', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 1.98px;
  transition: color 0.3s;
}

.nav-link.active {
  font-weight: 700;
}

.nav-link:hover {
  color: #e19a2b;
}

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

/* Mobile Menu Toggle (Hidden by default) */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 102;
  background: transparent;
  border: none;
  padding: 12px 7px;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Menu Container */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #050505;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  padding: 40px;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-nav-link {
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  color: #fff;
  text-transform: capitalize;
  text-decoration: none;
}

.mobile-nav-link.active {
  color: #e19a2b;
}

.mobile-collections-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mobile-collections-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mobile-collection-item {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  text-transform: none;
}

.header-link {
  font-family: 'Archivo', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 1.98px;
  transition: color 0.3s;
}

.header-link.highlight {
  color: #e19a2b;
}

.header-link:hover {
  color: #e19a2b;
}

.header-link.header-phone {
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.mobile-menu .mobile-phone {
  font-family: 'Archivo', sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  color: #e19a2b;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header .icon-link {
  color: #fff;
}

.header .icon-link svg {
  stroke: currentColor;
}

.icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  transition: opacity 0.3s;
}

.icon-link:hover {
  opacity: 0.7;
}

/* ===== HERO ===== */
.hero {
  padding: 20px 41px 30px;
}

.hero-inner {
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  gap: 0;
}

.hero-sidebar {
  width: 480px;
  max-width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
}

.sidebar-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-transform: capitalize;
  background: #fff;
  color: #000;
  transition: background 0.3s, color 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-item:first-child {
  border-radius: 20px 20px 0 0;
}

.sidebar-item:last-child {
  border-radius: 0 0 20px 20px;
  border-bottom: none;
}

.sidebar-item:hover {
  background: #e19a2b;
  color: #fff;
}

.sidebar-item .arrow-icon {
  display: flex;
  align-items: center;
}

.sidebar-item .arrow-icon svg {
  stroke: currentColor;
  flex-shrink: 0;
}

.hero-banner {
  flex: 1;
  max-width: 1500px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 500px;
}

.hero-banner-img {
  /* position: absolute; */
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.33); */
}

.hero-banner-content {
  position: relative;
  z-index: 2;
  padding: 120px 60px;
}

.hero-banner-content h1 {
  display: flex;
  flex-direction: column;
}

.hero-banner-content h1 span {
  font-family: 'Archivo Black', sans-serif;
  font-size: 64px;
  color: #fff;
  text-transform: capitalize;
  line-height: 1.2;
}

.hero-banner-content .btn {
  margin-top: 30px;
  font-size: 22px;
}

/* ===== SEARCH ===== */
.search-bar-wrapper {
  max-width: 1800px;
  width: 100%;
  margin: 0 auto;
}

.hero > .search-bar-wrapper {
  padding: 30px 0 0;
}

.category-nav-inner > .search-bar-wrapper,
.search-section .search-bar-wrapper,
.search-bar-wrapper.why-search-bar {
  padding: 0;
}

.search-section {
  padding: 30px 41px;
}

.search-bar {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 10px;
  padding: 20px 30px;
  box-shadow: none;
}

.search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #050505;
  outline: none;
  letter-spacing: 1.98px;
  text-transform: capitalize;
}

.search-input::placeholder {
  color: #a6a6a6;
}

.search-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}

.search-btn img {
  opacity: 1;
  filter: brightness(0);
}

/* Search dropdown results */
.search-results {
  margin-top: 16px;
  border-radius: 16px;
  border: 1px solid #ececec;
  background: #fff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.search-results[hidden] {
  display: none;
}

.search-results[data-state='loading'],
.search-results[data-state='message'] {
  padding: 24px 20px;
  text-align: center;
  font-size: 15px;
  color: #545454;
}

.search-results[data-state='loading']::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  border-radius: 50%;
  border: 2px solid #bbb;
  border-top-color: #7c3aed;
  animation: search-spinner 0.6s linear infinite;
  vertical-align: middle;
}

.search-results-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 320px;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-top: 1px solid #f1f1f1;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}

.search-result-item:first-child {
  border-top: none;
}

.search-result-item:hover {
  background: #f8f8f8;
}

.search-result-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-result-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-info {
  flex: 1;
  min-width: 0;
}

.search-result-name {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
  color: #202020;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #6d6d6d;
}

.search-result-meta .meta-dot {
  display: inline-flex;
  align-items: center;
  margin: 0 4px;
  color: #c8c8c8;
}

.search-result-meta .price {
  font-weight: 600;
  color: #111;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.search-result-meta .category {
  text-transform: capitalize;
}

.search-results-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: #fafafa;
  border-top: 1px solid #f1f1f1;
  font-size: 14px;
  color: #303030;
}

.search-results-footer a {
  color: #7c3aed;
  font-weight: 600;
  text-decoration: none;
}

@keyframes search-spinner {
  to {
    transform: rotate(360deg);
  }
}

/* ===== FEATURED PRODUCTS ===== */
.featured-products {
  padding: 60px 40px 80px;
  max-width: 1800px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 56px;
  text-transform: capitalize;
  color: #000;
  line-height: 1.2;
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: #e19a2b;
  text-transform: capitalize;
  margin-top: 12px;
}

.products-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
  scrollbar-width: none;
}

.products-grid::-webkit-scrollbar {
  display: none;
}

.product-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.product-circle:hover img {
  transform: scale(1.04);
}

a.product-circle:hover p {
  color: #e19a2b;
}

.product-circle img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.product-circle p {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  text-transform: capitalize;
  color: #000;
}

/* ===== ONE-STOP PRINTING STORE ===== */
.one-stop {
  padding: 56px 40px 64px;
  max-width: 1800px;
  margin: 0 auto;
}

.one-stop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  margin-bottom: 32px;
  padding: 0 4px;
}

.one-stop-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #181002;
  text-decoration: none;
  transition: color 0.2s;
}

.one-stop-nav a:hover {
  color: #e19a2b;
}

.one-stop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.one-stop-block {
  min-height: 380px;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

/* Block 1: Golden yellow (#DAA520), rounded top-right and bottom-right */
.one-stop-orange {
  background: #000000;
  border-top-left-radius: 250px;
  /* border-bottom-right-radius: 120px; */
}

.one-stop-orange h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 48px;
  color: #E19A2B;
  line-height: 1.2;
  margin: 0 0 20px 0;
  text-align: right;
  width: 100%;
}

.one-stop-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  line-height: 1.55;
  margin: 0;
  text-align: right;
  width: 100%;
}

/* Block 2 & 3: Light grey placeholders (#D3D3D3) */
.one-stop-gray {
  background: #D3D3D3;
}

.one-stop-gray-tr {
  border-bottom-left-radius: 250px;
  overflow: hidden; /* clip the screenshot image to the rounded edge */
}

.one-stop-gray-bl {
  border-top-right-radius: 250px;
  overflow: hidden; /* clip any future content to the rounded edge */
}

/* Screenshot inside the top-right "sharing" block */
.one-stop-sharing-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  align-self: stretch;
}

/* Block 4: Dark brown (#32281D), rounded top-left and bottom-left, golden yellow text */
.one-stop-dark {
  background: #E19A2B;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  align-items: flex-start;
  border-bottom-right-radius: 250px;
}

.one-stop-dark h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 48px;
  color: #000;
  line-height: 1.2;
  margin: 0 0 20px 0;
  text-align: left;
  width: 100%;
}

.one-stop-dark p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000;
  line-height: 1.55;
  margin: 0;
  text-align: left;
  width: 100%;
}

/* ===== OUR CLIENTS ===== */
.clients-section {
  padding: 60px 40px 40px;
  max-width: 1800px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}

.clients-section .section-title {
  margin-bottom: 40px;
}

.clients-marquee {
  overflow: hidden;
  position: relative;
  padding: 30px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: scroll-clients 20s linear infinite;
  width: max-content;
}

.client-logo {
  height: 40px;
  width: auto;
  flex-shrink: 0;
  filter: grayscale(0);
}

@keyframes scroll-clients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== DEALS ===== */
.deals-section {
  padding: 80px 40px;
  max-width: 1800px;
  margin: 0 auto;
}

.deals-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
}

.view-all {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #555;
  text-transform: capitalize;
  transition: color 0.3s;
}

.view-all:hover {
  color: #e19a2b;
}

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

.homepage-collections {
  padding-top: 32px;
}

.homepage-collection-block + .homepage-collection-block {
  margin-top: 56px;
}

.homepage-collection-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.homepage-collection-description {
  margin-top: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  max-width: 760px;
}

.homepage-collections .shop-grid {
  margin-bottom: 0;
}

.homepage-collections-empty {
  padding: 32px 24px;
  border: 1px solid #ece7dd;
  border-radius: 16px;
  background: #fffaf2;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #666;
}

.deal-card {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
}

.deal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

/* ===== WHY BIZPRINT ===== */
/* Figma: outer #e5d9c4, inner #faf4e7 */
.why-bizprint {
  position: relative;
  padding: 64px 40px;
  overflow: hidden;
  background: #e5d9c4;
}

.why-bizprint-bg {
  display: none;
}

.why-bizprint-inner {
  position: relative;
  z-index: 1;
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
  padding: 64px 60px;
  background: #faf4e7;
  border-radius: 20px;
}

.why-bizprint-logo {
  width: 300px;
  flex-shrink: 0;
}

.why-logo-img {
  width: 100%;
  height: auto;
}

.why-bizprint-content {
  flex: 1;
}

.why-bizprint-content h2 {
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  color: #181002;
  line-height: 1.15;
  margin-bottom: 24px;
  text-transform: capitalize;
}

.why-heading-line1 {
  font-size: 52px;
  font-weight: 900;
}

.why-heading-line2 {
  font-size: 64px;
  font-weight: 900;
}

.why-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #181002;
  margin-bottom: 32px;
}

.why-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 32px;
}

.why-list li {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #000;
  line-height: 1.8;
  padding-left: 24px;
  position: relative;
}

.why-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #000;
}

.why-tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #181002;
}

/* ===== LARGE FORMAT PRINTING ===== */
.large-format {
  padding: 80px 40px;
  max-width: 1800px;
  margin: 0 auto;
}

.section-title-left {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 32px;
  text-transform: capitalize;
  color: #000;
  margin-bottom: 24px;
}

.section-title-left.accent-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title-left.accent-title .accent-line {
  height: 40px;
  flex-shrink: 0;
}

.large-format-grid-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}

.lf-card {
  border-radius: 20px;
  overflow: hidden;
}

.lf-card.large {
  aspect-ratio: 800 / 385;
}

.lf-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.lf-card:hover img {
  transform: scale(1.03);
}

.lf-label-top-left,
.lf-label-top-right {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 22px;
  text-transform: capitalize;
  color: #000;
  margin-bottom: 20px;
}

.lf-label-top-left {
  display: inline-block;
}

.lf-label-top-right {
  float: right;
}

.large-format-grid-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
  clear: both;
}

.large-format-grid-bottom .lf-card {
  aspect-ratio: 1;
}

.lf-labels-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.lf-labels-bottom p {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 22px;
  text-transform: capitalize;
  color: #000;
  text-align: left;
}

/* ===== CORPORATE GIFTS ===== */
.corporate-gifts {
  padding: 80px 40px;
  max-width: 1800px;
  margin: 0 auto;
}

.corporate-gifts .section-title-left {
  font-family: 'Archivo Black', sans-serif;
  font-size: 56px;
}

.section-subtitle-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: #000;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.accent-line {
  display: inline-block;
  width: 4px;
  height: 36px;
  background: #e19a2b;
  border-radius: 2px;
}

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

.gift-card {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
}

.gift-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.gifts-labels {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.gifts-labels p {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 22px;
  text-transform: capitalize;
  color: #000;
  text-align: center;
}

/* ===== BIG IDEA ===== */
.big-idea {
  padding: 80px 40px;
  max-width: 1800px;
  margin: 0 auto;
}

.big-idea-inner {
  position: relative;
  border-radius: 53px;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.big-idea-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.big-idea-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.big-idea-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.big-idea-content h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 56px;
  text-transform: capitalize;
  color: #fff;
  line-height: 1.2;
}

.big-idea-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 28px;
  color: #fff;
  letter-spacing: 5px;
  margin-top: 10px;
  text-transform: capitalize;
}

/* ===== READY TO PRINT ===== */
.ready-to-print {
  padding: 80px 40px;
  max-width: 1880px;
  margin: 0 auto;
}

.ready-to-print-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.rtp-left h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 56px;
  text-transform: capitalize;
  color: #181002;
  line-height: 1.15;
  text-align: right;
}

.rtp-left p {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #181002;
  margin-top: 16px;
}

.rtp-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.rtp-image {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 600px;
}

.rtp-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== BLOGS ===== */
.blogs-section {
  padding: 80px 40px 100px;
  max-width: 1800px;
  margin: 0 auto;
}

.blogs-section .section-title-left {
  font-family: 'Archivo Black', sans-serif;
  font-size: 56px;
  margin-bottom: 40px;
}

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

.blog-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: 550px;
  display: flex;
  flex-direction: column;
}

.blog-image {
  position: absolute;
  inset: 0;
}

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

.blog-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0.85));
}

.blog-content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 30px;
  color: #fff;
}

.blog-content p {
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.blog-content .btn {
  font-size: 18px;
  padding: 12px 36px;
}

/* ===== FOOTER ===== */
.footer {
  background: #141111;
  border-radius: 40px 40px 0 0;
  margin-top: 40px;
  padding: 60px 80px 0;
  color: #fff;
}

.footer-inner {
  max-width: 1800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr 1.2fr;
  gap: 60px;
}

.footer-col h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

/* Column 1: Brand */
.footer-brand-col .footer-logo {
  max-width: 160px;
  height: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
}

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

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  transition: color 0.3s, transform 0.2s;
}

.footer-social-link:hover {
  color: #e19a2b;
  transform: scale(1.05);
}

.footer-social-icon {
  flex-shrink: 0;
}

.footer-social-link:hover .footer-social-icon {
  stroke: #e19a2b;
}

.footer-social-handle {
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
}

/* Columns 2 & 3: Links */
.footer-links-col ul,
.footer-support-col ul {
  list-style: none;
}

.footer-links-col ul li,
.footer-support-col ul li {
  margin-bottom: 8px;
}

.footer-links-col ul li a,
.footer-support-col ul li a {
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  transition: color 0.3s;
  line-height: 1.75;
}

.footer-links-col ul li a:hover,
.footer-support-col ul li a:hover {
  color: #e19a2b;
}

/* Column 4: Contact */
.footer-contact {
  margin-top: 0;
}

.footer-contact p {
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 8px;
}

.footer-contact a {
  color: #fff;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: #e19a2b;
}

.footer-subscribe {
  margin-top: 24px;
}

.subscribe-text {
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  margin-bottom: 16px;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.subscribe-input {
  padding: 16px 20px;
  border-radius: 10px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  outline: none;
  color: #050505;
}

.subscribe-input::placeholder {
  color: #d4d4d4;
  text-transform: capitalize;
}

.subscribe-btn {
  font-size: 18px;
  padding: 14px 36px;
  width: 100%;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 48px;
  padding: 24px 0;
}

.footer-bottom-inner {
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copyright {
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom-links a {
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: #e19a2b;
}

.footer-sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

.footer-payment-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.payment-icon {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Minimal footer (checkout, auth pages) */
.footer-minimal .footer-inner {
  grid-template-columns: 1fr;
  text-align: center;
}

.footer-minimal .footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-minimal .footer-logo {
  margin-left: auto;
  margin-right: auto;
}

.footer-minimal .footer-social {
  justify-content: center;
}

.footer-minimal .footer-bottom-inner {
  flex-direction: column;
  text-align: center;
}

/* Legacy class support (about-col, policies-col, subscribe-col) */
.about-col p,
.policies-col ul li,
.policies-col ul li a {
  font-family: inherit;
}

.policies-col ul li {
  margin-bottom: 8px;
}

.policies-col ul li a {
  color: #fff;
  transition: color 0.3s;
}

.policies-col ul li a:hover {
  color: #e19a2b;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1400px) {
  .hero-banner-content h1 span {
    font-size: 48px;
  }

  .section-title {
    font-size: 46px;
  }

  .one-stop-orange h2,
  .one-stop-dark h2,
  .why-bizprint-content h2,
  .big-idea-content h2,
  .rtp-left h2,
  .corporate-gifts .section-title-left,
  .blogs-section .section-title-left {
    font-size: 44px;
  }

  .why-heading-line1 {
    font-size: 42px;
  }

  .why-heading-line2 {
    font-size: 52px;
  }

  .one-stop-desc,
  .one-stop-dark p,
  .why-subtitle,
  .big-idea-content p {
    font-size: 22px;
  }

  .product-circle img {
    width: 150px;
    height: 150px;
  }

  .products-grid {
    gap: 40px;
  }
}

@media (max-width: 1200px) {
  .hero-inner {
    flex-direction: column;
  }

  .hero-sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    border-radius: 10px;
    margin-bottom: 20px;
  }

  .sidebar-item {
    flex: 1 1 auto;
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 0 !important;
  }

  .hero-banner {
    min-height: 400px;
  }

  .one-stop-grid {
    grid-template-columns: 1fr;
  }

  .why-bizprint-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 40px;
  }

  .why-bizprint-logo {
    width: 200px;
  }

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

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

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

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

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

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .ready-to-print-inner {
    flex-direction: column;
    text-align: center;
  }

  .rtp-left h2 {
    text-align: center;
  }

  .rtp-right {
    align-items: center;
  }

  .rtp-image {
    width: 100%;
    max-width: 600px;
  }
}

@media (max-width: 1200px) {
  .header-logo .logo-img {
    height: 48px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 12px 20px;
  }

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

  .header-nav {
    display: none;
  }

  .header-actions {
    gap: 12px;
  }

  .header-link {
    font-size: 14px;
  }

  .hero {
    padding: 10px 16px 20px;
  }

  .hero-sidebar {
    flex-direction: column;
  }

  .sidebar-item {
    font-size: 16px;
  }

  .hero-banner-content {
    padding: 60px 30px;
  }

  .hero-banner-content h1 span {
    font-size: 36px;
  }

  .search-section {
    padding: 20px 16px;
  }

  .featured-products {
    padding: 40px 16px;
  }

  .section-title {
    font-size: 36px;
  }

  .section-subtitle {
    font-size: 22px;
  }

  .products-grid {
    gap: 16px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .product-circle {
    flex-shrink: 0;
    scroll-snap-align: start;
    width: 100px;
    text-align: center;
  }

  .product-circle img {
    width: 100px;
    height: 100px;
  }

  .product-circle p {
    font-size: 14px;
    word-wrap: break-word;
  }

  .one-stop {
    padding: 40px 24px;
  }

  .one-stop-nav {
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }

  .one-stop-block {
    min-height: 280px;
    padding: 32px 28px;
  }

  .one-stop-orange h2,
  .one-stop-dark h2 {
    font-size: 36px;
  }

  .one-stop-desc,
  .one-stop-dark p {
    font-size: 18px;
    margin-top: 16px;
  }

  .clients-section {
    padding: 40px 16px;
  }

  .deals-section,
  .large-format,
  .corporate-gifts,
  .big-idea,
  .ready-to-print,
  .blogs-section {
    padding: 40px 16px;
  }

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

  .large-format-grid-top {
    grid-template-columns: 1fr;
  }

  .large-format-grid-bottom {
    grid-template-columns: 1fr;
  }

  .lf-labels-bottom {
    grid-template-columns: 1fr;
  }

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

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

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

  .blog-card {
    min-height: 400px;
  }

  .big-idea-inner {
    min-height: 260px;
    border-radius: 30px;
  }

  .big-idea-content h2 {
    font-size: 32px;
  }

  .big-idea-content p {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .why-bizprint {
    padding: 32px 16px;
  }

  .why-bizprint-inner {
    padding: 40px 24px;
  }

  .why-heading-line1 {
    font-size: 32px;
  }

  .why-heading-line2 {
    font-size: 40px;
  }

  .why-subtitle {
    font-size: 20px;
  }

  .why-list li {
    font-size: 16px;
  }

  .rtp-left h2 {
    font-size: 36px;
  }

  .corporate-gifts .section-title-left,
  .blogs-section .section-title-left {
    font-size: 36px;
  }

  .section-title-left {
    font-size: 26px;
  }

  .footer {
    padding: 40px 20px;
    border-radius: 24px 24px 0 0;
  }

  .lf-label-top-right {
    float: none;
  }
}

/* ========================================
   NEW PAGES STYLES
   ======================================== */

/* ===== PAGE HERO (shared inner pages) ===== */
.page-hero {
  background: #050505;
  padding: 80px 40px 60px;
  text-align: center;
}

.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 64px;
  color: #fff;
  text-transform: capitalize;
  line-height: 1.15;
  margin-bottom: 16px;
}

.page-hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 22px;
  color: #ccc;
}

/* ===== CONTACT HERO (Figma: dark bg, text left, image right) ===== */
.contact-hero {
  background: #050505;
  padding: 60px 40px 80px;
  overflow: hidden;
}

.contact-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.contact-hero-content h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 56px;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.contact-hero-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #ccc;
  max-width: 520px;
  line-height: 1.5;
}

.contact-hero-image {
  flex: 0 0 45%;
  max-width: 500px;
}

.contact-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 0 0 24px 24px;
  object-fit: cover;
}

/* ===== ABOUT PAGE ===== */
.about-story {
  padding: 80px 40px;
  max-width: 1800px;
  margin: 0 auto;
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story-left h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 48px;
  color: #181002;
  margin-bottom: 24px;
}

.about-story-left p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-story-left strong {
  font-weight: 700;
  color: #181002;
}

.about-story-image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.about-story-image.orange-accent::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: #e19a2b;
  border-radius: 20px;
  z-index: -1;
}

.about-story-image img {
  width: 100%;
  height: 400px;
  max-height: 50vw;
  object-fit: cover;
  border-radius: 20px;
}

/* What Makes Us Different */
.about-difference {
  padding: 80px 40px;
  background: #fef5e2;
}

.about-difference-inner {
  max-width: 1800px;
  margin: 0 auto;
}

.about-difference-inner h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 48px;
  color: #181002;
  text-align: center;
  margin-bottom: 50px;
}

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

.difference-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.difference-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.difference-number {
  font-family: 'Archivo Black', sans-serif;
  font-size: 48px;
  color: #e19a2b;
  margin-bottom: 16px;
}

.difference-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #181002;
  margin-bottom: 12px;
}

.difference-card p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* Mission & Vision */
.about-mission {
  padding: 80px 40px;
  max-width: 1800px;
  margin: 0 auto;
}

.about-mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mission-block {
  padding: 40px;
  border-radius: 20px;
  background: #fff;
  border: 2px solid #eee;
}

.mission-block.dark {
  background: #181002;
  border-color: #181002;
}

.mission-block.dark h3,
.mission-block.dark p {
  color: #fff;
}

.mission-icon {
  margin-bottom: 24px;
}

.mission-block h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 32px;
  color: #181002;
  margin-bottom: 16px;
}

.mission-block p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #555;
  line-height: 1.7;
}

/* Stats */
.about-stats {
  padding: 60px 40px;
  background: #e19a2b;
}

.about-stats-inner {
  max-width: 1800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-family: 'Archivo Black', sans-serif;
  font-size: 56px;
  color: #000;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #000;
}

/* About CTA */
.about-cta {
  padding: 80px 40px;
  text-align: center;
}

.about-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.about-cta h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 48px;
  color: #181002;
  margin-bottom: 16px;
}

.about-cta p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #555;
  margin-bottom: 30px;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 60px 40px;
  max-width: 1800px;
  margin: 0 auto;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
}

/* Contact Support Section (Figma: image left, form right) */
.contact-support-section {
  padding: 80px 40px;
  background: #fff;
}

.contact-support-inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-support-image {
  flex: 0 0 45%;
}

.contact-support-image-shape-remove {
  position: relative;
  border-radius: 160px 20px 0 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

.contact-support-image-shape-remove img {
  /* width: 100%; */
  height: clamp(320px, 55vw, 500px);
  max-height: 500px;
  object-fit: cover;
  display: block;
  border-radius:250px 0 0 0;
}

.contact-support-image-shape {
  position: relative;
  background: linear-gradient(135deg, #f0c8a0 0%, #e8b88a 100%);
  border-radius: 160px 20px 0 0;
  overflow: hidden;
  padding: 0;
  min-height: 420px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.contact-support-image-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-support-section .contact-form-wrapper {
  flex: 1;
  min-width: 0;
}

.contact-form-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #666;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .contact-support-image-shape-remove,
  .contact-support-image-shape-remove img {
    display: none;
  }
}

.contact-support-form .form-submit-btn,
.contact-submit-btn {
  align-self: flex-end;
  padding: 14px 48px;
  font-size: 16px;
  border-radius: 10px;
  width:218px;
}

/* Screen-reader only (visually hidden but accessible) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Contact support form: Figma style (no visible labels, gray bg inputs) */
.contact-support-form .form-group input,
.contact-support-form .form-group textarea {
  background: #f5f5f5;
  border: none;
  border-radius: 8px;
  padding: 16px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #333;
}

.contact-support-form .form-group input::placeholder,
.contact-support-form .form-group textarea::placeholder {
  color: #999;
}

.contact-support-form .form-group input:focus,
.contact-support-form .form-group textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(225, 154, 43, 0.3);
}

.contact-info h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 40px;
  color: #181002;
  margin-bottom: 16px;
}

.contact-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 40px;
}

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

.contact-card {
  padding: 30px;
  border-radius: 16px;
  background: #fef5e2;
  transition: transform 0.3s;
}

.contact-card:hover {
  transform: translateX(4px);
}

.contact-card-icon {
  margin-bottom: 12px;
}

.contact-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #181002;
  margin-bottom: 6px;
}

.contact-card p {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #333;
}

.contact-card-sub {
  color: #888 !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  margin-top: 4px;
}

/* Contact Form */
.contact-form-wrapper h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 40px;
  color: #181002;
  margin-bottom: 8px;
}

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

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

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

.form-group label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #050505;
  outline: none;
  transition: border-color 0.3s;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #e19a2b;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}

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

.form-submit-btn {
  width: 100%;
  padding: 18px;
  font-size: 18px;
  margin-top: 10px;
}

/* Map Section */
.map-section {
  padding: 0 40px 60px;
  max-width: 1800px;
  margin: 0 auto;
}

.map-inner {
  position: relative;
}

.map-placeholder {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.map-overlay-box {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #fff;
  padding: 24px 32px;
  border-radius: 16px;
  z-index: 10;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  max-width: calc(100% - 48px);
}

.map-overlay-box h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #181002;
  margin-bottom: 8px;
}

.map-overlay-box p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* FAQ */
.faq-section {
  padding: 80px 40px;
  background: #fef5e2;
}

.faq-inner {
  max-width: 1800px;
  margin: 0 auto;
}

.faq-inner .section-title {
  margin-bottom: 50px;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.faq-item {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
}

.faq-item h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #181002;
  margin-bottom: 10px;
}

.faq-item p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* ===== PRODUCTS PAGE ===== */
.product-category {
  padding: 60px 40px;
}

.product-category.alt-bg {
  background: #f9f9f9;
}

.category-inner {
  max-width: 1800px;
  margin: 0 auto;
}

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

.category-header h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 40px;
  color: #181002;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 16px;
}

.category-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #888;
  margin-bottom: 30px;
}

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

.product-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.product-card-image {
  aspect-ratio: 1;
  overflow: hidden;
}

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

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

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

.product-card-info h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #181002;
  margin-bottom: 8px;
}

.product-price {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #e19a2b;
  margin-bottom: 16px;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 14px;
}

/* ===== TRACK ORDER PAGE ===== */
.track-section {
  padding: 60px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.track-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.track-form-card {
  background: #fff;
  border: 2px solid #eee;
  border-radius: 20px;
  padding: 40px;
}

.track-form-card h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 36px;
  color: #181002;
  margin-bottom: 12px;
}

.track-form-card > p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #888;
  margin-bottom: 30px;
}

.track-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Track Result */
.track-result {
  background: #fff;
  border: 2px solid #e19a2b;
  border-radius: 20px;
  padding: 40px;
}

.track-result-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.track-result-header h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #181002;
  margin-bottom: 8px;
}

.track-status {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
}

.track-status.processing {
  background: #fef5e2;
  color: #e19a2b;
}

.track-date {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #888;
}

/* Timeline */
.track-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}

.timeline-step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  position: relative;
}

.timeline-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 44px;
  width: 2px;
  height: calc(100% - 24px);
  background: #e5e5e5;
}

.timeline-step.completed:not(:last-child)::before {
  background: #e19a2b;
}

.timeline-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e5e5e5;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-step.completed .timeline-dot {
  background: #e19a2b;
}

.timeline-step.active .timeline-dot {
  background: #fff;
  border: 3px solid #e19a2b;
  box-shadow: 0 0 0 4px rgba(225, 154, 43, 0.2);
}

.timeline-content h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #181002;
  margin-bottom: 4px;
}

.timeline-step:not(.completed):not(.active) .timeline-content h4 {
  color: #aaa;
}

.timeline-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #888;
}

/* Order Summary */
.track-order-summary {
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.track-order-summary h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #181002;
  margin-bottom: 16px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #555;
}

.order-item.total {
  font-weight: 700;
  color: #181002;
  font-size: 18px;
  border-bottom: none;
  padding-top: 16px;
}

.track-totals-breakdown {
  border-top: 1px solid #e5e5e5;
  margin-top: 8px;
  padding-top: 12px;
}

/* Track Help */
.track-help {
  padding: 60px 40px 80px;
  background: #f9f9f9;
}

.track-help-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.track-help-inner h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 40px;
  color: #181002;
  margin-bottom: 40px;
}

.help-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.help-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
}

.help-card:hover {
  transform: translateY(-4px);
}

.help-card svg {
  margin-bottom: 16px;
}

.help-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #181002;
  margin-bottom: 8px;
}

.help-card p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #555;
}

/* ===== WHY US PAGE SPECIFIC STYLES ===== */

/* Why Us Hero */
.why-us-hero {
  position: relative;
  height: 281px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 80px;
  margin: 10px 10px;
  border-radius: 10px;
}

.why-us-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:#000;;
  /* background: rgba(0, 0, 0, 0.5);  */
  /* Dark overlay */
  z-index: 1;
}

.why-us-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.why-us-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.why-us-hero-content-checkout {
  position: relative;
  z-index: 2;
  color: #000;
  /* text-shadow: 0 2px 4px rgba(0,0,0,0.5); */
}

.why-us-hero-content h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 64px;
  margin-bottom: 10px;
}
.why-us-hero-content-checkout h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 64px;
  margin-bottom: 10px;
}

.why-us-hero-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
}

.download-profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  text-shadow: none;
}

/* Category Nav Section */
.category-nav-section {
  padding: 40px 20px;
  background: #fff;
  overflow: visible;
}

.category-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.category-circles {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 16px;
  margin-bottom: 24px;
  scrollbar-width: thin;
}

.cat-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1 1 0;
  text-align: center;
}

.cat-circle {
  width: 100%;
  max-width: 130px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cat-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.cat-circle svg {
  transition: all 0.3s;
}

.cat-circle-item:hover .cat-circle img {
  transform: scale(1.05);
}

.cat-circle-item:hover .cat-circle {
  box-shadow: 0 4px 16px rgba(225, 154, 43, 0.3);
}

.cat-circle-item:hover .cat-circle svg {
  stroke: #fff;
}

.cat-circle-item span {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
}

.why-search-bar {
  width: 100%;
}

.why-search-bar .search-bar {
  width: 100%;
  padding: 20px 30px;
}

.why-search-bar .search-results {
  margin-top: 12px;
}

.why-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 18px;
  outline: none;
}

.why-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.why-search-btn img,
.why-search-btn svg {
  width: 24px;
  height: 24px;
  object-fit: contain;
  pointer-events: none;
}

.why-search-btn svg {
  flex-shrink: 0;
}

/* Info Grid */
.why-info-grid {
  padding: 60px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.why-info-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.info-block {
  margin-bottom: 40px;
}

.info-block h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 36px;
  color: #e19a2b;
  margin-bottom: 16px;
}

.info-block h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  color: #181002;
  margin-bottom: 16px;
}

.info-block p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #181002;
  margin-bottom: 10px;
}

.why-info-image {
  width: 100%;
  /* height: 400px; */
  border-radius: 0px 0px 200px 0px;
  overflow: hidden;
  background-color: #181002;
}

.why-info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-check-list {
  list-style: none;
  padding: 0;
}

.why-check-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #333;
}

.why-check-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #e19a2b;
  font-weight: bold;
}

/* Loyalty Section */
.loyalty-section {
  padding: 60px 40px;
  max-width: 1400px;
  margin: 0 auto 60px;
}

.loyalty-inner {
  background-color: #fef5e2;
  border-radius: 28px;
  display: flex;
  overflow: hidden;
  min-height: 350px;
}

.loyalty-content {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.loyalty-content h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 42px;
  color: #181002;
  margin-bottom: 20px;
}

.loyalty-content p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.loyalty-content .loyalty-sub {
  font-weight: 600;
  margin-bottom: 16px;
}

.loyalty-image {
  width: 40%;
  min-width: 0;
  overflow: hidden;
  border-top-left-radius: 200px;
  background-color: #fef5e2;
}

.loyalty-image img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  object-position: center;
}

/* Timeline Section */
.timeline-section {
  padding: 60px 40px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.timeline-section h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 50px;
  color: #e19a2b;
  margin-bottom: 10px;
}

.timeline-sub {
  font-family: 'Archivo', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  color: #181002;
  margin-bottom: 50px;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
  min-height: 160px;
}

.timeline-track-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(100% - 220px);
  height: 2px;
  background-color: #e19a2b;
  z-index: 0;
  transform: translateY(-50%);
}

.p-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.p-dot {
  width: 14px;
  height: 14px;
  background-color: #e19a2b;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Text above the dot */
.p-step.step-above {
  flex-direction: column;
}

.p-step.step-above p {
  order: -1;
  margin-bottom: 37px;
}

/* Text below the dot */
.p-step.step-below {
  flex-direction: column;
}

.p-step.step-below p {
  order: 1;
  margin-top: 37px;
}

.p-step p {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 18px;
  color: #e19a2b;
  line-height: 1.17;
  text-align: center;
  margin: 0;
  white-space: nowrap;
}

.timeline-bubble {
  position: relative;
  z-index: 1;
  background-color: #e19a2b;
  color: #fff;
  padding: 24px 28px;
  border-radius: 100px 0px 100px 0;
  width: 320px;
  max-width: 100%;
  text-align: center;
  align-self: center;
}

.timeline-bubble p {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 18px;
  color: #000;
  line-height: 1.3;
  margin: 0;
}

/* Figma: white background only */
.why-cta {
  padding: 63px 40px;
  background: #fff;
}

.why-cta-inner {
  width: 100%;
  max-width: 1631px;
  min-height: 244px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

/* Figma: 1630.84 x 243.89, image ~40.6%, border-radius 20px */
.why-cta-image {
  flex: 0 0 40.59%;
  height: 244px;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
}

.why-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius:20px;
}

.why-cta-content {
  flex: 1;
  min-width: 0;
  min-height: 244px;
  /* padding: 0 40px 0 48px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  gap: 0;
}

.why-cta-content h2 {
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  font-weight: 400;
  font-size: 52px;
  line-height: 75px;
  letter-spacing: 0;
  color: #181002 !important;
  margin: 0 0 12px 0;
  text-align: right;
  text-transform: capitalize;
  display: block;
}

.why-cta-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0;
  color: #181002 !important;
  margin: 0 0 20px 0;
  text-align: right;
  text-transform: capitalize;
  display: block;
}

.why-cta-content .btn,
.why-cta-content .btn-primary {
  background: #e19a2b;
  color: #000 !important;
  align-self: flex-end;
  margin: 0;
  padding: 15px 42px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-transform: capitalize;
}

/* ===== SHOP SORT BAR ===== */
.shop-sort-bar {
  padding: 20px 40px;
  background: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.shop-sort-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.sort-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #181002;
  margin-right: 5px;
}

.sort-pill {
  padding: 8px 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  color: #333;
}

.sort-pill:hover {
  border-color: #e19a2b;
  color: #e19a2b;
}

.sort-pill.active {
  background: #e19a2b;
  border-color: #e19a2b;
  color: #fff;
}

/* ===== SHOP LAYOUT ===== */
.shop-layout {
  padding: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.shop-layout-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* Category landing pages (e.g. business-stationery) use the same section but omit the filter sidebar;
   without this rule the lone .shop-products column is squeezed into the 260px track. */
.shop-layout-inner:not(:has(.shop-sidebar)) {
  grid-template-columns: 1fr;
}

.shop-layout-inner:not(:has(.shop-sidebar)) .shop-products {
  width: 100%;
  max-width: 100%;
}

/* Sidebar */
.shop-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.filter-group {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
}

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

.filter-header h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #181002;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  position: relative;
  padding-left: 0;
}

.filter-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.filter-checkbox input[type="checkbox"]:checked {
  border-color: #e19a2b;
  background: #fff;
}

.filter-checkbox .check-icon {
  position: absolute;
  left: 2px;
  top: 2px;
  pointer-events: none;
  opacity: 0;
}

.filter-checkbox input:checked ~ .check-icon {
  opacity: 1;
}

.view-more-btn {
  background: none;
  border: none;
  color: #e19a2b;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin-top: 4px;
}

.price-input-row {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 14px;
}

.price-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  background: transparent;
}

.price-unit {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #999;
  font-weight: 500;
}

/* UAE Dirham official currency icon font (dirham-symbol package) */
@font-face {
  font-family: "UAESymbol";
  src:
    url("https://cdn.jsdelivr.net/npm/dirham-symbol@4.0.4/dist/dirham-65RZ4QBA.woff2") format("woff2"),
    url("https://cdn.jsdelivr.net/npm/dirham-symbol@4.0.4/dist/dirham-JTGKZQQ5.woff") format("woff"),
    url("https://cdn.jsdelivr.net/npm/dirham-symbol@4.0.4/dist/dirham-3JEWMBRG.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.currency {
  font-family: "UAESymbol", Arial, sans-serif;
  font-size: inherit;
  color: inherit;
}

/* Dirham icon – uses the official UAE symbol font */
.dirham-icon {
  font-family: "UAESymbol", sans-serif;
  font-size: inherit;
  color: inherit;
  font-style: normal;
  font-weight: normal;
  text-transform: initial;
  display: inline;
  vertical-align: baseline;
}

.filter-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #333;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.select-row {
  margin-bottom: 0;
}

/* Shop Product Grid */
.shop-products {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  margin-bottom: 40px;
}

.shop-grid > .shop-card {
  min-width: 0;
}

.shop-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s, transform 0.3s;
}

.shop-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.shop-card-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f5f5f5;
}

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

.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.wishlist-btn:hover {
  background: #e19a2b;
}

.wishlist-btn:hover svg {
  stroke: #fff;
}

.wishlist-btn.wishlisted svg {
  fill: #c62828;
  stroke: #c62828;
}

.wishlist-btn.wishlisted {
  background: #fff;
}

.wishlist-btn.wishlisted:hover {
  background: #fce4ec;
}

.shop-card-info {
  padding: 16px;
}

.shop-card-info h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #181002;
  margin-bottom: 4px;
}

.shop-qty {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}

.shop-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shop-price-old {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}

.shop-price {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #e19a2b;
}

/* ===== SUBCATEGORY GALLERY ===== */
.subcat-gallery {
  padding: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.subcat-gallery-inner {
  width: 100%;
}

.subcat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.subcat-card {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  transition: transform 0.3s, box-shadow 0.3s;
}

.subcat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.subcat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.subcat-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
}

.subcat-label h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  color: #fff;
  margin: 0;
}

/* ===== DEALS GALLERY ===== */
.deals-gallery {
  padding: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.deals-gallery-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.deals-gallery .deals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
  margin-bottom: 40px;
}

.deals-img-card {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  transition: transform 0.3s, box-shadow 0.3s;
}

.deals-img-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.deals-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.load-more-btn {
  display: inline-block;
  padding: 14px 80px;
  border: 2px solid #e19a2b;
  background: transparent;
  color: #e19a2b;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 60px;
}

.load-more-btn:hover {
  background: #e19a2b;
  color: #fff;
}

/* Responsive adjustments for Why Us */
@media (max-width: 900px) {
  .why-info-inner,
  .loyalty-inner,
  .why-cta-inner {
    flex-direction: column;
    height: auto;
    min-height: 244px;
  }
  
  .loyalty-image {
    width: 100%;
    min-width: 0;
    height: 280px;
    min-height: 280px;
    border-top-left-radius: 0;
    border-top-right-radius: 100px;
  }

  .process-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    padding-left: 20px;
  }

  .timeline-track-line {
    width: 2px;
    height: 100%;
    left: 25px;
    top: 0;
    transform: none;
  }

  .p-step,
  .p-step.step-above,
  .p-step.step-below {
    flex-direction: row;
    width: 100%;
    gap: 20px;
  }

  .p-step.step-above p,
  .p-step.step-below p {
    order: 1;
    margin: 0;
    text-align: left;
  }

  .timeline-bubble {
    width: 100%;
    border-radius: 20px;
  }
  
  .why-cta-image {
    flex: none;
    width: 100%;
    height: 240px;
    border-radius: 20px 20px 0 0;
  }

  .why-cta-content {
    height: auto;
    align-items: center;
    text-align: center;
    padding: 24px 24px;
  }

  .shop-layout-inner {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    order: -1;
  }

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

  .shop-sort-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .sort-pill {
    padding: 6px 14px;
    font-size: 12px;
  }

  .homepage-collection-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .subcat-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .subcat-gallery {
    padding: 20px 16px;
  }

  .subcat-label h3 {
    font-size: 16px;
  }

  .deals-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-us-hero {
    height: 280px;
    padding-left: 30px;
  }

  .why-us-hero-content h1 {
    font-size: 40px;
  }

  .category-circles {
    justify-content: flex-start;
    gap: 12px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .category-circles::-webkit-scrollbar {
    display: none;
  }

  .cat-circle-item {
    flex: 0 0 auto;
    width: 90px;
  }

  .cat-circle {
    max-width: 90px;
  }

  .cat-circle-item span {
    font-size: 11px;
  }

  .category-nav-section {
    padding: 24px 20px;
  }

  .deals-gallery {
    padding: 20px 16px;
  }

  .load-more-btn {
    padding: 12px 50px;
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  .about-story-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .about-mission-inner {
    grid-template-columns: 1fr;
  }

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

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .contact-hero-content p {
    max-width: none;
  }

  .contact-hero-image {
    flex: none;
    max-width: 100%;
  }

  .contact-support-inner {
    flex-direction: column;
    gap: 50px;
  }

  .contact-support-image {
    flex: none;
    width: 100%;
  }

  .contact-support-image-shape {
    border-radius: 80px 12px 0 0;
    min-height: 260px;
  }

  .contact-support-form .form-submit-btn,
  .contact-submit-btn {
    align-self: stretch;
  }

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

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

  .help-cards {
    grid-template-columns: 1fr;
  }

  .cat-page-grid.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-page-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-banner-inner {
    grid-template-columns: 1fr;
  }

  .cat-banner-image {
    max-height: 300px;
  }

  .product-detail-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .product-detail-right {
    position: static;
  }

  .product-main-image {
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 12px 20px;
  }

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

  .header-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-actions {
    margin-right: 40px;
    gap: 16px;
  }

  .header-link {
    display: none;
  }

  .header-icons {
    display: flex;
  }

  .hero {
    padding: 10px 16px 20px;
  }

  .hero-sidebar {
    display: none;
  }

  .hero-banner-content {
    padding: 40px 20px;
    text-align: center;
  }

  .hero-banner-content h1 span {
    font-size: 32px;
  }

  .hero-banner-content .btn {
    width: 100%;
    margin-top: 20px;
  }

  .search-section {
    padding: 20px 16px;
  }

  .featured-products {
    padding: 40px 16px;
  }

  .section-title,
  .page-hero h1,
  .about-story-left h2,
  .about-cta h2,
  .contact-info h2,
  .cat-banner-text h2,
  .contact-form-wrapper h2,
  .track-help-inner h2,
  .one-stop-orange h2,
  .one-stop-dark h2,
  .why-bizprint-content h2,
  .rtp-left h2,
  .corporate-gifts .section-title-left,
  .blogs-section .section-title-left {
    font-size: 32px;
  }

  .section-subtitle,
  .page-hero-subtitle {
    font-size: 18px;
  }

  .products-grid {
    gap: 16px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .product-circle {
    flex-shrink: 0;
    scroll-snap-align: start;
    width: 100px;
    text-align: center;
  }

  .product-circle img {
    width: 100px;
    height: 100px;
  }

  .one-stop {
    padding: 40px 24px;
  }

  .one-stop-nav {
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }

  .one-stop-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .one-stop-block {
    min-height: auto;
    padding: 40px 24px;
  }

  .one-stop-orange h2,
  .one-stop-dark h2,
  .one-stop-dark p {
    text-align: center !important;
  }

  .one-stop-gray {
    min-height: 120px;
  }

  .one-stop-desc,
  .one-stop-dark p {
    font-size: 18px;
    margin-top: 20px;
  }

  .clients-section {
    padding: 40px 16px;
  }

  .deals-section,
  .large-format,
  .corporate-gifts,
  .big-idea,
  .ready-to-print,
  .blogs-section {
    padding: 40px 16px;
  }

  .deals-grid,
  .large-format-grid-top,
  .large-format-grid-bottom,
  .lf-labels-bottom,
  .gifts-grid,
  .gifts-labels,
  .blogs-grid,
  .difference-grid,
  .cat-page-grid.cols-4,
  .cat-page-grid.cols-3,
  .faq-grid,
  .help-cards,
  .about-stats-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-card {
    min-height: 400px;
  }

  .big-idea-inner {
    min-height: 260px;
    border-radius: 30px;
  }

  .big-idea-content h2 {
    font-size: 32px;
  }

  .big-idea-content p {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .why-bizprint {
    padding: 32px 16px;
  }

  .why-bizprint-inner {
    padding: 32px 20px;
  }

  .why-heading-line1 {
    font-size: 28px;
  }

  .why-heading-line2 {
    font-size: 36px;
  }

  .why-subtitle {
    font-size: 20px;
  }

  .why-tagline {
    font-size: 22px;
  }

  .why-list li {
    font-size: 16px;
  }

  .section-title-left {
    font-size: 26px;
  }

  .footer {
    padding: 40px 20px 0;
    border-radius: 24px 24px 0 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand-col .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-col h3 {
    justify-content: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-payment-icons {
    justify-content: center;
  }

  .subscribe-form {
    max-width: 400px;
    margin: 0 auto;
  }

  .lf-label-top-right {
    float: none;
  }

  .page-hero {
    padding: 50px 20px 40px;
  }

  .contact-hero {
    padding: 50px 20px 60px;
  }

  .contact-hero-content h1 {
    font-size: 40px;
  }

  .contact-hero-content p {
    font-size: 16px;
  }

  .about-story,
  .about-difference,
  .about-mission,
  .about-cta,
  .contact-section,
  .contact-support-section,
  .map-section,
  .faq-section,
  .product-category,
  .track-section,
  .track-help {
    padding: 40px 16px;
  }

  .stat-number {
    font-size: 40px;
  }

  .form-row,
  .product-options,
  .cat-banner-inner,
  .product-detail-inner {
    grid-template-columns: 1fr;
  }

  .category-header h2 {
    font-size: 28px;
  }

  .category-products {
    grid-template-columns: 1fr;
  }

  .track-form-card {
    padding: 30px;
  }

  .track-form-card h2 {
    font-size: 28px;
  }

  .track-result {
    padding: 24px;
  }

  .track-result-header {
    flex-direction: column;
    gap: 8px;
  }

  .breadcrumb {
    padding: 12px 16px;
  }

  .cat-page-section {
    padding: 40px 16px;
  }

  .cat-banner {
    padding: 0 16px;
  }

  .cat-banner-text {
    padding: 30px;
  }

  .cat-banner-image {
    order: -1;
    max-height: 250px;
  }

  .product-detail {
    padding: 30px 16px;
  }

  .product-detail-info h2 {
    font-size: 28px;
  }

  .product-detail-actions {
    flex-direction: column;
  }

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

  .related-title {
    font-size: 28px;
  }

  /* --- New component responsive rules at 768px --- */

  .why-us-hero {
    height: 220px;
    padding-left: 20px;
  }

  .why-us-hero-content h1 {
    font-size: 32px;
  }

  .why-us-hero-content p {
    font-size: 14px;
  }

  .category-nav-section {
    padding: 20px 16px;
  }

  .category-circles {
    justify-content: flex-start;
    gap: 10px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .cat-circle-item {
    flex: 0 0 auto;
    width: 70px;
  }

  .cat-circle {
    max-width: 70px;
  }

  .cat-circle-item span {
    font-size: 11px;
  }

  .why-search-bar {
    width: 100%;
    margin-left: 0;
    margin-top: 12px;
  }

  .category-circles-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .shop-sort-bar {
    padding: 12px 16px;
  }

  .shop-sort-inner {
    gap: 8px;
  }

  .sort-pill {
    padding: 5px 12px;
    font-size: 12px;
  }

  .shop-layout {
    padding: 20px 16px;
  }

  .shop-layout-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .shop-sidebar {
    order: -1;
  }

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

  .shop-card-info {
    padding: 10px;
  }

  .shop-card-info h3 {
    font-size: 13px;
  }

  .shop-price {
    font-size: 14px;
  }

  .shop-price-old {
    font-size: 12px;
  }

  .subcat-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .subcat-gallery {
    padding: 20px 16px;
  }

  .subcat-label h3 {
    font-size: 14px;
  }

  .deals-gallery {
    padding: 20px 16px;
  }

  .deals-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .load-more-btn {
    padding: 10px 40px;
    font-size: 13px;
  }

  .why-cta {
    padding: 40px 16px;
  }

  .why-cta-inner {
    flex-direction: column;
    height: auto;
    min-height: 244px;
  }

  .why-cta-image {
    flex: none;
    height: 240px;
    min-height: 240px;
    border-radius: 20px 20px 0 0;
  }

  .why-cta-content {
    height: auto;
    min-height: auto;
    align-items: center;
    text-align: center;
    padding: 40px 24px;
  }

  .why-cta-content h2 {
    font-size: 36px;
    line-height: 1.1;
  }

  .why-cta-content p {
    font-size: 18px;
    line-height: 1.2;
  }

  .why-cta-content .btn {
    width: 100%;
  }

  .why-info-grid {
    padding: 30px 16px;
  }

  .why-info-inner {
    flex-direction: column;
    gap: 20px;
  }

  .info-block h3 {
    font-size: 20px;
  }

  .info-block p {
    font-size: 14px;
  }

  .loyalty-section {
    padding: 30px 16px;
  }

  .loyalty-inner {
    flex-direction: column;
  }

  .timeline-section {
    padding: 30px 16px;
  }

  .process-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding-left: 16px;
  }

  .timeline-track-line {
    width: 2px;
    height: 100%;
    left: 20px;
    top: 0;
    transform: none;
  }

  .p-step,
  .p-step.step-above,
  .p-step.step-below {
    flex-direction: row;
    width: 100%;
    gap: 16px;
  }

  .p-step.step-above p,
  .p-step.step-below p {
    order: 1;
    margin: 0;
    text-align: left;
  }

  .timeline-bubble {
    width: 100%;
    border-radius: 20px;
  }

  .filter-group {
    padding: 12px 0;
  }

  .filter-header {
    font-size: 14px;
  }

  .price-input {
    font-size: 13px;
  }
}

/* ===== 480px SMALL MOBILE BREAKPOINT ===== */
@media (max-width: 480px) {
  .header-logo .logo-img {
    height: 40px;
  }

  .header-inner {
    padding: 10px 16px;
  }

  .why-us-hero {
    height: 180px;
    padding-left: 16px;
  }

  .why-us-hero-content h1 {
    font-size: 26px;
  }

  .why-us-hero-content p {
    font-size: 12px;
    display: none;
  }

  .contact-hero {
    padding: 40px 16px 50px;
  }

  .contact-hero-content h1 {
    font-size: 32px;
  }

  .contact-hero-content p {
    font-size: 14px;
  }

  .category-nav-section {
    padding: 16px 12px;
  }

  .cat-circle-item {
    width: 60px;
  }

  .cat-circle {
    max-width: 56px;
  }

  .cat-circle-item span {
    font-size: 11px;
  }

  .shop-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-related-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .shop-card-img {
    aspect-ratio: 4/3;
  }

  .shop-card-info {
    padding: 12px;
  }

  .shop-card-info h3 {
    font-size: 14px;
  }

  .shop-price {
    font-size: 16px;
  }

  .sort-pill {
    padding: 5px 10px;
    font-size: 12px;
  }

  .sort-label {
    font-size: 12px;
  }

  .why-cta-content h2 {
    font-size: 28px;
    line-height: 1.15;
  }

  .info-block h3 {
    font-size: 18px;
  }

  .subcat-card img {
    height: 200px;
  }

  .deals-img-card img {
    height: 200px;
  }

  .header-actions {
    margin-right: 30px;
    gap: 10px;
  }

  .header-icons a img {
    width: 20px;
    height: 20px;
  }

  .footer {
    padding: 30px 16px;
  }

  .footer-col h3 {
    font-size: 16px;
  }

  .footer-links a {
    font-size: 13px;
  }

  /* Hero banner */
  .hero-banner {
    min-height: 280px;
  }

  .hero-banner-content {
    padding: 30px 16px;
  }

  .hero-banner-content h1 span {
    font-size: 24px;
  }

  .hero-banner-content .btn {
    font-size: 16px;
    padding: 12px 24px;
  }

  /* Section titles */
  .section-title,
  .page-hero h1 {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 18px;
  }

  /* Products grid */
  .products-grid {
    gap: 12px;
  }

  .product-circle {
    width: 72px;
  }

  .product-circle img {
    width: 64px;
    height: 64px;
  }

  .product-circle p {
    font-size: 11px;
  }

  /* One-stop */
  .one-stop {
    padding: 30px 16px;
  }

  .one-stop-orange h2,
  .one-stop-dark h2 {
    font-size: 24px;
  }

  .one-stop-desc,
  .one-stop-dark p {
    font-size: 15px;
  }

  /* Big idea */
  .big-idea-content h2 {
    font-size: 24px;
  }

  .big-idea-content p {
    font-size: 14px;
    letter-spacing: 1px;
  }

  /* Why bizprint */
  .why-heading-line1 {
    font-size: 24px;
  }

  .why-heading-line2 {
    font-size: 30px;
  }

  /* Blog cards */
  .blog-card {
    min-height: 300px;
  }

  /* Contact hero */
  .contact-hero-content h1 {
    font-size: 28px;
  }

  /* Track form */
  .track-form-card {
    padding: 24px 16px;
  }

  .track-form-card h2 {
    font-size: 24px;
  }

  .track-result {
    padding: 20px 16px;
  }

  /* Dashboard */
  .dashboard-welcome {
    font-size: 22px;
  }

  .dashboard-stat-value {
    font-size: 24px;
  }

  .dashboard-order-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 12px;
  }

  /* Auth pages */
  .auth-title {
    font-size: 26px;
  }

  .auth-social {
    flex-direction: column;
  }

  .auth-form-row {
    flex-direction: column;
    gap: 16px;
  }

  /* CTA */
  .why-cta-content h2 {
    font-size: 24px;
  }

  .why-cta-content p {
    font-size: 16px;
  }

  /* Product detail */
  .product-detail-right h2 {
    font-size: 22px;
  }

  .product-detail-price strong {
    font-size: 20px;
  }

  .product-deals-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .similar-products-grid {
    grid-template-columns: 1fr;
  }

  /* Policy pages */
  .policy-title {
    font-size: 28px;
  }

  /* Wishlist */
  .wishlist-title {
    font-size: 28px;
  }

  /* Order timeline */
  .order-timeline-title {
    font-size: 28px;
  }

  .order-timeline-card {
    padding: 20px 16px;
  }
}

/* ===== 320px EXTRA SMALL MOBILE BREAKPOINT ===== */
@media (max-width: 360px) {
  .header-inner {
    padding: 8px 12px;
  }

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

  .header-actions {
    margin-right: 24px;
    gap: 6px;
  }

  .hero-banner-content h1 span {
    font-size: 20px;
  }

  .section-title,
  .page-hero h1 {
    font-size: 24px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 16px;
  }

  .one-stop-orange h2,
  .one-stop-dark h2 {
    font-size: 22px;
  }

  .footer-col h3 {
    font-size: 15px;
  }

  .subscribe-input {
    font-size: 14px;
    padding: 12px 16px;
  }

  .subscribe-btn {
    font-size: 15px;
    padding: 12px 24px;
  }

  .auth-title {
    font-size: 22px;
  }

  .auth-input {
    padding: 12px 14px;
    font-size: 14px;
  }

  .dashboard-inner {
    padding: 16px 12px;
  }

  .dashboard-nav-item {
    padding: 12px 14px;
    font-size: 14px;
  }
}

/* ========================================
   CATEGORY & PRODUCT PAGE STYLES
   ======================================== */

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 16px 40px;
  background: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.breadcrumb-inner {
  max-width: 1800px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #888;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb-inner a {
  color: #555;
  transition: color 0.3s;
}

.breadcrumb-inner a:hover {
  color: #e19a2b;
}

.breadcrumb-inner .current {
  color: #181002;
  font-weight: 600;
}

/* ===== CATEGORY PAGE SECTION ===== */
.cat-page-section {
  padding: 60px 40px;
  max-width: 1880px;
  margin: 0 auto;
}

.cat-page-inner {
  max-width: 1800px;
  margin: 0 auto;
}

.cat-page-grid {
  display: grid;
  gap: 24px;
}

.cat-page-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

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

.related-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 36px;
  color: #181002;
  margin-bottom: 30px;
  text-transform: capitalize;
}

/* ===== DEAL BADGE ===== */
.deal-badge {
  position: relative;
}

.deal-badge::after {
  content: attr(data-badge);
  position: absolute;
  top: 12px;
  right: 12px;
  background: #e19a2b;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 6px;
  z-index: 2;
}

.price-old {
  text-decoration: line-through;
  color: #aaa;
  margin-right: 8px;
  font-weight: 400;
}

/* ===== NEW BADGE ===== */
.new-badge {
  position: relative;
}

.new-badge::before {
  content: 'NEW';
  position: absolute;
  top: 12px;
  left: 12px;
  background: #181002;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 6px;
  z-index: 2;
  letter-spacing: 1px;
}

/* ===== CATEGORY BANNER ===== */
.cat-banner {
  padding: 0 40px;
  max-width: 1880px;
  margin: 0 auto;
}

.cat-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #e19a2b;
  min-height: 350px;
}

.cat-banner-text {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cat-banner-text h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 40px;
  color: #000;
  line-height: 1.15;
  margin-bottom: 16px;
}

.cat-banner-text p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  margin-bottom: 30px;
}

.cat-banner-image {
  overflow: hidden;
}

.cat-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== PRODUCT DETAIL ===== */
.product-detail {
  padding: 60px 40px;
  max-width: 1800px;
  margin: 0 auto;
  background: #fff;
}

.product-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  align-items: start;
}

.product-detail-inner.contact-support-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.product-related-section {
  grid-column: 1 / -1;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.product-deals-similar-wrapper .product-related-section {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.product-related-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  color: #181002;
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

/* Product page: full-width banners, then Deals, then similar products */
.product-deals-similar-wrapper {
  grid-column: 1 / -1;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.product-page-banners {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: 16px;
}

.product-page-banners .admin-banner-graphic,
.product-page-banners .admin-banner-image,
.product-page-banners .admin-banner-image-link,
.product-page-banners .admin-banner-link,
.product-page-banners .admin-banner {
  display: block;
  width: 100%;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: none;
  min-height: 0;
}

.product-page-banners .admin-banner-img,
.product-page-banners video.admin-banner-img {
  width: 100%;
  height: auto;
  max-height: none;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  display: block;
}

.product-deals-section {
  margin: 0;
  padding: 0;
  border: none;
}

.product-deals-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  color: #181002;
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-deal-card {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}

.product-deal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

/* Similar Products cards */
.similar-product-card {
  text-decoration: none;
  color: inherit;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.similar-product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.similar-product-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f8f6f3;
}

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

.similar-product-info {
  padding: 12px 14px 4px;
}

.similar-product-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #181002;
  margin: 0 0 2px;
  line-height: 1.3;
}

.similar-product-qty {
  font-size: 12px;
  color: #888;
  margin: 0;
}

.similar-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px 12px;
  margin-top: auto;
}

.similar-product-wishlist {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #bbb;
  transition: color 0.2s;
}

.similar-product-wishlist:hover {
  color: #e74c3c;
}

.similar-product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.similar-product-price .price-old {
  text-decoration: line-through;
  color: #bbb;
  font-size: 12px;
}

.similar-product-price .price-current {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  color: #181002;
}

.similar-product-price .price-current svg {
  color: #d19a4e;
}

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

.product-detail-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.product-detail-left .product-main-image {
  order: 1;
}

.product-detail-left .product-thumbnails {
  order: 2;
}

.product-detail-left .product-description-block {
  order: 3;
}

.product-thumbnails {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.product-thumb {
  width: 64px;
  height: 64px;
  padding: 0;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.2s;
}

.product-thumb:hover {
  border-color: #ccc;
}

.product-thumb.active {
  border-color: #e19a2b;
  box-shadow: 0 0 0 1px #e19a2b;
}

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

.product-detail-left .product-main-image,
.product-detail-left .product-description-block {
  animation: productFadeIn 0.5s ease forwards;
  opacity: 0;
}

.product-detail-right {
  position: static;
  background: #fff;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  animation: productFadeIn 0.5s ease 0.1s forwards;
  opacity: 0;
}

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

.product-description-block {
  background: #fff;
  padding: 32px;
  border-radius: 0;
  box-shadow: none;
}

.product-description-block h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #181002;
  margin: 0 0 12px;
  text-transform: capitalize;
}

.product-key-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.product-key-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.product-key-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #d19a4e;
  font-weight: 700;
  font-size: 14px;
}

.product-key-features li {
  transition: color 0.2s;
}

.product-key-features li:hover {
  color: #333;
}

.product-detail-cta {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #181002;
  font-weight: 700;
  margin: 0;
  padding: 20px 24px;
  background: linear-gradient(135deg, #e4b86e 0%, #d19a4e 100%);
  border-radius: 8px;
  border: none;
}

.product-back-link {
  font-size: 12px;
  color: #d19a4e;
  margin-bottom: 8px;
  display: inline-block;
  font-weight: 600;
  transition: color 0.2s, transform 0.2s;
}

.product-back-link:hover {
  color: #E19A2B;
  transform: translateX(-4px);
}

.product-code {
  font-size: 12px;
  color: #888;
  margin: 0 0 6px;
  font-weight: 400;
}

.price-old {
  text-decoration: line-through;
  color: #999;
  margin-right: 12px;
  font-weight: 400;
}

.option-group {
  margin-bottom: 8px;
}

.option-group label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #000;
  text-transform: capitalize;
  margin-bottom: 6px;
  display: block;
}

.variant-btn-group,
.product-option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.variant-btn,
.option-btn {
  padding: 11px 26px;
  border: 1.5px solid #E19A2B;
  border-radius: 12px;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1b1205;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  line-height: 1.3;
  min-width: 70px;
  text-align: center;
  outline: none;
}

.variant-btn:hover,
.option-btn:hover {
  border-color: #E19A2B;
  background: #faf0dc;
}

.variant-btn:focus-visible,
.option-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(200, 146, 42, 0.28);
}

.variant-btn.active,
.option-btn.active {
  border-color: transparent;
  background: #E19A2B;
  color: #1b1205;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(200, 146, 42, 0.18);
}

.product-option-row[data-option="delivery-time"] .option-btn[data-val="Express"] {
  background: #fff;
  color: #1b1205;
  border-color: #E19A2B;
  box-shadow: 0 0 0 3px rgba(47, 111, 224, 0.35);
}

.product-option-row[data-option="delivery-time"] .option-btn[data-val="Express"]:hover,
.product-option-row[data-option="delivery-time"] .option-btn[data-val="Express"]:focus-visible {
  background: #fff;
  border-color: #E19A2B;
  box-shadow: 0 0 0 3px rgba(47, 111, 224, 0.45);
}

.product-option-row[data-option="delivery-time"] .option-btn[data-val="Express"].active {
  box-shadow: none;
}

.qty-input {
  padding: 10px 16px;
  border: 1px solid #E19A2B;
  border-radius: 8px;
  font-size: 15px;
  width: 120px;
  transition: border-color 0.2s;
}

.qty-input:focus {
  outline: none;
  border-color: #E19A2B;
}

.upload-design-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 4px;
  flex-wrap: wrap;
}

.upload-design-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 12px 22px;
  border: 1.5px solid #E19A2B;
  background: #faf0dc;
  color: #1b1205;
  font-weight: 700;
  font-size: 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(200, 146, 42, 0.15);
  text-align: left;
}

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

.upload-design-btn:hover {
  background: #f4e6cd;
  box-shadow: 0 8px 20px rgba(200, 146, 42, 0.22);
  transform: translateY(-1px);
}

.upload-note {
  font-size: 12px;
  color: #d19a4e;
  line-height: 1.4;
  font-weight: 400;
  font-style: italic;
  margin: 0;
}

.product-detail-actions {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.product-detail-actions svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.product-buy-now-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 14px;
  border: 1px solid #c27b0c !important;
  background: linear-gradient(180deg, #ffc76e 16%, #c77900 88%) !important;
  color: #1b1205 !important;
  box-shadow: 0 10px 24px rgba(199, 121, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.product-buy-now-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(200, 146, 42, 0.32);
  filter: brightness(1.02);
}

.product-buy-now-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(47, 111, 224, 0.45), 0 10px 24px rgba(199, 121, 0, 0.32);
}

.product-add-cart-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 14px;
  border: 1px solid #c27b0c !important;
  background: linear-gradient(180deg, #ffc76e 16%, #c77900 88%) !important;
  color: #1b1205 !important;
  box-shadow: 0 10px 24px rgba(199, 121, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.product-add-cart-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(200, 146, 42, 0.32);
  filter: brightness(1.02);
}

.product-add-cart-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(47, 111, 224, 0.45), 0 10px 24px rgba(199, 121, 0, 0.32);
}

.product-wishlist-btn,
.product-continue-shopping {
  display: none;
}

.product-banners {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.product-banner {
  padding: 50px 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  outline: none;
  border: none;
}

.product-banner-main {
  background: #181002;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-banner-tamara {
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
  position: relative;
  border: none !important;
  background: transparent;
}

.product-banner-tamara img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.product-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(24, 16, 2, 0.15);
}

.product-banner a {
  color: #e4b86e;
  text-decoration: underline;
  font-weight: 600;
}

a.product-banner {
  text-decoration: none;
  display: block;
  outline: none !important;
}

a.product-banner:focus,
a.product-banner:active,
a.product-banner:focus-visible {
  outline: none !important;
}

.product-main-image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 30px rgba(24, 16, 2, 0.1), 0 2px 8px rgba(24, 16, 2, 0.06);
  background: #f8f6f3;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-main-image:hover img {
  transform: scale(1.02);
}

.product-detail-right h2,
.product-detail-info h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  color: #d19a4e;
  margin-bottom: 4px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.product-detail-price {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #181002;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.product-detail-price strong {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: #181002;
}

.product-detail-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Product Options */
.product-options {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}

.product-options .option-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.product-options .option-group:last-of-type {
  margin-bottom: 0;
}

.option-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.option-group label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #000;
}

.option-group select {
  padding: 12px 16px;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #050505;
  background: #fff;
  outline: none;
  cursor: pointer;
  transition: border-color 0.3s;
}

.option-group select:focus {
  border-color: #e19a2b;
}

.btn-outline-dark {
  background: transparent;
  border: 2px solid #181002;
  color: #181002;
}

.btn-outline-dark:hover {
  background: #181002;
  color: #fff;
}

/* Product Features */
.product-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #555;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e19a2b;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== RESPONSIVE (Category & Product Pages) ===== */
@media (max-width: 1200px) {
  .cat-page-grid.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-page-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-banner-inner {
    grid-template-columns: 1fr;
  }

  .cat-banner-image {
    max-height: 300px;
  }

  .product-detail-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

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

  .product-deals-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .product-detail-right {
    position: static;
  }

  .product-main-image {
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .breadcrumb {
    padding: 12px 16px;
  }

  .cat-page-section {
    padding: 40px 16px;
  }

  .cat-page-grid.cols-4,
  .cat-page-grid.cols-3 {
    grid-template-columns: 1fr;
  }

  .cat-banner {
    padding: 0 16px;
  }

  .cat-banner-text {
    padding: 30px;
  }

  .cat-banner-text h2 {
    font-size: 28px;
  }

  .product-detail {
    padding: 30px 16px;
  }

  .product-detail-right {
    padding: 24px 20px;
  }

  .product-description-block {
    padding: 24px 20px;
  }

  .product-detail-info h2,
  .product-detail-right h2 {
    font-size: 28px;
  }

  .product-detail-actions {
    flex-direction: column;
  }

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

  .related-title {
    font-size: 28px;
  }
}

/* ========================================
   ORDER TIMELINE PAGE
   ======================================== */
.order-timeline-section {
  padding: 40px 40px 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.order-timeline-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 42px;
  color: #e19a2b;
  text-align: center;
  margin-bottom: 32px;
}

.order-timeline-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.order-timeline-col h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #050505;
  margin-bottom: 8px;
}

.order-timeline-col .col-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #888;
  margin-bottom: 24px;
}

.order-timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.order-timeline-step {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  position: relative;
}

.order-timeline-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 40px;
  width: 2px;
  height: calc(100% - 8px);
  background: #e5e5e5;
}

.order-timeline-step.done:not(:last-child)::before {
  background: #e19a2b;
}

.order-timeline-step .ot-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e5e5e5;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.order-timeline-step.done .ot-dot {
  background: #e19a2b;
}

.order-timeline-step .ot-dot::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}

.order-timeline-step:not(.done) .ot-dot::after {
  content: none;
}

.order-timeline-step .ot-body h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #050505;
  margin-bottom: 2px;
}

.order-timeline-step:not(.done) .ot-body h4 {
  color: #999;
}

.order-timeline-step .ot-body p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #888;
}

.order-timeline-step .ot-date {
  margin-left: auto;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #888;
  white-space: nowrap;
}

.rate-delivery-wrap {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.rate-delivery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: #e19a2b;
  color: #000;
  border: none;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.2s;
}

.rate-delivery-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .order-timeline-card {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }
  .order-timeline-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .order-timeline-section {
    padding: 24px 16px 40px;
  }
}

/* ========================================
   WISHLIST PAGE
   ======================================== */
.wishlist-section {
  padding: 40px 40px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.wishlist-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 42px;
  color: #e19a2b;
  text-align: center;
  margin-bottom: 32px;
}

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

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

.wishlist-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s, transform 0.2s;
}

.wishlist-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.wishlist-card-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

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

.wishlist-card-heart {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  color: #c62828;
}

.wishlist-card-heart svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.wishlist-card-info {
  padding: 16px;
}

.wishlist-card-info h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #050505;
  margin-bottom: 4px;
}

.wishlist-card-info .wishlist-qty {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
}

.wishlist-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wishlist-banner {
  background: #050505;
  border: 2px solid #1a5276;
  border-radius: 12px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .wishlist-layout {
    grid-template-columns: 1fr;
  }
  .wishlist-banner {
    min-height: 200px;
    order: -1;
  }
  .wishlist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .wishlist-section {
    padding: 24px 16px 40px;
  }
  .wishlist-title {
    font-size: 32px;
  }
  .wishlist-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   POLICY PAGES (Privacy, Terms, Refund, Cancellation)
   ======================================== */
.policy-section-wrap {
  padding: 40px 40px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.policy-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 42px;
  color: #e19a2b;
  margin-bottom: 8px;
}

.policy-updated {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

.policy-intro {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 32px;
}

.policy-content {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.policy-content .policy-section {
  margin-bottom: 28px;
}

.policy-content .policy-section h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  color: #e19a2b;
  margin-bottom: 12px;
}

.policy-content .policy-section p,
.policy-content .policy-section ul {
  margin-bottom: 12px;
}

.policy-content .policy-section ul {
  padding-left: 24px;
}

.policy-content .policy-section li {
  margin-bottom: 6px;
  list-style: disc;
}

@media (max-width: 768px) {
  .policy-section-wrap {
    padding: 24px 16px 50px;
  }
  .policy-title {
    font-size: 32px;
  }
  .policy-content .policy-section h3 {
    font-size: 18px;
  }
}

/* Dashboard page title + category nav */
.dashboard-page-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
}

.dashboard-cat-nav .category-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dashboard-cat-nav .category-circles {
  margin-bottom: 16px;
}

.dashboard-cat-nav .search-bar {
  max-width: 100%;
}

/* Cart badge - parent needs position:relative for badge placement */
.cart-trigger,
.header-icons .icon-link {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #e53935;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.header-icons .icon-link svg {
  stroke: currentColor;
}

/* Dashboard overview cards (Figma style) */
.dashboard-overview-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.dashboard-overview-card {
  background: #fff;
  border: 1px solid #e19a2b;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.dashboard-overview-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
}

.dashboard-overview-value {
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  color: #050505;
}

.dashboard-biz-credit-card .dashboard-overview-value {
  font-size: 24px;
}

/* ========================================
   CLIENT DASHBOARD
   ======================================== */
.dashboard-wrap {
  min-height: calc(100vh - 80px);
  background: #faf8f5;
}

.dashboard-verify-banner {
  background: linear-gradient(135deg, #fff8e7 0%, #ffe8c4 100%);
  border: 1px solid #e19a2b;
  border-radius: 8px;
  padding: 12px 40px;
  margin: 0 auto 24px;
  max-width: 1400px;
}

.dashboard-verify-banner p {
  margin: 0;
  color: #181002;
  font-size: 14px;
}

.dashboard-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

.dashboard-sidebar {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.dashboard-user-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.dashboard-avatar-wrap {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.dashboard-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #181002;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  overflow: hidden;
}

.dashboard-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dashboard-user-details {
  min-width: 0;
}

.dashboard-user-welcome {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #181002;
  margin-bottom: 2px;
}

.dashboard-user-email {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #888;
  margin-bottom: 2px;
}

.dashboard-user-company {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #aaa;
}

.dashboard-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dashboard-nav-section {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #aaa;
  margin: 24px 0 8px 0;
  padding: 0;
}

.dashboard-nav-section:first-of-type {
  margin-top: 24px;
}

.dashboard-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #181002;
  background: #fff;
  border: 1.5px solid #e19a2b;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.dashboard-nav-item:hover {
  background: #fef8ed;
}

.dashboard-nav-item.active {
  color: #fff;
  background: #e19a2b;
  border-color: #e19a2b;
  border-left: 1.5px solid #e19a2b;
  border-radius: 10px;
  padding-left: 18px;
}

.dashboard-nav-item svg {
  flex-shrink: 0;
  stroke: currentColor;
}

.dashboard-nav-item:not(.active) svg {
  stroke: #181002;
}

.dashboard-nav-item.active svg {
  stroke: #fff;
}

.dashboard-nav-badge {
  margin-left: auto;
  font-size: 13px;
  font-weight: 400;
  color: #aaa;
}

.dashboard-nav-item.active .dashboard-nav-badge {
  color: rgba(255, 255, 255, 0.8);
}

.dashboard-signout {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #181002;
  background: #fff;
  border: 1.5px solid #e19a2b;
  border-radius: 10px;
  margin-top: 24px;
  transition: background 0.2s;
}

.dashboard-signout:hover {
  background: #fef8ed;
}

.dashboard-signout svg {
  flex-shrink: 0;
  stroke: #181002;
}

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

.dashboard-panel {
  display: none;
  animation: dashboardFade 0.25s ease;
  overflow-x: hidden;
}

.dashboard-panel.active {
  display: block;
}

@keyframes dashboardFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.dashboard-welcome {
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  color: #050505;
  margin-bottom: 8px;
}

.dashboard-welcome-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #666;
  margin-bottom: 28px;
}

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

.dashboard-stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #e19a2b;
}

.dashboard-stat-card.pending { border-left-color: #f0ad4e; }
.dashboard-stat-card.production { border-left-color: #5bc0de; }
.dashboard-stat-card.delivered { border-left-color: #5cb85c; }

.dashboard-stat-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.dashboard-stat-value {
  font-family: 'Archivo Black', sans-serif;
  font-size: 32px;
  color: #050505;
}

.dashboard-section-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  color: #050505;
  margin-bottom: 16px;
}

.dashboard-card {
  background: #fff;
  border: 1.5px solid #e19a2b;
  border-radius: 12px;
  overflow: hidden;
}

.dashboard-orders-list {
  padding: 0;
}

.dashboard-order-row {
  display: grid;
  grid-template-columns: 1fr 120px 140px 100px 100px;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  overflow-x: auto;
}

.dashboard-order-row:last-child {
  border-bottom: none;
}

.dashboard-order-row.head {
  background: #f9f9f9;
  font-weight: 600;
  color: #555;
}

.dashboard-order-id {
  font-weight: 600;
  color: #050505;
}

.dashboard-order-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.dashboard-order-status.processing {
  background: #fef5e2;
  color: #e19a2b;
}

.dashboard-order-status.production {
  background: #e8f4fc;
  color: #2196f3;
}

.dashboard-order-status.shipped {
  background: #e3f2fd;
  color: #1976d2;
}

.dashboard-order-status.delivered {
  background: #e8f5e9;
  color: #2e7d32;
}

.dashboard-order-status.cancelled {
  background: #ffebee;
  color: #c62828;
}

.dashboard-order-row .btn {
  padding: 8px 16px;
  font-size: 13px;
}

.dashboard-empty {
  text-align: center;
  padding: 60px 24px;
  color: #888;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}

/* Biz Credit panel */
.dashboard-biz-credit-balance {
  margin-bottom: 24px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid #e19a2b;
  border-radius: 12px;
  display: inline-block;
}

.biz-credit-label { font-size: 14px; color: #666; display: block; margin-bottom: 4px; }
.biz-credit-amount { font-family: 'Archivo Black', sans-serif; font-size: 24px; color: #050505; }

.biz-credit-filters {
  display: flex;
  gap: 12px;
  padding: 16px 24px;
  border-bottom: 1px solid #eee;
}

.biz-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

.biz-filter-btn.active {
  background: #e19a2b;
  border-color: #e19a2b;
  color: #fff;
}

.biz-credit-transactions { padding: 16px 24px; }
.biz-txn-row {
  display: grid;
  grid-template-columns: 100px 1fr 1fr 100px;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  overflow-x: auto;
}

.biz-txn-amount { display: inline-flex; align-items: center; gap: 4px; font-weight: 600; }
.biz-txn-amount.debit { color: #666; }
.biz-txn-amount.credit { color: #2e7d32; }

/* Addresses panel */
.addr-saved-list {
  margin-bottom: 20px;
}

.addr-saved-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 10px;
  background: #fff;
}

.addr-saved-label-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.addr-saved-label {
  font-weight: 600;
  font-size: 15px;
}

.addr-saved-default {
  font-size: 11px;
  background: #e19a2b;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.addr-saved-line {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.addr-saved-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.addr-saved-actions .btn {
  font-size: 12px;
  padding: 6px 14px;
}

.addr-map-card {
  padding: 0;
  overflow: hidden;
}

.addr-search-row {
  display: flex;
  gap: 12px;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
  align-items: center;
}

.addr-search-input-wrap {
  flex: 1;
  position: relative;
}

.addr-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.addr-search-input {
  width: 100%;
  padding: 12px 16px 12px 40px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.addr-search-input:focus {
  border-color: #e19a2b;
}

.addr-current-loc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 13px;
  color: #fff;
  font-weight: 600;
}

.addr-map {
  width: 100%;
  height: 300px;
  min-height: 280px;
  background: #e8e8e8;
}

.addr-location-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 16px;
  border-top: 1px solid #eee;
}

.addr-location-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.addr-location-info svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.addr-location-label {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
  color: #181002;
}

.addr-location-text {
  margin: 2px 0 0;
  font-size: 13px;
  color: #666;
  word-break: break-word;
}

.addr-confirm-loc-btn {
  flex-shrink: 0;
  color: #fff;
  font-weight: 600;
}

.addr-divider {
  height: 1px;
  background: #eee;
  margin: 0;
}

.addr-details-section {
  padding: 24px;
}

.addr-details-title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 600;
}

#panel-addresses .address-tabs {
  padding: 0 0 20px;
  border-top: none;
}

.addr-form .form-group {
  margin-bottom: 14px;
}

.addr-form .form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.addr-form .form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  background: #f9f9f9;
}

.addr-form .form-group input:focus {
  border-color: #e19a2b;
  background: #fff;
  outline: none;
}

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

.addr-default-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0;
  font-size: 14px;
  cursor: pointer;
}

.addr-form-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.addr-form-actions .btn {
  color: #000;
  font-weight: 600;
}

.addr-form-actions .btn-outline-dark {
  color: #181002;
}

#panel-addresses .btn.btn-primary {
  margin: 0;
  width: auto;
  max-width: none;
  color: #000;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(225, 154, 43, 0.35);
}

@media (max-width: 600px) {
  .addr-search-row {
    flex-direction: column;
  }
  .addr-current-loc-btn {
    width: 100%;
    justify-content: center;
  }
  .addr-form-row {
    grid-template-columns: 1fr;
  }
  .addr-location-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .addr-saved-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.address-tabs {
  display: flex;
  padding: 20px 24px;
  border-top: 1px solid #eee;
  gap: 0;
}

.address-tab {
  padding: 10px 24px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.address-tab:first-child {
  border-radius: 8px 0 0 8px;
  border-right: none;
}

.address-tab:nth-child(2) {
  border-right: none;
}

.address-tab:last-child {
  border-radius: 0 8px 8px 0;
}

.address-tab.active {
  background: #e19a2b;
  border-color: #e19a2b;
  color: #fff;
}

.address-tab:not(.active):hover {
  background: #fafafa;
}

.address-fields {
  display: grid;
  gap: 12px;
  padding: 16px 24px;
}

.address-fields input {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

/* Payments panel */
.pay-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.pay-card {
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.pay-card-name {
  font-weight: 600;
  font-size: 15px;
  color: #181002;
}

.pay-card-brand-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.pay-card-brand-text {
  font-weight: 700;
  font-size: 18px;
  color: #1a1f71;
}

.pay-card-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  gap: 16px;
}

.pay-card-field-label {
  display: block;
  font-size: 11px;
  color: #999;
  margin-bottom: 4px;
  text-transform: capitalize;
}

.pay-card-field-value {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #181002;
  letter-spacing: 0.5px;
}

.pay-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
}

/* Toggle switch */
.pay-card-default-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: #666;
  user-select: none;
}

.pay-toggle-label {
  font-size: 13px;
}

.pay-toggle-input {
  display: none;
}

.pay-toggle-slider {
  position: relative;
  width: 36px;
  height: 20px;
  background: #ccc;
  border-radius: 10px;
  transition: background 0.2s;
  flex-shrink: 0;
}

.pay-toggle-slider::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}

.pay-toggle-input:checked + .pay-toggle-slider {
  background: #e19a2b;
}

.pay-toggle-input:checked + .pay-toggle-slider::after {
  transform: translateX(16px);
}

.pay-card-delete-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pay-card-delete-btn {
  background: none;
  border: none;
  color: #e53935;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
}

.pay-card-delete-btn:hover {
  text-decoration: underline;
}

.pay-card-delete-icon {
  background: none;
  border: none;
  color: #e53935;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}

.pay-card-delete-icon:hover {
  opacity: 0.7;
}

.pay-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 48px 24px;
  text-align: center;
  color: #999;
}

.pay-empty p {
  margin: 0;
  font-size: 14px;
  max-width: 360px;
}

@media (max-width: 600px) {
  .pay-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Files panel */
.dashboard-files-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dashboard-file-card {
  background: #fff;
  border: 1.5px solid #e19a2b;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.file-card-preview {
  height: 140px;
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.file-card-info {
  padding: 14px 16px 8px;
  border-top: 1px solid #eee;
  flex: 1;
}

.file-card-name {
  font-size: 13px;
  color: #333;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.file-card-dl {
  display: block;
  margin: 8px 16px 16px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(225, 154, 43, 0.35);
}

.files-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 48px 24px;
  text-align: center;
  color: #999;
}

.files-empty p {
  margin: 0;
  font-size: 14px;
  max-width: 360px;
}

@media (max-width: 900px) {
  .dashboard-files-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .dashboard-files-grid {
    grid-template-columns: 1fr;
  }
}

/* Archive panel */
.archive-list { padding: 0; }
.archive-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 24px;
  border-bottom: 1px solid #eee;
}
.archive-item:last-child { border-bottom: none; }

.archive-date { font-size: 14px; color: #888; min-width: 100px; flex-shrink: 0; }
.archive-name { flex: 1; font-size: 14px; color: #333; }

.archive-item .btn {
  padding: 8px 28px;
  font-size: 14px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Profile sections */
.dashboard-profile-sections { display: grid; gap: 24px; }
.profile-section { padding: 24px; border: 1.5px solid #e19a2b; border-radius: 12px; }
.profile-section h3 { font-size: 16px; font-weight: 600; margin-bottom: 20px; color: #181002; }
.profile-section .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.profile-section .form-group { margin-bottom: 16px; }
.profile-section .form-group label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; color: #555; }
.profile-section .form-group input { width: 100%; padding: 12px 16px; border: none; border-radius: 8px; font-size: 14px; background: #f5f5f5; color: #181002; }
.profile-section .form-group input:focus { outline: none; background: #fff; box-shadow: 0 0 0 2px rgba(225, 154, 43, 0.3); }
.profile-section .form-group { position: relative; }
.edit-icon { position: absolute; right: 12px; top: 38px; font-size: 14px; color: #888; cursor: pointer; }

/* Cart modal - dropdown below header, anchored top-right */
.cart-modal {
  position: fixed !important;
  top: 80px !important;
  right: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  z-index: 999;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 12px 24px 0 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  pointer-events: none;
}

.cart-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cart-modal-backdrop {
  position: fixed;
  inset: 0;
  top: 80px;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  z-index: 0;
}

.cart-modal-content {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  width: 400px;
  max-width: calc(100vw - 32px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.cart-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
  margin-bottom: 16px;
}

.cart-modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #181002;
}

.cart-modal-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  color: #666;
  transition: background 0.15s;
}

.cart-modal-close:hover {
  background: #f5f5f5;
}

/* Cart item row */
.cart-modal-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  font-family: 'Inter', system-ui, sans-serif;
}

.cart-modal-item-img {
  width: 80px;
  height: 80px;
  min-width: 80px;
  object-fit: cover;
  border-radius: 10px;
  background: #e8e8e8;
}

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

.cart-modal-item-name {
  margin: 0 0 8px;
  font-weight: 600;
  font-size: 14px;
  color: #181002;
}

.cart-modal-item-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-modal-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.cart-modal-qty button {
  width: 28px;
  height: 28px;
  border: none;
  background: #f5f5f5;
  cursor: pointer;
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.cart-modal-qty button:hover {
  background: #eee;
}

.cart-modal-qty input {
  width: 32px;
  height: 28px;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  background: #fff;
  -moz-appearance: textfield;
}

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

.cart-modal-item-price {
  font-weight: 600;
  font-size: 14px;
  color: #e19a2b;
  white-space: nowrap;
}

.cart-modal-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #999;
  margin-left: auto;
  flex-shrink: 0;
  transition: color 0.15s;
}

.cart-modal-item-remove:hover {
  color: #e53935;
}

.cart-subtotal {
  font-weight: 600;
  margin: 16px 0 4px;
  font-size: 15px;
  font-family: 'Inter', system-ui, sans-serif;
  color: #181002;
}

.cart-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.cart-modal-actions .btn {
  width: 100%;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  padding: 14px;
  border-radius: 10px;
}

.cart-modal-actions .btn-primary {
  color: #fff;
  box-shadow: 0 2px 8px rgba(225, 154, 43, 0.35);
}

.cart-modal-actions .btn-outline,
.cart-modal-actions .cart-close {
  background: #fff;
  border: 1.5px solid #e19a2b;
  color: #181002;
}

@media (max-width: 480px) {
  .cart-modal {
    padding: 8px;
    justify-content: center;
  }
  .cart-modal-content {
    width: 100%;
    border-radius: 12px;
  }
}

.checkout-modal {
  position: fixed !important;
  top: 80px !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.checkout-modal.open {
  opacity: 1;
  visibility: visible;
}

.checkout-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.checkout-modal-content {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.checkout-modal-content h2 {
  margin-bottom: 20px;
  font-size: 20px;
}

/* Sign-in modal - dropdown below header */
.signin-modal {
  position: fixed;
  top: 80px;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 999;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 12px 24px 0 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  pointer-events: none;
}

.signin-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.signin-modal-backdrop {
  position: fixed;
  inset: 0;
  top: 80px;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  z-index: 0;
}

.signin-modal-content {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  width: 400px;
  max-width: calc(100vw - 32px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.signin-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

.signin-modal-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #181002;
}

.signin-modal-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  color: #666;
  transition: background 0.15s;
}

.signin-modal-close:hover {
  background: #f5f5f5;
}

.signin-modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.signin-modal-input {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  background: #f3f3f3;
  color: #181002;
  outline: none;
  transition: background 0.15s, box-shadow 0.15s;
}

.signin-modal-input:focus {
  background: #eee;
  box-shadow: 0 0 0 2px rgba(225, 154, 43, 0.3);
}

.signin-modal-input::placeholder {
  color: #999;
}

.signin-modal-error {
  font-size: 13px;
  color: #e53935;
  margin: 0;
  padding: 0;
}

.signin-modal-btn {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 2px 8px rgba(225, 154, 43, 0.35);
  margin-top: 4px;
}

.signin-modal-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #eee;
  text-align: center;
}

.signin-modal-footer p {
  margin: 6px 0;
  font-size: 14px;
  color: #666;
}

.signin-modal-link {
  color: #e19a2b;
  font-weight: 500;
  text-decoration: none;
}

.signin-modal-link:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .signin-modal {
    padding: 8px;
    justify-content: center;
  }
  .signin-modal-content {
    width: 100%;
    border-radius: 12px;
  }
}

/* Checkout modal */
.checkout-modal-content {
  max-width: 800px;
}

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

.checkout-left h3, .checkout-right h3 { margin: 20px 0 12px; font-size: 16px; }
.checkout-left input, .checkout-right input {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 14px;
}

.btn-block { width: 100%; margin-top: 16px; }

.dashboard-track-embed {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 32px;
  max-width: 560px;
}

.dashboard-track-embed .track-form-card {
  border: none;
  padding: 0;
  box-shadow: none;
}

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

.dashboard-profile-form label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}

.dashboard-profile-form input {
  width: 100%;
  max-width: 400px;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
}

.dashboard-profile-form input:focus {
  outline: none;
  border-color: #e19a2b;
  box-shadow: 0 0 0 3px rgba(225, 154, 43, 0.15);
}

.dashboard-recent-orders {
  margin-bottom: 24px;
}

.dashboard-recent-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #eee;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

.dashboard-recent-item:last-child {
  border-bottom: none;
}

.dashboard-recent-item a {
  color: #e19a2b;
  font-weight: 600;
}

.dashboard-recent-item a:hover {
  text-decoration: underline;
}

.dashboard-view-all {
  padding: 16px 24px;
  border-top: 1px solid #eee;
  text-align: center;
}

.dashboard-view-all-link {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #e19a2b;
}

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

@media (max-width: 1024px) {
  .dashboard-inner {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

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

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

  .biz-txn-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .biz-txn-order { grid-column: 1 / -1; }

  .dashboard-sidebar {
    position: static;
    padding: 0;
  }

  .dashboard-user-info {
    margin-bottom: 20px;
  }

  .dashboard-nav-item {
    padding: 14px 18px;
    border-radius: 10px;
  }

  .dashboard-nav-item.active {
    background: #e19a2b;
    color: #fff;
    border-left: 1.5px solid #e19a2b;
  }

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

  .dashboard-order-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 16px;
  }

  .dashboard-order-row.head {
    display: none;
  }

  .dashboard-order-row .order-mobile-label {
    font-weight: 600;
    color: #555;
  }

  .dashboard-order-row .order-id { grid-column: 1; }
  .dashboard-order-row .order-date { grid-column: 2; }
  .dashboard-order-row .order-status { grid-column: 1; }
  .dashboard-order-row .order-total { grid-column: 2; }
  .dashboard-order-row .order-action { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .dashboard-stat-value {
    font-size: 28px;
  }

  .dashboard-track-embed {
    padding: 20px 16px;
  }

  .profile-section .form-row {
    grid-template-columns: 1fr;
  }
}

/* ===== AUTH PAGES (Create Account / Sign In) ===== */
.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #000;
}

.auth-split {
  display: flex;
  flex: 1;
  min-height: 100vh;
}

.auth-left {
  width: 50%;
  flex-shrink: 0;
  position: relative;
  background: #0a0a0a;
  min-height: 100vh;
  overflow: hidden;
}

.auth-left-img {
  position: absolute;
  inset: 0;
  background: #0a0a0a url('assets/auth-burj.jpg') center bottom / cover no-repeat;
}

.auth-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.auth-left-content {
  position: relative;
  z-index: 2;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.auth-logo {
  display: inline-block;
  text-decoration: none;
}

.auth-logo-img {
  width: 120px;
  height: auto;
  display: block;
}

.auth-right {
  flex: 1;
  background: #fff;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 56px;
  margin-left: -48px;
  border-radius: 250px 0 0 0;
}

.auth-form-wrap {
  max-width: 460px;
  width: 100%;
}

.auth-title {
  font-family: 'Archivo Black', 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 4px;
}

.auth-title-welcome {
  color: #111;
  /* display: block; */
}

.auth-title-brand {
  color: #E19A2B;
  /* display: block; */
}

.auth-subtitle {
  font-size: 16px;
  color: #444;
  margin-bottom: 32px;
  font-weight: 400;
}

.auth-social {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.auth-social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1.5px solid #E19A2B;
  background: #fff;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}

.auth-social-btn:hover {
  background: #fdf6eb;
  border-color: #c9871f;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-form-row {
  display: flex;
  gap: 16px;
}

.auth-input {
  flex: 1;
  padding: 15px 18px;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  background: #f2f2f2;
  color: #333;
  transition: border-color 0.2s, background 0.2s;
}

.auth-input::placeholder {
  color: #999;
}

.auth-input:focus {
  outline: none;
  border-color: #E19A2B;
  background: #fff;
}

.auth-input-full {
  width: 100%;
}

.auth-form-error {
  color: #c00;
  font-size: 14px;
  margin-top: -4px;
}

.auth-submit {
  padding: 16px;
  background: #E19A2B;
  color: #000;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: opacity 0.2s, transform 0.2s;
  width: 180px;
}

.auth-submit:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.auth-login-prompt {
  margin-top: 28px;
  text-align: left;
  font-size: 14px;
  color: #444;
}

.auth-login-link {
  color: #E19A2B;
  font-weight: 600;
}

.auth-login-link:hover {
  text-decoration: underline;
}

.auth-forgot-link {
  display: block;
  font-size: 14px;
  color: #666;
  margin-top: -8px;
  margin-bottom: 8px;
}

.auth-forgot-link:hover {
  color: #E19A2B;
}

@media (max-width: 900px) {
  .auth-split {
    flex-direction: column;
  }

  .auth-left {
    width: 100%;
    min-height: 260px;
  }

  .auth-right {
    margin-left: 0;
    border-radius: 24px 24px 0 0;
    margin-top: -24px;
    padding: 40px 24px;
  }

  .auth-left-content {
    min-height: 260px;
    padding: 32px 24px 24px;
  }

  .auth-title {
    font-size: 30px;
  }

  .auth-submit {
    width: 100%;
  }
}

/* ===== CHECKOUT RESPONSIVE ===== */
@media (max-width: 768px) {
  #checkoutForm.checkout-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .checkout-right {
    position: static !important;
  }

  .checkout-modal-content {
    padding: 16px;
  }

  .about-story-image img {
    height: auto;
    max-height: 280px;
  }
}

@media (max-width: 480px) {
  #checkoutForm.checkout-grid {
    gap: 16px !important;
  }

  .checkout-modal {
    padding: 8px !important;
  }

  .checkout-modal-content {
    padding: 12px;
    border-radius: 8px;
  }

  .checkout-city-postal-grid {
    grid-template-columns: 1fr !important;
  }

  .product-deals-grid {
    grid-template-columns: 1fr;
  }

  .about-story-image img {
    max-height: 200px;
  }
}

/* ===== TOAST ANIMATIONS ===== */
@keyframes bizprint-toast-in {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes bizprint-toast-out {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(24px); }
}

/* ===== Admin-managed banners ===== */
.admin-banners-section { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.admin-banner-link { display: block; text-decoration: none; color: inherit; }
.admin-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: center;
  padding: 40px;
  margin: 16px 0;
  background-color: #181002;
  color: #fff;
}
.admin-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.admin-banner-content { position: relative; z-index: 2; max-width: 560px; }
.admin-banner-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 36px;
  line-height: 1.1;
  margin: 0 0 10px;
  color: #fff;
}
.admin-banner-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  margin: 0 0 18px;
  color: #eaeaea;
}
.admin-banner-btn { display: inline-block; }
@media (max-width: 768px) {
  .admin-banner { padding: 24px; min-height: 150px; }
  .admin-banner-title { font-size: 24px; }
  .admin-banner-subtitle { font-size: 14px; }
}

/* Admin banner inside the product page strip - more compact */
.product-banners .admin-banner { min-height: 120px; padding: 24px; border-radius: 14px; margin: 0; }
.product-banners .admin-banner-title { font-size: 20px; }
.product-banners .admin-banner-subtitle { font-size: 14px; margin-bottom: 12px; }

/* Image-only banners (e.g. Tamara) - clean clickable image, no overlay */
.admin-banner-graphic { position: relative; border-radius: 14px; overflow: hidden; }
.admin-banner-caption {
  padding: 12px 14px 16px;
  background: #181002;
  color: #fff;
}
.admin-banner-caption .admin-banner-title {
  font-size: 18px;
  margin: 0 0 4px;
}
.admin-banner-caption .admin-banner-subtitle {
  font-size: 13px;
  margin: 0 0 10px;
}
.product-page-banners .admin-banner-caption { background: transparent; padding: 0 12px 12px; }
.admin-banner-image-link { display: block; }
.admin-banner-image, .admin-banner-image-link { margin: 16px 0; border-radius: 14px; overflow: hidden; }
.admin-banner-img { display: block; width: 100%; height: auto; border-radius: 14px; }
.product-banners .admin-banner-image,
.product-banners .admin-banner-image-link { margin: 0; }
.admin-banners-section .admin-banner-image,
.admin-banners-section .admin-banner-image-link { margin: 16px 0; }
