/* HYPEZA Brand Style Guide Implementation */
:root {
  /* Color Palette */
  --gold: #C89B3C;
  --black: #000000;
  --white: #FFFFFF;
  --dark-gray: #111111;
  
  /* Spacing System */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 80px;
  
  /* Border Radius */
  --radius-sm: 5px;
  --radius-md: 15px;
  --radius-lg: 25px;
}

/* Hide Scrollbar but Keep Functionality */
::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}



/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

body {
  font-family: 'Cormorant Garamond', serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Prata', serif;
  font-weight: 400;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
}

a {
  color: var(--white);
  text-decoration: none;
}

.price {
  font-family: 'Impact', sans-serif;
  color: var(--gold);
  font-size: 1.5rem;
}

/* Header and Navigation */

/* Disable fade-in animations on product cards */
.product-card[data-animation="fade-in"],
.product-card.animate-on-scroll[data-animation="fade-in"] {
  animation: none;
  opacity: 1;
}

/* Override the fade-in animation */
.fade-in {
  animation: none !important;
  opacity: 1 !important;
}



.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.loader-container {
  text-align: center;
}

.loader-logo {
  font-family: 'Prata', serif;
  font-size: 3rem;
  color: #c89b3c;
  margin-bottom: 2rem;
  letter-spacing: 5px;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background-color: rgba(200, 155, 60, 0.3);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.loader-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: rgb(200, 155, 60);
  transition: width 0.1s linear;
}

.loader-text {
  font-family: 'Cormorant Garamond', serif;
  color: #c89b3c;
  margin-top: 1rem;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

@keyframes shimmerLoader {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}

.loader-logo {
  background: linear-gradient(
          90deg,
          rgba(200, 155, 60, 0.8) 0%,
          rgba(255, 215, 100, 1) 50%,
          rgba(200, 155, 60, 0.8) 100%
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shimmerLoader 2s linear infinite;
}




/* Header
   ========================================================================== */

/*.header {*/
/*  width: 100%;*/
/*  padding: 0;*/
/*  position: fixed;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: space-between;*/
/*  color: #333;*/
/*  backdrop-filter: blur(10px);*/
/*  z-index: 100;*/
/*  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
/*  transition: all 0.3s ease;*/
/*  height: 70px;*/
/*}*/

/*@media (max-width: 768px) {*/

/*}*/

/*!* For even smaller screens *!*/
/*@media (max-width: 480px) {*/

/*}*/
/* Header
   ========================================================================== */

.header {
  width: 100%;
  padding: 0 var(--space-lg);  /* Add horizontal padding */
  position: fixed;
  top: 0;  /* Ensure it stays at the top */
  left: 0;  /* Ensure it's aligned to the left */
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(10px);
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);  /* Slightly stronger shadow */
  transition: all 0.3s ease;
  height: 70px;
}

@media (max-width: 768px) {
  .header {
    padding: 0 var(--space-md);  /* Reduce padding on tablet */
    height: 70px;  /* Slightly smaller height */
  }
}



.middle-section {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 10px;
}

@media (max-width: 768px) {
  .header {
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
  }
  .middle-section {
    position: static;
    transform: none;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.middle-section p {
  margin: 0;
  color: rgb(200, 155, 60);
}

.middle-section a {
  text-decoration: none;
  color: rgb(200, 155, 60);
  font-size: 16px;
  font-weight: bold;
  padding: 5px 32px;
  transition: color 0.3s, background-color 0.3s;
}

.middle-section a:hover {
  background: rgb(200, 155, 60);
  color: white;
  border-radius: 5px;
  border-color: rgb(255, 215, 100);
}

/* Dropdown Menu */
.product {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 10px;
  margin-top: 7px;
  width: 150px;
}

.dropdown-menu a {
  display: block;
  padding: 5px 10px;
  text-decoration: none;
  color: rgb(200, 155, 60);
}

.dropdown-menu a:hover {
  background-color: rgb(200, 155, 60);
  color: white;
}

/* Right section */
.right-section {
  display: flex;
  align-items: center;
  position: absolute;
  right: 20px;
}

.panier,
.user,
.favorite {
  transition: all 0.3s;
  cursor: pointer;
}

.panier {
  width: 20px;
  height: 20px;
  margin: 0 15px;
}

.user {
  width: 20px;
  height: 20px;
  margin: 0 15px;
}

.favorite {
  width: 25px;
  height: 25px;
  margin-right: 15px;
}

.panier:hover {
  width: 25px;
  height: 25px;
}

.user:hover {
  width: 25px;
  height: 25px;
}

.favorite:hover {
  width: 28px;
  height: 28px;
}

/* Add this media query to the existing code */
@media (max-width: 700px) {
  .header {
    padding: 0 var(--space-xs); /* Minimal padding for very small screens */
    height: 60px; /* Smaller height */
  }

  .middle-section {
    gap: 5px; /* Smaller gap between navigation items */
  }

  .middle-section a {
    padding: 5px 15px; /* Reduce horizontal padding */
    font-size: 14px; /* Smaller font size */
  }

  .right-section {
    right: 10px; /* Position closer to edge */
  }

  .panier,
  .user {
    width: 18px;
    height: 18px;
    margin: 0 8px; /* Reduce margins */
  }

  .favorite {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }

  /* Adjust hover states for small screens */
  .panier:hover,
  .user:hover {
    width: 18px; /* Don't enlarge on hover for small screens */
    height: 18px;
  }

  .favorite:hover {
    width: 20px;
    height: 20px;
  }

  /* Ensure dropdown menu is properly positioned */
  .dropdown-menu {
    width: 130px; /* Slightly smaller dropdown */
  }
}

/* Login Button */
.login {
  background-color: rgb(200, 155, 60);
  color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  border: 1px solid rgb(200, 155, 60);
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

.login:hover {
  background-color: transparent;
  color: rgb(200, 155, 60);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .header {
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
  }
  .middle-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .right-section {
    position: static;
    display: flex;
    align-items: center;
  }
}



/* Hero Section */


/* Button Styles */
.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  border: 1px solid var(--gold);
  background-color: transparent;
  color: var(--white);
  font-family: 'Prata', serif;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
}

.btn:hover {
  background-color: var(--gold);
  color: var(--black);
  transform: scale(1.05);
}

.btn:hover::before {
  left: 100%;
}

/* Product Section */
.products-section {

  padding: var(--space-lg) var(--space-lg);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background-color: var(--gold);
}

.filters {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--dark-gray);
  color: var(--white);
  padding: var(--space-xs) var(--space-md);
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.product-card {
  position: relative;
  background-color: var(--dark-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.product-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--space-md);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  transform: translateY(110px);
  transition: transform 0.3s ease;
}


.product-card:hover .product-overlay {
  z-index: 999;
  transform: translateY(0);
}

.product-info p {
  transition: opacity 0.3s ease;
}

.product-card:hover .product-info p {
  opacity: 0;
}

@media (max-width: 768px) {
  .product-card:hover .product-info {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
  }
  .product-info {
    transition: opacity 0.3s;
  }
}

.product-info {
  height: 125px;
  padding: var(--space-md);
}

.product-title {
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

.product-info p{
  transition: opacity 0.3s ease;
}

.product-info:hover p{
  opacity: 0;
}



.product-price {
  color: var(--gold);
  font-weight: bold;
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
}

.product-actions {
  display: flex;
  gap: var(--space-sm);
}

.product-btn {
  padding: var(--space-xs) var(--space-sm);
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--gold);
  cursor: pointer;
  border-radius: var(--radius-sm);
  flex: 1;
}

.product-btn:hover {
  background-color: var(--gold);
  color: var(--black);
}

/* Newsletter Section */
.newsletter {
  padding: var(--space-xl) var(--space-lg);
  background-color: var(--dark-gray);
  text-align: center;
}

.newsletter h2 {
  margin-bottom: var(--space-md);
}

.newsletter p {
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.newsletter-form {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: var(--space-sm);
  border: 1px solid var(--gold);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-top-left-radius: var(--radius-sm);
  border-bottom-left-radius: var(--radius-sm);
}

.newsletter-btn {
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--gold);
  color: var(--black);
  border: none;
  cursor: pointer;
  border-top-right-radius: var(--radius-sm);
  border-bottom-right-radius: var(--radius-sm);
  font-family: 'Prata', serif;
}

.newsletter-btn:hover {
  background-color: var(--white);
}

/* Footer */
footer {
  background-color: var(--black);
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  border-top: 1px solid rgba(200, 155, 60, 0.3);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.footer-column h3 {
  color: var(--gold);
  margin-bottom: var(--space-md);
  font-size: 1.3rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: var(--space-xs);
}

.footer-column ul li a:hover {
  color: var(--gold);
}

.social-icons {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Shimmer Effect */
.shimmer1 {
  position: relative;
  display: inline-block;
  color: transparent;
  background: linear-gradient(
          90deg,
          var(--gold) 0%,
          #e3c47a 20%,
          var(--gold) 40%,
          #a37b2d 60%,
          var(--gold) 80%,
          var(--gold) 100%
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  animation: shimmer1 3s linear infinite;
}

.shimmer1-slow {
  position: relative;
  display: inline-block;
  color: transparent;
  background: linear-gradient(
          90deg,
          var(--gold) 0%,
          #e3c47a 20%,
          var(--gold) 40%,
          #a37b2d 60%,
          var(--gold) 80%,
          var(--gold) 100%
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  animation: shimmer1 5s linear infinite;
}

@keyframes shimmer1 {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) rotate(30deg);
  }
  100% {
    transform: translateX(100%) rotate(30deg);
  }
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: var(--space-lg);
}

.modal-content {
  position: relative;
  background-color: var(--dark-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  animation: modalFadeIn 0.3s ease;
}

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

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.modal-close:hover {
  color: var(--gold);
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.product-detail-images {
  overflow: hidden;
  position: relative;
}

.product-main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.main-image-container {
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-bottom: var(--space-sm);
  border-radius: var(--radius-md);
}

.product-detail-images {
  position: relative;
  display: flex;
  flex-direction: column;
}

.main-image-container {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
  z-index: 1;
}

.product-thumbnails {
  display: flex;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
  padding: var(--space-xs);
  background-color: var(--dark-gray);
  position: relative;
  z-index: 3;
  border-radius: var(--radius-sm);
  justify-content: center;
}
.product-thumbnail {
  width: 70px;
  height: 70px;
  object-fit: cover;
  cursor: pointer;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
}

.product-thumbnail:hover, .product-thumbnail.active {
  border-color: var(--gold);
}

.product-detail-info {
  padding: var(--space-lg);
}

.product-detail-title {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.product-detail-price {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.product-detail-description {
  margin-bottom: var(--space-lg);
}

.product-options {
  margin-bottom: var(--space-lg);
}

.product-sizes {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.size-option {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.size-option:hover, .size-option.active {
  background-color: var(--gold);
  color: var(--black);
}

.add-to-cart {
  width: 100%;
  padding: var(--space-md);
  background-color: var(--gold);
  color: var(--black);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Prata', serif;
  font-size: 1.1rem;
  cursor: pointer;
  margin-top: var(--space-lg);
}


/* Color options styling */
.product-colors {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.color-option {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid rgba(200, 155, 60, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.color-option:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(200, 155, 60, 0.5);
}

.color-option.active {
  box-shadow: 0 0 0 2px var(--gold);
}

.color-option.active::after {
  content: '';
  position: absolute;
  top: -5px;
  right: -5px;
  width: 15px;
  height: 15px;
  background-color: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--black);
}

/* Special styling for white color option */
.color-option[style*="FFFFFF"] {
  border: 1px solid #ccc;
}

/* Add tooltip for color name on hover */
.color-option::before {
  content: attr(data-color);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--black);
  color: var(--white);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.color-option:hover::before {
  opacity: 1;
  visibility: visible;
}

.add-to-cart:hover {
  background-color: var(--white);
  transform: scale(1.05);
}


/* Mobile Responsive CSS for Product Modal */
@media screen and (max-width: 768px) {
  .modal {
    padding: var(--space-sm);
    align-items: flex-start;
  }

  .modal-content {
    max-width: 100%;
    margin-top: 60px; /* Add space for scrolling from the top */
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .product-main-image,
  .main-image-container {
    height: 350px;
  }

  .product-detail-info {
    padding: var(--space-md);
  }

  .product-detail-title {
    font-size: 1.5rem;
  }

  .product-detail-price {
    font-size: 1.5rem;
  }

  .modal-close {
    top: 10px;
    right: 10px;
    font-size: 1.3rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-thumbnails {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 480px) {
  .product-main-image,
  .main-image-container {
    height: 250px;
  }

  .product-thumbnails {
    gap: 5px;
  }

  .product-thumbnail {
    width: 50px;
    height: 50px;
    min-width: 50px; /* Prevent shrinking */
  }

  .product-detail-info {
    padding: var(--space-sm);
  }

  .product-detail-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .product-detail-description {
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
  }

  .product-sizes {
    flex-wrap: wrap;
    gap: 8px;
  }

  .size-option {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .product-colors {
    flex-wrap: wrap;
    gap: 10px;
  }

  .color-option {
    width: 30px;
    height: 30px;
  }

  .color-option.active::after {
    top: -3px;
    right: -3px;
    width: 10px;
    height: 10px;
  }

  .product-options h4 {
    font-size: 1rem;
    margin-top: 15px;
    margin-bottom: 8px;
  }

  .add-to-cart {
    padding: 12px;
    font-size: 1rem;
    margin-top: var(--space-md);
  }
}



/* Shopping Cart */
.cart {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background-color: var(--dark-gray);
  z-index: 1001;
  padding: var(--space-lg);
  transition: right 0.3s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.cart.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(200, 155, 60, 0.3);
}

.cart-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.cart-items {
  margin-bottom: var(--space-lg);
}

.cart-item {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item-image {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-size: 1rem;
  margin-bottom: 5px;
}

.cart-item-price {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.cart-item-options {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.cart-item-remove {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 0.9rem;
}

.cart-item-remove:hover {
  color: var(--gold);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-md);
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(200, 155, 60, 0.3);
  border-bottom: 1px solid rgba(200, 155, 60, 0.3);
  font-size: 1.1rem;
}

.checkout-btn {
  width: 100%;
  padding: var(--space-md);
  background-color: var(--gold);
  color: var(--black);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Prata', serif;
  font-size: 1.1rem;
  cursor: pointer;
}

.checkout-btn:hover {
  background-color: var(--white);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.slide-up {
  animation: slideUp 0.5s ease forwards;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .product-detail {
    grid-template-columns: 1fr;
  }
  
  .product-main-image {
    height: 400px;
  }
}

@media (max-width: 768px) {
  header {
    padding: var(--space-sm);
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  nav ul {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero {
    height: 70vh;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .cart {
    width: 100%;
    right: -100%;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .newsletter-input, .newsletter-btn {
    width: 100%;
    border-radius: var(--radius-sm);
  }
  
  .product-actions {
    flex-direction: column;
  }
  
  .product-btn {
    width: 100%;
  }
  
  .product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}


/* Footer Styles */
.footer {
  background-color: #111;
  color: #fff;
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C89B3C, transparent);
}

.footer-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 60px;
}

.footer-logo {
  width: 100%;
  max-width: 300px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 15px;
}

.tagline {
  color: #999;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}

.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: calc(100% - 340px);
}

.footer-col {
  width: 22%;
  min-width: 160px;
  margin-bottom: 30px;
}

.footer-col h3 {
  color: #fff;
  font-family: 'Prata', serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: #C89B3C;
}

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

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #C89B3C;
}

.newsletter-form {
  display: flex;
  margin-top: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form input {
  background: transparent;
  border: none;
  padding: 10px 0;
  color: #fff;
  width: 100%;
  font-size: 14px;
}

.newsletter-form input:focus {
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  background: transparent;
  border: none;
  color: #C89B3C;
  cursor: pointer;
  padding: 0 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-middle {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.social-links {
  display: flex;
  gap: 25px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  border-color: #C89B3C;
  color: #C89B3C;
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info {
  font-size: 13px;
  color: #777;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: #777;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #C89B3C;
}

@media (max-width: 1024px) {
  .footer-navigation {
    width: 100%;
  }

  .footer-col {
    width: 48%;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 60px 0 30px;
  }

  .footer-top {
    margin-bottom: 40px;
  }

  .footer-col {
    width: 100%;
  }

  .footer-middle {
    margin-bottom: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-links {
    justify-content: center;
  }
}

/* Fix for Trending Section, Style Guide, Testimonials and Limited Edition Banner */
.trending-section, .products-section, .style-guide-content, .testimonials-list, .limited-edition-banner {
  background-color: var(--dark-gray);
  color: var(--white);
}

/* Trending Items Carousel */
.trending-carousel {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  padding: var(--space-md) 0;
}

.trending-item {
  min-width: 220px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.trending-item:hover {
  transform: translateY(-5px);
}

.trending-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.trending-caption {
  padding: var(--space-sm);
  font-weight: 500;
  color: var(--gold);
  text-align: center;
}

/* Style Guide Content */
.style-guide-content {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.style-guide-content > div {
  flex: 1 1 300px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: var(--space-lg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(200, 155, 60, 0.15);
  transition: transform 0.3s ease;
}

.style-guide-content > div:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.style-guide-content h3 {
  color: var(--gold);
}

/* Testimonials */
.testimonials-list {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.testimonial {
  flex: 1 1 300px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: var(--space-lg);
  font-style: italic;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  border: 1px solid rgba(200, 155, 60, 0.15);
}

.testimonial:before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -20px;
  left: 10px;
  color: var(--gold);
  opacity: 0.3;
}

.testimonial span {
  display: block;
  margin-top: var(--space-sm);
  font-style: normal;
  color: var(--gold);
  font-weight: 500;
}

/* Limited Edition Banner */
.limited-edition-banner {
  background: linear-gradient(90deg, var(--black), var(--gold) 150%);
  color: var(--white);
  text-align: center;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin: var(--space-xl) 0;
}

.limited-edition-banner h2 {
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.limited-edition-banner p {
  margin-bottom: var(--space-md);
}

.limited-edition-banner .btn {
  border-color: var(--white);
}


/* Cinematic Horizontal Showcase */
.cinematic-showcase {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background-color: var(--dark-gray);
}

.cinematic-track {
  position: absolute;
  height: 100%;
  display: flex;
  transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.cinematic-item {
  position: relative;
  min-width: 80vw;
  height: 100%;
  padding: 0 10vw;
  display: flex;
  opacity: 0.3;
  filter: grayscale(0.7);
  transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.cinematic-item.active {
  opacity: 1;
  filter: grayscale(0);
}

.cinematic-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.8) 100%);
  pointer-events: none;
}

.cinematic-media {
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
}

.cinematic-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 1.5s ease-out;
}

.cinematic-item.active .cinematic-media img {
  transform: scale(1);
}

.cinematic-content {
  width: 50%;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cinematic-title {
  font-family: 'Prata', serif;
  font-size: 3rem;
  margin-bottom: 20px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 1s ease 0.3s;
}

.cinematic-item.active .cinematic-title {
  transform: translateY(0);
  opacity: 1;
}

.cinematic-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 1s ease 0.5s;
}

.cinematic-item.active .cinematic-description {
  transform: translateY(0);
  opacity: 1;
}

.cinematic-price {
  font-family: 'Prata', serif;
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 30px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 1s ease 0.7s;
}

.cinematic-item.active .cinematic-price {
  transform: translateY(0);
  opacity: 1;
}

.cinematic-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background-color: var(--gold);
  color: var(--black);
  font-family: 'Prata', serif;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transform: translateY(30px);
  opacity: 0;
  transition: all 1s ease 0.9s;
}

.cinematic-item.active .cinematic-btn {
  transform: translateY(0);
  opacity: 1;
}

.cinematic-btn:hover {
  background-color: var(--white);
  transform: translateY(-2px) !important;
}

.cinematic-btn svg {
  margin-left: 8px;
}

.cinematic-navigation {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  padding: 0 10vw;
  z-index: 10;
}

.cinematic-progress {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
  position: relative;
}

.cinematic-progress-bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.cinematic-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cinematic-prev,
.cinematic-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(200, 155, 60, 0.3);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cinematic-prev:hover,
.cinematic-next:hover {
  background-color: var(--gold);
  color: var(--black);
}

.cinematic-counter {
  font-family: 'Prata', serif;
  color: var(--white);
  font-size: 1.2rem;
}

.cinematic-counter .current-slide {
  color: var(--gold);
  font-size: 1.5rem;
}

.cinematic-counter .separator {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1200px) {
  .cinematic-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .cinematic-showcase {
    height: 500px;
  }

  .cinematic-item {
    flex-direction: column;
    padding: 0 5vw;
  }

  .cinematic-media {
    width: 100%;
    height: 50%;
  }

  .cinematic-content {
    width: 100%;
    padding: 20px 0;
    text-align: center;
  }

  .cinematic-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .cinematic-description {
    display: none;
  }

  .cinematic-price {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .cinematic-showcase {
    height: 450px;
  }

  .cinematic-navigation {
    bottom: 20px;
    padding: 0 5vw;
  }
}


.hero_slides {
  font-family: "PP Neue Montreal", sans-serif;
  background-color: #000;
  color: #fff;
  height: 100vh;
  overflow: hidden;
}

.slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  overflow: hidden;
  transform-origin: center;
}

.slide.active {
  visibility: visible;
}

.slide__img {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  transform-origin: center;
}

.slide__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
          to bottom,
          rgba(0, 0, 0, 0.2) 0%,
          rgba(0, 0, 0, 0) 40%
  );
}

.slide__text {
  position: absolute;
  bottom: 5rem;
  left: 5rem;
  max-width: 80%;
  overflow: hidden;
  z-index: 5;
}

.slide__text-line {
  display: block;
  font-size: 4.5rem;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  transform: translateY(100%);
  opacity: 0;
}

.controls {
  top: 2rem;
  right: 2rem;
  z-index: 10;
}

.controls-text {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 400;
}

.slide-counter {
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  z-index: 10;
}

.counter-container {
  position: relative;
  min-width: 2rem;
  height: 1.2rem;
  overflow: hidden;
  text-align: right;
}

.counter-strip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: right;
}

.counter-number {
  height: 1.2rem;
  display: block;
}

.counter-separator {
  width: 40px;
  height: 1px;
  background-color: #fff;
  margin: 0 1rem;
}

.counter-total {
  min-width: 2rem;
  text-align: left;
}

.slide-info {
  top: 2rem;
  left: 2rem;
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.7;
  z-index: 10;
  max-width: 15rem;
}

.slide-info-title {
  margin-bottom: 0.5rem;
}

.cursor {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: -30px;
  margin-left: -30px;
  z-index: 9999;
  pointer-events: none;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.cursor-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  opacity: 0;
}

.cursor.active {
  transform: scale(1);
}

.cursor.prev .cursor-arrow.prev,
.cursor.next .cursor-arrow.next {
  opacity: 1;
}

@media (max-width: 768px) {
  .slide__text {
    bottom: 3rem;
    left: 2rem;
    max-width: 90%;
  }

  .slide__text-line {
    font-size: 3rem;
  }
}


.hero-container {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s infinite alternate ease-in-out;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-accent-line {
  width: 80px;
  height: 3px;
  background-color: var(--gold);
  margin-bottom: 2rem;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineExpand 1.2s forwards ease-out;
}

@keyframes lineExpand {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

.hero-title {
  font-family: 'Prata', serif;
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: 1rem;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeUp 0.8s forwards ease-out 0.3s;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeUp 0.8s forwards ease-out 0.5s;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 2.5rem;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeUp 0.8s forwards ease-out 0.7s;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeUp 0.8s forwards ease-out 0.9s;
}

.primary-btn {
  background-color: var(--gold);
  color: var(--black);
  border: none;
  padding: 1rem 2rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.secondary-btn {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--gold);
  padding: 1rem 2rem;
  letter-spacing: 1px;
}

.hero-features {
  display: flex;
  gap: 2rem;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeUp 0.8s forwards ease-out 1.1s;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-icon {
  color: var(--gold);
  font-size: 1.2rem;
}

.feature-text {
  font-size: 0.9rem;
  letter-spacing: 1px;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }
}