* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'IBM Plex Serif', serif;
  color: #2d2d2d;
  line-height: 1.6;
}

/* TOP BANNER */
.top-banner {
  font-size: 14px;
  background-color: #3d2e1f;
  color: #fff;
  text-align: center;
  padding: 5px 10px;
  font-weight: 400;
}

.top-banner a {
  color: #fff;
  text-decoration: underline;
  margin-left: 15px;
}

/* header */

header {
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  font-family: 'Libre Baskerville', serif;
}

.logo-main {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
}

.logo-tagline {
  font-size: 7px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 5px;
  margin-left: 8px;
}

nav ul {
  display: flex;
  list-style-type: none;
  gap: 35px;
}

nav a {
  color: #2d2d2d;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #999;
}

nav a.gift-shop {
  color: red;
}

.header-icons a {
  color: #2d2d2d;
  text-decoration: none;
  font-size: 14px;
}

main {
  padding: 45px 10px 0 10px;
  max-width: 1400px;
  margin: 0 auto;
}

.page-title {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 8px;
}

.page-description {
  font-size: 13px;
  color: #5a5a5a;
  margin-bottom: 25px;
  max-width: 700px;
}

.products-carousel {
  display: flex;
  gap: 15px;
  overflow: hidden;
}

.product-card {
  flex: 0 0 calc(33.333% - 10px);
  min-width: 0;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 12px;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 35px;
  max-width: 850px;
}

.category-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  max-width: 200px;
}

.category-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  margin-bottom: 8px;
  transition: transform 0.3s;
}

.category-name {
  font-size: 13px;
  font-weight: normal;
}

.filter-section {
  padding: 5px 25px;
  /* border-top: 1px solid #e0d5cc; */
  /* border-bottom: 1px solid #e0d5cc; */
  margin-bottom: 30px;
}

.filter-button {
  background: none;
  border: none;
  font-size: 15px;
  cursor: pointer;
  color: #2c2c2c;
  font-family: 'Georgia', serif;
}

.product-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-cards {
  position: relative;
  overflow: hidden;
}

.product-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-cards:hover .product-img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #661d0c;
  color: white;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid white;
}

.product-info {
  padding: 0 0 10px;
}

.product-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  /* margin-bottom: 5px; */
}

.product-varient {
  font-size: 13px;
  color: #666;
  /* margin-bottom: 8px; */
}

.product-price {
  display: flex;
  /* gap: 10px; */
  align-items: center;
}

.sale-price {
  font-size: 13px;
  font-weight: 600;
  /* margin-bottom: 10px; */
}

.footer {
  border-top: 1px solid #ddd;
  background-color: #f5f3f0;
  padding: 60px 20px 40px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

.footer-column h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #2d2d2d;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #666;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid #2d2d2d;
  overflow: hidden;
}

.newsletter-input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: 'IBM Plex Serif', serif;
  background: transparent;
}

.newsletter-submit {
  padding: 12px 25px;
  background: transparent;
  border: none;
  border-left: 1px solid #2d2d2d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter-submit:hover {
  background: #2d2d2d;
  color: white;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  color: #2d2d2d;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #666;
}

/* Logo Section */
.logo-section {
  background-color: #f5f3f0;
  padding: 80px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.large-logo {
  font-size: 180px;
  font-weight: 400;
  letter-spacing: -8px;
  color: #2d2d2d;
  line-height: 1;
  text-transform: lowercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.footer-links a {
  color: #2d2d2d;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #666;
}

.copyright {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .header-container {
    padding: 12px 20px;
  }

  nav ul {
    gap: 20px;
  }

  nav a {
    font-size: 13px;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 30px 60px;
    gap: 25px;
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .large-logo {
    font-size: 120px;
  }
}

@media (max-width: 768px) {

  .header-container {
    padding: 10px 15px;
  }

  .logo-main {
    font-size: 18px;
  }

  .logo-tagline {
    font-size: 6px;
    margin-left: 6px;
  }

  nav {
    display: none;
  }

  .header-icons {
    gap: 15px;
  }

  .header-icons a {
    font-size: 16px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px 50px;
    gap: 20px;
  }

  .product-badge {
    font-size: 9px;
    padding: 5px 10px;
  }

  .footer {
    padding: 50px 20px 30px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .newsletter-input {
    font-size: 13px;
    padding: 10px 12px;
  }

  .newsletter-submit {
    padding: 10px 20px;
    font-size: 11px;
  }

  .logo-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 60px 20px;
  }

  .large-logo {
    font-size: 80px;
    letter-spacing: -4px;
  }

  .footer-links {
    width: 100%;
  }

  .copyright {
    font-size: 11px;
  }

}

@media (max-width: 480px) {

  .header-container {
    padding: 8px 12px;
  }

  .logo-main {
    font-size: 16px;
    letter-spacing: 1.5px;
  }

  .logo-tagline {
    display: none;
  }

  nav {
    display: none;
  }

  .header-icons {
    gap: 12px;
  }

  .header-icons a {
    font-size: 14px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    padding: 0 15px 40px;
    gap: 25px;
  }

  .product-badge {
    font-size: 8px;
    padding: 4px 8px;
    top: 10px;
    right: 10px;
  }

  .product-info {
    padding: 12px 0;
  }

  .product-name {
    font-size: 11px;
  }

  .product-varient {
    font-size: 12px;
  }

  .sale-price {
    font-size: 13px;
  }

  .footer {
    padding: 40px 15px 25px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-column h3 {
    font-size: 11px;
    margin-bottom: 15px;
  }

  .footer-column ul li {
    margin-bottom: 10px;
  }

  .footer-column ul li a {
    font-size: 12px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input {
    font-size: 12px;
    padding: 10px 12px;
  }

  .newsletter-submit {
    padding: 10px 15px;
    font-size: 10px;
    border-left: none;
    border-top: 1px solid #2d2d2d;
  }

  .social-icons {
    gap: 12px;
    margin-top: 15px;
    justify-content: center;
  }

  .social-icons a {
    font-size: 18px;
  }

  .logo-section {
    padding: 40px 15px;
    gap: 30px;
  }

  .large-logo {
    font-size: 56px;
    letter-spacing: -3px;
  }

  .footer-links {
    gap: 12px;
  }

  .footer-links a {
    font-size: 10px;
  }

  .copyright {
    font-size: 10px;
  }
}