@import url("https://fonts.googleapis.com/css2?family=Kings&family=Bebas+Neue&family=Barlow:wght@400;500;600;700;800&display=swap");

:root {
  --brand-primary: #f4b400;
  --brand-primary-deep: #d99600;
  --brand-primary-soft: rgba(244, 180, 0, 0.14);
  --brand-dark: #1f1b16;
  --brand-surface: #fffdf7;
  --brand-surface-strong: #ffffff;
  --brand-text: #342c24;
  --brand-muted: #75685b;
  --brand-line: rgba(73, 54, 28, 0.1);
  --brand-success: #1c9b5d;
  --shadow-soft: 0 18px 40px rgba(41, 30, 13, 0.08);
  --shadow-strong: 0 28px 70px rgba(41, 30, 13, 0.14);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --transition-smooth: 260ms ease;
}

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

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Barlow", sans-serif;
  color: var(--brand-text);
  background:
    radial-gradient(circle at top left, rgba(255, 206, 86, 0.2), transparent 26%),
    radial-gradient(circle at right 15%, rgba(255, 214, 120, 0.12), transparent 18%),
    linear-gradient(180deg, #fffaf0 0%, #fffdf9 26%, #ffffff 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 193, 7, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 193, 7, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  z-index: -1;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  font-family: "Bebas Neue", sans-serif;
  line-height: 1.04;
  letter-spacing: 0.02em;
}

p,
label,
input,
textarea,
select,
button,
span,
small,
td,
th {
  font-family: "Barlow", sans-serif;
}

p {
  color: var(--brand-muted);
  line-height: 1.75;
}

.App {
  position: relative;
  overflow: hidden;
}

.container,
.container-fluid {
  width: min(100% - 2rem, 1240px);
  margin: 0 auto;
}

.container-fluid {
  width: min(100% - 2rem, 1380px);
}

.row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.row > * {
  min-width: 0;
  grid-column: span 12;
}

.col-12 {
  grid-column: span 12;
}

.g-0 {
  gap: 0;
}

.g-3 {
  gap: 1rem;
}

.g-4 {
  gap: 1.4rem;
}

.d-flex {
  display: flex;
}

.gap-3 {
  gap: 1rem;
}

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

.align-items-stretch {
  align-items: stretch;
}

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

.text-center {
  text-align: center;
}

.text-start {
  text-align: left;
}

.text-end {
  text-align: right;
}

.text-white {
  color: #ffffff !important;
}

.text-danger {
  color: #c0392b !important;
}

.w-100 {
  width: 100%;
}

.py-3 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pb-5 {
  padding-bottom: 3rem;
}

.pt-3 {
  padding-top: 1rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

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

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.2rem;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth),
    background var(--transition-smooth), color var(--transition-smooth);
}

.btn:disabled,
.btn.disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.btn-sm {
  min-height: 40px;
  padding: 0.65rem 1rem;
}

.btn-lg {
  min-height: 54px;
  padding: 1rem 1.35rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
}

.site-header--admin .topbar {
  display: none;
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(22, 18, 13, 0.96), rgba(41, 30, 13, 0.92));
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 48px;
}

.topbar-copy {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.topbar-copy p,
.topbar-link {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.93rem;
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  background: rgba(244, 180, 0, 0.18);
  color: var(--brand-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topbar-link {
  text-decoration: none;
}

.header {
  padding: 0.95rem 0 1.05rem;
  border-bottom: none;
  background: linear-gradient(180deg, rgba(31, 27, 22, 0.94), rgba(31, 27, 22, 0.72) 68%, transparent);
  backdrop-filter: blur(18px);
  box-shadow: none;
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(255, 211, 110, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(25, 20, 16, 0.96), rgba(38, 30, 23, 0.94));
  box-shadow:
    0 24px 45px rgba(10, 7, 4, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  z-index: 61;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.38rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.nbstyle {
  color: #ffff;
  text-decoration: none;
}

.nbstyle2 {
  color: #ffff;
  font-family: "Kings", cursive;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.95;
}

.nav-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.35rem;
  flex: 1;
  z-index: 61;
}

.nav-mobile-intro {
  display: none;
}

.nav-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0.32rem;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.nav-list li {
  display: flex;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform var(--transition-smooth),
    color var(--transition-smooth),
    box-shadow var(--transition-smooth);
}

.nav-link::before,
.nav-link::after {
  content: "";
  position: absolute;
  transition:
    transform var(--transition-smooth),
    opacity var(--transition-smooth),
    background var(--transition-smooth);
}

.nav-link::before {
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  z-index: -2;
}

.nav-link::after {
  left: 50%;
  bottom: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-primary);
  opacity: 0;
  transform: translateX(-50%) scale(0);
  box-shadow: 0 0 0 8px rgba(244, 180, 0, 0.12);
}

.nav-link-label {
  position: relative;
  z-index: 1;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.16);
}

.nav-link:hover::before,
.nav-link:focus-visible::before {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.nav-link.is-active {
  color: var(--brand-dark);
  background: linear-gradient(135deg, #ffe082 0%, var(--brand-primary) 100%);
  box-shadow:
    0 16px 28px rgba(244, 180, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.nav-link.is-active::before {
  opacity: 0;
}

.nav-link.is-active::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  background: rgba(31, 27, 22, 0.22);
  box-shadow: none;
}

.nav-link.is-active:hover,
.nav-link.is-active:focus-visible {
  color: var(--brand-dark);
  transform: translateY(-1px) scale(1.01);
  box-shadow:
    0 18px 32px rgba(244, 180, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.nav-toggle {
  display: none;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  flex-direction: column;
  justify-content: center;
  gap: 0.32rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-toggle-bar {
  width: 22px;
  height: 2px;
  margin: 0 auto;
  color: #ffffff;
  background: #ffffff;
  transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  width: clamp(320px, 34vw, 450px);
  flex-shrink: 0;
  min-width: 0;
}

.nav-search-slot {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}

.nav-search-slot.is-placeholder {
  visibility: hidden;
  pointer-events: none;
}

.nav-actions .btn-outline-light {
  min-height: 48px;
  padding: 0.82rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-actions .btn-outline-light:hover,
.nav-actions .btn-outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.nav-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.05rem;
  white-space: nowrap;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe082 0%, var(--brand-primary) 100%);
  color: var(--brand-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 16px 26px rgba(244, 180, 0, 0.22);
}

.nav-cta-button:hover,
.nav-cta-button:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #ffebac 0%, #f7bb1b 100%);
  color: var(--brand-dark);
  box-shadow: 0 20px 30px rgba(244, 180, 0, 0.26);
}

.site-search {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.34rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.site-search .form-control {
  min-width: 0;
  width: 100%;
  padding: 0.58rem 0.85rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  font-size: 0.88rem;
  box-shadow: none !important;
}

.site-search .form-control::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.site-search .btn {
  min-height: 40px;
  padding: 0.72rem 0.95rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, #ffd45a 0%, var(--brand-primary) 100%);
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-search .btn:hover {
  background: linear-gradient(135deg, #ffe082 0%, #f7b500 100%);
  color: var(--brand-dark);
}

.site-header--admin .nav-panel {
  grid-template-columns: minmax(0, 1fr) auto;
}

.site-header--admin .nav-primary {
  justify-content: flex-start;
}

.site-header--admin .nav-actions {
  width: auto;
}

.hero-carousel-shell {
  padding: 1.4rem 1rem 0;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow-strong);
}

.hero-track {
  display: flex;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
}

.hero-media-wrap {
  position: relative;
  min-height: clamp(440px, 62vw, 700px);
}

.hero-media {
  width: 100%;
  height: clamp(440px, 62vw, 700px);
  object-fit: cover;
  filter: saturate(1.02);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 13, 9, 0.76) 0%, rgba(16, 13, 9, 0.26) 48%, rgba(16, 13, 9, 0.06) 100%),
    linear-gradient(180deg, rgba(255, 198, 54, 0.18), transparent 40%, rgba(0, 0, 0, 0.28));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.hero-panel {
  width: min(100%, 640px);
  padding: clamp(1.5rem, 3vw, 2.3rem);
  margin-left: clamp(1rem, 3vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background: rgba(16, 13, 9, 0.48);
  backdrop-filter: blur(14px);
  animation: fade-up 0.9s ease both;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--brand-primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-kicker::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero-panel h1 {
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: clamp(2.9rem, 5vw, 5rem);
  line-height: 0.96;
}

.hero-panel p {
  width: min(100%, 540px);
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-proof-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.hero-proof-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions .btn,
.hero-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-actions .btn {
  background: linear-gradient(135deg, #ffe082 0%, var(--brand-primary) 100%);
  color: var(--brand-dark);
  border: none;
}

.hero-secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8%;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 4;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  padding: 1rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
}

.carousel-control-prev {
  left: 0.4rem;
}

.carousel-control-prev-icon::before {
  transform: rotate(-135deg);
  margin-left: 0.2rem;
}

.carousel-control-next {
  right: 0.4rem;
}

.carousel-control-next-icon::before {
  transform: rotate(45deg);
  margin-right: 0.2rem;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  display: flex;
  gap: 0.55rem;
  transform: translateX(-50%);
  z-index: 4;
}

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: transform var(--transition-smooth), background var(--transition-smooth);
}

.hero-dot.is-active {
  background: var(--brand-primary);
  transform: scale(1.18);
}

.hometexts {
  text-align: center;
  padding-top: 2.6rem;
}

.section-shell,
.page-hero,
.contact-shell,
.cart-page,
.checkout-page {
  position: relative;
  z-index: 1;
}

.section-heading,
.titleStyle {
  margin-bottom: 0.85rem;
  color: var(--brand-primary-deep);
  font-size: clamp(2.35rem, 5vw, 4rem);
  font-weight: 700;
}

.descriptionStyle,
.intro-description {
  width: min(100%, 760px);
  margin: 0 auto;
  font-size: clamp(1rem, 1.8vw, 1.08rem);
}

.maincontainer {
  width: 100%;
  padding-top: 2rem;
}

.intro-shell .section-intro {
  margin-bottom: 2rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  padding: 1.4rem;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  animation: fade-up 0.8s ease both;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--brand-dark);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
}

.stat-card span {
  color: var(--brand-muted);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-showcase {
  margin-top: 2rem;
}

.service-card {
  height: 100%;
  padding: 1.3rem;
  border: 1px solid rgba(72, 53, 26, 0.1);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  text-align: left;
  animation: fade-up 0.8s ease both;
}

.service-image-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 320px;
  padding: 1rem;
  border-radius: 24px;
  margin-top: 1rem;
  background:
    radial-gradient(circle at top left, rgba(244, 180, 0, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(255, 250, 238, 0.94), rgba(255, 255, 255, 0.98));
}

.service-card img,
.what-we-print-image-style {
  width: min(100%, 460px);
  height: auto;
  max-height: 320px;
  object-fit: contain;
  border-radius: 24px;
  transition: transform 500ms ease;
  filter: drop-shadow(0 16px 28px rgba(41, 30, 13, 0.12));
}

.service-card:hover img,
.what-we-print-image-style:hover {
  transform: translateY(-4px);
}

.sub-title {
  color: var(--brand-primary-deep);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.horizontalrow-container {
  width: 100%;
  padding: 2.4rem 0;
}

.horizontalrow {
  width: min(160px, 30%);
  margin: 0 auto;
  border: 0;
  border-top: 4px solid rgba(244, 180, 0, 0.3);
  opacity: 1;
}

.section-intro--compact {
  margin-bottom: 1.2rem;
}

.service-marquee {
  width: 100%;
  overflow: hidden;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(244, 180, 0, 0.16);
  border-bottom: 1px solid rgba(244, 180, 0, 0.16);
  background: rgba(255, 255, 255, 0.54);
}

.service-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-move 28s linear infinite;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  margin-right: 0.9rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(31, 27, 22, 0.92);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-section {
  margin: 0 auto 2.2rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.process-card {
  position: relative;
  padding: 1.4rem;
  border: 1px solid rgba(83, 58, 24, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  text-align: left;
  overflow: hidden;
  animation: fade-up 0.9s ease both;
}

.process-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -50% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 180, 0, 0.16), transparent 70%);
}

.process-number {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--brand-primary-deep);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.process-card h3,
.quote-banner h2,
.shop-feature-card h3,
.contact-brief-card h3,
.support-card h3 {
  font-size: 2rem;
}

.quote-banner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.4rem;
  align-items: center;
  padding: 1.7rem;
  margin: 0 auto 2.4rem;
  border: 1px solid rgba(83, 58, 24, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(31, 27, 22, 0.98), rgba(53, 39, 14, 0.95)),
    linear-gradient(180deg, rgba(255, 193, 7, 0.2), transparent);
  box-shadow: var(--shadow-strong);
}

.quote-banner-copy p,
.quote-banner-copy h2 {
  color: #ffffff;
}

.quote-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem;
}

.quote-secondary {
  white-space: nowrap;
}

.what-we-print,
.popular-products {
  padding: 0 1rem;
}

.what-we-print-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.6rem;
  align-items: center;
  max-width: 1180px;
  margin: 2rem auto 0;
  padding: 1.4rem;
  border: 1px solid var(--brand-line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.what-we-print-image-style {
  width: min(100%, 540px);
  max-height: 360px;
  margin: 0 auto;
}

.print-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.print-note-card {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: var(--brand-primary-soft);
  color: var(--brand-dark);
  font-weight: 700;
  text-align: left;
}

.product-grid-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.shop-tools {
  margin-top: 1.4rem;
  margin-bottom: 1.4rem;
}

.shop-tools-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.shop-search-panel {
  padding: 1rem;
  border: 1px solid rgba(83, 58, 24, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.shop-search-panel label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--brand-dark);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.shop-filter-chip {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(83, 58, 24, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-dark);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth),
    background var(--transition-smooth);
}

.shop-filter-chip.is-active,
.shop-filter-chip:hover {
  background: var(--brand-primary);
  box-shadow: 0 14px 24px rgba(244, 180, 0, 0.2);
  transform: translateY(-2px);
}

.shop-planning-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.shop-planner-card {
  padding: 1.25rem;
  border: 1px solid rgba(83, 58, 24, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.shop-planner-card--accent {
  background:
    linear-gradient(135deg, rgba(31, 27, 22, 0.98), rgba(50, 37, 16, 0.96)),
    linear-gradient(180deg, rgba(255, 193, 7, 0.18), transparent);
}

.shop-planner-card--accent h2,
.shop-planner-card--accent p,
.shop-planner-card--accent strong {
  color: #ffffff;
}

.shop-goal-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.shop-goal-chip {
  padding: 0.78rem 1rem;
  border: 1px solid rgba(83, 58, 24, 0.12);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 251, 242, 0.94), rgba(255, 255, 255, 0.98));
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth),
    background var(--transition-smooth);
}

.shop-goal-chip.is-active,
.shop-goal-chip:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ffe082 0%, var(--brand-primary) 100%);
  box-shadow: 0 16px 28px rgba(244, 180, 0, 0.22);
}

.shop-planner-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 1rem 0 1.1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.shop-planner-summary span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
}

.recent-section {
  margin-bottom: 1.6rem;
}

.recently-viewed-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.mini-product-card {
  display: grid;
  gap: 0.75rem;
  padding: 0.9rem;
  border: 1px solid rgba(83, 58, 24, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.mini-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 34px rgba(41, 30, 13, 0.1);
}

.mini-product-visual {
  overflow: hidden;
  border-radius: 18px;
}

.mini-product-visual img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: transform 420ms ease;
}

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

.mini-product-meta {
  display: grid;
  gap: 0.3rem;
}

.mini-product-meta span {
  color: var(--brand-primary-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mini-product-meta strong {
  color: var(--brand-dark);
  font-size: 1.05rem;
}

.mini-product-meta small {
  color: var(--brand-success);
  font-size: 0.95rem;
  font-weight: 800;
}

.shop-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.shop-feature-card {
  padding: 1.15rem;
  border: 1px solid rgba(83, 58, 24, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.95), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow-soft);
}

.shop-page .shop-attr,
.popular-products .container {
  max-width: 1240px;
}

.populer-product-card-container {
  margin-bottom: 1.4rem;
}

.populer-product-card {
  height: 100%;
  padding: 1rem;
  border: 1px solid rgba(88, 63, 22, 0.08);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 241, 0.96));
  box-shadow: var(--shadow-soft);
  text-align: left;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  animation: fade-up 0.85s ease both;
}

.populer-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(37, 26, 11, 0.12);
}

.product-visual-button {
  position: relative;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  text-align: left;
}

.populer-product-card-image {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  border-radius: 22px;
  transition: transform 420ms ease, filter 420ms ease;
}

.product-visual-button:hover .populer-product-card-image {
  transform: scale(1.03);
  filter: saturate(1.08);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(31, 27, 22, 0.84);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-copy {
  padding: 1rem 0.35rem 0.2rem;
}

.product-service-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.8rem;
  margin-bottom: 0.65rem;
}

.product-service-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(244, 180, 0, 0.14);
  color: var(--brand-primary-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-service-meta small {
  color: var(--brand-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.product-title {
  margin-bottom: 0.4rem;
  color: var(--brand-dark);
  font-size: 1.8rem;
  cursor: pointer;
}

.product-meta {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.product-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.product-footer-copy {
  display: grid;
  gap: 0.35rem;
}

.product-footer .add-to-card-btn {
  width: auto;
  padding-inline: 1.2rem;
}

.product-footer .price-range {
  white-space: nowrap;
}

.product-footer-note {
  color: var(--brand-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.price-range {
  margin-bottom: 0;
  color: var(--brand-success);
  font-size: 1rem;
  font-weight: 800;
}

.product-action-stack {
  display: grid;
  gap: 0.6rem;
  justify-items: end;
}

.add-to-card-btn {
  width: 100%;
  min-height: 48px;
  border: none !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  box-shadow: 0 14px 26px rgba(244, 180, 0, 0.24);
}

.product-quote-link {
  color: var(--brand-primary-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.product-quote-link:hover {
  color: var(--brand-dark);
}

.add-to-card-btn:hover,
.btn-text-size:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(244, 180, 0, 0.28);
}

.page-hero {
  max-width: 1240px;
  margin: 2rem auto 0;
  padding: 2rem;
  border: 1px solid rgba(83, 58, 24, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 243, 205, 0.88), rgba(255, 255, 255, 0.96)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow-soft);
}

.page-hero--compact {
  margin-bottom: 1.5rem;
}

.page-hero .section-heading {
  margin-bottom: 0.55rem;
}

.shop-counter {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(31, 27, 22, 0.9);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.empty-state-card {
  margin-top: 1rem;
  padding: 2rem;
  border: 1px dashed rgba(114, 85, 38, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.product-detail-shell {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.product-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--brand-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.product-breadcrumbs a {
  color: var(--brand-primary-deep);
  text-decoration: none;
}

.product-detail-card,
.cart-list-card,
.cart-summary-card,
.checkout-card,
.checkout-summary-card,
.contact-media-card,
.contact-form-card,
.contact-map-card,
.admin-table-shell,
.admin-detail-card,
.admin-form-shell {
  border: 1px solid rgba(83, 58, 24, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.product-detail-card {
  overflow: hidden;
  padding: clamp(0.9rem, 2vw, 1.2rem);
  background:
    radial-gradient(circle at top right, rgba(244, 180, 0, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 253, 247, 0.96), rgba(255, 255, 255, 0.96));
}

.product-gallery-panel {
  display: grid;
  gap: 1rem;
  height: 100%;
  padding: clamp(0.4rem, 1.5vw, 0.85rem);
}

.product-gallery-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 100%;
  min-height: 680px;
  padding: 1.6rem;
  border: 1px solid rgba(83, 58, 24, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(255, 210, 102, 0.3), transparent 22%),
    linear-gradient(145deg, #201a14 0%, #30261b 34%, #fff4dc 34%, #fffdfa 100%);
}

.product-gallery-badge {
  position: absolute;
  top: 1.75rem;
  left: 1.75rem;
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(31, 27, 22, 0.72);
  backdrop-filter: blur(12px);
  z-index: 1;
}

.product-gallery-badge span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-gallery-badge strong {
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 800;
}

.product-gallery-accent {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 1.8rem;
  height: 132px;
  border-radius: 28px;
  background:
    radial-gradient(circle at left, rgba(244, 180, 0, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02));
  opacity: 0.9;
}

.product-gallery-stage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 540px);
  margin: 4.25rem auto 5.5rem;
}

.product-gallery-stage::before,
.product-gallery-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
}

.product-gallery-stage::before {
  transform: rotate(4deg);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.12);
}

.product-gallery-stage::after {
  transform: rotate(-3deg);
  background: rgba(255, 244, 214, 0.82);
  box-shadow: 0 20px 34px rgba(41, 30, 13, 0.12);
}

.product-gallery-sheet {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 510px;
  padding: 1.35rem;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 252, 245, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(83, 58, 24, 0.08),
    0 28px 46px rgba(41, 30, 13, 0.14);
}

.product-gallery-sheet::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px dashed rgba(136, 104, 55, 0.2);
  border-radius: 24px;
  pointer-events: none;
}

.product-gallery-sheet img {
  width: 100%;
  height: auto;
  max-height: 470px;
  object-fit: contain;
  object-position: center;
  padding: 0.6rem;
  background: transparent;
  border-radius: 24px;
}

.product-gallery-chip-row {
  position: absolute;
  left: 1.6rem;
  bottom: 1.6rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  max-width: calc(100% - 220px);
}

.product-gallery-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(31, 27, 22, 0.74);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.product-gallery-callout {
  position: absolute;
  top: 6.3rem;
  right: 1.6rem;
  z-index: 2;
  display: grid;
  gap: 0.35rem;
  width: min(220px, 36%);
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(31, 27, 22, 0.76);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.product-gallery-callout span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-gallery-callout strong {
  color: #ffffff;
  line-height: 1.55;
}

.product-preview-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(83, 58, 24, 0.12);
  border-radius: 999px;
  background: linear-gradient(135deg, #fff7dd 0%, #ffffff 100%);
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.product-preview-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 24px rgba(41, 30, 13, 0.08);
}

.product-preview-button--floating {
  position: absolute;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 2;
  background: linear-gradient(135deg, #ffe082 0%, var(--brand-primary) 100%);
}

.product-preview-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.product-preview-note {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(83, 58, 24, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 251, 242, 0.94), rgba(255, 255, 255, 0.98));
}

.product-preview-note span {
  color: var(--brand-muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-preview-note strong {
  color: var(--brand-dark);
  line-height: 1.55;
}

.product-summary-panel {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  height: 100%;
  padding: clamp(1.7rem, 3vw, 2.6rem);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 252, 245, 0.95));
}

.product-copy-block {
  display: grid;
  gap: 1rem;
}

.product-heading-row,
.product-price-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-status-pill,
.product-turnaround-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-status-pill {
  background: rgba(28, 155, 93, 0.1);
  color: var(--brand-success);
}

.product-turnaround-pill {
  background: rgba(244, 180, 0, 0.14);
  color: var(--brand-primary-deep);
}

.product-price-label {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--brand-muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-detail-title {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.product-detail-price {
  margin-bottom: 0;
  color: var(--brand-success);
  font-size: 1.15rem;
  font-weight: 800;
}

.product-detail-description {
  margin-bottom: 0;
}

.product-meta-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.product-meta-card {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(83, 58, 24, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 251, 242, 0.94), rgba(255, 255, 255, 0.98));
}

.product-meta-card span {
  color: var(--brand-muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-meta-card strong {
  color: var(--brand-dark);
  font-size: 1rem;
  line-height: 1.45;
}

.product-detail-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.detail-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(244, 180, 0, 0.14);
  color: var(--brand-dark);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.product-option-group {
  display: grid;
  gap: 0.8rem;
}

.product-configurator {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(83, 58, 24, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 238, 0.92)),
    linear-gradient(135deg, rgba(244, 180, 0, 0.04), transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.product-configurator-header {
  display: grid;
  gap: 0.5rem;
}

.product-configurator-header h2 {
  color: var(--brand-dark);
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.product-option-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 1rem;
}

.product-option-card {
  padding: 1.1rem;
  border: 1px solid rgba(83, 58, 24, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
}

.product-option-card--compact {
  align-self: start;
}

.product-option-group label {
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-option-group select,
.product-option-group input,
.form-control,
.form-select {
  min-height: 52px;
  padding: 0.95rem 1.05rem;
  border: 1px solid rgba(91, 65, 23, 0.14);
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand-text);
  font-size: 0.98rem;
  line-height: 1.4;
  box-shadow: none !important;
}

.form-control:focus,
.form-select:focus,
.product-option-group select:focus,
.product-option-group input:focus {
  border-color: rgba(244, 180, 0, 0.7);
  box-shadow: 0 0 0 4px rgba(244, 180, 0, 0.14) !important;
}

.product-option-help {
  margin-top: -0.1rem;
  color: var(--brand-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.product-quantity-input {
  width: 100%;
  max-width: 100%;
}

.product-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.support-note {
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--brand-primary);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 243, 205, 0.7), rgba(255, 250, 241, 0.92));
}

.estimate-panel {
  display: grid;
  gap: 0.55rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(83, 58, 24, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
}

.estimate-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(83, 58, 24, 0.08);
}

.estimate-header span {
  color: var(--brand-dark);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.estimate-header small {
  color: var(--brand-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.estimate-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--brand-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

.estimate-line strong {
  text-align: right;
}

.estimate-line.is-total {
  padding-top: 0.6rem;
  border-top: 1px solid rgba(83, 58, 24, 0.08);
}

.product-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.support-card {
  padding: 1.1rem;
  border: 1px solid rgba(83, 58, 24, 0.08);
  border-radius: 22px;
  background: rgba(255, 249, 239, 0.85);
}

.support-card p {
  margin-top: 0.45rem;
}

.product-sku-badge {
  align-self: flex-start;
}

.product-preview-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(18, 14, 10, 0.82);
  backdrop-filter: blur(10px);
  z-index: 120;
}

.product-preview-dialog {
  width: min(100%, 1120px);
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.product-preview-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.product-preview-toolbar h2 {
  color: var(--brand-dark);
  font-size: clamp(2rem, 3vw, 3rem);
}

.product-preview-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(83, 58, 24, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-dark);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.product-preview-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(74vh, 820px);
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(83, 58, 24, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(244, 180, 0, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 251, 242, 0.96), rgba(255, 255, 255, 0.98));
}

.product-preview-stage img {
  max-width: 100%;
  max-height: 68vh;
  object-fit: contain;
  border-radius: 24px;
  box-shadow:
    inset 0 0 0 1px rgba(83, 58, 24, 0.08),
    0 20px 34px rgba(41, 30, 13, 0.08);
}

.cart-page {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.6fr 0.85fr;
  gap: 1.5rem;
}

.cart-list-card,
.cart-summary-card {
  padding: 1.4rem;
}

.cart-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cart-list-header h2,
.cart-summary-card h2,
.checkout-summary-card h2,
.contact-form-card h2,
.admin-panel-header h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.cart-summary-card {
  position: sticky;
  top: 110px;
  height: fit-content;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(90, 64, 24, 0.08);
  color: var(--brand-dark);
  font-weight: 700;
}

.summary-row strong {
  font-size: 1.05rem;
}

.summary-note,
.checkout-pay-note,
.form-note,
.helper-text {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.cart-item-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(90, 64, 24, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, #fffdfa, #ffffff);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.cart-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 28px rgba(41, 30, 13, 0.08);
}

.cart-item-media {
  overflow: hidden;
  border-radius: 18px;
}

.cart-item-media img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.cart-item-title {
  color: var(--brand-dark);
  font-size: 1.4rem;
}

.cart-item-size {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.cart-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cart-item-meta span {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  color: var(--brand-muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.cart-item-meta strong {
  color: var(--brand-dark);
  font-size: 1rem;
}

.cart-remove-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 90, 90, 0.1);
  color: #d43c3c;
  transition: transform var(--transition-smooth), background var(--transition-smooth);
}

.cart-remove-button:hover {
  transform: scale(1.08);
  background: rgba(255, 90, 90, 0.16);
}

.checkout-page {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.checkout-heading {
  max-width: 760px;
  margin: 0 auto 1.8rem;
  text-align: center;
}

.checkout-card,
.checkout-summary-card {
  padding: 1.5rem;
}

.form-section-title {
  margin-bottom: 1rem;
}

.form-section-title h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.form-grid {
  row-gap: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--brand-dark);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-error {
  min-height: 1.1rem;
  margin-top: 0.35rem;
  color: #c0392b;
  font-size: 0.82rem;
  font-weight: 600;
}

.checkout-summary-card {
  position: sticky;
  top: 110px;
}

.checkout-table-clean {
  margin-top: 1rem;
}

.checkout-table-clean td,
.checkout-table-clean th {
  padding: 0.95rem 0.25rem;
  border-color: rgba(90, 64, 24, 0.08);
  background: transparent !important;
  color: var(--brand-text);
}

.gallery-shell {
  max-width: 1240px;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.gallery-grid-shell {
  padding: 1.25rem;
  border: 1px solid rgba(83, 58, 24, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.gallery-grid-shell img {
  border-radius: 18px;
}

.contact-page {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.contact-shell {
  max-width: 1240px;
}

.contact-media-card,
.contact-form-card,
.contact-map-card {
  padding: 1.4rem;
}

.contact-media-card img {
  width: min(100%, 460px);
  height: auto;
  max-height: 320px;
  object-fit: contain;
  margin: 0 auto;
  padding: 0.9rem;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(244, 180, 0, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 250, 238, 0.94), rgba(255, 255, 255, 0.98));
  filter: drop-shadow(0 16px 28px rgba(41, 30, 13, 0.12));
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.4rem;
  margin-top: 1.4rem;
}

.contact-info-stack {
  display: grid;
  gap: 1rem;
}

.contact-info-card {
  padding: 1.2rem;
  border: 1px solid rgba(88, 63, 22, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 251, 242, 0.94), rgba(255, 255, 255, 0.98));
}

.contact-info-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.7rem;
}

.contact-info-card a {
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: none;
}

.contact-form-card form {
  margin-top: 1.25rem;
}

.contact-prefill-card {
  margin-top: 1.25rem;
  padding: 1.1rem;
  border: 1px solid rgba(83, 58, 24, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(244, 180, 0, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 251, 242, 0.96), rgba(255, 255, 255, 0.98));
}

.contact-prefill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.contact-prefill-item {
  display: grid;
  gap: 0.3rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(83, 58, 24, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.contact-prefill-item span {
  color: var(--brand-muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-prefill-item strong {
  color: var(--brand-dark);
  line-height: 1.55;
}

.contact-map-card {
  margin-top: 1.4rem;
}

.contact-map-card iframe {
  width: 100%;
  min-height: 360px;
  border-radius: 26px;
}

.contact-brief-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.4rem;
}

.contact-brief-card {
  padding: 1.3rem;
  border: 1px solid rgba(83, 58, 24, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.checklist {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--brand-dark);
  font-weight: 600;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brand-primary);
}

.faq-shell {
  margin-top: 1.6rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border: 1px solid rgba(83, 58, 24, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border: none;
  background: transparent;
  color: var(--brand-dark);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition-smooth);
}

.faq-answer p {
  overflow: hidden;
  padding: 0 1.25rem;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 1.2rem;
}

.footer-style {
  margin: 2.4rem auto 0;
  padding: 2rem 1rem;
  border-top: 1px solid rgba(244, 180, 0, 0.12);
  background: linear-gradient(180deg, rgba(31, 27, 22, 0.98), rgba(24, 20, 16, 0.98));
  color: white;
}

.footer-style .container {
  max-width: 1240px;
}

.footer-block {
  height: 100%;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.footer-block h1 {
  margin-bottom: 0.8rem;
  color: var(--brand-primary);
  font-size: 2rem;
}

.footer-text-style {
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
}

.footer-social-text-style {
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.footer-social-text-style:hover {
  color: var(--brand-primary);
}

.copyright-text-style,
.copyright-text-style2 {
  width: 100%;
  padding: 1rem;
  background: transparent;
  color: var(--brand-muted);
  text-align: center;
  font-size: 0.88rem;
}

.shop-attr {
  margin-top: 0;
}

.form-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: calc(100vh - 88px);
  padding: 2rem 1rem;
}

.form-signin {
  width: min(100%, 1040px);
}

.auth-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  overflow: hidden;
  border: 1px solid rgba(83, 58, 24, 0.08);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-strong);
}

.auth-side {
  padding: clamp(1.6rem, 4vw, 3rem);
  background:
    linear-gradient(160deg, rgba(26, 20, 11, 0.96), rgba(44, 33, 15, 0.94)),
    linear-gradient(180deg, rgba(255, 193, 7, 0.16), transparent);
  color: white;
}

.auth-badge {
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--brand-primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.auth-title {
  margin-top: 1.15rem;
  margin-bottom: 0.9rem;
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.auth-copy {
  color: rgba(255, 255, 255, 0.76);
}

.auth-feature-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.auth-feature-list li {
  list-style: none;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.auth-panel {
  padding: clamp(1.6rem, 4vw, 3rem);
}

.auth-panel h1 {
  margin-bottom: 0.5rem;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.auth-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.auth-form-group {
  display: grid;
  gap: 0.45rem;
}

.dashboard-shell {
  padding-top: 1.25rem;
}

.add-product-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 1.2rem;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd86f 0%, var(--brand-primary) 100%);
  box-shadow: 0 18px 28px rgba(244, 180, 0, 0.24);
}

.btn-text-size {
  min-height: 52px;
  font-size: 0.88rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-table-shell,
.admin-form-shell,
.admin-detail-card {
  padding: 1.4rem;
}

.admin-panel-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-panel-subtitle {
  max-width: 620px;
  margin-top: 0.35rem;
}

.admin-table-shell .table {
  margin-bottom: 0;
  overflow: hidden;
}

.admin-table-shell th {
  padding: 1rem 0.85rem;
  border: none;
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-table-shell td {
  padding: 1rem 0.85rem;
  vertical-align: middle;
  border-color: rgba(90, 64, 24, 0.08);
}

.detail-option-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.detail-option-card {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(244, 180, 0, 0.12);
}

.images {
  width: 100%;
  height: 100%;
}

.floating-cart {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 45;
}

.floating-cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff8dc 0%, #ffffff 100%);
  color: var(--brand-primary-deep);
  font-size: 1.55rem;
  box-shadow: 0 24px 45px rgba(35, 24, 8, 0.18);
  animation: float-soft 3.8s ease-in-out infinite;
}

.floating-cart-button:hover {
  transform: translateY(-4px);
}

.map {
  position: static !important;
  transform: none !important;
}

.badge.bg-warning {
  background: linear-gradient(135deg, #ffd75a 0%, var(--brand-primary) 100%) !important;
  color: var(--brand-dark) !important;
}

.text-warning {
  color: var(--brand-primary-deep) !important;
}

.bg-warning {
  background-color: var(--brand-primary) !important;
}

.btn.bg-warning {
  border: none !important;
  background: linear-gradient(135deg, #ffd75a 0%, var(--brand-primary) 100%) !important;
  color: var(--brand-dark) !important;
  font-weight: 800;
}

.btn.bg-warning.text-white,
.btn.btn-warning.text-white {
  color: var(--brand-dark) !important;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.26) !important;
}

.form-control,
.form-select {
  width: 100%;
}

@keyframes marquee-move {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (min-width: 768px) {
  .col-md-6 {
    grid-column: span 6;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    grid-column: span 3;
  }

  .col-lg-5 {
    grid-column: span 5;
  }

  .col-lg-6 {
    grid-column: span 6;
  }

  .col-lg-7 {
    grid-column: span 7;
  }

  .col-lg-8 {
    grid-column: span 8;
  }

  .row.justify-content-center > .col-lg-8 {
    grid-column: 3 / span 8;
  }
}

@media (min-width: 1200px) {
  .col-xl-3 {
    grid-column: span 3;
  }
}

@media (max-width: 991.98px) {
  .topbar-inner,
  .topbar-copy,
  .nav-primary,
  .nav-panel,
  .nav-list,
  .nav-actions {
    width: 100%;
  }

  .topbar-inner,
  .topbar-copy,
  .topbar-links,
  .quote-banner,
  .shop-tools-panel,
  .shop-planning-shell,
  .process-grid,
  .product-support-grid,
  .contact-brief-grid,
  .contact-prefill-grid {
    grid-template-columns: 1fr;
  }

  .topbar-inner,
  .topbar-copy,
  .topbar-links,
  .quote-banner-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 0.9rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    padding: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    background:
      radial-gradient(circle at top left, rgba(255, 211, 110, 0.1), transparent 28%),
      linear-gradient(180deg, rgba(25, 20, 16, 0.99), rgba(38, 30, 23, 0.97));
    box-shadow: var(--shadow-strong);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--transition-smooth), transform var(--transition-smooth);
    z-index: 61;
  }

  .nav-mobile-intro {
    display: grid;
    gap: 0.45rem;
    padding: 1rem 1rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background:
      radial-gradient(circle at top left, rgba(244, 180, 0, 0.16), transparent 32%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  }

  .nav-mobile-intro--admin {
    background:
      radial-gradient(circle at top left, rgba(255, 180, 84, 0.12), transparent 32%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  }

  .nav-mobile-kicker {
    color: var(--brand-primary);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .nav-mobile-intro p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .nav-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-list {
    display: grid;
    gap: 0.35rem;
    padding: 0.65rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
  }

  .nav-actions {
    display: grid;
    gap: 0.9rem;
    width: 100%;
  }

  .nav-link {
    width: 100%;
    justify-content: flex-start;
    min-height: 50px;
    padding: 0.95rem 1rem;
  }

  .nav-link::after {
    left: auto;
    right: 1rem;
    bottom: 50%;
    transform: translateY(50%) scale(0);
    box-shadow: none;
  }

  .nav-link:hover::after,
  .nav-link:focus-visible::after,
  .nav-link.is-active::after {
    transform: translateY(50%) scale(1);
  }

  .site-search {
    width: 100%;
    display: grid;
    border-radius: 24px;
    padding: 0.55rem;
  }

  .nav-search-slot {
    width: 100%;
  }

  .nav-search-slot.is-placeholder {
    display: none;
  }

  .site-search .form-control {
    min-width: 0;
  }

  .site-search .btn,
  .nav-cta-button,
  .nav-actions .btn-outline-light {
    width: 100%;
  }

  .product-footer {
    align-items: stretch;
  }

  .product-action-stack {
    justify-items: stretch;
  }

  .hero-panel {
    width: calc(100% - 2rem);
    margin: 1rem;
  }

  .stat-grid,
  .what-we-print-grid,
  .cart-layout,
  .contact-grid,
  .auth-split,
  .product-meta-strip,
  .product-option-layout,
  .product-preview-note-grid,
  .recently-viewed-grid,
  .shop-feature-grid {
    grid-template-columns: 1fr;
  }

  .cart-summary-card,
  .checkout-summary-card {
    position: static;
  }

  .product-detail-card .row > * {
    width: 100%;
  }

  .product-gallery-frame {
    min-height: 600px;
  }

  .product-preview-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-gallery-callout {
    width: min(240px, 40%);
  }
}

@media (max-width: 767.98px) {
  .product-heading-row,
  .product-price-band,
  .estimate-header {
    align-items: flex-start;
  }

  .hero-carousel-shell {
    padding: 1rem 0.75rem 0;
  }

  .hero-carousel {
    border-radius: 26px;
  }

  .hero-media-wrap,
  .hero-media {
    min-height: 560px;
    height: 560px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(16, 13, 9, 0.12) 0%, rgba(16, 13, 9, 0.38) 28%, rgba(16, 13, 9, 0.88) 100%),
      linear-gradient(180deg, rgba(255, 198, 54, 0.14), transparent 36%, rgba(0, 0, 0, 0.18));
  }

  .hero-content {
    align-items: flex-end;
    padding: 0.9rem;
  }

  .hero-panel {
    width: 100%;
    margin: 0;
    padding: 1.2rem 1.05rem 1rem;
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(16, 13, 9, 0.7), rgba(16, 13, 9, 0.86)),
      linear-gradient(135deg, rgba(255, 193, 7, 0.08), transparent);
    backdrop-filter: blur(16px);
  }

  .hero-kicker {
    margin-bottom: 0.7rem;
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .hero-kicker::before {
    width: 24px;
  }

  .hero-panel h1 {
    font-size: clamp(2rem, 8vw, 2.65rem);
    line-height: 1;
    margin-bottom: 0.8rem;
  }

  .hero-panel p {
    width: 100%;
    margin-bottom: 1rem;
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .hero-actions .btn,
  .hero-secondary-btn {
    width: 100%;
    min-height: 48px;
    padding: 0.9rem 1rem;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
  }

  .hero-proof-grid {
    gap: 0.5rem;
    margin-top: 0.95rem;
  }

  .hero-proof-pill {
    padding: 0.5rem 0.75rem;
    font-size: 0.66rem;
    letter-spacing: 0.05em;
  }

  .carousel-control-prev,
  .carousel-control-next {
    top: 1rem;
    width: auto;
    transform: none;
  }

  .carousel-control-prev {
    left: auto;
    right: 4.35rem;
  }

  .carousel-control-next {
    right: 1rem;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 2.65rem;
    height: 2.65rem;
    padding: 0.7rem;
    background-color: rgba(20, 15, 11, 0.42);
  }

  .carousel-control-prev-icon::before,
  .carousel-control-next-icon::before {
    width: 0.7rem;
    height: 0.7rem;
    border-top-width: 2px;
    border-right-width: 2px;
  }

  .hero-dots {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.8rem;
    justify-content: center;
    transform: none;
  }

  .hero-dot {
    width: 10px;
    height: 10px;
  }

  .nav-shell {
    padding: 0.85rem 0.95rem;
    border-radius: 26px;
  }

  .brand-pill {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
  }

  .nbstyle2 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .service-card,
  .cart-list-card,
  .cart-summary-card,
  .checkout-card,
  .checkout-summary-card,
  .contact-media-card,
  .contact-form-card,
  .contact-map-card,
  .admin-table-shell,
  .admin-form-shell,
  .admin-detail-card {
    border-radius: 24px;
  }

  .product-footer,
  .hero-proof-grid,
  .product-action-row,
  .cart-list-header,
  .admin-panel-header {
    flex-direction: column;
    align-items: stretch;
  }

  .product-service-meta {
    gap: 0.45rem;
  }

  .shop-planner-card,
  .contact-prefill-card {
    padding: 1rem;
  }

  .product-breadcrumbs {
    flex-wrap: wrap;
  }

  .product-gallery-badge {
    top: 1.35rem;
    left: 1.35rem;
    right: 1.35rem;
  }

  .product-gallery-frame {
    min-height: 620px;
    padding: 1rem;
  }

  .product-gallery-stage {
    width: min(100%, 440px);
    margin-top: 8rem;
    margin-bottom: 9.2rem;
  }

  .product-gallery-sheet {
    min-height: 360px;
    padding: 1rem;
  }

  .product-gallery-sheet img {
    max-height: 320px;
  }

  .product-gallery-callout {
    top: 5.8rem;
    left: 1.2rem;
    right: 1.2rem;
    width: auto;
  }

  .product-gallery-chip-row {
    left: 1.2rem;
    right: 1.2rem;
    bottom: 4.9rem;
    max-width: none;
  }

  .product-preview-button--floating {
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
    justify-content: center;
  }

  .product-preview-dialog {
    padding: 1rem;
    border-radius: 24px;
  }

  .product-preview-stage {
    min-height: 56vh;
  }

  .product-preview-stage img {
    max-height: 52vh;
  }

  .cart-item-card {
    grid-template-columns: 1fr;
  }

  .cart-item-media img {
    height: 180px;
  }

  .floating-cart {
    right: 1rem;
    bottom: 1rem;
  }

  .floating-cart-button {
    width: 58px;
    height: 58px;
  }

  .product-footer .add-to-card-btn {
    width: 100%;
  }
}
