/* ===== CSS VARIABLES (ROOT) ===== */
:root {
  /* Primary Colors */
  --primary-black: #000000;
  --primary-white: #ffffff;
  --primary-red: #ff0000;
  --primary-grey: #808080;
  --secondary-grey: #e7e7e7;

  /* Secondary Colors */
  --secondary-light-grey: #f5f5f5;
  --secondary-dark-grey: #333333;
  --secondary-beige: #f5f5dc;
  --secondary-cream: #fffdd0;

  /* Accent Colors */
  --accent-yellow: #f9d342;
  --accent-green: #228b22;
  --accent-brown: #8b4513;

  /* Typography */
  --font-primary: "Arial", sans-serif;
  --font-secondary: "Helvetica", sans-serif;

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 64px;
}

/* ===== GLOBAL RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
}

img,
div,
section,
p,
h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
textarea,
select,
option,
label,
span,
a,
li,
ul,
ol,
table,
tr,
td,
th,
tbody,
thead,
tfoot,
form,
fieldset,
legend,
figure,
figcaption {
  padding: 0;
  margin: 0;
}

/* Dynamic content transition styles */
.dynamic-text,
.dynamic-image {
  transition: all 0.5s ease-in-out;
}

.dynamic-text.fade-out {
  opacity: 0;
  transform: translateY(-10px);
}

.dynamic-text.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.dynamic-image.fade-out {
  opacity: 0;
  transform: scale(0.95);
}

.dynamic-image.fade-in {
  opacity: 1;
  transform: scale(1);
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--primary-black);
  background-color: var(--primary-white);
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow-x: hidden;
}

.container {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}


/* --------------------------TOP HERO SECTION ===== */  
.top-hero {
  width: 100%;
  height: 700px;
  min-height: 90vh;
  overflow: hidden;

  margin-top: -6rem;
}


.top-hero-swiper {
  width: 100%;
  height: 100%;
}

.top-hero-swiper .swiper-slide .top-hero-slide {
  width: 100%;
  height: 100%;

  position: relative;
}

.top-hero-swiper .swiper-slide .top-hero-slide-content {
  position: absolute;
  top: 70%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 100%;
  height: 100%;

  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items:start;
  justify-content: center;
  max-width: 90%;
  gap: 1rem;
}

.top-hero-swiper .swiper-slide .top-hero-slide-content h2 {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-white);
}

.top-hero-swiper .swiper-slide .top-hero-slide-content p {
  font-size: 1.5rem;
  color: var(--primary-white);
  max-width: 400px;
}

.top-hero-swiper .swiper-slide .top-hero-slide-content button {
  background-color: var(--primary-white);
  color: var(--primary-black);
  padding: 1rem 2rem;
  border-radius: 5px;
  width: auto;
}

.top-hero-swiper .swiper-slide picture.top-hero-picture,
.top-hero-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-hero-swiper .swiper-slide picture.top-hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



@media (max-width: 768px) {
  
.top-hero {
  width: 100%;
  height: 500px;
  min-height: 500px;
  overflow: hidden;

  margin-top: -6rem;
}


.top-hero-swiper {
  width: 100%;
  height: 100%;
}

.top-hero-swiper .swiper-slide .top-hero-slide {
  width: 100%;
  height: 100%;

  position: relative;
}

.top-hero-swiper .swiper-slide .top-hero-slide-content {
  position: absolute;
  top: 70%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 100%;
  height: 100%;

  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items:start;
  justify-content: center;
  max-width: 90%;
  gap: 1rem;
}

.top-hero-swiper .swiper-slide .top-hero-slide-content h2 {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-white);
}

.top-hero-swiper .swiper-slide .top-hero-slide-content p {
  font-size: 1.5rem;
  color: var(--primary-white);
  max-width: 400px;
}

.top-hero-swiper .swiper-slide .top-hero-slide-content button {
  background-color: var(--primary-white);
  color: var(--primary-black);
  padding: 1rem 2rem;
  border-radius: 5px;
  width: auto;
}

.top-hero-swiper .swiper-slide picture.top-hero-picture,
.top-hero-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-hero-swiper .swiper-slide picture.top-hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

}

/* ===== HERO SECTION ===== */
.hero {
  width: 100%;
  height: 700px;
  padding: 2rem 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Hero Swiper Styles */
.hero-swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-swiper .slider.swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative !important;

  z-index: 10 !important;
}

/* .hero-swiper {
  background-color: blue !important;
} */
.hero-swiper .slider.swiper-slide-active {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative !important;
  z-index: 1000 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.hero-pagination {
  position: absolute !important;
  bottom: 50% !important;
  right: 0rem !important;
  left: auto !important;
  width: auto !important;

  z-index: 1000 !important;
  display: flex;
  gap: 10px;
  justify-content: center;
  rotate: 90deg;
}

.hero-pagination .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background-color: var(--primary-white) !important;
  opacity: 0.5;
  transition: all 0.3s ease;
  border-radius: 50%;
  cursor: pointer;
}

.hero-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-yellow) !important;
  opacity: 1 !important;
  transform: scale(1.2);
}

.hero .container {
  width: 90%;
  height: 100%;
  border-radius: 20px;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  position: relative;
  overflow: hidden;
  padding: 0 !important;
  margin: 0 !important;
}

.hero-content-main {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  position: relative;
  z-index: 10;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;

  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}

.hero-swiper {
  position: relative;
  z-index: 10;
}

.hero .container .hero-content-main .hero-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
}

.hero .container .hero-content-main .hero-container .hero-content-top {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-top
  .hero-text-underlay {
  font-size: calc(25vw);
  color: var(--primary-grey);
  opacity: 0.25;
  font-weight: bold;
  position: absolute;
  z-index: 0;
  font-style: italic;
}

.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-top
  .hero-text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  position: relative;
  z-index: 10;
}

.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-top
  .hero-text
  .hero-text-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-top
  .hero-text
  .hero-text-content
  .hero-text-image {
  width: auto;
  height: 70%;
  object-fit: contain;

  animation: move-up-down 2s ease-in-out infinite;
}

@keyframes move-up-down {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}

.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-top
  .hero-text
  .hero-text-content
  .hero-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-top
  .hero-text
  .hero-text-content
  p {
  font-size: calc(18vw);
  color: var(--primary-white);
  font-weight: bold;
  font-style: italic;
}

.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-top
  .hero-text
  .hero-text-content
  .hero-text-white {
  color: var(--primary-white);
}

.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-top
  .hero-text
  .hero-text-content
  .hero-text-yellow {
  color: var(--accent-yellow);
  text-align: center;
  font-style: italic;

  line-height: 1;
}

.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-top
  .hero-text
  .hero-text-content
  .hero-text-white {
  color: var(--primary-white);
  line-height: 1;
}

.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-top
  .hero-text
  .hero-text-content
  .hero-text-product-name-l {
  font-size: calc(2.5vw);
  font-style: italic;
  text-align: start;
  width: 100%;
  padding-left: 10%;
  color: var(--primary-white);
}

.left-side {
  animation: move-left-right 2s ease-in-out;
}

.right-side {
  animation: move-right-left 2s ease-in-out;
}

@keyframes move-left-right {
  0% {
    transform: translateX(-300px);
  }
  50% {
    transform: translateX(0px);
  }
}

@keyframes move-right-left {
  0% {
    transform: translateX(300px);
  }
  50% {
    transform: translateX(0px);
  }
}

/* ===== HERO BOTTOM ===== */

.hero .container .hero-content-main .hero-container .hero-content-bottom {
  width: 100%;
  height: 30%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;

  gap: 3rem;
  padding-bottom: 3rem;
}

.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-bottom
  .men-swiper,
.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-bottom
  .women-swiper,
.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-bottom
  .kids-swiper {
  width: 30% !important;
  height: 100% !important;
  display: flex;

  position: relative !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-bottom
  .men-swiper
  .swiper-wrapper,
.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-bottom
  .women-swiper
  .swiper-wrapper,
.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-bottom
  .kids-swiper
  .swiper-wrapper {
  width: 100% !important;
  display: flex !important;
}

.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-bottom
  .men-swiper
  .swiper-slide,
.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-bottom
  .women-swiper
  .swiper-slide,
.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-bottom
  .kids-swiper
  .swiper-slide {
  height: 200px;
}

.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-bottom
  .men-swiper
  .swiper-slide
  .carousel-item,
.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-bottom
  .women-swiper
  .swiper-slide
  .carousel-item,
.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-bottom
  .kids-swiper
  .swiper-slide
  .carousel-item {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
}

.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-bottom
  .men-swiper
  .swiper-slide
  .carousel-item
  img,
.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-bottom
  .women-swiper
  .swiper-slide
  .carousel-item
  img,
.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-bottom
  .kids-swiper
  .swiper-slide
  .carousel-item
  img {
  width: 80% !important;
  height: 80% !important;
  object-fit: contain !important;
  transition: transform 0.3s ease !important;
}

/* Active slide (center) - scaled up to 1.2 */
/* 
.swiper-slid .carousel-item {
  transform: scale(0.5) !important
  }

.swiper-slide-active .carousel-item {
transform: scale(1.2) !important;
} */

/* Non-active slides (flanking) - scaled down to 0.8 */
.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-bottom
  .men-swiper
  .swiper-slide:not(.swiper-slide-active)
  .carousel-item
  img,
.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-bottom
  .women-swiper
  .swiper-slide:not(.swiper-slide-active)
  .carousel-item
  img,
.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-bottom
  .kids-swiper
  .swiper-slide:not(.swiper-slide-active)
  .carousel-item
  img {
  transform: scale(0.7);
}

.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-bottom
  .men-swiper
  .swiper-slide-active
  .carousel-item
  img,
.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-bottom
  .women-swiper
  .swiper-slide-active
  .carousel-item
  img,
.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-bottom
  .kids-swiper
  .swiper-slide-active
  .carousel-item
  img {
  transform: scale(1.1);
}

.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-bottom
  .button-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 30%;
  height: 100%;

  gap: var(--spacing-sm);

  z-index: 100 !important;
}

.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-bottom
  .button-container
  .carousel-btn {
  width: 100%;
  height: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-white);
  color: var(--primary-white);
  cursor: pointer;
}

.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-bottom
  .button-container
  .carousel-btn.white {
  background-color: var(--primary-white);
  color: var(--primary-black);
}

.carousel-btn {
  background-color: transparent;
  color: var(--primary-gray);
  border: 1px solid var(--primary-grey);
  width: 40px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.carousel-btn:hover {
  background-color: var(--primary-black);
  color: var(--primary-white);
}

.carousel-btn.white:hover {
  background-color: var(--primary-black) !important;
  color: var(--primary-white) !important;
}

.carousel-btn.dark:hover {
  background-color: var(--primary-white);
  color: var(--primary-black) !important;
}

.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-bottom
  .hero-text {
  width: 30%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-bottom
  .hero-text
  h3 {
  font-size: 1.5rem;
  color: var(--primary-white);
  text-align: start;
}

.hero
  .container
  .hero-content-main
  .hero-container
  .hero-content-bottom
  .hero-text
  p {
  font-size: 1rem;
  line-height: 1;
  color: var(--primary-grey);
}

/* ===== HERO TEXT ===== */
.hero .container .hero-content-main .hero-container .hero-txt span {
  line-height: 1;
  padding: 0%;
  margin: 0%;
}

.hero
  .container
  .hero-content-main
  .hero-container
  .hero-txt
  .hero-text-product-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: start;
  justify-content: start;
}

.hero
  .container
  .hero-content-main
  .hero-container
  .hero-txt
  .hero-text-product-info
  .price {
  font-size: calc(3vw);
  font-weight: 700;
  color: var(--accent-yellow);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-right: 0.5rem;
}

.hero
  .container
  .hero-content-main
  .hero-container
  .hero-txt
  .hero-text-product-info
  .product-name {
  font-size: calc(1.85vw);
  font-weight: 600;

  font-size: 1.45rem;
  color: var(--primary-white);
  max-width: 250px;
  line-height: 1;
}
 
/* ===== NEW COLLECTION SECTION ===== */
.new-collection {
  padding: var(--spacing-xxl) 0;
  background-color: var(--accent-yellow) !important;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.new-collection .container {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: center;
  height: 100%;
  width: 90%;
  margin: 0%;
  padding: 0%;
  gap: var(--spacing-lg);
}

.new-collection .collection-header {
  display: flex;
  flex-direction: column;
  align-items: start;
  box-sizing: border-box;
  justify-content: start;
  width: 30%;
  height: 400px;

  padding: 0% !important;
  margin: 0% !important;
}

.new-collection .collection-header-text {
  height: 50%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.collection-header h1 {
  font-size: 3rem;
  text-align: start;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 0;
  color: var(--primary-black);
  box-sizing: border-box;
  line-height: 1.4;
}

.collection-header p {
  font-size: 18px;
  color: var(--primary-grey);
  margin-bottom: var(--spacing-lg);
  text-align: start;
}

.collection-actions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--spacing-lg);
  height: 50%;
  width: 100%;
  padding-right: 10%;
}

.shop-btn {
  background-color: var(--primary-grey);
  color: var(--primary-white);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: 4px;
  font-weight: 500;
  display: flex;
  align-items: center;
  height: auto;
  gap: var(--spacing-xs);
  transition: background-color 0.3s ease;
}

.shop-btn:hover {
  background-color: var(--secondary-dark-grey);
}

.collection-actions .shop-btn {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.collection-actions .shop-btn i {
  width: auto !important;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xs);
}

.collection-images {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: no-wrap;
  gap: var(--spacing-lg);
  margin-top: 0;
  height: auto;
  width: 70%;
  gap: var(--spacing-lg);
}

.image-left img,
.image-right img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 0px;
}

/* ===== COLLECTION SWIPER STYLES ===== */
.collection-swiper {
  width: 100%;
  height: 100%;
  position: relative;

  overflow: hidden !important;
}

.collection-swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.collection-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
}

.collection-swiper .swiper-slide .image-left,
.collection-swiper .swiper-slide .image-right {
  flex: 1;
  height: 100%;
  max-width: 50%;
}

.collection-swiper .swiper-slide .image-left img,
.collection-swiper .swiper-slide .image-right img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 0px;
  transition: transform 0.3s ease;
}

.collection-swiper .swiper-slide .image-left,
.collection-swiper .swiper-slide .image-right {
  flex: 1;
  height: 100%;
  max-width: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.collection-swiper .swiper-slide .image-left:hover,
.collection-swiper .swiper-slide .image-right:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.collection-swiper .swiper-slide .image-left img:hover,
.collection-swiper .swiper-slide .image-right img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .new-collection .container {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    height: 100%;
    margin: 0%;
    padding: 0%;
    gap: var(--spacing-lg);
  }

  .new-collection .collection-header {
    display: flex;
    flex-direction: column;
    align-items: start;
    box-sizing: border-box;
    justify-content: start;
    width: 100%;
    height: auto;

    padding: 0% !important;
    margin: 0% !important;
  }

  .new-collection .collection-header-text {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
  }

  .collection-actions {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--spacing-lg);
    height: auto;
    width: 100%;
    padding-right: 10%;
  }

  .collection-header p {
    font-size: 18px;
    color: var(--primary-grey);
    margin-bottom: 0;
    text-align: start;
  }

  .collection-images {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: no-wrap;
    gap: var(--spacing-lg);
    margin-top: 0;
    height: auto;
    width: 100%;
    gap: var(--spacing-lg);
  }

  /* Mobile Collection Swiper Styles */
  .collection-swiper .swiper-slide {
    flex-direction: column;
    gap: 1rem;
    box-sizing: border-box;
    overflow: hidden !important;
  }

  .collection-swiper .swiper-slide .product-card {
    max-width: 100%;
    height: auto;
  }

  .collection-swiper .swiper-slide .product-card img {
    height: 250px;
  }
}

/* ===== NEW THIS WEEK SECTION ===== */
.new-this-week {
  padding: var(--spacing-xxl) 0;
  background-color: var(--primary-white);
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--spacing-sm);
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-black);

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
  font-style: italic;
}

.item-count {
  color: var(--primary-grey);
  font-weight: normal;
}

.see-all {
  color: var(--primary-grey);
  font-weight: 500;
  transition: color 0.3s ease;
}

.see-all:hover {
  color: var(--primary-black);
}

.products-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.product-card {
  text-align: start;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: var(--spacing-sm);
}

.product-card h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: var(--spacing-xs);
  color: var(--primary-black);
}

.product-card p {
  font-size: 14px;
  color: var(--primary-black);
  margin-bottom: var(--spacing-xs);

  display: flex;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 0.5rem !important;
}

.price {
  font-size: 16px;
  font-weight: bold;
  color: #141414;
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-black);

    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
    gap: var(--spacing-lg);
    font-style: italic;
  }

  .price {
    font-size: 14px;
  }
}

/* ===== NEW THIS WEEK SWIPER STYLES ===== */
.new-this-week-swiper {
  width: 100%;
  height: 100%;
  position: relative;

  overflow: hidden !important;
}

.new-this-week-swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.new-this-week-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-this-week-swiper .swiper-slide .product-card {
  width: 100%;
  height: 100%;
  margin: 0;
}

/* ===== XIV COLLECTIONS SECTION ===== */
.xiv-collections {
  padding: var(--spacing-xxl) 0;
  background-color: var(--accent-yellow) !important;
}

.xiv-collections h2 {
  font-size: 36px;
  line-height: 1.4;
  font-style: italic;
  font-weight: bold;
  text-align: start;
  margin-bottom: var(--spacing-lg);
  color: var(--primary-black);
}

.filters {
  display: flex;
  justify-content: space-between;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
}

.filter-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--spacing-lg);
}

.filter {
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
  color: var(--primary-grey);
}

.filter.active,
.filter:hover {
  color: var(--primary-black);
}

.more-btn-1 {
  color: var(--primary-black);
  font-weight: 500;
  transition: color 0.3s ease;
}

.more-btn-1:hover {
  color: var(--primary-black);
}

.collection-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--spacing-lg);
}

.more-btn {
  background-color: var(--primary-black);
  color: var(--primary-white);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.more-btn:hover {
  background-color: var(--secondary-dark-grey);
}

.filter-options {
  display: flex;
  gap: var(--spacing-lg);
}

.filter-group span,
.sort-group span {
  font-weight: 500;
  color: var(--primary-grey);
  cursor: pointer;
}

.xiv-collections .filter-group span,
.xiv-collections .sort-group span {
  font-weight: 500;
  color: var(--primary-black);
  cursor: pointer;
}

.sort-options {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-xs);
}

.sort-options span {
  font-size: 14px;
  color: var(--primary-grey);
  cursor: pointer;
}

/* ===== XIV COLLECTIONS SWIPER STYLES ===== */
.xiv-collections-swiper {
  width: 100%;
  height: 100%;
  position: relative;

  overflow: hidden !important;
}

.xiv-collections-swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.xiv-collections-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.xiv-collections-swiper .swiper-slide .product-card {
  width: 100%;
  height: 100%;
  margin: 0;
}

.sort-options span:hover {
  color: var(--primary-black);
}

@media (max-width: 768px) {
  .filters {
    flex-direction: column;
    gap: var(--spacing-lg);
  }
}

/* ===== FASHION APPROACH SECTION ===== */
.fashion-approach {
  padding: var(--spacing-xxl) 0 0 0;
  background-color: var(--primary-white);
  text-align: center;
}

.fashion-approach h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 0;
  color: var(--primary-black);
}

.fashion-approach p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--primary-grey);
  max-width: 800px;
  margin: 0 auto;
}

/* ===== IMAGE GALLERY SECTION ===== */
.image-gallery {
  padding: var(--spacing-xxl) 0;
  background-color: var(--primary-white);
  height: 100%;
  width: 100%;
}

.gallery-grid {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-sm);
  height: 100%;
  width: 100%;
}

.gallery-grid .gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  height: 100%;
  width: 100%;
}

.gallery-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1.2 !important;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.3s ease;

  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-grid .gallery-item:nth-child(1) img {
  padding-bottom: 3rem;
}

.gallery-grid .gallery-item:nth-child(2) img {
  padding-top: 3rem;
}

.gallery-grid .gallery-item:nth-child(3) img {
  padding-bottom: 3rem;
}

.gallery-grid .gallery-item:nth-child(4) img {
  padding-top: 3rem;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* ===== RESPONSIVE DESIGN ===== */

/* ===== HERO MOBILE RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: fit-content;
    padding: 1rem 0;

    margin-top: 1rem;
  }

  .hero .container {
    width: 95%;
    height: auto;
    min-height: 100vh;
    flex-direction: column;
    padding: 1rem !important;
  }

  .hero-content-main {
    width: 100%;
    height: auto;
    min-height: 100vh;
    flex-direction: column;
    padding: 1rem 0;
  }

  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 5;
  }

  .hero .container .hero-content-main .hero-container {
    width: 100%;
    height: auto;
    min-height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  .hero .container .hero-content-main .hero-container .hero-content-top {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
  }

  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-content-top
    .hero-text-underlay {
    font-size: 15vw;
    text-align: center;
    opacity: 0.15;
  }

  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-content-top
    .hero-text {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-content-top
    .hero-text
    .hero-text-content {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
  }

  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-content-top
    .hero-text
    .hero-text-content
    .hero-text-image {
    width: 60%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    order: 2;
    margin-top: 3rem;
  }

  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-content-top
    .hero-text
    .hero-text-content
    .hero-txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
  }

  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-content-top
    .hero-text
    .hero-text-content
    p {
    font-size: 12vw;
    text-align: center;
    line-height: 0.9;
  }

  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-content-top
    .hero-text
    .hero-text-content
    .hero-text-product-name-l {
    font-size: 4vw;
    text-align: center;
    padding-left: 0;
    width: 100%;
  }

  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-txt
    .hero-text-product-info {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
  }

  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-txt
    .hero-text-product-info
    .price {
    font-size: 6vw;
    gap: 1rem;
    padding-right: 0;
  }

  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-txt
    .hero-text-product-info
    .product-name {
    font-size: 3.5vw;
    max-width: 100%;
    text-align: center;
  }

  /* Hero Bottom Mobile Styles */
  .hero .container .hero-content-main .hero-container .hero-content-bottom {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 0;
  }

  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-content-bottom
    .men-swiper,
  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-content-bottom
    .women-swiper,
  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-content-bottom
    .kids-swiper {
    width: 100% !important;
    height: 150px !important;
  }

  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-content-bottom
    .men-swiper
    .swiper-slide,
  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-content-bottom
    .women-swiper
    .swiper-slide,
  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-content-bottom
    .kids-swiper
    .swiper-slide {
    height: 150px;
  }

  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-content-bottom
    .button-container {
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 1rem;
  }

  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-content-bottom
    .button-container
    .carousel-btn {
    width: 100%;
    height: 50px;
    font-size: 1rem;
    font-weight: 600;
  }

  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-content-bottom
    .hero-text {
    width: 100%;
    height: auto;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-content-bottom
    .hero-text
    h3 {
    font-size: 1.25rem;
    text-align: center;
  }

  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-content-bottom
    .hero-text
    p {
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.4;
  }

  /* Hero Pagination Mobile Styles */
  .hero-pagination {
    bottom: 1rem !important;
    right: 0% !important;
    left: 0% !important;
    transform: translateX(0%) rotate(0deg) !important;
    rotate: 0deg !important;
    width: auto !important;
    width: 100% !important;
  }

  .hero-pagination .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
  }
}

@media (max-width: 480px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 0.5rem 0;
  }

  .hero .container {
    width: 98%;
    padding: 0.5rem !important;
    box-sizing: border-box;
  }

  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-content-top
    .hero-text-underlay {
    font-size: 18vw;
  }

  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-content-top
    .hero-text
    .hero-text-content
    p {
    font-size: 14vw;
  }

  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-content-top
    .hero-text
    .hero-text-content
    .hero-text-product-name-l {
    font-size: 5vw;
    padding-top: 0.5rem;
  }

  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-txt
    .hero-text-product-info
    .price {
    font-size: 7vw;
    padding-bottom: 0.5rem;
  }

  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-txt
    .hero-text-product-info
    .product-name {
    font-size: 4vw;
  }

  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-content-bottom
    .men-swiper,
  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-content-bottom
    .women-swiper,
  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-content-bottom
    .kids-swiper {
    height: 120px !important;
  }

  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-content-bottom
    .men-swiper
    .swiper-slide,
  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-content-bottom
    .women-swiper
    .swiper-slide,
  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-content-bottom
    .kids-swiper
    .swiper-slide {
    height: 120px;
  }

  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-content-bottom
    .button-container
    .carousel-btn {
    height: 45px;
    font-size: 0.9rem;
    width: 80%;
  }

  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-content-bottom
    .hero-text
    h3 {
    font-size: 1.1rem;
  }

  .hero
    .container
    .hero-content-main
    .hero-container
    .hero-content-bottom
    .hero-text
    p {
    font-size: 0.8rem;
    width: 80%;
  }
}

@media (max-width: 768px) {
  .header .container {
    width: 98%;
  }
  /* Navigation Mobile Styles */
  .nav-links {
    display: none;
  }

  /* Collection Images Mobile Styles */
  .collection-images {
    grid-template-columns: 1fr;
  }

  /* Products Grid Mobile Styles */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Mobile New This Week Swiper Styles */
  .new-this-week-swiper .swiper-slide .product-card {
    width: 100%;
    height: auto;
  }

  .new-this-week-swiper .swiper-slide .product-card img {
    height: 200px;
  }

  /* Mobile XIV Collections Swiper Styles */
  .xiv-collections-swiper .swiper-slide .product-card {
    width: 100%;
    height: auto;
  }

  .xiv-collections-swiper .swiper-slide .product-card img {
    height: 200px;
  }

  /* Gallery Grid Mobile Styles */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .collection-header h1 {
    font-size: 32px;
  }

  .xiv-collections h2,
  .fashion-approach h2 {
    font-size: 28px;
  }
}

/* Product card styling within collection swiper */
.collection-swiper .swiper-slide .product-card {
  width: 100%;
  max-width: 300px;
  text-align: start;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.collection-swiper .swiper-slide .product-card:hover {
  transform: translateY(-5px);
}

.collection-swiper .swiper-slide .product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: var(--spacing-sm);
}

.collection-swiper .swiper-slide .product-card h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: var(--spacing-xs);
  color: var(--primary-black);
}

.collection-swiper .swiper-slide .product-card p {
  font-size: 14px;
  color: var(--primary-black);
  margin-bottom: var(--spacing-xs);
  display: flex;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  gap: var(--spacing-xs);
}

.collection-swiper .swiper-slide .product-card .price {
  font-weight: bold;
  color: var(--primary-black);
}

/* ---------------------------------Hidden Hero Old------------------------------------- */
.hero-old {
  display: none !important;
}
