/* ===== 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;
}

/* ===== 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: 100;
  height: 80px;
  display: flex;
  align-items: center;
}

.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;
}

.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: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 102;
  background: transparent;
  border: none;
  padding: 0;
}

.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: 101;
  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;
}

.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-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;
  transition: opacity 0.3s;
}

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

/* ===== HERO ===== */
.hero {
  padding: 20px 24px 0;
}

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

.hero-sidebar {
  width: 480px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.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: 1200px;
  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-section {
  padding: 30px 40px;
  max-width: 1800px;
  margin: 0 auto;
}

.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: 0;
  display: flex;
}

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

/* ===== 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;
}

.product-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

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

.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: Gold, bottom-right rounded */
.one-stop-orange {
  background: #D4A34B;
  border-bottom-right-radius: 120px;
}

.one-stop-orange 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-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #333;
  line-height: 1.55;
  margin: 0;
  text-align: left;
  width: 100%;
}

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

.one-stop-gray-tr {
  border-top-right-radius: 120px;
}

.one-stop-gray-bl {
  border-bottom-left-radius: 120px;
}

/* Block 4: Dark brown, top-left rounded, text right-aligned */
.one-stop-dark {
  background: #221A11;
  border-top-left-radius: 120px;
  align-items: flex-end;
}

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

.one-stop-dark p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  line-height: 1.55;
  margin: 0;
  text-align: right;
  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;
}

.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: 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 60px;
  color: #fff;
}

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

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

.about-col p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
}

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

.policies-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;
}

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

.footer-contact {
  margin-top: 30px;
}

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

.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%;
}

/* ===== 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: 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 0;
  }

  .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: 20px;
    flex-wrap: wrap;
  }

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

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

  .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;
}

/* ===== 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;
  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: 50px;
  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-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: 30px;
}

.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);
}

.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: 50px;
}

.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 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: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 80px;
}

.why-us-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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 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;
}

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

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

.category-circles {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

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

.cat-circle {
  width: 80px;
  height: 80px;
  background-color: #d9d9d9;
  border-radius: 50%;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.cat-circle-item:hover .cat-circle {
  background-color: #e19a2b;
}

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

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

.why-search-bar {
  display: flex;
  align-items: center;
  background: #eee;
  padding: 15px 25px;
  border-radius: 10px;
}

.why-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 16px;
  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: 20px;
  height: 20px;
  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;
}

.black-shape-box {
  width: 100%;
  height: 400px;
  background-color: #181002;
  border-radius: 20px 100px 20px 100px;
}

.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: 30px;
  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: 15px;
}

.loyalty-shape {
  width: 40%;
  background-color: #181002;
  border-top-left-radius: 200px;
}

/* 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: 36px;
  color: #e19a2b;
  margin-bottom: 10px;
}

.timeline-sub {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  margin-bottom: 50px;
}

.process-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 40px;
}

.timeline-track-line {
  position: absolute;
  top: 45px;
  left: 0;
  width: 75%;
  height: 2px;
  background-color: #e19a2b;
  z-index: 0;
}

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

.p-dot {
  width: 12px;
  height: 12px;
  background-color: #e19a2b;
  border-radius: 50%;
  margin-bottom: 15px;
}

.p-step p {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #e19a2b;
  line-height: 1.2;
}

.timeline-bubble {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #d4a048;
  color: #181002;
  padding: 20px;
  border-radius: 30px 30px 30px 0;
  width: 220px;
  text-align: left;
}

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

.why-cta-inner {
  width: 100%;
  max-width: 1631px;
  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;
}

.why-cta-content {
  flex: 1;
  min-width: 0;
  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: 25px;
  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;
}

/* 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;
}

.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;
}

.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-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: 36px;
  height: 36px;
  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;
}

.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-shape {
    width: 100%;
    height: 100px;
    border-top-left-radius: 0;
    border-top-right-radius: 100px;
  }

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

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

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

  .timeline-bubble {
    position: static;
    margin-top: 20px;
    width: 100%;
  }
  
  .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;
  }

  .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;
  }

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

  .cat-circle svg {
    width: 24px;
    height: 24px;
  }

  .cat-circle-item {
    min-width: 70px;
  }

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

  .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;
  }

  .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-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 0;
  }

  .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: 20px;
    flex-wrap: wrap;
  }

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

  .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;
    border-radius: 24px 24px 0 0;
  }

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

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

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

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

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

  .about-story,
  .about-difference,
  .about-mission,
  .about-cta,
  .contact-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 {
    width: 50px;
    height: 50px;
  }

  .cat-circle svg {
    width: 20px;
    height: 20px;
  }

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

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

  .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: 11px;
  }

  .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: 12px;
  }

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

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

  .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: 13px;
  }

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

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

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

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

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

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

  .timeline-bubble {
    position: static;
    margin-top: 16px;
    width: 100%;
  }

  .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;
  }

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

  .cat-circle {
    width: 44px;
    height: 44px;
  }

  .cat-circle svg {
    width: 18px;
    height: 18px;
  }

  .cat-circle-item {
    min-width: 54px;
  }

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

  .shop-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: 10px;
  }

  .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;
  }
}

/* ========================================
   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: 60px;
  align-items: flex-start;
}

.product-detail-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.product-detail-left .product-main-image,
.product-detail-left .product-description-block {
  animation: productFadeIn 0.5s ease forwards;
  opacity: 0;
}

.product-detail-right {
  position: sticky;
  top: 24px;
  background: #fff;
  padding: 32px;
  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: 'Archivo Black', sans-serif;
  font-size: 18px;
  color: #181002;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.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: #d19a4e;
  font-weight: 600;
  margin: 0;
  padding: 16px 20px;
  background: rgba(212, 167, 95, 0.08);
  border-radius: 8px;
  border-left: 4px solid #d19a4e;
}

.product-back-link {
  font-size: 14px;
  color: #d19a4e;
  margin-bottom: 16px;
  display: inline-block;
  font-weight: 600;
  transition: color 0.2s, transform 0.2s;
}

.product-back-link:hover {
  color: #c78d42;
  transform: translateX(-4px);
}

.product-code {
  font-size: 14px;
  color: #666;
  margin: 0 0 12px;
  font-weight: 500;
}

.price-old {
  text-decoration: line-through;
  color: #999;
  margin-right: 12px;
  font-weight: 400;
}

.variant-btn-group,
.product-option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.variant-btn,
.option-btn {
  padding: 10px 18px;
  border: 1px solid #d4a75f;
  border-radius: 8px;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  cursor: pointer;
  transition: all 0.2s ease;
}

.variant-btn:hover,
.option-btn:hover {
  border-color: #c78d42;
  background: rgba(212, 167, 95, 0.08);
}

.variant-btn.active,
.option-btn.active {
  border: 1px solid #c78d42;
  background: linear-gradient(135deg, #e4b86e 0%, #d19a4e 100%);
  color: #fff;
  font-weight: 700;
}

.qty-input {
  padding: 10px 16px;
  border: 1px solid #d4a75f;
  border-radius: 8px;
  font-size: 15px;
  width: 120px;
  transition: border-color 0.2s;
}

.qty-input:focus {
  outline: none;
  border-color: #c78d42;
}

.upload-design-btn {
  width: 100%;
  margin: 20px 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #c78d42;
  background: linear-gradient(135deg, #e4b86e 0%, #d19a4e 100%);
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  transition: opacity 0.2s;
}

.upload-design-btn:hover {
  opacity: 0.95;
}

.upload-note {
  font-size: 13px;
  color: #000;
  margin: 0 0 20px;
  line-height: 1.5;
  font-weight: 400;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-detail-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 12px 24px;
}

.product-detail-actions .btn-outline-dark {
  border: 1px solid #d4a75f;
  background: #fff;
  color: #000;
  font-weight: 600;
}

.product-detail-actions .btn-outline-dark:hover {
  border-color: #c78d42;
  background: rgba(212, 167, 95, 0.08);
  color: #000;
}

.product-detail-actions .btn-primary {
  box-shadow: none;
  background: linear-gradient(135deg, #e4b86e 0%, #d19a4e 100%) !important;
  color: #fff !important;
  border: 1px solid #c78d42 !important;
}

.product-detail-actions .btn-primary:hover {
  opacity: 0.95;
}

.product-continue-shopping {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

.product-banners {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.product-banner {
  padding: 18px 24px;
  background: linear-gradient(135deg, #1a1510 0%, #181002 100%);
  color: #fff;
  border-radius: 14px;
  font-size: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(24, 16, 2, 0.25);
}

.product-banner a {
  color: #e4b86e;
  text-decoration: underline;
  font-weight: 600;
}

.product-main-image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 12px 40px rgba(24, 16, 2, 0.12), 0 4px 12px rgba(24, 16, 2, 0.06);
  background: #f8f6f3;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  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: 40px;
  color: #181002;
  margin-bottom: 12px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.product-detail-price {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: #d19a4e;
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.product-detail-price strong {
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: #d19a4e;
}

.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;
}

/* Product Actions */
.product-detail-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.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-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: 36px;
  height: 36px;
  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: 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 .why-search-bar {
  max-width: 400px;
}

/* 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: #f5f5f5;
}

.dashboard-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}

.dashboard-sidebar {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.dashboard-user-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 24px;
}

.dashboard-avatar {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.dashboard-user-details {
  min-width: 0;
}

.dashboard-user-welcome {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #000;
  margin-bottom: 4px;
}

.dashboard-user-email {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #000;
  margin-bottom: 2px;
}

.dashboard-user-company {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #000;
}

.dashboard-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dashboard-nav-section {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #000;
  margin: 20px 0 8px 0;
  padding: 0;
}

.dashboard-nav-section:first-of-type {
  margin-top: 0;
}

.dashboard-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #000;
  background: transparent;
  border: none;
  border-radius: 8px;
  margin: 2px 0;
  transition: background 0.2s;
}

.dashboard-nav-item:hover {
  background: #f5f5f5;
}

.dashboard-nav-item.active {
  color: #b8860b;
  background: #faedd1;
  border-left: 4px solid #b8860b;
  border-radius: 8px;
  padding-left: 12px;
}

.dashboard-nav-item svg {
  flex-shrink: 0;
  stroke: currentColor;
}

.dashboard-nav-item:not(.active) svg {
  stroke: #a0a0a0;
}

.dashboard-nav-badge {
  margin-left: auto;
  font-size: 13px;
  font-weight: 400;
  color: #000;
}

.dashboard-nav-item.active .dashboard-nav-badge {
  color: #b8860b;
}

.dashboard-signout {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #000;
  background: transparent;
  border: none;
  border-radius: 8px;
  margin-top: 16px;
  transition: background 0.2s;
}

.dashboard-signout:hover {
  background: #f5f5f5;
}

.dashboard-signout svg {
  stroke: #a0a0a0;
}

.dashboard-signout svg {
  flex-shrink: 0;
  stroke: currentColor;
}

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

.dashboard-panel {
  display: none;
  animation: dashboardFade 0.25s ease;
}

.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-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  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;
}

.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;
}

.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 */
.address-search-bar {
  display: flex;
  gap: 12px;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
}

.address-search-bar input { flex: 1; padding: 12px 16px; border: 1px solid #ddd; border-radius: 8px; font-size: 14px; }
.address-search-bar .btn {
  flex-shrink: 0;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(225, 154, 43, 0.35);
}

.address-selected { padding: 16px 24px 12px; font-size: 14px; }

#panel-addresses .btn.btn-primary {
  margin: 0 24px 20px;
  width: calc(100% - 48px);
  max-width: 320px;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(225, 154, 43, 0.35);
}

.address-map-container,
#address-map {
  height: 280px;
  width: 100%;
  margin: 20px 24px;
  border-radius: 8px;
  overflow: hidden;
  min-height: 280px;
}

.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 */
.dashboard-payment-cards {
  display: grid;
  gap: 20px;
}

.payment-card-item {
  background: #fff;
  border: 1px solid #e19a2b;
  border-radius: 12px;
  padding: 24px;
  max-width: 400px;
}

.payment-card-name { font-weight: 600; font-size: 16px; margin-bottom: 8px; }
.payment-card-brand { color: #1976d2; font-size: 14px; margin-bottom: 4px; }
.payment-card-number { font-size: 14px; color: #666; margin-bottom: 4px; }
.payment-card-exp { font-size: 13px; color: #888; margin-bottom: 16px; }

.payment-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.toggle-switch { font-size: 14px; cursor: pointer; display: flex; align-items: center; gap: 8px; }
.payment-delete {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #e53935;
}

/* Files panel */
.dashboard-files-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.dashboard-file-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  padding: 16px;
}

.file-card-preview {
  height: 120px;
  background: #e8e8e8;
  border-radius: 8px;
  margin-bottom: 12px;
}

.file-card-name {
  font-size: 13px;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.4;
}

/* Archive panel */
.archive-list { padding: 0; }
.archive-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
}

.archive-date { font-size: 14px; color: #666; min-width: 100px; }
.archive-name { flex: 1; font-size: 14px; color: #333; min-width: 200px; }

/* Profile sections */
.dashboard-profile-sections { display: grid; gap: 24px; max-width: 600px; }
.profile-section { padding: 24px; }
.profile-section h3 { font-size: 18px; margin-bottom: 20px; color: #050505; }
.profile-section .form-group { margin-bottom: 16px; }
.profile-section .form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.profile-section .form-group input { width: 100%; padding: 12px 16px; border: 1px solid #ddd; border-radius: 8px; font-size: 14px; }
.profile-section .form-group { position: relative; }
.edit-icon { position: absolute; right: 12px; top: 38px; font-size: 14px; color: #888; cursor: pointer; }

/* Cart modal */
.cart-modal, .checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.cart-modal.open, .checkout-modal.open {
  opacity: 1;
  visibility: visible;
}

.cart-modal-backdrop, .checkout-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.cart-modal-content, .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);
}

.cart-modal-content h3, .checkout-modal-content h2 {
  margin-bottom: 20px;
  font-size: 20px;
}

.cart-modal-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}

.cart-modal-item img,
.cart-item-placeholder { width: 80px; height: 80px; min-width: 80px; object-fit: cover; border-radius: 8px; display: flex; align-items: center; justify-content: center; background: #e8e8e8; color: #666; font-size: 12px; font-weight: 500; }
.cart-modal-item p { margin: 4px 0; font-size: 14px; }
.cart-qty { display: flex; align-items: center; gap: 8px; margin: 8px 0; }
.cart-qty button { width: 28px; height: 28px; border: 1px solid #ddd; background: #fff; border-radius: 4px; cursor: pointer; }
.cart-remove { margin-left: auto; background: none; border: none; cursor: pointer; padding: 4px; }
.cart-subtotal { font-weight: 600; margin: 16px 0; font-size: 16px; font-family: 'Inter', system-ui, sans-serif; }
.cart-modal-content .cart-modal-item { font-family: 'Inter', system-ui, sans-serif; }
.cart-modal-actions { display: flex; gap: 12px; margin-top: 16px; }
.cart-modal-actions .btn { flex: 1; }

/* 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: 20px 16px;
  }

  .dashboard-user-info {
    margin-bottom: 20px;
  }

  .dashboard-nav-item {
    padding: 12px 16px;
    border-radius: 8px;
  }

  .dashboard-nav-item.active {
    background: #faedd1;
    color: #b8860b;
    border-left: 4px solid #b8860b;
  }

  .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;
  }
}

/* ===== AUTH PAGES (Create Account / Sign In) ===== */
.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.auth-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 24px 40px;
}

.auth-header-link {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.auth-header-link:hover {
  text-decoration: underline;
}

.auth-split {
  display: flex;
  flex: 1;
  min-height: 100vh;
}

.auth-left {
  flex: 1;
  position: relative;
  background: #1a1a1a;
  min-height: 100vh;
  overflow: hidden;
}

.auth-left-img {
  position: absolute;
  inset: 0;
  background: #1a1a1a url('assets/auth-burj.png') center/cover no-repeat;
}

.auth-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.auth-left-content {
  position: relative;
  z-index: 2;
  padding: 48px 0 48px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 100vh;
}

.auth-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: #fff;
}

.auth-logo-icon {
  width: 56px;
  height: 72px;
  flex-shrink: 0;
}

.auth-logo-text {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.auth-right {
  flex: 1.2;
  background: #fff;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  margin-left: -60px;
  border-radius: 120px 0 0 120px;
  box-shadow: -4px 0 24px rgba(0,0,0,0.08);
}

.auth-form-wrap {
  max-width: 420px;
  width: 100%;
  margin-left: 20px;
}

.auth-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.auth-title-welcome {
  color: #050505;
  display: block;
}

.auth-title-brand {
  color: #E19A2B;
  display: block;
}

.auth-subtitle {
  font-size: 18px;
  color: #333;
  margin-bottom: 32px;
}

.auth-social {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.auth-social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.auth-social-btn:hover {
  background: #f8f8f8;
  border-color: #ccc;
}

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

.auth-form-row {
  display: flex;
  gap: 12px;
}

.auth-input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  background: #f5f5f5;
  color: #333;
}

.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: #fff;
  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;
}

.auth-submit:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.auth-login-prompt {
  margin-top: 24px;
  text-align: center;
  font-size: 15px;
  color: #333;
}

.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 {
    min-height: 280px;
  }

  .auth-left-content {
    min-height: 280px;
    padding: 32px 24px 24px;
  }

  .auth-form-wrap {
    margin-left: 0;
  }
}
