/* Google font  */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&display=swap');

/* base styles */
body {
  font-family: helvetica, sans-serif; 
}

/* Brand name specific font */
.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-transform: uppercase;
}


.font-helvetica {
  font-family: Helvetica, sans-serif;
}

@keyframes slideBg {
  0% { left: -100%; right: 100%; }
  50% { left: 0; right: 0; }
  100% { left: 100%; right: -100%; }
}

.hero-btn {
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  border-radius: 0;
  background-color: #423c39;
  color: #fff;
}

.hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  right: 100%;
  background: linear-gradient(90deg, #fff, #aaa);
  animation: slideBg 2s infinite linear;
  z-index: 0;
  opacity: 0.2; 
}

.hero-btn span {
  position: relative;
  z-index: 1;
}

.hero-btn:hover {
  opacity: 0.9;
}

 .filter-box {
      border: 1px solid #ccc;
      padding: 10px;
      margin-bottom: 10px;
      width: 200px;
    }

    .filter-header {
      display: flex;
      justify-content: space-between;
      cursor: pointer;
      font-weight: bold;
    }

    .filter-options {
      margin-top: 10px;
      display: none;
    }

    .color-swatch {
      width: 20px;
      height: 20px;
      display: inline-block;
      margin: 5px;
      cursor: pointer;
    }

    .color-red {
      background-color: red;
    }

    .color-blue {
      background-color: blue;
    }

    .color-green {
      background-color: green;
    }

    .color-black {
      background-color: black;
    }

    .color-white {
      background-color: white;
      border: 1px solid #ccc;
    }

   