/* -------------------------------------------------------------
 * UA-Vet.com — CSS Style Sheet
 * Sleek modern design, rich aesthetics, poster-inspired elements
 * ------------------------------------------------------------- */

/* Custom Properties / Design Tokens */
:root {
  --color-primary-indigo: #2F2FAC;
  --color-primary-indigo-dark: #1F1F80;
  --color-accent-orange: #FF9900;
  --color-accent-orange-hover: #E08700;
  --color-accent-red: #fc0606;
  --color-accent-red-dark: #C20000;
  --color-bg-cream-dark: #FFF1D4;
  --color-bg-cream-light: #FFF9EA;
  --color-text-title: #400000;
  --color-text-dark: #1A1A1A;
  --color-text-light: #555555;
  --color-text-gray: #4A4A4A;
  --color-white: #FFFFFF;
  --color-border: #E6DFD0;
  
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-title: 'Outfit', 'Arial Black', sans-serif;
  
  --header-height: 80px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-poster: 0 30px 60px rgba(0, 0, 0, 0.25);
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 24px;
}

/* Reset and Global Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-white);
  color: var(--color-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--color-text-title);
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-bg-cream {
  background-color: var(--color-bg-cream-light);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  display: block;
}

.title-underline {
  width: 80px;
  height: 4px;
  background-color: var(--color-accent-orange);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-primary {
  background-color: var(--color-white);
  color: var(--color-accent-red-dark);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  background-color: var(--color-bg-cream-light);
  color: var(--color-accent-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.btn-accent {
  background-color: var(--color-accent-orange);
  color: var(--color-white);
  box-shadow: 0 6px 20px rgba(255, 153, 0, 0.35);
}

.btn-accent:hover {
  background-color: var(--color-accent-orange-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.45);
}

/* Sticky Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  /* Variant 1 (default): moody vignette — glowing red center fading to near-black edges */
  background: radial-gradient(ellipse at center, var(--color-accent-red) 0%, var(--color-accent-red-dark) 35%, #4a0000 65%, #000000 100%);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.7);
  z-index: 1000;
  transition: background var(--transition-normal), box-shadow var(--transition-normal);
}

/* Variant 2: red blended with a warm golden-orange tint (matches the site's
   orange accent / cream palette). To use it instead of Variant 1, add
   class="header-theme-2" to the <header> tag. */
.main-header.header-theme-2 {
  background: linear-gradient(120deg, var(--color-accent-red-dark) 0%, var(--color-accent-red) 55%, #D9820B 130%);
  box-shadow:
    inset 0 3px 0 rgba(255, 193, 87, 0.5),
    0 6px 20px rgba(180, 90, 0, 0.35);
}

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

.logo-link {
  display: flex;
  align-items: center;
}

.header-logo-wrap {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-white);
  padding: 8px 16px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-fast);
}

.header-logo-wrap:hover {
  transform: scale(1.03);
}

.header-logo {
  height: 36px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-white);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-white);
}

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

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
  text-align: center;
  color: var(--color-white);
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 15, 60, 0.55) 0%, rgba(31, 31, 100, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  width: 100%;
  padding: 0 24px;
}

/* Poster Container (within Hero) — simplified, no box/background, just text over the video */
.poster-container {
  position: relative;
  padding: 0;
  margin: 0 auto 40px;
  max-width: 700px;
  animation: posterEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes posterEntrance {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.poster-main {
  position: relative;
  z-index: 2;
}

.poster-title {
  font-family: var(--font-title);
  font-size: 5rem;
  font-weight: 900;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 0.9;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(0, 0, 0, 0.3);
  margin-bottom: 6px;
}

.poster-subtitle {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: lowercase;
  letter-spacing: -0.5px;
  margin-bottom: 25px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.poster-badge {
  background-color: var(--color-primary-indigo);
  color: var(--color-white);
  padding: 8px 18px;
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  margin-bottom: 12px;
  box-shadow: 0 4px 8px rgba(47, 47, 172, 0.2);
}

.poster-tagline {
  font-size: 1.25rem;
  color: #FFFFFF;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-cta-container {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

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

/* Order Section */
.order-content-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.order-info-text .lead-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text-gray);
  margin-bottom: 20px;
}

.order-info-text .main-text {
  color: var(--color-text-light);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.warning-box {
  background-color: rgba(252, 6, 6, 0.05);
  border-left: 5px solid var(--color-accent-red);
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 320px;
  width: 100%;
  margin: 4px auto 0;
}

.warning-icon {
  width: 20px;
  height: 20px;
  color: var(--color-accent-red);
  flex-shrink: 0;
}

.warning-text {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--color-accent-red-dark);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0;
}

.order-contact-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.order-phone-display {
  display: block;
  text-align: center;
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text-gray);
  letter-spacing: -0.5px;
}

.order-phone-display:hover {
  color: var(--color-accent-red-dark);
}

/* Narrow, slanted (italic-style) icon strip — width roughly matches the
   "Як замовити" title above, shown right under the phone number */
.order-icons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 250px;
  padding: 10px 18px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 40px;
  box-shadow: var(--shadow-sm);
  transform: skewX(-10deg);
  transition: all var(--transition-normal);
}

.order-icons-row:hover {
  box-shadow: var(--shadow-md);
}

.order-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--color-white);
  flex-shrink: 0;
  transform: skewX(10deg); /* counter-skew so the icon itself stays upright */
  transition: all var(--transition-fast);
}

.order-icon-btn svg {
  width: 17px;
  height: 17px;
}

.order-icon-btn:hover {
  transform: skewX(10deg) translateY(-3px);
}

.order-icon-phone {
  background-color: var(--color-accent-orange);
}

.order-icon-viber {
  background-color: #7360F2;
}

.order-icon-telegram {
  background-color: #0088cc;
}

.order-icon-whatsapp {
  background-color: #25D366;
}

/* About Section */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-text-card {
  background-color: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
}

.about-text-card p {
  color: var(--color-text-light);
  margin-bottom: 20px;
  font-size: 1.02rem;
  text-align: justify;
}

.about-text-card p:last-child {
  margin-bottom: 0;
}

.about-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-main-image-container {
  width: 100%;
  height: 460px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--color-white);
}

.gallery-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-main-image:hover {
  transform: scale(1.05);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-thumb {
  height: 80px;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.7;
  transition: all var(--transition-fast);
}

.gallery-thumb:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.gallery-thumb.active {
  border-color: var(--color-primary-indigo);
  opacity: 1;
  box-shadow: 0 4px 10px rgba(47, 47, 172, 0.15);
}

/* Assortment Section */
.assortment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.assortment-column {
  background-color: transparent;
  padding: 0;
  border: none;
}

.assortment-list {
  list-style: none;
}

.assortment-list li {
  display: flex;
  align-items: center;
  padding: 10px 0;
  font-size: 0.98rem;
  color: var(--color-text-dark);
  font-weight: 500;
  border-bottom: 1px dashed rgba(230, 223, 208, 0.6);
}

.assortment-list li:last-child {
  border-bottom: none;
}

.orange-square {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--color-accent-orange);
  border-radius: 2px;
  margin-right: 14px;
  flex-shrink: 0;
}

/* We Support Section */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.support-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.support-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(47, 47, 172, 0.15);
}

.support-card-image-wrap {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
}

.support-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.support-card:hover .support-card-image {
  transform: scale(1.04);
}

.support-card-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.support-card-title {
  font-size: 1.8rem;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.support-card-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--color-primary-indigo);
  border-radius: 2px;
}

.support-card-text {
  color: var(--color-text-light);
  margin-bottom: 30px;
  font-size: 0.98rem;
}

.stats-counters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: auto;
}

.stat-item {
  background-color: var(--color-bg-cream-light);
  border: 1px solid rgba(230, 223, 208, 0.4);
  padding: 16px;
  border-radius: var(--border-radius-md);
  text-align: center;
  transition: background-color var(--transition-fast);
}

.stat-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 10px);
  margin: 0 auto;
  width: 100%;
}

.stat-item:hover {
  background-color: var(--color-bg-cream-dark);
}

.stat-number {
  display: block;
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-text-gray);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-light);
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* Find Us Section */
.find-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.find-us-info-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.info-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(47, 47, 172, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-indigo);
  flex-shrink: 0;
}

.info-icon svg {
  width: 24px;
  height: 24px;
}

.info-text h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: var(--color-text-title);
}

.info-text p {
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.schedule-days {
  margin-bottom: 4px;
}

.map-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-gray);
  display: inline-flex;
  align-items: center;
  text-decoration: underline;
}

.map-link:hover {
  color: var(--color-accent-orange);
}

.map-container {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  height: 320px;
}

.find-us-video-col {
  display: flex;
}

.video-card {
  background-color: var(--color-bg-cream-light);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.video-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.video-card .video-description {
  color: var(--color-text-light);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.route-video-container {
  flex-grow: 1;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--color-white);
  height: 300px;
}

.route-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
.main-footer {
  background-color: #171752; /* Deep Shaded Indigo */
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px;
  border-top: 5px solid var(--color-accent-orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.brand-subtext {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 6px;
}

.brand-motto {
  font-style: italic;
  font-family: var(--font-title);
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent-orange);
}

.footer-col h3 {
  color: var(--color-white);
  font-size: 1.2rem;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-accent-orange);
}

.footer-contact-item {
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-contact-item strong {
  color: var(--color-white);
}

.footer-link:hover {
  color: var(--color-accent-orange);
  text-decoration: underline;
}

.social-icons-container {
  display: flex;
  gap: 14px;
}

.social-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all var(--transition-fast);
}

.social-icon-btn svg {
  width: 20px;
  height: 20px;
}

.social-icon-btn:hover {
  background-color: var(--color-accent-orange);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(255, 153, 0, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.85rem;
}

.company-legal {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .order-content-grid,
  .find-us-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-section {
    height: 100vh;
  }
  
  .poster-title {
    font-size: 4rem;
  }
  
  .poster-subtitle {
    font-size: 1.8rem;
  }
  
  .assortment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .main-header {
    height: var(--header-height);
  }
  
  .header-container {
    padding: 0 16px;
  }
  
  .header-logo {
    height: 28px;
  }
  
  .header-logo-wrap {
    padding: 6px 12px;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-only {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    margin-left: 16px;
  }
  
  .mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--color-white);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: left center;
  }
  
  .mobile-menu-toggle.open span:first-child {
    transform: rotate(45deg);
  }
  
  .mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background-color: var(--color-primary-indigo-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 30px 40px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .main-nav.open {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }
  
  .nav-link {
    font-size: 1.2rem;
    display: inline-block;
    width: 100%;
  }
  
  .order-phone-display {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .poster-container {
    padding: 0 10px;
  }
  
  .poster-title {
    font-size: 2.8rem;
    letter-spacing: -1px;
  }
  
  .poster-subtitle {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  
  .assortment-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .support-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .gallery-main-image-container {
    height: 280px;
  }
  
  .gallery-thumbs {
    gap: 8px;
  }
  
  .gallery-thumb {
    height: 60px;
  }
}

/* Scroll to Top Button */
.scroll-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background-color: var(--color-accent-orange);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 153, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  z-index: 999;
}

.scroll-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top-btn:hover {
  background-color: var(--color-accent-orange-hover);
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(255, 153, 0, 0.5);
}

.scroll-to-top-btn svg {
  width: 24px;
  height: 24px;
}
