:root {
  --primary-color: #111;
  --text-color: #111;
  --bg-color: #fff;
  --gray: #eaeaea;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
}
body {
      margin: 0;
      min-height: 100vh;
      background-color: #fcf8f0; /* синій #004AAD з прозорістю 50% */
    }

/* --- Header --- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  height: 80px;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.7);
  
  z-index: 1000;
  border-bottom: 1px solid var(--gray);
}

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

.logo img {
  height: 100px;
  object-fit: contain;
  margin: 0 95px;
}

nav {
    margin-right: 55px;
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--text-color);
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}



.banner-text .highlight {
  font-weight: 500;
  color: #000000;
  position: relative;
  font-size: 18px;
}

.banner-text strong {
  font-weight: 500;
  color: #111;
}

/* --- Section styling --- */
section {
  padding: 4rem 1.5rem;
  max-width: 1400px;
  margin: auto;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.33rem, 5.33vw, 133px);
  font-weight: 650; 
  color: #111;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-align: left; 
}


/* --- ABOUT Section --- */
#about {
  max-width: 85%;
  margin: 50px auto;
  padding: 0 7px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #222;

  display: flex; 
  align-items: center; 
  gap: 40px; 
  flex-wrap: wrap;
}

.about-image-wrapper {
  flex: 1 1 40%;
  max-width: 500px;
  height: 500px;
  margin: 0; 
  position: relative;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.image-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.about-image-wrapper img {
  display: block;
  width: 100%;
  border-radius: 0px;
  position: relative;
  z-index: 2;
  object-fit: cover;
}

.about-text {
  flex: 1 1 45%;
  text-align: left;
  max-width: none;
  margin: 0;
}

.about-text h2 {
  font-size: 3rem;
  font-weight: 650;
  margin-bottom: 0.3em;
  color: #111;
}

.about-text .subtitle {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.8em;
  letter-spacing: 0.02em;
}

#readMoreBtn {
  background-color: #000;
  color: #fff; 
  border: 1px solid #fff; 
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
  text-align: center;
  font-family: 'Arial', sans-serif;
  min-width: 200px;
  margin-top: 0px;
  margin-bottom: 2.5em;
  border-radius: 15px;
}

#readMoreBtn:hover {
  background-color: #fff; 
  color: #000;
  border-color: #000;
}

.home-collection-wrap {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-collection-btn {
  background-color: #f3e8d2;
  color: #000;
  border: 1px solid #d8c9a8;
  padding: 22px 60px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  font-family: 'Arial', sans-serif;
  min-width: 200px;
  margin-top: 0px;
  border-radius: 15px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.home-collection-btn:hover {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

.home-collection-content {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.home-collection-content.show {
  max-height: 2000px;
}

.home-collection-content .product-grid {
  display: flex;
  justify-content: center;
}

.home-collection-content .product-card {
  width: 100%;
  max-width: 360px;
}


.full-text {
  text-align: left;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0 10px;
  border-top: 1px solid #ddd;
}

.full-text.show {
  max-height: 1000px;
  padding: 20px 10px 0 10px;
}

#products {
  padding: 0px 0px;
   background-color: rgba(0, 74, 173, 0);

}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 650;
  color: #111;
  text-align: center;
}



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

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

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

.product-grid.grid-4-cols {
  grid-template-columns: repeat(4, 1fr);
}
.section-category {
  /* border-left: 0.001px solid #eae9e9; */
  /* border-right: 0.001px solid #eae9e9; */
  /* border-top: 0.001px solid #eae9e9; */
  /* border-bottom: 0.001px solid #eae9e9; */
  /* border-radius: 20px; */
  margin: 30px 0;
  /* background-color: #ffffff; */
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 2fr; 
  }
}


.product-card {
  text-align: center;
  transition: transform 0.2s ease;
  font-family: 'Inter', sans-serif;
  padding: 10px;
  position: relative;
}

.product-card .sale-badge {
  position: absolute;
  top: 5px;
  right: 60px;
  width: 60px;
  height: 60px;
  z-index: 10;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.product-card .sale-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1rem;
  color: #111;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

.product-card p {
  font-size: 1rem;
  color: #444;
  font-weight: 600;
  margin-top: 0.5rem;
  line-height: 1.6;
}


.product-card img {
  width: 100%;
  height: 60vh;
  object-fit: scale-down;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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


.product-card p {
  font-size: 0.95rem;
  color: #555;
}

.product-title {
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  text-align: center;
}


.color-dot {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background-color: gray;
  border: 1px solid #ccc;
  display: inline-block;
}

.category-animated {
  opacity: 0;
  transform: scale(0.95) translateY(30px);
  transition: all 0.8s ease-out;
  text-align: center;
  font-size: 1.47rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  margin: 30px 0 10px;
  color: #111;
}

.category-animated.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* --- Size Guide section --- */
.size-guide {
  padding: 100px 20px;
  font-family: 'Inter', sans-serif;
  color: #111;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.size-title {
  font-size: 2.75rem;
  font-weight: 650;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.size-subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: #666;
  margin-bottom: 10px;
}

.size-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  padding: 40px;
  border-radius: 1px;
  /* border-left: 0.001px solid #eae9e9; */
  /* border-right: 0.001px solid #eae9e9; */
  /* border-top: 0.001px solid #eae9e9; */
  /* border-bottom: 0.001px solid #eae9e9; */
}

.size-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  background: #fff;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.03);
}
.size-table,
.size-visual {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* або flex-start/flex-end — як зручно */
}


.size-table th,
.size-table td {
  text-align: center;
  padding: 16px 12px;
  border-bottom: 1px solid #eee;
}

.size-table th {
  background: #f2f2f2;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #555;
}

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

.size-visual img {
  max-width: 100%;
  border-radius: 0px;
  transition: transform 0.3s ease;
}

.size-visual img:hover {
  transform: scale(1.015);
}

.size-caption {
  font-size: 0.95rem;
  color: #555;
  margin-top: 16px;
  line-height: 1.5;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

@media (max-width: 768px) {
  .size-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px;
  }

  .size-title {
    font-size: 2rem;
  }

  .size-subtitle {
    font-size: 1rem;
  }

  .size-table th,
  .size-table td {
    padding: 12px;
    font-size: 0.95rem;
  }
}
/* --- Image Modal --- */
.image-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(251, 249, 249, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.image-modal img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 1px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.image-modal.active {
  opacity: 1;
  pointer-events: auto;
}





/* --- Conditions section --- */
.conditions {
  max-width: 80%;
  margin: 0 auto 100px auto;
  padding: 0 20px;
  text-align: center;
}

.delivery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2.5rem;
  margin-top: 0px;
}

.delivery-item {
  width: 40%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  position: relative;
}



.delivery-item p {
  font-weight: 600;
  font-size: 1rem;
  color: #111;
  margin-top: 15px;
  line-height: 1.4;
}

.delivery-item.return p {
  font-size: 1rem;
  font-weight: 600;
  color: #555;
  margin-top: 8px;
}

.icon {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  position: relative;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.1));
}

#internationalDelivery {
  width: 92%;
}


.icon.truck {
  background: url('https://cdn-icons-png.flaticon.com/512/34/34627.png') no-repeat center/contain;
  animation: moveTruck 3s ease-in-out infinite alternate;
}

.icon.shipping {
  background: url('https://cdn-icons-png.flaticon.com/512/725/725643.png') no-repeat center/contain;
  animation: floatUp 4s ease-in-out infinite;
}

.icon.payment {
  background: url('/assets/images/money.png') no-repeat center/contain;
  width: 40px;
  height: 40px;
  animation: pulse 3s ease-in-out infinite;
}
.icon.international {
  background: url('/assets/images/international.png') no-repeat center/contain;
  width: 40px;
  height: 40px;
  animation: pulse 3s ease-in-out infinite;
}

.icon.visa {
  background: url('/assets/images/visa.svg') no-repeat center/contain;
  width: 40px;
  height: 40px;
  animation: pulse 3s ease-in-out infinite;
  margin: 0px 40px;
}

.icon.master {
  background: url('/assets/images/master-card.svg') no-repeat center/contain;
  width: 40px;
  height: 40px;
  animation: pulse 3s ease-in-out infinite;
  margin: 0px 40px;
}




/* Анімації */

@keyframes moveTruck {
  0% { transform: translateX(0); }
  100% { transform: translateX(15px); }
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 2px 2px rgba(0,0,0,0.1)); }
  50% { transform: scale(1.1); filter: drop-shadow(0 6px 6px rgba(0,0,0,0.15)); }
}

@keyframes rotateReturn {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes floatGlobe {
  0% { transform: translateY(0); }
  100% { transform: translateY(-5px); }
}


/* Адаптивність */
@media (max-width: 768px) {
  .delivery-container {
    flex-direction: column;
    align-items: center;
  }

  .delivery-item {
    width: 80%;
    max-width: 350px;
  }
}

/* --- Contacts section --- */
.contacts {
   background-color: rgba(0, 74, 173, 0);
  padding: 60px 0 40px 0;
  text-align: center;
}

.contacts-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.15rem;
  color: #222;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding: 10px 24px;
  border-radius: 0px;
  background: #fafafa;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.03);
  transition: 
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s,
    border-bottom 0.2s;
      border-left: 0.001px solid #eae9e9;
  border-right: 0.001px solid #eae9e9;  
  border-top: 0.001px solid #eae9e9;   
    border-bottom: 0.001px solid #eae9e9; 
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.contact-link i {
  font-size: 1.4em;
  color: #222;
  transition: color 0.2s;
}

.contact-link:hover, .contact-link:focus {
  background: #222;
  color: #fff;
  border-bottom: 1px solid #222;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
}

.contact-link:hover i, .contact-link:focus i {
  color: #fff;
}

.contact-link span {
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .contacts-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .contact-link {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 12px 0;
  }
}

.contacts-wrapper {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s, transform 0.7s;
}
.contacts.visible .contacts-wrapper {
  opacity: 1;
  transform: none;
}

.contacts-lead {
  max-width: 520px;
  margin: 0 auto 36px auto;
  color: #444;
  font-size: 1.13rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.6;
  opacity: 0.85;
}

/* Адаптивність */
@media (max-width: 600px) {
  .contacts a {
    margin: 0 1rem 1.5rem 1rem;
    font-size: 1rem;
  }
}


/* --- Footer --- */
footer {
  background-color: var(--primary-color);
  color: white;
  padding: 2rem 1rem;
  font-size: 24px;
  letter-spacing: 0.5px;
}

.footer-inner {
  max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

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

.footer-text p {
  margin: 0;
}

.footer-offer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  padding: 0.55rem 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.footer-offer p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-offer:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-1px);
}

.dthVOL {
  font-size: 16px;
  line-height: 22px;
  margin-right: 0px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  border-right: none;
  padding-right: 0px;
}

.deZPkc {
  font-family: OpenSans-Medium;
}

.MWEub {
  font-family: OpenSans-Regular;
  border: 0px;
  box-sizing: border-box;
  display: inline-block;
  margin: 0px;
  padding: 0px;
  white-space: pre-wrap;
  overflow-wrap: break-word;
}

.gHkSBI {
  font: 14px -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* --- Адаптивність --- */
@media (max-width: 700px) {
  #about {
    flex-direction: column;
  }
  .about-text {
    text-align: center;
  }
  .about-image-wrapper {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

/* --- МОДАЛЬНЕ ВІКНО --- */
.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
   background: rgba(251, 249, 249, 0.55);
  backdrop-filter: blur(1px);          
  -webkit-backdrop-filter: blur(1px);    
  transition: background 0.3s;
}


.modal.hidden {
  display: none;
}

.modal-overlay {
  position: absolute;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 1;

}

.modal-wrapper {
  position: relative;
  display: flex;
  max-width: 1000px;
  width: 90%;
  background: white;
  border-radius: 0;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
  flex-wrap: wrap;
  box-shadow: 0 8px 32px 0 rgba(60,60,60,0.18), 0 2px 8px 0 rgba(0,0,0,0.10);
}

.modal-gallery {
  position: relative;
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f7f7;
}

.modal-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
   pointer-events: none; 
}

.modal-details {
  flex: 1 1 50%;
  padding: 40px 30px;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-details h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111;
  margin: 75px 0;
}

.modal-details p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.modal-details .price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  margin-top: auto;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 2rem;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
    z-index: 10; 
  pointer-events: auto; 
}

.nav:hover {
  background: white;
}

.nav.prev { left: 10px; }
.nav.next { right: 10px; }



.order-button {
  background-color: #fff;
  color: #000; 
  border: 1px solid #000; 
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  border-radius: 0; 
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
  width: auto;
  max-width: none;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.order-button:hover {
  background-color: #000;
  color: #fff; 
  border-color: #000;
}
.order-button {
  min-width: 200px;
  margin: 20px auto 0 auto;
  display: block;
}
.size-link {
  display: block;    
  margin: 0;          
  padding: 0;       
  margin: 15vh auto 0 auto;
  text-align: center;
  color: #666666;
  font-family: 'Arial', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  user-select: none;
  transition: color 0.3s ease;
}

.size-link:hover,
.size-link:focus {
  color: #000;
  text-decoration: underline;
  outline: none;
}

/* Назва товару */
.modal-details h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
  color: #111;
  font-family: 'Inter', sans-serif;
}

/* Роздільна лінія */
.modal-divider {
  height: 1px;
  background: #ddd;
  margin: 10px 0 20px 0;
  width: 100%;
}

/* Кольорові квадратики */
.color-options {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.color-dot {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 1px solid #ccc;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.color-dot:hover,
.color-dot.active {
  border-color: #111;
}

.modal-description {
  line-height: 1.5;
  color: #444;
  font-size: 1rem;
  margin-bottom: 30px;
  white-space: pre-line; 
  font-family: 'Inter', sans-serif;
}

/* Ціна */
.modal-price {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #111;
  font-family: 'Inter', sans-serif;
}  
.discount-label {
  color:  #004AAD !important;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 4px;
}




.custom-note {
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  font-size: 18px;
  color: #333;
  font-weight: 500;
}



.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: rgba(0, 74, 173, 0.015);             /* білий фон */
  color: #000;                  /* чорний текст */
  font-family: 'Inter', sans-serif;
  font-weight: 500;             /* тонкий, елегантний текст */
  font-size: 14px;
  letter-spacing: 1px;          /* легке розрідження, як у Zara */
  padding: 5px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  text-transform: uppercase;    /* великі літери для ефекту Zara */
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* --- Holiday Branch Animation --- */
.holiday-branch {
  position: absolute;
  top: 40px;
  left: 140px;
  z-index: 999;
  cursor: pointer;
}

.branch-image {
  max-width: 120px;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.branch-image.swing {
  animation: swing 0.6s ease-in-out;
  transform-origin: top center;
}

@keyframes swing {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-15deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(15deg); }
  100% { transform: rotate(0deg); }
}

/* Snow Container */
#snow-animation-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

/* Mobile version */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    width: 100%;
  }

  .holiday-branch {
    position: absolute;
    top: 17px;
    left: 56px;
    z-index: 999;
    cursor: pointer;
  }

  .branch-image {
    height: 100px;
  }
}

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: #fff;
  color: #111;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, box-shadow 0.2s ease;
  z-index: 9999;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

#scrollTopBtn:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

#scrollTopBtn svg {
  width: 22px;
  height: 22px;
  stroke: #111;
}