/* Shop Page Styles */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

main {
  margin: 0;
  padding: 0;
}

.shop-container {
  display: flex;
  min-height: 100vh;
  background-color: #fff;
  padding: 0;
  margin: 0;
  width: 100%;
}

/* Left Sidebar - Categories */
.shop-sidebar {
  width: 200px;
  background-color: #fff;
  padding: 40px 0 40px 40px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  flex-shrink: 0; 
  margin-right: 30px;
}

.shop-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 40px 0;
  letter-spacing: 0.02em;
  color: #000;
  text-transform: uppercase;
}

.category-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-nav li {
  margin-bottom: 20px;
}

.category-link {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 300;
  color: #000;
  text-decoration: none;
  transition: all 0.2s ease;
  display: block;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.category-link:hover {
  color: #666;
  transform: translateX(4px);
}

.category-link.active {
  font-weight: 500;
}

/* Right Content - Products Grid */
.shop-content {
  flex: 1;
  background-color: #fff;
  padding: 0;
  margin: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  margin: 0;
}

/* Product Card */
.product-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background-color: #fff;
  border: none;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
}

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

.product-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

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

/* Product Info Overlay */
.product-info {
  /* position: absolute;
  bottom: 0;
  left: 0;
  right: 0; */
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 30%,
    rgba(0, 0, 0, 0.3) 60%,
    transparent 100%
  );
  padding: 80px 20px 25px 20px;
  color: #fff;
  opacity: 1;
  transition: all 0.3s ease;
  pointer-events: none;
}

.product-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 8px 0;
  color: #fff;
  text-align: center;
  letter-spacing: 0.5px;
  display: block;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.product-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  color: #fff;
  text-align: center;
  letter-spacing: 0.5px;
  display: block;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.product-currency {
  font-size: 16px;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1600px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1400px) {
  .shop-sidebar {
    width: 180px;
    padding: 40px 0 40px 30px;
  }

  .category-link {
    font-size: 18px;
  }
}

@media (max-width: 1200px) {
  .shop-sidebar {
    width: 160px;
    padding: 30px 0 30px 20px;
  }

  .category-link {
    font-size: 16px;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-name {
    font-size: 14px;
  }

  .product-price {
    font-size: 16px;
  }
}

@media (max-width: 968px) {
  .shop-container {
    flex-direction: column;
  }

  .shop-sidebar {
    width: 100%;
    height: auto;
    position: relative;
    padding: 30px 20px;
  }

  .shop-title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .category-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .category-nav li {
    margin-bottom: 0;
  }

  .category-link {
    font-size: 18px;
    padding: 8px 12px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-name {
    font-size: 13px;
  }

  .product-price {
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .shop-title {
    font-size: 32px;
  }

  .category-link {
    font-size: 16px;
  }

  .product-name {
    font-size: 15px;
  }

  .product-price {
    font-size: 16px;
  }

  .product-card {
    aspect-ratio: 3/4;
  }
}

/* Scrollbar Styling for Sidebar */
.shop-sidebar::-webkit-scrollbar {
  width: 6px;
}

.shop-sidebar::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

.shop-sidebar::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 3px;
}

.shop-sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}
