/* Fonts */
@font-face {
  font-family: 'RoadRadio';
  src: url('../fonts/RoadRadio.woff2') format('woff2'),
       url('../fonts/RoadRadio.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'RoadRadio-bold';
  src: url('../fonts/RoadRadio-Bold.woff2') format('woff2'),
       url('../fonts/RoadRadio-Bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Swiss721BT';
  src: url('../fonts/swiss_721_bt.woff2') format('woff2'),
       url('../fonts/swiss_721_bt.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SwissLight';
  src: url('../fonts/swiss_light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}



:root {
  --brand-primary: #0C2B48;
  --brand-accent: #ffd42a;
  --footer-dark: #0b2236;
  --text-primary: #917446;
  --text-secondary: #8F8F8F;
  --text-light: #bfbcb8;
  --bg-light: #f8f9fa;
  --bg-light-yellow: #fefbf5;
  --bg-white: #fff;
  --bg-black: #000;
  --road-radio:'RoadRadio';
  --road-radio-bold:'RoadRadio-bold';
  --swiss:'Swiss721BT';
  --swiss-light:'SwissLight';
}

html {
  scroll-behavior: smooth;
}

/* Respect user's reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  /* font-family: 'Swiss721BT', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji"; */
  font-family: var(--swiss);
  color: var(--text-primary);
  line-height: 1.6;
  letter-spacing: 0.5px;
  overflow-x: hidden;
}

::selection {
  background: var(--text-primary); /* selection background color */
  color: #fff;         /* text color when selected */
}

/* For Firefox (needs prefix) */
::-moz-selection {
  background: var(--text-primary);
  color: #fff;
}

/* Offset for fixed header */
/* Removed fixed header offset to allow transparent overlay */
body { padding-top: 0; }

h1, h2, h3, .display-5, .h1, .h2, .h3 {
  font-family: 'RoadRadio', Georgia, 'Times New Roman', serif;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
}

h2{
  font-family: var(--road-radio-bold);
}

.container {
  max-width: 1725px;
}

a{
  text-decoration: none;
}

ul{
  margin: 0;
  padding: 0;
  list-style-type: none;
}
/* Loader */
.loader{
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
}

.loader svg, .loader img{
  width: 350px;
  height: auto;
}

.header-logo{
  width: 200px;
}

.eyebrow {
  letter-spacing: 0.5px;
  font-size: .9rem;
  font-weight: 400;
  color: var(--text-secondary);
  /* text-transform: capitalize; */
  font-family: var(--swiss);
}

/* Hero */
.hero-banner {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}

/* Responsive hero adjustments */
@media (max-width: 768px) {
  .hero-banner {
    height: 100vh;
    min-height: 500px;
  }
}

@media (max-width: 576px) {
  .hero-banner {
    height: 75vh;
    min-height: 400px;
  }
}

.hero-content {
  z-index: 10;
  position: relative;
}

/* Scroll indicator */
.scroll-indicator {
  z-index: 10;
}

.scroll-text {
  font-family: 'RoadRadio', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.scroll-arrows {
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { 
    opacity: 1; 
    transform: translateY(0); 
  }
  50% { 
    opacity: 0.6; 
    transform: translateY(8px); 
  }
}

/** common colors **/
.white-color{
  color: #fff !important;
}

.gold-color{
  color: var(--text-primary) !important;
}

.black-color{
  color: #000 !important;
}

.exploreBtn.white-color svg, .exploreBtn.white-color path{
  fill: #fff !important;
}

.exploreBtn.black-color svg, .exploreBtn.black-color path{
  fill: #000 !important;
}


/* Category Tabs Vertical */
.category-tabs-vertical {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1rem;
}

.category-tab {
  background: none;
  border: none;
  padding: 1rem 1rem;
  font-family: var(--road-radio);
  font-size: 1.5rem;
  color: var(--text-secondary);
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  /* border-radius: 0 8px 8px 0; */
  position: relative;
}

.category-tab:hover {
  color: var(--text-primary);
  /* background: rgba(14, 87, 163, 0.05); */
}

.category-tab.active {
  font-family: var(--road-radio-bold);
  color: var(--text-primary);
  /* border-left-color: var(--brand-primary);
  background: rgba(14, 87, 163, 0.1); */
  font-size: 2rem;
  border-top: 1px solid var(--text-primary);
  border-bottom: 1px solid var(--text-primary);
}

/* .category-tab.active::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: var(--brand-primary);
  border-radius: 0 2px 2px 0;
} */

/* Category Display */
.category-content-wrapper {
  min-height: 400px;
}

.category-display {
  position: relative;
  /* border-radius: 12px; */
  overflow: hidden;
  /* box-shadow: 0 8px 32px rgba(0,0,0,0.12); */
}

.category-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 5/2.5;
}

@media(max-width:1200px){
  .category-image-container {
  aspect-ratio: 5/3;
}
}

.category-display-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  padding-bottom: 50px;
}

.category-display-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-display-image.active {
  opacity: 1;
}

.exploreBtn{
  font-size: 14px;
  color: var(--text-primary);
  font-family: var(--swiss);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
}

button.exploreBtn{
  background: none;
  padding: 0;
  outline: none;
  border: none;
}

.exploreBtn::after{
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 75%;
  height: 1px;
  background: var(--text-primary);
  transition: all 0.3s ease-in-out;
}

.exploreBtn.black-color::after{
  background: #000;
}

.exploreBtn.white-color::after{
  background: #fff;
}

.exploreBtn.gold-color::after{
  background: var(--text-primary);
}

.exploreBtn:hover, .card-collection:hover .exploreBtn{
  letter-spacing: 2px;
}

.exploreBtn:hover::after, .card-collection:hover .exploreBtn::after{
  width: 100%;
}

.exploreBtn.absoluteBtn{
  position: absolute;
  z-index: 9;
  left: 0;
  bottom: 0px;
  padding-bottom: 5px;
}

.exploreBtn span{
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
  transition: all 0.3s ease-in-out;
}

.exploreBtn:hover span, .card-body:hover .exploreBtn span{
  transform: translateX(-3px);
}


/* Collection Cards */
.card-collection {
  border: none;
  border-radius: 0;
  overflow: hidden;
  /* box-shadow: 0 4px 16px rgba(0,0,0,0.08); */
  transition: all 0.3s ease;
  /* background: #fff; */
}

.card-collection:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.card-collection img {
  object-fit: cover;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.card-collection:hover img {
  transform: scale(1.05);
}

.card-collection .card-body {
  padding: 1.5rem;
  border-top: none;
}

.card-collection .card-body h3 {
  font-family: var(--road-radio-bold);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-top: 15px;
}

.collection-link {
  display: inline-flex;
  align-items: center;
  color: #333;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.collection-link:hover {
  color: var(--brand-accent);
  transform: translateX(4px);
}

.collection-link svg {
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.collection-link:hover svg {
  transform: translateX(2px);
}

/* Footer */
.footer-dark {
  background: #917446;
  color: #ffffff;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-logo {
  height: 32px;
  margin-bottom: 0.5rem;
}

.footer-email {
  color: #ffffff;
  font-size: 0.9rem;
  margin: 0 0 1rem 0;
  opacity: 0.8;
}

.footer-email a{
  color: #fff;
}

.footer-email a:hover{
  color: #fff;
}

.footer-description {
  color: #ffffff;
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
  opacity: 0.7;
}

.footer-heading {
  font-family: 'RoadRadio', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.footer-heading a{
  text-decoration: none;
  color: #fff;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  letter-spacing: 1px;
}

.footer-link:hover {
  opacity: 1;
  color: #ffffff;
}

.footer-pagination {
  color: #ffffff;
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-social-link:hover {
  opacity: 1;
}

.footer-bottom, .footer-bottom a{
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

@media (max-width: 768px) {
  .footer-social {
    justify-content: flex-start;
  }
}

.btn-dark {
  background: #000;
}

.btn-accent {
  background: var(--brand-accent);
  color: #1b1b1b;
  border-color: var(--brand-accent);
}

.btn-accent:hover { filter: brightness(.95); }

.testimonial-card {
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
}

.btn-outline-dark:hover {
  background: #000;
  color: #fff;
}

/* Transparent header over hero */
header.fixed-top.bg-transparent {}
header.fixed-top img[alt="Aevier"] { filter: brightness(0) invert(1); }
header.fixed-top .store-locator { color: #fff; font-weight: 600;  padding-bottom: 2px; position: relative; }
header.fixed-top .store-locator::after { content: ''; position: absolute; bottom: -1px; left: 50%; width: 100%; height: 1px; background: var(--bg-white); transition: all 0.3s ease-in-out; transform: translateX(-50%);}
header.fixed-top .store-locator:hover::after { width: 50%;}


/* header.fixed-top .store-locator:hover { color: var(--brand-accent); border-bottom-color: var(--brand-accent); } */

header.fixed-top .menu-toggle { color: #fff; border: none; outline: none; }
header.fixed-top .menu-toggle:active { border: none; box-shadow: none;}
/* header.fixed-top .menu-toggle:hover { color: var(--brand-accent); } */
.menu-text, .store-locator { font-family: 'RoadRadio', Georgia, 'Times New Roman', serif; font-weight: 700; }


.menu-container{
  background: var(--brand-primary);
  color: var(--bg-light);
  z-index: 9999;
  position: fixed;
  width: 100%;

  overflow: hidden;

  left: 0;
  top: 0;
  font-family: var(--road-radio);
  padding: 40px 0px 40px 40px;
  transform: translateY(-101%);
  transition: all 0.5s ease-in-out;
}

.menu-container .swiper img{
  transition: all 0.2s ease-in-out;
}

.menu-container .swiper img:hover{
  transform: scale(1.02);
}

.menu-container.active{
  transform: translateY(0%);

}

.menu-container p{
  font-size: 16px;
  font-family: var(--swiss);
  color: var(--text-secondary);
}

.menu-container a, .menu-container a h5{
  color: #fff;
  text-decoration: none;
}
.menuClose{
  width: fit-content;
  cursor: pointer;
}
.menuClose svg{
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: auto;
  margin-right: 10px;
  cursor: pointer;
}

.menuClose span, .menuClose svg, .scroll-indicator{
  cursor: pointer;
}

.menuList li{
  margin-bottom: 20px;
}

.menuList a{
color: rgba(255, 255, 255, 0.29);
font-size: 35px;
font-style: normal;
font-weight: 700;
line-height: normal;
text-transform: uppercase;
transition: all 0.2s ease-in-out;
position: relative;
display: table;
}

.menuList a::after{
  display: block;
  content: '';
  width: 0px;
  height: 1px;
  background: var(--text-primary);
  position: absolute;
  top: calc(50% - 0.5px);
  right: -70px;
  transition: all 0.2s ease-in-out;
}

.menuList a.active::after, .menuList a:hover::after{
  width: 50px;
}

.menuList a:hover, .menuList a.active{
  letter-spacing: 2px;
  color: var(--text-primary);
}



/* Fixed Header on Scroll */
header.fixedHeader {
  background-color: var(--brand-primary) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Ensure header has proper positioning */
header.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
}

/* Why Choose Us Section */
.why-choose-item {
  text-align: center;
  padding: 2rem 1rem;
}

.why-choose-item h3 {
  font-family: var(--road-radio-bold);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.why-choose-item p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.why-choose-item img {
  /* filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%); */
  margin-bottom: 1.5rem;
  width: auto;
  height: 50px;
}

/* Inside Atelier Section */
.inside-atelier h2 {
  font-family: 'RoadRadio', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.inside-atelier p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Find Aevier Section */
.find-aevier h2 {
  font-family: 'RoadRadio', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.find-aevier p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Testimonial Section */
.testimonial-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  background: #fff;
}

.testimonial-card .card-body {
  padding: 3rem;
}

.testimonial-card blockquote p {
  font-family: 'RoadRadio', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--text-primary);
  line-height: 1.6;
  font-style: italic;
}

.testimonial-card .fw-bold {
  font-family: 'RoadRadio', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.1rem;
}

.testimonial-card .text-muted {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Utilities */
.object-fit-cover { object-fit: cover; }

/* Remove border-radius from all images */
img {
  border-radius: 0 !important;
}

/* Mobile Accordion Styles */
.category-accordion-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed{
  border-radius: 0px;
}

.accordion-button {
  padding: 1rem;
  border: none;
  background: #fff;
  box-shadow: none !important;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--text-primary);
  /* border-radius: 8px !important; */
}

.accordion-button:not(.collapsed) {
  background: var(--text-primary);
  color: #fff;
  box-shadow: none;
}

/* .accordion-button::after{
  background-image: url(../images/icons/chevron-down.svg) !important;
} */

.text-muted {
    --bs-text-opacity: 1;
    color: rgb(203 179 142) !important;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(14, 87, 163, 0.25);
  border-color: transparent;
}

.accordion-item {
  border: none;
  margin-bottom: 0.5rem;
}

.accordion-body {
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 0 0 8px 8px;
}

.accordion-body img {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Collections Swiper */
/* .collections-swiper {
  padding: 0 0 60px 0;
} */

.collections-swiper .swiper-slide {
  width: 300px;
  height: auto;
}

.collections-swiper .swiper-slide .card-collection {
  height: 100%;
  display: block;
  text-decoration: none;
}

.collections-swiper .swiper-slide .card-collection img {
  width: 100%;
  border-radius: 0;
}

/* Swiper Navigation Buttons */
.collections-swiper .swiper-button-next,
.collections-swiper .swiper-button-prev {
  color: var(--brand-primary);
  background: rgba(255, 255, 255, 0.9);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.collections-swiper .swiper-button-next:hover,
.collections-swiper .swiper-button-prev:hover {
  background: var(--brand-primary);
  color: white;
  transform: scale(1.1);
}

.collections-swiper .swiper-button-next:after,
.collections-swiper .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

/* Swiper Pagination */
.collections-swiper .swiper-pagination {
  bottom: 0;
}

.collections-swiper .swiper-pagination-bullet {
  background: var(--brand-primary);
  opacity: 0.3;
  width: 12px;
  height: 12px;
  margin: 0 6px;
}

.collections-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--brand-primary);
}

/* Inside Atelier Section */
.inside-atelier-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.inside-atelier-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.inside-atelier-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.inside-atelier-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  display: flex;
  align-items: center;
}

.inside-atelier-title {
  font-family: 'RoadRadio', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.1;
  color: white;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.inside-atelier-subtitle {
  font-size: 1.5rem;
  color: white;
  margin: 0;
  font-weight: 300;
}

.hero-banner{
  transform: none !important; /* Prevent ScrollSmoother from transforming iframe */
  pointer-events: auto;
}

.heroBanner{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden; /* cut off excess */
  transform: none !important; /* Prevent ScrollSmoother from transforming iframe */
  pointer-events: auto;
  padding-top: 56.25%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}  

.vimeoVideo {
  will-change: transform;
  backface-visibility: hidden;
}

.video-poster {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  z-index: 2;
}

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



/* Find Aevier Section */
/* .find-aevier-section {
  min-height: 80vh;
} */

.find-aevier-content {
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
}

.find-aevier-text {
  max-width: 500px;
  margin: 0;
  position: relative;
  z-index: 2;
}

.find-aevier-title {
  font-family: 'RoadRadio', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #917446;
  margin-bottom: 1.5rem;
  text-align: left;
}

.find-aevier-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  text-align: left;
}

.find-aevier-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin: 0;
  justify-content: flex-start;
}

.find-aevier-link:hover {
  color: var(--brand-primary);
  transform: translateX(4px);
}

.find-aevier-link svg {
  transition: transform 0.3s ease;
}

.find-aevier-link:hover svg {
  transform: translateX(2px);
}

/* .find-aevier-image {
  padding: 0;
} */

.find-aevier-icon{
  position: absolute;
  top: 0;
  left: 0;
  width: 193px;
  height: auto;
  z-index: 1;
}

.find-aevier-banner {
  width: 100%;
  height: auto;

  object-fit: cover;
  object-position: center;
}



/* Discover Universe Section */
.discover-universe-section {
  background-color: #D9D9D9;
  height: 80vh;
  display: flex;
  align-items: center;
}

.discover-universe-section h1 {
  font-family: 'RoadRadio', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.1;
  color: #917446;
  margin-bottom: 1rem;
}

.discover-universe-section p {
  font-size: 1.25rem;
  color: #8F8F8F;
  margin: 0;
}


/* Collections View All Button */
.collections-view-all {
  font-family: 'RoadRadio', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary);
  background: transparent;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.collections-view-all:hover {
  background: var(--brand-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(14, 87, 163, 0.3);
}

.collections-view-all svg {
  transition: transform 0.3s ease;
}

.collections-view-all:hover svg {
  transform: translateX(4px);
}

.menu-toggle-icon{
   width: 35px;
   gap: 8px;
   justify-content: flex-start; 
}

.menu-toggle-icon strong{
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.menu-toggle-icon strong:nth-child(2){
  width: 80%;
}

.menu-toggle-icon strong:last-child{
  width: 60%;
}

.menu-toggle:hover strong{
  width: 100%;
}

header{
  padding: 2.5rem 0rem;
  transition: all 0.2s ease-in-out;
}

header.fixedHeader{
  padding: 1rem 0rem;
}




/* Responsive adjustments for collections swiper */

 /*logo*/
 .header-logo img{
  width:100%;
  height: auto;
}

.topSpace{
  padding-top: 3rem;
} 
.bottomSpace{
  padding-bottom: 3rem;
}

.footer-social-link svg{
    max-width: 25px;
    max-height: 20px;
    width: auto;
    height: auto;
    margin: auto;
  }

.footer-social-link:hover{
  background: var(--brand-primary);
}

.menuSocial .footer-social-link:hover{
  background: var(--text-primary);
}

.mute-btn {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(145, 116, 70, 0.3);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mute-btn svg {
    width: 77%;
    height: auto;
    fill: white;
    pointer-events: none;
}

/************/

.toggleMenu{
  display: none;
}


.content_heading{
  font-size: 35px;
}

.categorySwiper a{
  color: #fff;
  text-decoration: none;
}

.categorySwiper img{
  transition: all 0.2s ease-in-out;
}

.categorySwiper a:hover img{
  transform: scale(1.03);
}


section{
  position: relative;
}

#about-aevier{
  z-index: 2;
  position: relative;
  background: var(--bg-light-yellow);
}
#innerBanner{
  z-index: 1;
  position: relative;
}

.menuLeftPanel, .menuRightpanel{
  min-height: 430px;
}

#categories{
  background: var(--bg-light-yellow);
}

/*************************/

.svgLoader {
  fill: none;              /* hide fill */
  stroke: #fff;            /* color of stroke */
  stroke-width: 2;         /* thickness */
  stroke-linecap: round;
  stroke-linejoin: round;

  /* animation setup */
  stroke-dasharray: 1000;  /* large number: total path length */
  stroke-dashoffset: 1000; /* fully hidden initially */
  /* animation: draw 5s linear forwards; */
  animation: draw 10s linear infinite alternate;
}

@keyframes draw {
 
  to {
    stroke-dashoffset: 0;
  }
 
}

/* Large screens - 1200px and above - Viewport-based scaling for 1920px resolution */
@media (min-width: 1200px) {

  .menuLeftPanel, .menuRightpanel {
    min-height: 23vw;
  }
  .container{
    max-width: 89.844vw;
  }
  .menu-container p{
  font-size: 0.8vw;
  }
  .categorySwiper h5, .collectionSwiper h5{
    font-size: 1.1vw;
  }
.content_heading{
  font-size: 1.6vw;
}
  .menu-container{
  padding: 3vw 0vw 3vw 3vw;
}
.menuClose svg{
  width: 1.5vw;
  margin-right: 0.7vw;
}

.menuClose span{
  font-size: 1vw;
}

.menuList li{
  margin-bottom: 1.6vw;
}

.menuList a{
font-size: 1.5vw;
}

/*************** mute button *******************/

  .mute-btn {
        bottom: 7.5vw;
        left: 1vw;
        width: 2vw;
        height: 2vw;
    }

  .category-vid .mute-btn{ 
    bottom: 15vw;
  }  

  .footer-bottom, .footer-bottom a{
    font-size: 0.8vw;
  }
  .find-aevier-icon{
    width: 10vw;
  }
  .card-collection .card-body h3 {
    padding-top: 0.78vw;
  }

.category-display-image {
  padding-bottom: 2.604vw;
}

.category-display-image.active {
  opacity: 1;
}

.exploreBtn{
  font-size: 0.833vw;
}
.exploreBtn span{
  margin-left: 1.042vw;
}


/********/

.topSpace{
  padding-top: 4vw;
} 
.bottomSpace{
  padding-bottom: 4vw;
}
  header{
  padding: 3vw 0vw;
}

header.fixedHeader{
  padding: 1.5vw 0vw;
}

  /*logo*/
  .header-logo{
    width:13vw;
  }

  /* Typography scaling */
  body {
    font-size: 1.033vw; /* 16px = 0.833vw + 0.2vw */
  }
  
  h1, h2, h3, .display-5, .h1, .h2, .h3 {
    font-size: 2.7vw; /* 48px = 2.5vw + 0.2vw */
  }
  
  .eyebrow {
    font-size: 1.3vw; 
  }
  
  .scroll-text {
    font-size: 0.9vw; 
  }
  
  /* Category tabs */
  .category-tab {
    padding: 0.781vw 0vw; 
    font-size: 2vw; 
  }

  .category-tab.active{
    font-size: 3.12vw;
  }
  
  .category-tabs-vertical {
    padding-left: 1.042vw; /* 20px = 1.042vw */
    gap: 0.26vw; /* 5px = 0.26vw */
  }
  
  /* Collection cards */
  .card-collection .card-body {
    padding: 0.781vw; /* 15px = 0.781vw */
  }
  
  .card-collection .card-body h3 {
    font-size: 1.5vw; /* 11px = 0.573vw + 0.2vw */
  }
  
  .collection-link {
    font-size: 0.617vw; /* 8px = 0.417vw + 0.2vw */
  }
  
  /* Footer */
  .footer-logo {
    height: 2.6vw; /* 32px = 1.667vw */
    margin-bottom: 1vw; /* 5px = 0.26vw */
  }
  
  .footer-email {
    font-size: 1vw; /* 9px = 0.469vw + 0.2vw */
    margin: 0 0 0.521vw 0; /* 0 0 10px 0 = 0 0 0.521vw 0 */
  }
  
  .footer-description {
    font-size: 0.83vw; /* 8px = 0.417vw + 0.2vw */
  }
  
  .footer-heading {
    font-size: 1.3vw; /* 8px = 0.417vw + 0.2vw */
    margin-bottom: 1vw; /* 10px = 0.521vw */
  }
  
  .footer-list li {
    margin-bottom: 0.7vw; /* 5px = 0.26vw */
  }
  
  .footer-link {
    font-size: 1vw; /* 9px = 0.469vw + 0.2vw */
  }
  
  .footer-pagination {
    font-size: 0.617vw; /* 8px = 0.417vw + 0.2vw */
    margin-top: 0.26vw; /* 5px = 0.26vw */
  }
  
  .footer-social {
    gap: 0.8vw; /* 7.5px = 0.391vw */
  }

  .footer-social-link svg{
    max-width: 1.4vw;
    max-height: 1vw;
    width: auto;
    height: auto;
    margin: auto;
  }
  
  /* Why Choose Us Section */
  .why-choose-item {
    padding: 1.042vw 0.521vw; /* 20px 10px = 1.042vw 0.521vw */
  }
  
  .why-choose-item h3 {
    font-size: 1.1vw; /* 12.5px = 0.651vw + 0.2vw */
    margin-bottom: 0.521vw; /* 10px = 0.521vw */
  }
  
  .why-choose-item p {
    font-size: 0.9vw; /* 10px = 0.521vw + 0.2vw */
  }
  
  .why-choose-item img {
    margin-bottom: 0.781vw; /* 15px = 0.781vw */
    height: 3.3vw;
    width: auto;
  }
  
  /* Inside Atelier Section */
  .inside-atelier h2 {
    font-size: 1.502vw; /* 25px = 1.302vw + 0.2vw */
    margin-bottom: 0.781vw; /* 15px = 0.781vw */
  }
  
  .inside-atelier p {
    font-size: 0.773vw; /* 11px = 0.573vw + 0.2vw */
    margin-bottom: 1.042vw; /* 20px = 1.042vw */
  }
  
  .inside-atelier-title {
    font-size: 2.283vw; /* 40px = 2.083vw + 0.2vw */
    margin-bottom: 0.521vw; /* 10px = 0.521vw */
    letter-spacing: 0.104vw; /* 2px = 0.104vw */
  }
  
  .inside-atelier-subtitle {
    font-size: 0.981vw; /* 15px = 0.781vw + 0.2vw */
  }
  
  /* Find Aevier Section */
  .find-aevier h2 {
    font-size: 1.502vw; /* 25px = 1.302vw + 0.2vw */
    margin-bottom: 0.781vw; /* 15px = 0.781vw */
  }
  
  .find-aevier p {
    font-size: 0.773vw; /* 11px = 0.573vw + 0.2vw */
    margin-bottom: 1.042vw; /* 20px = 1.042vw */
  }
  
  .find-aevier-title {
    font-size: 1.502vw; /* 25px = 1.302vw + 0.2vw */
    margin-bottom: 0.781vw; /* 15px = 0.781vw */
  }
  
  .find-aevier-description {
    font-size: 1vw; /* 11px = 0.573vw + 0.2vw */
    margin-bottom: 1.042vw; /* 20px = 1.042vw */
  }
  
  .find-aevier-link {
    font-size: 0.721vw; /* 10px = 0.521vw + 0.2vw */
    gap: 0.417vw; /* 8px = 0.417vw */
  }
  
  .find-aevier-content {
    padding: 2.083vw 1.042vw; /* 40px 20px = 2.083vw 1.042vw */
  }
  
  /* Discover Universe Section */
  .discover-universe-section h1 {
    font-size: 2.023vw; /* 35px = 1.823vw + 0.2vw */
    margin-bottom: 0.521vw; /* 10px = 0.521vw */
  }
  
  .discover-universe-section p {
    font-size: 0.851vw; /* 12.5px = 0.651vw + 0.2vw */
  }
  
  /* Testimonial Section */
  .testimonial-card .card-body {
    padding: 1.563vw; /* 30px = 1.563vw */
  }
  
  .testimonial-card blockquote p {
    font-size: 0.851vw; /* 12.5px = 0.651vw + 0.2vw */
  }
  
  .testimonial-card .fw-bold {
    font-size: 0.773vw; /* 11px = 0.573vw + 0.2vw */
  }
  
  .testimonial-card .text-muted {
    font-size: 0.669vw; /* 9px = 0.469vw + 0.2vw */
  }
  
  /* Collections */
  .collections-view-all {
    font-size: 0.669vw; /* 9px = 0.469vw + 0.2vw */
    padding: 0.625vw 1.25vw; /* 12px 24px = 0.625vw 1.25vw */
  }
  
  /* Swiper */
  /* .collections-swiper {
    padding: 0 0 3.125vw 0; 
  } */
  
  .collections-swiper .swiper-slide {
    width: 15.625vw; /* 300px = 15.625vw */
  }
  
  .collections-swiper .swiper-button-next,
  .collections-swiper .swiper-button-prev {
    width: 2.604vw; /* 50px = 2.604vw */
    height: 2.604vw; /* 50px = 2.604vw */
  }
  
  .collections-swiper .swiper-button-next:after,
  .collections-swiper .swiper-button-prev:after {
    font-size: 1.138vw; /* 18px = 0.938vw + 0.2vw */
  }
  
  .collections-swiper .swiper-pagination-bullet {
    width: 0.625vw; /* 12px = 0.625vw */
    height: 0.625vw; /* 12px = 0.625vw */
    margin: 0 0.313vw; /* 0 6px = 0 0.313vw */
  }
  
  /* Accordion */
  .category-accordion-image {
    width: 3.125vw; /* 60px = 3.125vw */
    height: 3.125vw; /* 60px = 3.125vw */
  }
  
  .accordion-button {
    padding: 0.521vw; /* 10px = 0.521vw */
    margin-bottom: 0.26vw; /* 5px = 0.26vw */
  }
  
  .accordion-body {
    padding: 0.521vw; /* 10px = 0.521vw */
  }
}


@media(max-width:1200px){
  .why-choose-item p br{
    display: none;
  }
}

@media (max-width: 991px) {
  .menu-container{
    height: 100vh;
    overflow: auto;
    padding: 40px 25px 40px 40px;
  }

  .menuList a::after{
    display: none;
  }

  .heroBanner, .inside-atelier-section{
    height: auto;
  }

  header{
    background: var(--brand-primary) !important;
  }
  #wrapper{
    padding-top: 107px;
  }
  .menuList a{
    font-size: 24px;
  }
}

@media (max-width: 768px) {

.menuSocial{
 margin-bottom: 20px;
}
  .inside-atelier-section {
  height: auto;
  }
  .inside-atelier-title {
    font-size: 2.5rem;
    letter-spacing: 1px;
  }
  
  .inside-atelier-subtitle {
    font-size: 1.2rem;
  }
  .find-aevier-content {
    padding: 2rem 1rem;
  }
  
  .find-aevier-title {
    font-size: 2rem;
  }
  
  .find-aevier-description {
    font-size: 1rem;
  }
  
  .find-aevier-banner {
    min-height: 50vh;
  }
  .discover-universe-section h1 {
    font-size: 2.5rem;
  }
  
  .discover-universe-section p {
    font-size: 1.1rem;
  }
  .collections-swiper .swiper-slide {
    width: 250px;
  }
  
  .collections-swiper .swiper-button-next,
  .collections-swiper .swiper-button-prev {
    display: none;
  }
  
  .collections-view-all {
    font-size: 0.8rem;
    padding: 10px 20px;
  }
}

@media(max-width:767px){
  .menuClose {
    margin-left: auto;
    position: sticky;
    z-index: 9;
    top: -20px;
    background: #0b0b0b;
    padding: 5px;
    border-radius: 5px;
}
.menuSocial{
  padding-bottom: 15px;
  border-bottom: 1px solid var(--text-secondary);
}
.toggleMenu{
  padding-bottom: 30px;
}
}

@media(max-width:576px){
  .storeIcon svg{
    width: 15px;
    height: auto;
  }
  .why-choose-item{
    border-bottom: 1px solid var(--text-secondary);
  }
  .menu-text{
    display: none;
  }
  header.fixedHeader {
    padding: 1.5rem 0rem;
  }
  .header-logo {
    width: 150px;
  }

  .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl, .row {
    --bs-gutter-x: 2.5rem;
  }

}


.privacy-policy .fixed-top, .page-template-disclaimer .fixed-top, .page-template-terms-conditions .fixed-top, .page-template-thank-you .fixed-top,
.error404 .fixed-top{
  padding: 1.5vw 0vw;
  background: var(--brand-primary);
}

.commonPadding {
  padding-top: 100px;

}

#notfound {
    position: relative;
}

.notfound h1 {
  font-size: 12rem;
  line-height: 10rem;
}

.thanksContainer {
   border: 2px solid;
  padding: 50px 0;
}
