@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');
:root {
  --img-in-duration: 1.8s;
  --img-out-duration: 1.2s;
  --content-in-duration: 1.5s;
  --content-out-duration: 1.1s;
  --bg-transition-duration: 1.5s;
  --header-height: 64px;
  --accent-green: #7c8a26;
  --accent-orange: #e07b3c;
  --neutral-gray: #535353;
  --bg: #fffdf7;
  --radius: 1.5rem;
  --anim1: rgba(124, 138, 38, 0.08);
  --anim2: rgba(224, 123, 60, 0.10);
}



html, body {
  margin: 0;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  background: #f7f3ee;

}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: transparent;
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  padding: 0 32px;
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.3em;
  color: #212121;
}
.logo img {
  width: 72px;
  object-fit: contain;
}

.social a {
  color: #212121;
  margin-left: 20px;
  font-size: 1.4em;
  transition: color 0.2s;
  text-decoration: none;
}
.social a:hover {
  color: var(--accent-orange);
}

.split {
  display: flex;
  min-height: 100vh;
  box-sizing: border-box;
  position: relative;
  padding-top: var(--header-height);
}

.split-left, .split-right {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 600px;
}

.split-left {
  transition: background var(--bg-transition-duration) cubic-bezier(.77,-0.4,.22,1.4);
  background: #e8e4df;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spice-bg {
  position: relative;
  width: 360px;
  height: 360px;
  max-width: 90vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spice-main {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 230px;
  z-index: 2;
  filter: drop-shadow(0 4px 24px rgba(90,64,43,0.08));
  opacity: 1;
  transform: translate(-50%, -50%);
}

.spice-img-in {
  animation: spiceImgIn var(--img-in-duration) cubic-bezier(.77,-0.4,.22,1.4);
  opacity: 1;
}
@keyframes spiceImgIn {
  0% { opacity: 0; transform: translate(-50%, -90%); }
  60% { opacity: 1; transform: translate(-50%, -48%) scale(1.05);}
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1);}
}
.spice-img-out {
  animation: spiceImgOut var(--img-out-duration) cubic-bezier(.77,-0.4,.22,1.4);
  opacity: 0;
}
@keyframes spiceImgOut {
  0% { opacity: 1; transform: translate(-50%, -50%) scale(1);}
  100% { opacity: 0; transform: translate(-50%, 80%) scale(0.92);}
}

.leaf {
  position: absolute;
  right: 14%;
  top: 16%;
  width: 48px;
  opacity: 0.9;
  transition: opacity 0.5s, transform 0.7s cubic-bezier(.77,-0.4,.22,1.4);
}

.split-credit {
  position: absolute;
  bottom: 38px;
  left: 22px;
  font-size: 0.95em;
  color: #7f7c77;
  writing-mode: vertical-lr;
  letter-spacing: 0.1em;
  opacity: 0.85;
}

/* Right: Content area animation */
.split-right {
  background: #f7f3ee;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  display: flex;
}

.spice-picker-wrapper {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.spice-picker {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.spice-btn-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid transparent;
  background: #fff;
  box-shadow: 0 1px 6px rgba(90,64,43,0.07);
  cursor: pointer;
  transition: border 0.2s, box-shadow 0.2s;
  opacity: 0.7;
}
.spice-btn-img.active, .spice-btn-img:hover {
  border: 2px solid #a37450;
  opacity: 1;
  box-shadow: 0 2px 10px rgba(163,116,80,0.10);
}

.split-content {
  margin-left: 58px;
  max-width: 410px;
}
.spice-content-in {
  animation: spiceContentIn var(--content-in-duration) cubic-bezier(.77,-0.4,.22,1.4);
  opacity: 1;
}
@keyframes spiceContentIn {
  0% { opacity: 0; transform: translateY(80px);}
  60% { opacity: 1; transform: translateY(-10px);}
  100% { opacity: 1; transform: translateY(0);}
}
.spice-content-out {
  animation: spiceContentOut var(--content-out-duration) cubic-bezier(.77,-0.4,.22,1.4);
  opacity: 0;
}
@keyframes spiceContentOut {
  0% { opacity: 1; transform: translateY(0);}
  100% { opacity: 0; transform: translateY(-60px);}
}

.slide-index {
  font-size: 1.1em;
  color: var(--accent-orange);
  margin-bottom: 8px;
  font-family: 'Inter', Arial, sans-serif;
}
.spice-title {
  font-size: 2.7em;
  font-family: 'Georgia', serif;
  margin: 0 0 16px 0;
  color: #212121;
}
.spice-desc {
  font-size: 1.14em;
  color: #3a2f23;
  margin-bottom: 32px;
  line-height: 32px;
}

.split-arrows {
  position: absolute;
  right: 12px;
  bottom: 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.arrow {
  font-size: 1.7em;
  color: var(--accent-orange);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.arrow:hover {
  opacity: 1;
}

.about-us, .products, .footer {
  width: 100%;
  background: #f9f7f1;
  padding: 90px 0 40px 0;
}
.about-us h2, .products h2 {
  font-size: 2em;
  margin-bottom: 16px;
  color: var(--accent-orange);
}
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 10px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: center;
  padding: 20px 10px;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.13);
}

.product-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 12px;
  border-radius: 8px;
  background: #eee;
}

.product-card h2 {
  font-size: 1.1em;
  margin: 0 0 7px 0;
  color: #222;
  font-weight: 700;
}

.product-desc
{
  font-size: 0.8em;
  color: #555;
  margin-top: 10px;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 1em;
  color: #666;
  margin: 0;
}

.footer address {
  font-style: normal;
  color: #333;
  margin-bottom: 14px;
}
.footer p {
  color: #a37450;
  font-size: 1em;
  margin: 0;
  letter-spacing: 0.07em;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
    padding-top: var(--header-height);
  }
  .split-left, .split-right {
    min-height: 340px;
    justify-content: flex-start;
  }
  .split-content {
    margin-left: 0;
    max-width: 98vw;
  }
  .spice-picker-wrapper {
    display: none;
  }
  .split-arrows {
    position: static;
    flex-direction: row;
    gap: 24px;
    margin-top: 32px;
    justify-content: center;
    width: 100%;
  }
  .split-credit {
    position: static;
    writing-mode: inherit;
    margin-top: 16px;
    margin-bottom: 0;
    left: 0;
    bottom: 0;
  }
  .product-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-us, .products, .footer {
    padding: 48px 0 22px 0;
  }
}

@media (max-width: 580px) {
  .header {
    padding: 0 12px;
    height: 54px;
  }
  .logo span {
    font-size: 1em;
  }
  .logo img {
    width: 72px;
  }
  .split-left, .split-right {
    padding: 12px 2vw;
    min-height: 220px;
  }
  .spice-bg {
    width: 210px;
    height: 210px;
  }
  .spice-main { width: 110px; }
  .leaf { width: 28px; }
  .spice-title { font-size: 2em; }
  .order-btn { padding: 12px 18px; font-size: 0.95em; }
  .product-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .product-card {
    padding: 16px 8px;
  }
  .product-card img {
    width: 60px;
    height: 60px;
  }
}