/*
====================================
CUSTOM CSS - MINTVALUE
====================================
Table of Contents:
1. CSS Variables
2. Base Styles 
3. Components
4. Layout Sections
5. Responsive Styles
====================================
*/

/* ====================================
   1. CSS VARIABLES
==================================== */
:root {
  /* Colors */
  --accent: #efd2be;
  --primary: #1b2e47;
  --bg: #f6f7f8;
  --bg-alt: #a2b5ce;
  --text: #3e4248;
  --text-light: #f9f9f9;
  --topnav-text: #a2b5ce;
  --footer-bottom: #0f1b2a;
  --header-bg: #edcdb7;
  --header-bg-rgba: rgba(237, 205, 183, .85);
  --secondary-bg: #eff1f4;
  --footer-bg: #a1826c;
  
  /* Button Variables */
  --btn-primary-bg: #efd2be;
  --btn-primary-fg: #1b2e47;
  --btn-primary-gap: 20px;
}

/* ====================================
   2. BASE STYLES
==================================== */
body, h1, h2, h3, h4, h5, h6, .btn, .navigation {
  font-family: 'Montserrat', sans-serif;
}

.homepage-box {
  border: none;
}

.content-inner {
  max-width: 100% !important;
}

.project-email {
  text-transform: none !important;
}

.chat:before {
  display: none;
}

/* ====================================
   3. COMPONENTS
==================================== */

/* === Buttons === */
.btn.btn-cart.add-to-cart-button{
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-fg);
}

.mv-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}

.mv-btn--primary {
  font-size: 26px;
  font-weight: 500;
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-fg);
  padding: 15px 19px 15px 30px;
  height: 62px;
  text-transform: uppercase;
  text-decoration: none !important;
  line-height: 1;
}

.mv-btn--primary:hover,
.mv-btn--primary:focus { 
  opacity: .92; 
  text-decoration: none; 
}

.mv-btn__text { 
  line-height: 1; 
  color: var(--btn-primary-fg); 
}

.mv-btn__icon { 
  height: 18px; 
  width: auto; 
  margin-left: var(--btn-primary-gap); 
}

.mv-btn--spaced { 
  margin-top: 40px; 
  margin-bottom: 50px; 
}

/* === Chat Button === */
.social-buttons-wrapper .chat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-secondary);
  color: #fff !important;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 3px;
  border: 1px solid var(--color-secondary);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
}

.social-buttons-wrapper .chat:hover {
  background: var(--color-secondary-hover);
  border-color: var(--color-secondary-hover);
}

.social-buttons-wrapper .chat:before {
  margin: 0;
  font-size: 16px;
  line-height: 1;
}

/* === Page Sections === */
.page-section {
  padding: 80px 20px;
  text-align: center;
}

.page-title {
  font-size: 36px;
  margin-bottom: 30px;
  color: #d4ac8f;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.page-intro {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  max-width: 900px;
  margin: 0 auto 20px;
}

.homepage-group-title {
  font-size: 36px !important;
  font-weight: 700;
  color: var(--primary);
  width: fit-content;
  padding: 0 23px 7px;
  border-bottom: 1px solid var(--accent);
  text-transform: uppercase;
  margin: 0 auto 30px;
}

/* === Steps Component === */
.steps {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.step {
  flex: 1 1 280px;
  max-width: 300px;
  padding: 20px;
}

.step img {
  width: 120px;
  height: 120px;
  margin-bottom: 25px;
}

.step h2 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #222;
}

.step p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* === About Features === */
.mv-about__features--grid,
.mv-about__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 20px;
  text-align: center;
}

.mv-about__features--grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 20px;
}

.mv-about__feature img {
  width: 120px; 
  height: 120px; 
  object-fit: contain;
  display: block; 
  margin: 0 auto 16px;
}

.mv-about__feature-title {
  font-size: 16px;
  line-height: 1.5;
  color: #3e4248;
  margin-top: 28px;
  font: 700 26px/normal Montserrat, sans-serif;
  color: var(--primary);
}

/* === Contacts Block === */
.mv-contacts {
  margin-bottom: 40px;
}
 

.mv-contacts__list {
  list-style: none; 
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mv-contacts__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.2rem;
  font-weight: 500;
  color: #1b2e47; 
}

.mv-contacts__icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.mv-contacts__link,
.mv-contacts__text {
  text-decoration: none;
  color: inherit;
}

.mv-contacts__link:hover {
  text-decoration: underline;
}

/* === Appointment Styles === */
.mv-appointment__subtitle {
  font-weight: 500;
  font-size: 24px;
  color: var(--primary);
  width: fit-content;
  padding: 0 23px 7px;
  text-transform: uppercase;
  margin: 0 auto 30px;
}

.mv-steps-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 20px;
}

.mv-step {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.mv-step .step-num {
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  color: var(--primary, #1b2e47);
  flex: 0 0 auto;
}

.mv-step .mv-about__text {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
}

/* === Availability Status Labels === */
.availability span[style*="color"],
.availability-value .availability-label[style*="color"] {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1.4;
  color: #fff !important;
  border: none !important;
}

/* Coming soon — #ef900b */
.availability span[style*="#ef900b"],
.availability-value .availability-label[style*="#ef900b"] {
  background-color: #ef900b !important;
}

/* In stock — #3c840f */
.availability span[style*="#3c840f"],
.availability-value .availability-label[style*="#3c840f"] {
  background-color: #3c840f !important;
}

/* Sold — #d00000 */
.availability span[style*="#d00000"],
.availability-value .availability-label[style*="#d00000"] {
  background-color: #d00000 !important;
}

/* Preorder / Preorder model — #1511e5 */
.availability span[style*="#1511e5"],
.availability-value .availability-label[style*="#1511e5"] {
  background-color: #1511e5 !important;
}

/* === Parameter Table Styles === */
.params-section + tr > th,
.params-section + tr > td {
  padding-top: 8px;
}

.extended-description h3 {
  display: none;
}

/* ====================================
   4. LAYOUT SECTIONS
==================================== */

/* === Header & Navigation === */
.social-buttons-wrapper {
  margin-top: 0;
}

.link-icons { 
  flex-wrap: nowrap;
}

.mv-all-watches-wrap { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
}

/* === Top Navigation & Footer Colors === */
.top-navigation-bar,
.top-navigation-contacts,
.languagesMenu__content { 
  background-color: var(--footer-bg) !important; 
  border: none; 
}

.languagesMenu__list {
  background-color: var(--footer-bg);
}

#footer,
.footer-rows { 
  background-color: var(--footer-bg) !important; 
}

.footer-bottom { 
  background-color: var(--footer-bg) !important; 
}

.container.footer-bottom { 
  width: 100% !important; 
}

.footer-banner a {
  display: flex !important; 
}

.footer-banners {
  margin-top: 0 !important;
}

.custom-footer > div.extended {
  width: 245px;
}

.custom-footer h4 { 
  color: var(--accent); 
  font-weight: bold; 
}

/* === Footer Text Color === */
#footer,
#footer p,
#footer li,
#footer span,
.footer-rows,
.footer-rows p,
.footer-rows li,
.footer-rows span,
.custom-footer,
.custom-footer p,
.custom-footer li,
.custom-footer span {
  color: var(--text-light) !important;
}

/* Hide "Created by Shoptet" */
#footer .container.footer-bottom #signature {
  display: none !important;
}

/* === Navigation Styles === */
.languagesMenu__header {
  border: none;
}

.languagesMenu__header, 
.top-nav-button-login, 
.top-navigation-bar .dropdown button, 
.top-navigation-bar a {
  color: var(--text-light) !important;
  text-transform: capitalize;
}
.navigation-buttons a[data-target=cart] {
  color: var(--primary) !important;
}
.languagesMenu__header:hover, 
.top-nav-button-login:hover, 
.top-navigation-bar .dropdown button:hover, 
.top-navigation-bar a:hover {
  color: var(--primary) !important;
}
.navigation-buttons a[data-target=cart]:hover {
  color: var(--text-light) !important;
}

.top-nav-cart {
  margin-left: 10px;
}

.top-nav-cart > .btn.btn-icon, 
.top-nav-cart > a.btn.btn-icon {
  font-size: 14px !important;
}

/* === Top Navigation Menu Replacement === */
.top-navigation-menu {
  display: none !important;
}

.mv-shipping-link {
  color: var(--text-light) !important;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  margin-left: 40px;
  transition: color 0.3s ease;
}

.mv-shipping-link:hover {
  color: var(--primary) !important;
}

/* Hide shipping link on mobile */
@media (max-width: 767px) {
  .mv-shipping-link {
    display: none !important;
  }
}

/* === Search Styles === */
.header-top.search-input,
.search-input {
  background-color: transparent !important;
  border: 1px solid var(--primary);
  outline: none;
  color: var(--primary);
  box-shadow: none;
}

.header-top .search-input::placeholder,
.search-input::placeholder {
  color: var(--primary) !important;
}

button[data-testid="searchBtn"] {
  border-color: var(--primary) !important;
  color: var(--footer-bg) !important;
}

/* === Hero Section === */
.mv-hero {
  position: relative;
  z-index: -1;
  height: 327px;
  margin-top: -327px;
  overflow: hidden;
}

body.is-home .mv-hero {
  height: 692px;
}

.mv-hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-hero__video--desktop {
  display: block;
}

.mv-hero__video--mobile {
  display: none;
}

.header-hero-copy {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 112px;
  width: min(92%, 1100px);
  text-align: center;
  z-index: 5;
  pointer-events: none;
}

body.is-home .header-hero-copy { 
  display: block; 
}

.header-hero-copy h1 {
  text-shadow: 0 3px 26px rgba(29,31,35,.66);
  font-size: 57px; 
  font-weight: 700;
  color: #fff; 
  margin: 0;
  line-height: 1.2;
}

/* === Content Sections === */
.mv-about { 
  margin: 0 auto; 
}

.mv-about__text {
  margin-top: 28px;
  font: 400 24px/normal Montserrat, sans-serif;
  color: var(--text);
}

.mv-about__text p { 
  margin: 0 0 18px; 
}

.mv-about__text p:last-child { 
  margin-bottom: 0; 
}

/* === Sell/Book Sections === */
.mv-sell { 
  background-color: var(--bg); 
}

.mv-sell .mv-sell__grid { 
  margin-top: 28px; 
}  

.mv-sell .mv-sell__text { 
  margin-top: 40px; 
}  

.mv-sell__media { 
  position: relative; 
  margin: 0; 
}

.mv-sell__media > img {
  width: 516px; 
  height: 335px; 
  object-fit: cover; 
  display: block;
}

.mv-sell__note {
  position: absolute;
  top: 30px; 
  left: 380px; 
  right: 0;
  height: 264px;
  padding: 40px 50px 50px 40px;
  background-color: #f4e5da;
}

.mv-sell__lead,
.mv-sell__copy {
  font: 400 24px/normal Montserrat, sans-serif;
  color: var(--text);
  margin: 0 0 10px;
}

.mv-sell__lead { 
  font-weight: 600; 
}

.mv-sell__credit {
  position: absolute;
  left: calc(516px + 20px);
  bottom: 0;
  opacity: .5;
  font: 400 12px/normal Montserrat, sans-serif;
  color: var(--text);
}

.mv-sell__credit a { 
  color: var(--text); 
  text-decoration: underline; 
}

.mv-sell__cta,
.mv-book__cta { 
  display: flex; 
  justify-content: center; 
  margin-bottom: 48px; 
  margin-top: 40px; 
}

.mv-book { 
  padding-top: 46px;  
  position: relative; 
  z-index: 0;
}

.mv-newarrivals {
  padding-top: 50px; 
  position: relative; 
  z-index: 0;
}
.mv-blog {
  padding-top: 50px; 
  padding-bottom: 50px;
  position: relative; 
  z-index: 0;
}

.mv-blog__cta {
  display: flex;
  justify-content: center;
}
.mv-book::before, 
.mv-newarrivals::before, 
.mv-blog::before { 
  content: ""; 
  position: absolute; 
  top: 0; 
  bottom: 0; 
  left: 50%; 
  width: 100vw; 
  height: 100%; 
  transform: translateX(-50%); 
  background: var(--secondary-bg); 
  z-index: -1;
}

.mv-book__text, 
.mv-sell__text { 
  margin-top: 28px; 
  font: 400 24px/normal Montserrat, sans-serif; 
  color: var(--text); 
}

.mv-newarrivals > .h4.homepage-group-title,
h4.homepage-group-title, 
.mv-book > .h4.homepage-group-title,
.mv-blog .homepage-group-title.h4,
h4.homepage-group-title {
  margin-top: 0;
}

/* === Products Section === */
#products-2 .mv-collection-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 50px 0;
}

.mv-paydel__features {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}

/* === Footer Links === */
#footer .contact-box a,
#footer .news-item-widget a,
#footer .password-helper a,
#footer ul a { 
  color: var(--text-light) !important; 
}

.copyright, 
.copyright > .link-like, 
a { 
  color: var(--accent); 
}

/* === Miscellaneous === */
.rate-wrapper, 
.welcome div, 
.welcome h1 {
  max-width: 100%;
}

.homepage-box.welcome-wrapper {
  margin-top: 0; 
  padding-top: 0;
}

/* .contact-box ul li > span {
  padding-left: 0 !important;
} */

/* ====================================
   5. RESPONSIVE STYLES
==================================== */

/* === Desktop Styles (768px+) === */
@media only screen and (min-width: 768px) {
  #header {
    background-color: transparent !important;
    border: none;
    height: 327px;
  }
  
  .row.banners-row { 
    margin-left: 0; 
    margin-right: 0; 
    background-color: var(--bg); 
  }

  .row.banners-row > .next-to-carousel-banners {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }

  .navigation-wrapper {
    width: 100% !important;
    background-color: var(--header-bg-rgba);
    min-height: 327px;
    position: relative;
    --mv-header-top: 237px;
    --mv-nav-h: 46px;
  }
  
  .navigation-in { 
    background-color: transparent !important; 
  }

  .navigation-in > ul > li.exp > a, 
  .navigation-in > ul > li > a:hover {
    background-color: transparent !important;
    color: var(--text-light) !important;
  }

  /* Remove borders between menu items */
  .navigation-in > ul > li {
    border-left: none !important;
    border-right: none !important;
  }

  #header .site-name a img { 
    max-height: 130px; 
  }

  .header-top {
    justify-content: center;
    height: 237px;
    padding: 60px 0 47px;
    max-width: 1418px;
    margin: 0 auto;
  }
  
  #header .site-name { 
    text-align: center; 
  }

  #navigation {
    width: 1418px;
    margin: 0 auto;
    height: 91px;
    border-top: 1px solid var(--primary);
  }
  
  nav#navigation.visible.fitted ul.menu-level-1 {
    display: flex; 
    justify-content: stretch; 
    flex-wrap: nowrap; 
    width: 100%;
  }
  
  nav#navigation.visible.fitted ul.menu-level-1 > li {
    flex: 1 1 0; 
    text-align: center; 
    white-space: nowrap;
  }
  
  .navigation-in.menu > .menu-level-1 > li > a,
  .navigation-in.menu .menu-level-2 a,
  .navigationActions > li > a,
  .navigationActions__submenu a {
    font-size: 23px !important;
    font-weight: 600 !important;
    line-height: normal !important;
    color: var(--primary) !important;
    text-transform: uppercase !important;
  }
  
  .navigation-in.menu > .menu-level-1 > li > a:hover,
  .navigation-in.menu .menu-level-2 a:hover,
  .navigationActions > li > a:hover,
  .navigationActions__submenu a:hover {
    color: var(--text-light) !important;
    background-color: transparent !important;
  }

  /* Menu Helper Styles */
  .menu-helper {
    position: absolute;
    right: 16px;
    top: calc(var(--mv-header-top) + (var(--mv-nav-h) / 2));
    transform: translateY(-50%);
    z-index: 100;
    background: transparent;
    cursor: pointer;
  }

  .menu-helper > span {
    position: absolute;
    width: 1px; 
    height: 1px;
    overflow: hidden; 
    clip: rect(0 0 0 0);
  }

  .menu-helper .menu-level-1 {
    position: absolute;
    right: 0;
    top: 100%;
    min-width: 280px;
    background: var(--header-bg);
    padding: 12px 16px;
    border-radius: 8px;
    z-index: 101;
    display: none !important;
    opacity: 0; 
    visibility: hidden;
    transition: opacity .15s ease;
    border: none;
  }
  
  .menu-helper .menu-level-1 a b {
    color: var(--accent) !important;
  }
  
  .menu-helper:hover .menu-level-1,
  .menu-helper:focus-within .menu-level-1 {
    display: block !important;
    opacity: 1; 
    visibility: visible;
  }
  
  .menu-helper:after, 
  .menu-trigger:after {
    color: var(--accent) !important;
  }

  /* Override for non-home pages */
  body:not(.homepage):not(.is-home) .navigation-wrapper {
    --mv-header-top: 237px;
  }
  
  #category-filter-hover {
    display: block !important;
  }
  
  .menu-item-757 {
    display: none !important;
    visibility: hidden;
  }
  
  .top-navigation-bar {
    padding-top: 21px !important;
    padding-bottom: 21px !important;
  }
}

/* === Tablet & Mobile Styles (767px and below) === */
@media (max-width: 767px) {  
  .mv-about__features--grid,
  .mv-about__features {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
    gap: 20px; 
  }
  
  /* MOBILE HEADER STYLES - COMMENTED OUT
  #header {
    background-color: transparent !important;
  }
      
  #header .site-name {
    top: -38px !important;
  }
  
  .top-navigation-bar, 
  .top-navigation-contacts, 
  .languagesMenu__content {
    background-color: var(--header-bg-rgba) !important;
    height: 80px;
    padding-top: 12px;
  }
  
  .responsive-tools > a[data-target=navigation]:before, 
  .responsive-tools > a[data-target=navigation]:hover:before {
    color: var(--topnav-text) !important;
  }
  
  .responsive-tools > a[data-target=search] {
    margin-right: 40px;
  }
  
  body.is-home .mv-hero {
    height: 50vh;
  }
  
  .mv-hero {
    height: 90px;
    margin-top: -80px;
  }
  
  .mv-hero__video--desktop {
    display: none;
  }

  .mv-hero__video--mobile {
    display: block;
  }

  .header-hero-copy { 
    bottom: 56px; 
    width: 92%; 
  }
  
  .header-hero-copy h1 { 
    font-size: 32px; 
  }
  */
  /* END OF MOBILE HEADER STYLES */

  /* Mobile hero text size */
  .header-hero-copy h1 {
    font-size: 24px !important;
  }

  .content-wrapper.container .row > div {
    text-align: center;
  }
  
  .content-wrapper.container .row > .next-to-carousel-banners {
    text-align: center !important;
  }
  
  .homepage-group-title {
    font-size: 24px !important;
  }

  #navigation { 
    padding-right: 0; 
  }

  .menu-helper {
    position: static;
    right: auto; 
    top: auto; 
    transform: none;
    z-index: auto;
  }
  
  .menu-helper .menu-level-1 {
    position: static;
    width: 100%;
    min-width: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    display: none;          
    opacity: 1; 
    visibility: visible;
  }

  /* .header-top {
    padding-top: 20px;
    padding-bottom: 16px;
    height: auto;
  } */
  
  .header-hero-copy { 
    bottom: 15%; 
  }
  
  .Unmatched-excellence-Unaffected-by-time { 
    font-size: 28px; 
  }
  
  .Available-now { 
    font-size: 20px; 
  }

  .top-navigation-bar .search,
  .top-navigation-search { 
    display: none !important; 
  }

  .next-to-carousel-banners img {
    height: 120px;
    width: auto;
  }
  
  .mv-btn--primary {
    font-size: 16px;
    padding: 8px 15px 8px 26px;
  }
  
  .mv-sell__media > img {
    width: 100%;
    height: 30vh;
  }
  
  .mv-sell__note { 
    position: static; 
    height: auto; 
    margin-top: 16px; 
  }
  
  .mv-sell__credit { 
    position: static; 
    margin: 10px 0 0 0; 
  }
  
  .mv-sell__lead, 
  .mv-sell__copy, 
  .mv-about__text, 
  .mv-book__text, 
  .mv-sell__text {
    font: 400 18px / normal Montserrat, sans-serif;
  }
  
  .mv-about__feature-title {
    font: 700 18px / normal Montserrat, sans-serif;
  }
  .mv-about__feature img {
    width: 80px; 
    height: 80px; 
    margin-bottom: 12px;
  }

  /* Product Detail Styles */
  .p-detail-info {
    display: block;
    text-align: left;
  }

  .p-detail-info > div {
    display: block;
    margin: 4px 0;
  }

  .p-detail-info > div:before {
    content: none !important;
  }
  
  .p-info-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
  }

  .p-final-price-wrapper,
  .availability-value {
    display: inline-block;
    vertical-align: middle;
  }

  .p-final-price-wrapper {
    float: left;
  }

  .availability-value {
    float: right;
    font-size: 16px;
  }

  .p-info-wrapper .mv-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
  }

  .p-info-wrapper .mv-price-row .p-final-price-wrapper { 
    flex: 1 1 auto;
    margin: 0;
  }
  
  .p-info-wrapper .mv-price-row .availability-value { 
    flex: 0 0 auto;
    margin: 0;
    white-space: nowrap;
  }

  .p-info-wrapper .mv-price-row .price-final-holder {
    white-space: nowrap;
  }
  
  .social-buttons-wrapper .link-icons {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .mousetrap {
    height: 300px !important;
  }
  
  .content-wrapper.container .row > div {
    text-align: left !important;
  }
  
  .scrolled-down body:not(.ordering-process):not(.search-window-visible) #header .site-name {
    transform: translateY(-130%);
  }

  /* Banner Row Styles */
  .row.banners-row .next-to-carousel-banners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-items: center;
  }

  .row.banners-row .banner-wrapper {
    width: 100%;
    max-width: 150px;
  }
  
  .row.banners-row .banner-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .row.banners-row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .row.banners-row .homepage-group-title,
  .row.banners-row .mv-all-watches-wrap {
    text-align: center;
  }

  .row.banners-row .mv-all-watches-wrap a.mv-btn {
    display: inline-block;
    margin-top: 10px;
  }

  .social-buttons-wrapper {
    justify-content: center;
  }
  
  .social-buttons-wrapper .chat {
    width: 200px;
  }
  
  .top-navigation-tools--language .mv-blog-btn {
    display: none;
  }
  
  .basic-description {
    margin-top: 20px;
  }
  
  .mv-sell__text.mv-sell__mobile-hidden {
    display: none;
  }
  
  .mv-sell__note {
    padding: 20px;
  }
}

/* === Steps Responsive === */
@media (max-width: 768px) {
  .mv-steps-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .calendly-inline-widget.calendly-mobile {
    height: 1000px !important;
  }
}

@media (max-width: 640px) {
  .mv-step .step-text { 
    font-size: clamp(1.05rem, 0.95rem + 0.8vw, 1.4rem); 
  }
}

/* ====================================
   NEW ADDITIONAL STYLES
==================================== */

.content-wrapper.latest-contribution-box {
	display:none;
}

div[id*=wt-form-wrapper-] button[type=submit] {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  padding: 5px 15px;
  text-align: center;
  text-transform: uppercase;
  transition: all .3s ease-out;
  white-space: normal;
}

div[id*=wt-form-wrapper-] button[type=submit]:hover {
  background-color: var(--accent) !important;
  border-color: var(--accent) !important;
}

.availability span[style*="#000000"], .availability-value .availability-label[style*="#000000"] {
  background-color: #000000 !important;
}

.availability span[style*="#e411c8"], .availability-value .availability-label[style*="#e411c8"] {
  background-color: #e411c8 !important;
}

.footer-links-icons h4 {
	 color: var(--accent);
   font-weight: bold;
   text-align: center;

}
.footer-icons {
  justify-content: space-between;
}
@media (min-width: 768px) {
    .footer-icon {
        flex: 0 0 auto;
        width: 23%;
    }
}
@media (min-width: 321px) and (max-width: 767px) {
    .footer-icon {
        flex: 0 0 auto;
        width: 44%;
    }
}

.footer-icon img {
	height: 100%;
}
.container.footer-links-icons {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}
.btn.btn-default.unveil-button {
  background-color: var(--primary);
  border-color: var(--primary);
}
.content-wrapper-in {
  padding-bottom: 40px;
  background-color: var(--bg);
}
.mv-about__cta {
	  display: flex;
    justify-content: center;
    margin-top: 40px;
}
.mv-brand {
  padding: 40px 0;
  background: #f6f7f8;
}

.mv-brand__container {
  display: grid;
  grid-template-columns: 365px 1fr;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.mv-brand__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 36px;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  color: #111;
}

.mv-brand__text p {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}

.mv-brand__image {
  position: relative;
  width: 365px;
  height: 315px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv-brand__image img {
  width: 365px;
  height: 315px;
  object-fit: contain;
  object-position: center;
}

/* подпись */
.mv-brand__photo-credit {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: 8pt;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.45);
  padding: 2px 6px;
  border-radius: 4px;
  backdrop-filter: blur(3px);
}

.mv-brand__photo-credit a {
  color: #fff;
  text-decoration: none;
}

.mv-brand__photo-credit a:hover {
  text-decoration: underline;
}

/* адаптив */
@media (max-width: 900px) {
  .mv-brand__image {
    height: 320px;
  }
  .mv-brand__photo-credit {
    bottom: 6px;
    right: 8px;
    font-size: 7.5pt;
  }
}



/* --- Responsive --- */
@media (max-width: 900px) {
  .mv-brand__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .mv-brand__title {
    font-size: 30px;
  }
  .mv-brand__image {
    margin-top: 30px;
    width: 100%;
    height: auto;
  }
  .mv-brand__image img {
    width: 100%;
    height: auto;
  }
  .mv-brand__text p {
    font-size: 16px;
  }
}


.category-top .availability {
  visibility: hidden;
  display: none;
}
.mv-follow__icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.mv-follow__icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #fff; 
  border: 3px solid var(--accent);
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}

.mv-follow__icons a:hover {
  transform: scale(1.1);
  background-color: var(--accent); 
}

.mv-follow__icons a:hover img {
  filter: brightness(0) invert(1); 
}

.mv-follow__icons img {
  width: 24px;
  height: 24px;
  transition: filter 0.3s ease;
}


@media (max-width: 767px) {

}
@media (min-width: 767px) {
  .mv-about__block.contact-form > form {
    max-width: 60%;
}
  .row.banners-row > .next-to-carousel-banners {
    gap: 40px;
  }
}

/* // [MV] sticky toggle for existing filters button */
@media (max-width: 991px) {
  .filters-unveil-button-wrapper { position: relative; z-index: 50; }

  /* активируем липкость, но верх задаём через CSS-переменную */
  .filters-unveil-button-wrapper.is-sticky {
    position: sticky;
    top: var(--filters-sticky-top, 0px); /* // [MV] 0 при скролле вниз */
    background: #fff;
    z-index: 30;
    transition: box-shadow .2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,.06);
  }

  /* // [MV] убираем тень у самого низа фильтров, чтобы не выглядело «висящим» */
  .filters-unveil-button-wrapper.is-sticky.no-shadow { box-shadow: none; }
}

.category-title, .products-top-header {
  display: none;
}

@media (min-width: 321px) and (max-width: 767px) {
    .columns-mobile-2 .products-block>div .p .name {
        -webkit-line-clamp: 3 !important;
        }
  .products-block.products .p .name {
    min-height: 45px;
    height: 70px !important;
    max-height: 70px;
}
}
    
.row.banners-row .banner-wrapper { 
  display: flex;
  align-items: center;
  justify-content: center;
}