/* General Styles */
:root {
  --primary-color: #f5f5f0; /* Offwhite */
  --secondary-color: #1a1a1a; /* Black */
  --accent-color: #c0a062; /* Gold accent */
  --text-dark: #333;
  --text-light: #f5f5f0;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  max-width: 1600px;
  margin: 0 auto;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: 1px;
}

.logo span {
  color: var(--accent-color);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2.5rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 5px;
  transition: var(--transition);
}

.nav-links a.active {
  color: var(--accent-color);
}

.nav-links a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-color);
  transition: var(--transition);
}

.nav-links a:hover:after,
.nav-links a.active:after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--secondary-color);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100vh;
  background-color: var(--primary-color);
  z-index: 1000;
  transition: var(--transition);
  padding: 2rem;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.close-mobile-menu {
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--secondary-color);
}

.mobile-nav-links {
  list-style: none;
}

.mobile-nav-links li {
  margin-bottom: 1.5rem;
}

.mobile-nav-links a {
  font-weight: 500;
  font-size: 1.1rem;
  transition: var(--transition);
}

.mobile-nav-links a.active {
  color: var(--accent-color);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--secondary-color);
}

.hero-subtitle {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border: none;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.hero-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.hero-btn:hover:before {
  left: 100%;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50%;
  object-fit: cover;
  z-index: 1;
}

/* Collections Section */
.collections {
  padding: 6rem 5%;
  background-color: var(--primary-color);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: var(--accent-color);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.collection-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  cursor: pointer;
}

.collection-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.collection-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--primary-color);
  transform: translateY(100%);
  transition: var(--transition);
}

.collection-card:hover .collection-overlay {
  transform: translateY(0);
}

.collection-card:hover .collection-image {
  transform: scale(1.05);
}

.collection-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.collection-desc {
  font-weight: 300;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.collection-btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
}

.collection-btn:hover {
  background-color: var(--secondary-color);
}

/* Collection Hero (Product Pages) */
.collection-hero {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('vanity-1.jpg') no-repeat center center/cover;
  margin-top: 80px;
  color: var(--primary-color);
}

.collection-hero-content {
  max-width: 800px;
  padding: 0 2rem;
}

.collection-hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.collection-hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.8;
}

/* Collection Products */
.collection-products {
  padding: 6rem 5%;
  background-color: var(--primary-color);
}

.collection-filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-options {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.filter-select {
  padding: 0.7rem 1rem;
  border: 1px solid #ddd;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  background-color: white;
}

.filter-results p {
  font-size: 0.9rem;
  color: var(--text-dark);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-card {
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image-container {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 0.3rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 3px;
}

.product-badge.sale {
  background-color: #e74c3c;
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-name {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
  text-align: center;
}

.quick-view-btn {
  padding: 0.7rem 1.5rem;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  text-align: center;
}

.quick-view-btn:hover {
  background-color: #333;
}

/* Collection Features */
.collection-features {
  padding: 4rem 5%;
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.feature-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-weight: 300;
  font-size: 0.9rem;
}

/* Product Modal */
.product-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  overflow-y: auto;
}

.modal-content {
  background-color: var(--primary-color);
  max-width: 1200px;
  margin: 3rem auto;
  padding: 2rem;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--secondary-color);
  z-index: 1;
}

.modal-product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.modal-product-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-image {
  height: 500px;
  overflow: hidden;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.main-image img:hover {
  transform: scale(1.05);
}

.thumbnail-images {
  display: flex;
  gap: 1rem;
}

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.thumbnail.active {
  border-color: var(--accent-color);
}

.modal-product-info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-product-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.modal-product-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background-color: var(--accent-color);
}

.modal-product-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
  margin-top: 2rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  justify-content: center;
}

.meta-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

/* Contact Section */
.contact {
  padding: 6rem 5%;
  background-color: var(--primary-color);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.contact-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-text p {
  font-weight: 300;
}

.contact-form {
  background-color: white;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  font-family: 'Montserrat', sans-serif;
}

.form-textarea {
  height: 150px;
  resize: vertical;
}

.submit-btn {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  padding: 1rem 2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
}

.submit-btn:hover {
  background-color: var(--accent-color);
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 4rem 5%;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--accent-color);
}

.footer-about {
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--accent-color);
  color: var(--secondary-color);
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-heading:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  font-weight: 300;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 300;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    height: 400px;
  }
  
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-product-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }

  .collection-hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 8rem 0 4rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-image {
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: 2rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .collection-grid {
    grid-template-columns: 1fr;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .modal-content {
    margin: 1rem;
    padding: 1rem;
  }
  
  .main-image {
    height: 300px;
  }

  .collection-filter {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-options {
    flex-direction: column;
    width: 100%;
  }

  .filter-select {
    width: 100%;
  }

  .collection-hero {
    height: 50vh;
  }

  .collection-hero-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-btn {
    padding: 0.8rem 1.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .collection-card {
    height: 300px;
  }
  
  .modal-title {
    font-size: 1.5rem;
  }
  
  .modal-price {
    font-size: 1.2rem;
  }

  .collection-hero {
    height: 40vh;
  }

  .collection-hero-title {
    font-size: 1.8rem;
  }

  .collection-hero-subtitle {
    font-size: 1rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { 
    opacity: 0;
    transform: translateY(50px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}

.slide-up {
  animation: slideUp 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.8s;
}

.delay-5 {
  animation-delay: 1.0s;
}
/* Fix for modal zoom issue */
/* Fix for modal zoom issue */
body.modal-open {
  overflow: hidden;
}
/* Cart styles */
.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 2rem;
}

.cart-icon {
  font-size: 1.2rem;
}

#cartCount {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  display: none;
}

/* Added to cart modal */
.added-to-cart-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.added-to-cart-content {
  background-color: var(--primary-color);
  padding: 2rem;
  border-radius: 5px;
  max-width: 400px;
  width: 90%;
  text-align: center;
}

.added-to-cart-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.added-to-cart-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.view-cart-btn, .continue-shopping-btn {
  padding: 0.7rem 1.5rem;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.view-cart-btn {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.continue-shopping-btn {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.view-cart-btn:hover, .continue-shopping-btn:hover {
  opacity: 0.9;
}

/* Cart page styles */
.cart-page {
  padding: 6rem 5%;
  background-color: var(--primary-color);
}

.cart-container {
  max-width: 1200px;
  margin: 0 auto;
}

.cart-items {
  width: 100%;
  margin-bottom: 2rem;
}

.cart-item {
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
}

.cart-item-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-right: 1.5rem;
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.cart-item-price {
  color: var(--accent-color);
  font-weight: 500;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}

.quantity-btn {
  background-color: #f5f5f5;
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
}

.quantity-input {
  width: 50px;
  text-align: center;
  margin: 0 0.5rem;
  padding: 0.3rem;
  border: 1px solid #ddd;
}

.remove-item {
  color: #e74c3c;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 1.5rem;
  font-size: 1.2rem;
}

.cart-summary {
  background-color: white;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.checkout-btn {
  width: 100%;
  padding: 1rem;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.checkout-btn:hover {
  background-color: var(--secondary-color);
}

.empty-cart {
  text-align: center;
  padding: 3rem 0;
}

.empty-cart p {
  margin-bottom: 1.5rem;
}

.shop-btn {
  padding: 0.8rem 1.8rem;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.shop-btn:hover {
  background-color: var(--secondary-color);
}

/* Add to cart button in product modal */
.modal-add-to-cart {
  padding: 0.8rem 1.5rem;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1.5rem;
  width: 100%;
}

.modal-add-to-cart:hover {
  background-color: var(--secondary-color);
}
/* Add these styles to your styles.css file */

/* Quick View Button Styling */
.quick-view-btn {
  padding: 0.8rem 1.5rem;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  text-align: center;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.quick-view-btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Add to Cart Button Styling */
.add-to-cart-btn {
  padding: 0.8rem 1.5rem;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  text-align: center;
  border-radius: 4px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.add-to-cart-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Product Info Container */
.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem; /* Adds spacing between buttons */
}

/* For product cards that have both buttons */
.product-card .product-info {
  padding-bottom: 1rem;
}

/* Modal Add to Cart Button */
.modal-add-to-cart {
  padding: 1rem 2rem;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  text-align: center;
  border-radius: 4px;
  margin-top: 1.5rem;
  text-transform: uppercase;
}

.modal-add-to-cart:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Button container for product cards with both buttons */
.button-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.5rem;
}