/* Base styles */
body {
  font-family: "Inter", sans-serif;
  background-color: #f5f5f5;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Navbar placeholder spacing */
#navbar-placeholder {
  min-height: 56px;
}

/* Hero Section */
.hero-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  padding: 48px 0 32px 0;
  margin-bottom: 40px;
}

.collection-intro h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #222;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.collection-intro p {
  font-size: 1.5rem;
  color: #000000;
  font-weight: 600;
  margin-bottom: 0;
}

.shop-button {
  min-width: 180px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 12px 32px;
  border-radius: 0;
  background: #222;
  color: #fff;
  border: none;
  transition: background 0.2s;
}

.shop-button:hover {
  background: #000000;
  color: #fff;
}

.carousel-arrows .btn {
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  color: #222;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: background 0.2s, color 0.2s;
}

.carousel-arrows .btn:hover {
  background: #0000cc;
  color: #fff;
  border-color: #0000cc;
}

/* Carousel image fix */
.product-carousel-custom img,
.carousel-inner img {
  border-radius: 12px;
  object-fit: contain;
  width: 100%;
  height: 480px;
  max-height: 60vw;
}

@media (max-width: 991px) {

  .product-carousel-custom img,
  .carousel-inner img {
    height: 340px;
  }
}

@media (max-width: 575px) {

  .product-carousel-custom img,
  .carousel-inner img {
    height: 220px;
  }
}

/* Section Header */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  gap: 1rem;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 0;
  line-height: 1.1;
}

.section-header .see-all {
  border-radius: 0;
  font-weight: 600;
  padding: 8px 24px;
  font-size: 1rem;
}

/* Product Card */
.product-card-custom {
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
  background: #fff;
}

.product-card-custom:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
  transform: translateY(-2px);
}

.card-img-top-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  background: #f8f7f5;
  overflow: hidden;
}

.card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.2s;
}

.product-card-custom:hover .card-img-top {
  transform: scale(1.04);
}

/* Add to cart overlay button */
.add-to-cart-overlay {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #000000;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.92;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s, transform 0.2s;
}

.add-to-cart-overlay:hover {
  background: #222;
  transform: scale(1.1);
}

/* Card body text */
.card-body .card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.card-body .card-text.fw-bold {
  color: #000000;
  font-size: 1.1rem;
}

.card-body .badge {
  font-size: 0.85em;
  border-radius: 8px;
  padding: 2px 8px;
}

/* Pagination */
.pagination-btn {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.3rem;
  padding: 0;
  border: 1px solid #ddd;
  background: #fff;
  color: #222;
  transition: background 0.2s, color 0.2s;
}

.pagination-btn:hover {
  background: #000000;
  color: #fff;
  border-color: #000000;
}

/* Filter Tabs */
.filter-tabs .nav-link {
  border-radius: 20px !important;
  font-weight: 600;
  color: #222;
  background: #fff;
  border: 1px solid #e5e1dc;
  margin-right: 8px;
  margin-bottom: 4px;
  transition: background 0.2s, color 0.2s, border 0.2s;
}

.filter-tabs .nav-link.active,
.filter-tabs .nav-link:focus,
.filter-tabs .nav-link:hover {
  background: #0000cc !important;
  color: #fff !important;
  border-color: #0000cc !important;
}

/* Collection grid fix */
.collections-grid .card {
  border-radius: 16px;
  min-height: 100%;
}

.collections-grid .card-img-top-wrapper {
  aspect-ratio: 3/4;
}

/* Approach Section */
.approach-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #222;
  line-height: 1.1;
}

.approach-description {
  color: #555;
  font-size: 1.15rem;
  font-weight: 500;
}

.approach-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  background: #f8f7f5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

@media (max-width: 991px) {
  .approach-gallery img {
    height: 160px;
  }
}

@media (max-width: 575px) {
  .approach-gallery img {
    height: 110px;
  }
}

/* Footer */
.site-footer {
  background: #222;
  color: #fff;
  border-top: none;
  padding: 48px 0 24px 0;
  margin-top: 48px;
  font-size: 1rem;
}

.site-footer .footer-heading {
  color: #fff;
  opacity: 0.85;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.site-footer .footer-links a {
  color: #fff;
  opacity: 0.75;
  font-weight: 500;
  font-size: 1rem;
  transition: opacity 0.2s, color 0.2s;
}

.site-footer .footer-links a.active,
.site-footer .footer-links a:hover {
  opacity: 1;
  color: #000000;
}

.site-footer .footer-logo .logo-arrow {
  color: #000000;
}

.site-footer .footer-logo .logo-text span:first-child {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
}

.site-footer .footer-logo .logo-text span:last-child {
  font-size: 1rem;
  color: #fff;
  opacity: 0.7;
}

.site-footer .footer-tech {
  color: #fff;
  opacity: 0.7;
}

.site-footer .privacy-link a {
  color: #fff;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}

.site-footer .privacy-link a:hover {
  opacity: 1;
  color: #000000;
}

.site-footer hr {
  border-color: #fff;
  opacity: 0.15;
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .hero-section {
    padding: 32px 0 24px 0;
  }

  .collection-intro h1 {
    font-size: 2.2rem;
  }

  .approach-title {
    font-size: 1.5rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 12px 4px;
  }

  .hero-section {
    padding: 18px 0 12px 0;
    margin-bottom: 24px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .site-footer {
    padding: 32px 0 16px 0;
    font-size: 0.95rem;
  }

  .new-this-week-fade {
    opacity: 0;
    transition: opacity 0.5s;
  }

  #new-this-week-list {
    opacity: 1;
    transition: opacity 0.6s;
  }
}