/* ==========================================================================
   Ristich Workshop — Redesign CSS (Authentic Copy + ref_new.png Aesthetics)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;600;700&family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&display=swap');

:root {
  /* Surface & Palette */
  --bg-dark: #131411;
  --bg-dark-card: #1c1e19;
  --bg-dark-elevated: #242721;
  --bg-light: #f7f5f0;
  --bg-light-card: #ffffff;
  --bg-light-muted: #efece5;
  --bg-sand: #eae5dc;
  
  /* Wood & Accent Tones */
  --accent-wood: #c58c60;
  --accent-gold: #d8a87b;
  --accent-terracotta: #a8583c;
  --accent-border: rgba(197, 140, 96, 0.35);

  /* Button Tokens */
  --btn-primary-bg: #e6dac8;
  --btn-primary-text: #171815;
  --btn-primary-hover: #f4ecdf;
  --btn-dark-bg: #1d1f1b;
  --btn-dark-hover: #292c26;

  /* Typography */
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-display: var(--font-serif);
  --font-hand: 'Caveat', 'Marck Script', cursive;

  /* Text Colors */
  --text-on-dark: #f6f5f0;
  --text-muted-dark: #a2a69d;
  --text-on-light: #181916;
  --text-muted-light: #676962;

  /* Borders & Lines */
  --border-dark: rgba(255, 255, 255, 0.1);
  --border-dark-subtle: rgba(255, 255, 255, 0.06);
  --border-light: rgba(24, 25, 22, 0.12);
  --border-light-subtle: rgba(24, 25, 22, 0.06);

  /* Layout */
  --site-max-width: 1700px;
  --header-height: 84px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  --transition: 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-on-dark);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--accent-gold);
  color: #141513;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), border-color var(--transition), background-color var(--transition);
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

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

svg {
  flex-shrink: 0;
}

:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

[hidden] {
  display: none !important;
}

.wrap {
  width: 100%;
  max-width: var(--site-max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .wrap {
    padding-inline: 40px;
  }
}

@media (min-width: 1200px) {
  .wrap {
    padding-inline: 56px;
  }
}

/* ==========================================================================
   Header
   ========================================================================== */
/* ==========================================================================
   Header (Floating transparent over hero like ref_new.png)
   ========================================================================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.site-header.scrolled {
  position: fixed;
  background: rgba(18, 19, 17, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

/* Original Logo Container */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform var(--transition);
}

.brand:hover img {
  transform: scale(1.05);
}

.brand>span {
  font-size: 11px;
  line-height: 1.45;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.brand-city {
  color: var(--accent-gold);
}

/* Desktop Nav: Enabled on large screens >= 1120px to prevent header collisions on tablet landscape */
.desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(12px, 1.6vw, 24px);
}

@media (min-width: 1120px) {
  .desktop-nav {
    display: flex;
  }
}

.desktop-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #e5e7e0;
  position: relative;
  padding-block: 6px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--accent-gold);
  transition: width var(--transition);
}

.desktop-nav a:hover {
  color: #ffffff;
}

.desktop-nav a:hover::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: none;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  min-height: 44px;
  align-items: center;
}

@media (min-width: 640px) {
  .header-phone {
    display: inline-flex;
  }
}

.header-phone:hover {
  color: var(--accent-gold);
}

.header-cta-btn {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  min-height: 44px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-full);
  color: #ffffff;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition);
  white-space: nowrap;
}

@media (min-width: 520px) {
  .header-cta-btn {
    display: inline-flex;
  }
}

.header-cta-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

/* Mobile & Tablet Menu Toggle (min 44x44px for WCAG touch compliance) */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: #ffffff;
  cursor: pointer;
}

@media (min-width: 1120px) {
  .menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: #171916;
  border-bottom: 1px solid var(--border-dark);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.mobile-menu a {
  font-size: 17px;
  padding-block: 8px;
  border-bottom: 1px solid var(--border-dark-subtle);
  color: #e5e6e0;
}

.mobile-menu[hidden] {
  display: none !important;
}

/* ==========================================================================
   Hero Section (Panoramic Workshop Scene like ref_new.png)
   ========================================================================== */
.hero {
  position: relative;
  background-color: #131411;
  background-image: linear-gradient(90deg, rgba(14, 15, 12, 0.98) 0%, rgba(14, 15, 12, 0.92) 38%, rgba(14, 15, 12, 0.45) 68%, rgba(14, 15, 12, 0.1) 100%),
                    url('/images/hero-bg.jpg');
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: calc(var(--header-height) + 50px);
  padding-bottom: 64px;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 639px) {
  .hero {
    background-position: 84% top;
    background-image: linear-gradient(180deg, rgba(14, 15, 12, 0.95) 0%, rgba(14, 15, 12, 0.88) 45%, rgba(14, 15, 12, 0.98) 100%),
                      url('/images/hero-bg.jpg');
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 44px;
    min-height: 600px;
  }
}

@media (min-width: 640px) and (max-width: 979px) {
  .hero {
    background-position: right 35%;
    background-image: linear-gradient(90deg, rgba(14, 15, 12, 0.96) 0%, rgba(14, 15, 12, 0.88) 55%, rgba(14, 15, 12, 0.45) 100%),
                      url('/images/hero-bg.jpg');
    padding-top: calc(var(--header-height) + 32px);
    padding-bottom: 52px;
    min-height: 680px;
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 780px;
    padding-top: calc(var(--header-height) + 64px);
    padding-bottom: 56px;
  }
}

.hero-main-wrap {
  position: relative;
  width: 100%;
}

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
  }
}

.hero-copy {
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.hero-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.4vw, 64px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--accent-gold);
}

.hero-location {
  font-size: 17px;
  font-weight: 600;
  color: #e5e8e0;
  margin-bottom: 10px;
}

.hero-description {
  font-size: 15px;
  line-height: 1.7;
  color: #b6b9af;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

@media (max-width: 639px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border: 1px solid var(--btn-primary-bg);
}

.btn-primary:hover {
  background-color: var(--btn-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(230, 218, 200, 0.2);
}

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

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-1px);
}

/* Hero Top Elements Bar */
.hero-top-bar {
  position: absolute;
  top: calc(var(--header-height) + 18px);
  left: 0;
  right: 0;
  z-index: 10;
  pointer-events: none;
}

.hero-top-bar-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hero-category-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 6px;
}

/* Workshop badge: upper-right of wrap on desktop/tablet, right-aligned on mobile */
.hero-corner-badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  background: rgba(235, 222, 208, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  pointer-events: auto;
}

.hero-corner-badge .badge-city {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #7d5635;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.hero-corner-badge .badge-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #241c15;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-corner-badge .badge-year {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #5d5144;
  margin-top: 3px;
  text-transform: uppercase;
}

@media (max-width: 639px) {
  .hero-top-bar {
    position: static;
    margin-bottom: 16px;
  }
  .hero-corner-badge {
    position: static;
    margin: 0 0 20px auto;
    margin-left: initial;
    margin-right: 0;
    width: fit-content;
    display: flex;
    padding: 8px 14px;
  }
}

/* Floating Handwritten Love Note: lower-right on desktop/tablet */
.hero-love-note {
  position: absolute;
  right: 16px;
  bottom: 24px;
  font-family: var(--font-hand);
  line-height: 1.25;
  color: #fffef8;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
  pointer-events: none;
  transform: rotate(-6deg);
  transform-origin: right center;
  font-size: clamp(22px, 2.2vw, 30px);
  text-align: right;
  max-width: 220px;
  z-index: 5;
}

@media (max-width: 767px) {
  .hero-love-note {
    display: none !important;
  }
}

/* ==========================================================================
   Craft Proof Band (Editorial 4-Pillars Strip)
   ========================================================================== */
.craft-proof-band {
  background-color: #121310;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 36px;
  position: relative;
  z-index: 2;
}

.proof-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 640px) {
  .proof-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 28px;
  }
}

@media (min-width: 1024px) {
  .proof-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

@media (min-width: 1024px) {
  .proof-item {
    padding-inline: 32px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }
  .proof-item:first-child {
    padding-left: 0;
    border-left: none;
  }
  .proof-item:last-child {
    padding-right: 0;
  }
}

.proof-num {
  font-family: var(--font-serif);
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 500;
  color: var(--accent-gold);
  line-height: 1;
  letter-spacing: -0.02em;
  opacity: 0.9;
}

.proof-title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.01em;
}

.proof-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted-dark);
  margin: 0;
  max-width: 32ch;
}

/* ==========================================================================
   Directions Section (3 Vertical Cards)
   ========================================================================== */
.directions-section {
  background-color: var(--bg-light);
  color: var(--text-on-light);
  padding-block: 84px;
}

.directions-heading {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  .directions-heading {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.directions-heading h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.directions-heading h2 span {
  color: var(--accent-terracotta);
}

.directions-heading p {
  font-size: 15px;
  color: var(--text-muted-light);
  max-width: 440px;
}

.directions-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .directions-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.direction-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
}

.direction-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: rgba(197, 140, 96, 0.4);
}

.direction-box-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #e8e6df;
  overflow: hidden;
}

.direction-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.direction-box:hover .direction-box-media img {
  transform: scale(1.05);
}

.direction-box-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.direction-box-tag {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-terracotta);
  font-weight: 700;
  margin-bottom: 8px;
}

.direction-box-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 10px;
  line-height: 1.25;
}

@media (min-width: 768px) and (max-width: 991px) {
  .directions-grid-3 {
    gap: 16px;
  }
  .direction-box-content {
    padding: 18px 16px;
  }
  .direction-box-title {
    font-size: 17px;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
  }
  .direction-box-text {
    font-size: 13px;
    margin-bottom: 14px;
  }
}

.direction-box-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted-light);
  margin-bottom: 20px;
  flex-grow: 1;
}

.direction-box-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-terracotta);
}

.direction-box-link svg {
  transition: transform var(--transition);
}

.direction-box:hover .direction-box-link svg {
  transform: translateX(4px);
}

/* ==========================================================================
   Catalog Section ("Упаковка, которую не выбрасывают")
   ========================================================================== */
.catalog-section {
  background-color: #161714;
  color: var(--text-on-dark);
  padding-block: 96px;
  border-top: 1px solid var(--border-dark);
}

.catalog-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: end;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .catalog-header {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

.catalog-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.catalog-header-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.catalog-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted-dark);
}

.catalog-price-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-gold);
}

.catalog-price-link:hover {
  text-decoration: underline;
}

/* Product Cards Grid */
.products-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) {
  .products-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background: #ffffff;
  color: var(--text-on-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.product-media {
  position: relative;
  width: 100%;
  height: 220px;
  background: #edeae2;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.product-media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.4s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.06);
}

.product-badge-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #141513;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
}

.product-badge-hit {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #f0deca;
  color: #3e2e22;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.03em;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 6px;
}

.product-card-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted-light);
  margin-bottom: 16px;
  flex-grow: 1;
}

.product-material-label {
  font-size: 11px;
  color: var(--text-muted-light);
  margin-bottom: 12px;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
}

.product-card-price {
  display: flex;
  flex-direction: column;
}

.price-main {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-on-light);
}

.price-tier {
  font-size: 11px;
  color: var(--text-muted-light);
}

.product-cart-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--radius-full);
  background: var(--bg-light-muted);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-light);
  cursor: pointer;
  transition: all var(--transition);
}

.product-cart-btn:hover {
  background: var(--accent-terracotta);
  color: #ffffff;
  border-color: var(--accent-terracotta);
}

.catalog-footnote {
  font-size: 12px;
  color: var(--text-muted-dark);
  margin-top: 32px;
}

/* Souvenirs Row */
.souvenirs-banner {
  margin-top: 56px;
  border-top: 1px solid var(--border-dark);
  padding-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .souvenirs-banner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.souvenirs-images-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.souvenir-photo-card,
.souvenir-thumb {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #222420;
}

.souvenir-photo-card img,
.souvenir-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.souvenirs-copy h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 12px;
}

.souvenirs-copy p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted-dark);
  margin-bottom: 20px;
}

/* ==========================================================================
   Process Section ("Есть задача, но нет готового решения?")
   ========================================================================== */
.process-section {
  background-color: #ffffff;
  color: var(--text-on-light);
  padding-block: 84px;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 980px) {
  .process-layout {
    grid-template-columns: 340px 1fr;
    gap: 56px;
  }
}

.process-cta-col h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-on-light);
  margin-bottom: 12px;
}

.process-cta-col h2 span {
  color: var(--accent-terracotta);
}

.process-cta-col p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted-light);
  margin-bottom: 24px;
}

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

@media (min-width: 768px) {
  .process-steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 170px;
  margin-inline: auto;
}

.step-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f1ede5;
  border: 1px solid rgba(197, 140, 96, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-terracotta);
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.step-body h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 4px;
  line-height: 1.25;
}

.step-body p {
  font-size: 12px;
  color: var(--text-muted-light);
  line-height: 1.45;
}

.step-connector {
  display: none;
}

@media (min-width: 768px) {
  .step-connector {
    display: block;
    flex: 1;
    height: 1px;
    border-top: 1.5px dashed #cfc8be;
    margin-top: 26px;
    min-width: 16px;
  }
}

/* ==========================================================================
   Interiors & Furniture Showcase Section
   ========================================================================== */
.services-section {
  background-color: #f7f5f0;
  color: var(--text-on-light);
  padding-block: 84px;
}

.services-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

@media (min-width: 768px) {
  .services-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.services-header-title h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-on-light);
}

.services-header-title h2 span {
  color: var(--accent-terracotta);
}

.services-header-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted-light);
  max-width: 440px;
}

.services-gallery-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .services-gallery-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (min-width: 1024px) {
  .services-gallery-row {
    grid-template-columns: repeat(3, 1fr) 52px;
    gap: 20px;
  }
}

.gallery-photo-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.gallery-photo-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #eae6dd;
  overflow: hidden;
}

.gallery-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-photo-card:hover .gallery-photo-wrap img {
  transform: scale(1.05);
}

.gallery-caption {
  padding: 18px 20px;
}

.gallery-caption h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 4px;
}

.gallery-caption p {
  font-size: 12px;
  color: var(--text-muted-light);
  line-height: 1.5;
}

.gallery-next-arrow {
  display: none;
}

@media (min-width: 1024px) {
  .gallery-next-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--text-on-light);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: all var(--transition);
  }
  .gallery-next-arrow:hover {
    background: #141513;
    color: #ffffff;
    border-color: #141513;
    transform: translateX(4px);
  }
}

/* ==========================================================================
   Unified Dark B2B & Personalization Section
   ========================================================================== */
.b2b-unified-section {
  background: #131411 radial-gradient(circle at 80% 20%, rgba(45, 48, 38, 0.6) 0%, rgba(19, 20, 17, 1) 70%);
  color: var(--text-on-dark);
  padding-block: 84px;
  border-top: 1px solid var(--border-dark);
}

.b2b-top-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

@media (min-width: 640px) and (max-width: 979px) {
  .b2b-top-row {
    grid-template-columns: 1.1fr 1fr;
    gap: 28px;
  }
}

@media (min-width: 980px) {
  .b2b-top-row {
    grid-template-columns: 1.1fr 1fr 0.9fr;
    gap: 40px;
  }
}

.b2b-pers-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 12px;
}

.b2b-pers-copy h2 span {
  color: var(--accent-gold);
}

.b2b-pers-copy p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted-dark);
  margin-bottom: 24px;
  max-width: 380px;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  transition: all var(--transition);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  transform: translateY(-1px);
}

.b2b-center-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #1c1e19;
  border: 1px solid var(--border-dark);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.b2b-center-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.b2b-stats-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 10px;
}

.b2b-stat-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
}

.b2b-stat-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stat-num {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.03em;
  min-width: 90px;
}

.stat-lbl {
  font-size: 13px;
  color: var(--text-muted-dark);
  line-height: 1.4;
}

@media (min-width: 640px) and (max-width: 979px) {
  .b2b-stats-col {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    padding-left: 0;
    margin-top: 12px;
  }
  .b2b-stat-item {
    border-bottom: none;
    padding-bottom: 0;
    flex-direction: column;
    gap: 6px;
  }
  .stat-num {
    min-width: unset;
  }
}

/* B2B Bottom Row */
.b2b-bottom-row {
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: stretch;
}

@media (min-width: 640px) and (max-width: 979px) {
  .b2b-bottom-row {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
  }
  .b2b-right-photo {
    display: none;
  }
}

@media (min-width: 980px) {
  .b2b-bottom-row {
    grid-template-columns: 1fr 1.2fr 0.8fr;
    gap: 36px;
  }
}

.b2b-corp-list h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.corp-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.corp-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #e2e4dd;
}

.corp-checks svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* B2B Calculator Card */
.b2b-calc-card {
  background: #ffffff;
  color: var(--text-on-light);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.b2b-calc-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 18px;
}

.b2b-calc-card .calc-field-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.b2b-calc-card .calc-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: #faf9f6;
  font-size: 16px;
  color: var(--text-on-light);
  outline: none;
  font-weight: 600;
}

.b2b-calc-card .quantity-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.b2b-calc-card .stepper-row {
  display: flex;
  gap: 8px;
}

.b2b-calc-card .calc-stepper-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: #f4f2eb;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-light);
  transition: background var(--transition);
}

.b2b-calc-card .calc-stepper-btn:hover {
  background: #e5dec9;
}

.b2b-calc-card .calc-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: #faf9f6;
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  color: var(--text-on-light);
}

.b2b-calc-card .calc-presets-row {
  display: flex;
  gap: 6px;
}

.b2b-calc-card .calc-preset-chip {
  flex: 1;
  min-height: 44px;
  padding: 8px 6px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid var(--border-light);
  background: transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text-muted-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.b2b-calc-card .calc-preset-chip[aria-pressed="true"],
.b2b-calc-card .calc-preset-chip:hover {
  background: #191b17;
  color: #ffffff;
  border-color: #191b17;
}

.b2b-calc-card .calc-price-summary {
  background: #f7f5ef;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-block: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.b2b-calc-card .calc-price-unit {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted-light);
}

.b2b-calc-card .calc-price-total {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-on-light);
}

.b2b-calc-card .calc-submit-btn {
  width: 100%;
  background: #141513;
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: background var(--transition);
  display: block;
}

.b2b-calc-card .calc-submit-btn:hover {
  background: var(--accent-terracotta);
}

.b2b-right-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #1c1e19;
  border: 1px solid var(--border-dark);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.b2b-right-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

/* ==========================================================================
   About Us, Quote & FAQ Section
   ========================================================================= */
.about-faq-section {
  background-color: #f7f5f0;
  color: var(--text-on-light);
  padding-block: 84px;
}

.about-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

@media (min-width: 680px) and (max-width: 839px) {
  .about-top-grid {
    grid-template-columns: 220px 1fr;
    gap: 28px;
    align-items: start;
  }
  .about-photo-col {
    grid-row: 1 / span 2;
  }
  .about-story-col {
    grid-column: 2;
  }
  .about-quote-col {
    grid-column: 2;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    padding-left: 0;
  }
}

@media (min-width: 840px) {
  .about-top-grid {
    grid-template-columns: 240px 1.2fr 1fr;
    gap: 40px;
  }
}

.about-photo-col {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-photo-col img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 30%;
}

.about-story-col h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.about-story-col p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted-light);
  margin-bottom: 16px;
}

.about-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-terracotta);
}

.about-link:hover {
  text-decoration: underline;
}

.about-quote-col {
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-quote-text {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.45;
  color: #3b3a36;
  font-style: italic;
  margin-bottom: 12px;
}

.about-signature {
  font-family: var(--font-hand);
  font-size: 48px;
  color: #7d654b;
  transform: rotate(-5deg);
  transform-origin: right center;
  align-self: flex-end;
  text-align: right;
  margin-right: 16px;
  margin-top: 4px;
}

/* FAQ Row */
.faq-row {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 840px) {
  .faq-row {
    grid-template-columns: 240px 1fr;
    gap: 40px;
  }
}

.faq-header-col h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 600;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  font-size: 22px;
  font-weight: 400;
  transition: transform var(--transition);
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted-light);
  padding-bottom: 20px;
  max-width: 680px;
}


/* ==========================================================================
   Order & Contacts Section
   ========================================================================== */
.order-section {
  background: #141512;
  color: var(--text-on-dark);
  padding-block: 96px;
  border-top: 1px solid var(--border-dark);
}

.order-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .order-grid-2 {
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(28px, 4vw, 64px);
  }
}

.contact-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.contact-copy h2 span {
  color: var(--accent-gold);
}

.contact-copy .section-intro {
  font-size: 15px;
  color: var(--text-muted-dark);
  margin-bottom: 32px;
  line-height: 1.65;
}

.contact-details address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
}

.phone-link:hover {
  color: var(--accent-gold);
}

.email-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 8px;
  font-size: 15px;
  color: var(--accent-gold);
}

.contact-address {
  margin-top: 12px;
  font-size: 14px;
  color: #ffffff;
}

.contact-address small {
  display: block;
  font-size: 12px;
  color: var(--text-muted-dark);
  margin-top: 4px;
}

.contact-signature {
  margin-top: 36px;
  font-size: 13px;
  color: var(--text-muted-dark);
}

/* Order Form Area */
.order-form-box {
  background: #1e201b;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.order-form-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.order-form-box .form-intro {
  font-size: 13px;
  color: var(--text-muted-dark);
  margin-bottom: 24px;
  line-height: 1.6;
}

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

@media (min-width: 600px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #d6d8d0;
  margin-bottom: 6px;
}

.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  background: #141512;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 16px;
  outline: none;
  transition: border-color var(--transition);
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent-gold);
}

.form-note {
  font-size: 11px;
  color: #83877d;
  margin-top: 12px;
  line-height: 1.6;
}

/* Mail Preview Box */
.mail-preview {
  background: #1e201b;
}

.mail-preview h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 8px;
}

.mail-preview p {
  font-size: 13px;
  color: var(--text-muted-dark);
  margin-bottom: 16px;
}

.mail-preview textarea {
  width: 100%;
  padding: 12px;
  background: #141512;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 16px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #0f100d;
  color: var(--text-muted-dark);
  padding-block: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-info span {
  display: block;
  font-size: 11px;
  color: #72756d;
  margin-top: 4px;
}

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

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
