* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

html {
  height: 100%;
  height: 100dvh;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-height: 100dvh;
}

:root {
  /* Primary Brand Colors */
  --pink-main: #F4AFC5;      /* Bear pink */
  --pink-deep: #E98AAE;      /* Shadow / darker pink */
  --pink-blush: #F9C8D9;     /* Soft peach-pink */

  /* Honey Theme */
  --honey-main: #F1C65E;     /* Softer honey gold */
  --honey-light: #F7DFA3;    /* Light honey background */
  --honey-dark: #C99738;     /* Dark honey for hover / contrast */

  /* Warm Home Neutrals */
  --cream-wall: #F5E7D9;     /* Background wall */
  --beige-floor: #D9BFA5;    /* Floor tone */
  --brown-rug: #B48A6A;      /* Rug / warm brown accent */

  /* Cozy Accent (very light) */
  --mint-soft: #A3D9C9;      /* Small accent only */

  /* Text Colors */
  --text-dark: #3A2F2A;      /* Warm dark brown */
  --text-light: #FFFFFF;

  /* UI Utility */
  --border-light: #EAD9CC;
  --shadow-soft: rgba(0, 0, 0, 0.08);

  --font-title: 'Luckiest Guy', cursive;  /* Primary big titles */
  --font-body: 'Chewy', cursive;          /* Body text + smaller headings */
}

body {
  font-family: var(--font-body);
  background-image: url('images/bg-pattern.jpg');
}

body > :not(footer):last-child {
  flex: 1;
}

/* Navbar */

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 0px 250px;
  margin: 20px 50px;
  border: solid 2px var(--pink-main);
  box-shadow: 1px var(--shadow-soft);
  border-radius: 500px;
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.08),
    0 8px 20px rgba(0, 0, 0, 0.05);
  width: 80%;
  margin-inline: auto;
  background-color: var(--text-light);
  position: relative;
  z-index: 1000;
}

@media (max-width: 850px) {
  .navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    z-index: 1000 !important;
  }
}

.nav-logo {
  width: 250px;
  cursor: pointer;
}

.nav-links-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 300px;
}

.nav-link {
  padding: 10px 22px;
  text-decoration: none;
  background-color: var(--pink-blush);
  color: var(--text-dark);
  border-radius: 500px;
  transition: all 0.2s ease-in-out;
}

.nav-hover-img {
  position: absolute;
  display: none;
  bottom: -100%;
  left: 0;
  width: 40px;
  object-fit: cover;
  transition: display 0.5s ease;
}

.nav-link:hover .nav-hover-img {
  display: flex;
  animation: show 0.2s ease-in-out 1;
}

.cart-btn {
  align-self: center;
  padding: 10px 22px;
  text-decoration: none;
  background-color: var(--pink-blush);
  color: var(--text-dark);
  border-radius: 500px;
  transition: all 0.2s ease-in-out;
}

.nav-link:hover, .cart-btn:hover {
  transform: scale(1.05);
}

.hamburger {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  height: 100dvh;
  background-color: white;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding-top: 100px;
  padding-left: 30px;
  gap: 25px;
  transition: right .3s ease-in-out;
  box-shadow: -4px 0 12px rgba(0,0,0,0.15);
  overflow-y: auto;
}

.mobile-menu a {
  font-size: 1.4rem;
  color: var(--text-dark);
  text-decoration: none;
}

.mobile-menu.open {
  right: 0;
}

.cart-mobile {
  padding: 10px;
  background-color: var(--honey-main);
  border-radius: 12px;
  width: fit-content;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: var(--text-dark);
  cursor: pointer;
}

@media (max-width: 1500px) {
  .navbar {
    justify-content: space-around;
    padding: 0;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 80px;
  }
}

/* Hero */

.hero {
  width: 100%;
  height: calc(100vh - 107px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-inline: 300px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.hero-left h1 {
  font-family: var(--font-title);
  font-size: 3.5rem;
  color: var(--honey-main);
}

.hero-left h3 {
  font-size: 1.75rem;
  color: var(--text-dark);
}

.hero-btn {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 20px 28px;
  text-decoration: none;
  background-color: var(--honey-main);
  color: var(--text-dark);
  border-radius: 500px;
  font-size: 1.2rem;
  width: fit-content;
  transition: all 0.2s ease-in-out;
}

.hero-btn:hover {
  transform: scale(1.05);
}

.hero-right {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-image {
  width: 600px;
  animation: float 6s ease-in-out infinite;
}

.hero-product-image {
  width: 70px;
  position: absolute;
  animation: float 2s ease-in-out infinite;
  filter: drop-shadow(0 0 10px #F1C65E)
         drop-shadow(0 0 20px #F1C65E)
         drop-shadow(0 0 30px #F1C65E);
}

.hero-product-image:nth-child(1) {
  top: 100px;
  left: 400px;
}

.hero-product-image:nth-child(2) {
  top: 300px;
  left: 450px;
}

.hero-product-image:nth-child(3) {
  top: 200px;
  left: 0px;
}

.hero-product-image:nth-child(4) {
  top: 400px;
  left: 100px;
}

@keyframes float {
    0%, 100% { transform: translate(0, -10px); }
    50% { transform: translate(0, 10px); }
}

@keyframes show {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Products Section */

.products-section {
  display: flex;
  flex-direction: column;
  background-image: url('images/prods-bg.png');
  background-size: cover;
  background-position: center;
  height: 80vh;
}

.section-heading {
  font-family: var(--font-title);
  font-size: 3.5rem;
  color: var(--pink-deep);
  width: 100%;
  text-align: center;
  margin: 30px 0;
  text-shadow:
    -3px -3px 0 var(--text-dark),
     3px -3px 0 var(--text-dark),
    -3px  3px 0 var(--text-dark),
     3px  3px 0 var(--text-dark);
}

.products-container {
  width: 80%;
  height: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: space-evenly;
}

.product-card {
  width: 360px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--honey-light);
  border-radius: 16px;
  background-color: var(--pink-blush);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-content {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-image: url("images/paw.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 120px;
  opacity: 1;
}

.product-title-link {
  text-decoration: none;
}

.product-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
}

.product-description {
  font-size: 0.95rem;
  line-height: 1.45;
  color: #333;
  opacity: 0.85;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  color: rgb(14, 146, 14);
  margin-top: 5px;
}

.product-actions {
  display: flex;
  width: 100%;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 10px;
}

.product-actions a {
  text-decoration: none;
  font-size: 1.05rem;
  padding: 10px 14px;
  background-color: var(--honey-main);
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
  border-radius: 40px;
  text-align: center;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.product-actions .btn-primary {
  flex: 4;
}

.product-actions .btn-icon {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  padding: 10px;
}

.product-actions a:hover {
  background-color: var(--honey-light);
  transform: scale(1.03);
}

/* Spotlight Section */

.spotlight-section {
  width: 100%;
  height: 80vh;
  background-image: url('images/spotlight-bg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
}

.spotlight-top-text {
  text-align: center;
}

.spotlight-title {
  font-family: var(--font-title);
  font-size: 3.2rem;
  color: var(--pink-deep);
  text-shadow: -3px 3px var(--text-dark);
}

.spotlight-desc {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-top: 10px;
  opacity: 0.9;
}

.spotlight-center {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shine-spin {
  position: absolute;
  width: 500px;
  height: 500px;
  z-index: 1;
  animation: shineRotate 10s linear infinite;
  opacity: 0.85;
}

.spotlight-product {
  width: 320px;
  border: 8px solid var(--honey-main);
  border-radius: 50%;
  z-index: 2;
  position: relative;
}

@keyframes shineRotate {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

.spotlight-btn {
  text-decoration: none;
  padding: 16px 36px;
  background-color: var(--honey-main);
  color: var(--text-dark);
  font-size: 1.3rem;
  border-radius: 500px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform .2s ease;
}

.spotlight-btn:hover {
  transform: scale(1.05);
}

/* Call to Action Section */

.cta-section {
  position: relative;
  width: 100%;
  height: 60vh;
  background-image: url("images/cta-bg.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-drip {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-height: 150px;
  pointer-events: none;
  z-index: 3;
}

.cta-drip.bottom {
  top: auto;
  bottom: 0;
  transform: translateX(-50%) rotate(180deg);
}

.cta-content {
  text-align: center;
  max-width: 700px;
  padding: 20px;
  z-index: 10;
}

.cta-title {
  font-family: var(--font-title);
  font-size: 3rem;
  color: var(--honey-main);
  text-shadow: -3px 3px var(--text-dark);
  margin-bottom: 15px;
  animation: floatTitle 6s ease-in-out infinite;
}

.cta-desc {
  font-size: 1.4rem;
  color: var(--text-dark);
  opacity: 0.9;
  margin-bottom: 35px;
}

.cta-btn {
  padding: 18px 36px;
  background-color: var(--honey-main);
  color: var(--text-dark);
  border-radius: 500px;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  box-shadow: 0 0 20px rgba(255, 200, 80, 0.6);
  transition: transform .2s ease, box-shadow .2s ease;

  animation: pulse 3s infinite ease-in-out;
}

.cta-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 0 30px rgba(255, 200, 80, 0.8);
}

@keyframes floatTitle {
  0%, 100% { transform: translateY(-4px); }
  50% { transform: translateY(4px); }
}

@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Footer */

.site-footer {
  background: var(--text-dark);
  padding: 60px 40px 30px;
  color: #fafafa;
  margin-top: auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-logo {
  width: 180px;
  margin-bottom: 15px;
  background-color: var(--cream-wall);
  border-radius: 12px;
}

.footer-tagline {
  font-size: 15px;
  opacity: 0.7;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #dcdcdc;
  text-decoration: none;
  font-size: 15px;
  transition: 0.2s ease;
}

.footer-col ul li a:hover {
  color: #f4c024;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  opacity: 0.6;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
}

@media (max-width: 900px) {
  .footer-inner {
      grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-inner {
      grid-template-columns: 1fr;
      text-align: center;
  }

  .footer-col,
  .footer-brand {
      align-items: center;
      justify-content: center;
  }
}

/* Navbar Mobile */

@media (max-width: 900px) {
  .navbar {
    width: 100%;
    margin: 0;
    border-radius: 0;
    padding: 12px 18px;
    border: none;
  }

  .nav-logo {
    width: 180px;
  }

  .nav-links-container,
  .cart-btn {
    display: none;
  }

  .hamburger {
    display: block;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
  }
}

/* Hero Mobile */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-inline: 20px !important;
    height: auto;
    padding-top: 40px;
    padding-bottom: 50px;
    gap: 40px;
  }

  .hero-left {
    text-align: center;
  }

  .hero-btn {
    margin-inline: auto;
    padding: 14px 20px;
  }

  .hero-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    position: static;
  }

  .hero-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .hero-product-image {
    position: static;
    width: 60px;
    margin: auto;
  }

  .hero-product-image:nth-child(2) {
    grid-column: 1;
    grid-row: 1;
    translate: 0 20px;
  }

  .hero-product-image:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
    translate: 15px 80px;
  }

  .hero-product-image:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
    translate: -15px -40px;
  }

  .hero-product-image:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
    translate: 0 -20px;
  }

  .hero-left h1 {
    font-size: 2.8rem;
  }

  .hero-left h3 {
    font-size: 1.4rem;
  }
}

/* Products Mobile */

@media (max-width: 900px) {
  .products-section {
    height: auto;
    padding: 30px 0;
  }

  .products-container {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-left: 20px;
    scroll-snap-type: x mandatory;
    width: 98%;
  }

  .product-card {
    scroll-snap-align: start;
    min-width: 260px;
  }
}

/* Spotlight Mobile */

@media (max-width: 900px) {
  .spotlight-section {
    height: auto;
    padding: 50px 0;
    background-image: url("images/mobile-benji-point.png");
    background-size: cover;
  }

  .spotlight-center {
    width: 250px;
    height: 250px;
  }

  .shine-spin {
    width: 270px;
    height: 270px;
  }

  .spotlight-product {
    width: 200px;
  }

  .spotlight-title {
    font-size: 2.2rem;
  }

  .spotlight-desc {
    font-size: 1rem;
  }
}

/* CTA Mobile */

@media (max-width: 900px) {
  .cta-section {
    height: auto;
    padding: 60px 20px 80px;
  }

  .cta-title {
    font-size: 2.4rem;
  }

  .cta-desc {
    font-size: 1.1rem;
  }
}

/* Footer Mobile */

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-logo {
    margin-inline: auto;
  }
}

/* Products Page */

/* Page Title Section */
.page-title-section {
  padding: 60px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(135deg, var(--pink-blush) 0%, var(--honey-light) 100%);
  border: 4px solid var(--honey-main);
  border-inline: none;
}

.title-benji-left {
  width: 200px;
  animation: float 4s ease-in-out infinite;
  transform: scaleX(-1);
}

.title-content {
  flex: 1;
  text-align: center;
}

.page-main-title {
  font-family: var(--font-title);
  font-size: 4rem;
  color: var(--honey-dark);
  text-shadow: 
    -2px -2px 0 var(--text-dark),
     2px -2px 0 var(--text-dark),
    -2px  2px 0 var(--text-dark),
     2px  2px 0 var(--text-dark);
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 1.5rem;
  color: var(--text-dark);
  opacity: 0.85;
}

.title-benji-right {
  width: 200px;
  animation: float 4s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(-10px); }
  50% { transform: translateY(10px); }
}

/* Products Container */
.products-page-container {
  padding: 60px 100px;
}

/* Product Row */
.product-row {
  margin-bottom: 80px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.row-info {
  min-width: 280px;
  max-width: 280px;
  position: sticky;
  top: 20px;
  background-color: var(--pink-blush);
  padding: 25px;
  border-radius: 20px;
  border: 3px solid var(--honey-main);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.row-title {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--honey-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.row-description {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.5;
  opacity: 0.9;
}

.products-carousel {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 10px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--honey-main) var(--honey-light);
}

.products-carousel::-webkit-scrollbar {
  height: 10px;
}

.products-carousel::-webkit-scrollbar-track {
  background: var(--honey-light);
  border-radius: 10px;
}

.products-carousel::-webkit-scrollbar-thumb {
  background: var(--honey-main);
  border-radius: 10px;
}

.products-carousel::-webkit-scrollbar-thumb:hover {
  background: var(--honey-dark);
}

.carousel-inner {
  display: flex;
  gap: 20px;
  padding-bottom: 10px;
}

.product-card:not(.landing) {
  min-width: 300px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--honey-light);
  border-radius: 16px;
  background-color: var(--text-light);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:not(.landing):hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-image:not(.landing) {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--cream-wall);
}

.product-image:not(.landing) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-content:not(.landing) {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-image: url("images/paw.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 100px;
  min-height: 200px;
}

.product-title:not(.landing) {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
}

.product-description:not(.landing) {
  font-size: 0.9rem;
  line-height: 1.45;
  color: #333;
  opacity: 0.85;
  flex: 1;
}

.price:not(.landing) {
  font-size: 1.2rem;
  font-weight: bold;
  color: rgb(14, 146, 14);
  margin-top: 5px;
}

.product-actions:not(.landing) {
  display: flex;
  width: 100%;
  gap: 10px;
  margin-top: auto;
}

.product-actions:not(.landing) a {
  text-decoration: none;
  font-size: 1rem;
  padding: 10px 14px;
  background-color: var(--honey-main);
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
  border-radius: 40px;
  text-align: center;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.product-actions:not(.landing) .btn-primary {
  flex: 4;
}

.product-actions:not(.landing) .btn-icon {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  padding: 10px;
}

.product-actions:not(.landing) a:hover {
  background-color: var(--honey-light);
  transform: scale(1.03);
}

/* Products Page Mobile */

@media (max-width: 900px) {
  .page-title-section {
    padding: 40px 20px;
    flex-direction: column;
  }

  .title-benji-left,
  .title-benji-right {
    width: 120px;
  }

  .title-benji-right {
    display: none;
  }

  .page-main-title {
    font-size: 2.5rem;
  }

  .page-subtitle {
    font-size: 1.2rem;
  }

  .products-page-container {
    padding: 40px 20px;
  }

  .product-row {
    flex-direction: column;
    margin-bottom: 50px;
  }

  .row-info {
    position: static;
    max-width: 100%;
    min-width: auto;
  }

  .products-carousel {
    width: 100%;
  }

  .product-card {
    min-width: 260px;
    max-width: 260px;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin-inline: auto;
  }
}

/* About Us Page */

.about-hero {
  position: relative;
  padding: 80px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  background-image: url('images/prods-bg.png');
  background-size: cover;
  background-position: center;
}

.hero-benji-center {
  width: 450px;
  animation: bounce 3s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

.hero-honey-jar {
  position: absolute;
  width: 80px;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 0 15px var(--honey-main));
}

.honey-jar-1 {
  top: 20%;
  left: 15%;
}

.honey-jar-2 {
  top: 60%;
  left: 25%;
  animation-delay: 1s;
}

.honey-jar-3 {
  top: 30%;
  right: 15%;
  animation-delay: 2s;
}

.honey-jar-4 {
  top: 65%;
  right: 20%;
  animation-delay: 0.5s;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

/* Honeycomb Story Section */
.honeycomb-section {
  padding: 60px 100px;
  position: relative;
}

.section-title {
  font-family: var(--font-title);
  font-size: 3.5rem;
  color: var(--honey-dark);
  text-align: center;
  margin-bottom: 60px;
  text-shadow: 
    -2px -2px 0 var(--text-dark),
     2px -2px 0 var(--text-dark),
    -2px  2px 0 var(--text-dark),
     2px  2px 0 var(--text-dark);
}

.honeycomb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.honeycomb-cell {
  background: linear-gradient(135deg, var(--honey-light) 0%, var(--honey-main) 100%);
  border: 4px solid var(--honey-dark);
  border-radius: 50%;
  padding: 35px 30px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.honeycomb-cell:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 30px rgba(241, 198, 94, 0.4);
}

.honeycomb-icon {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.honeycomb-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.honeycomb-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
  opacity: 0.9;
}

/* Values Blob Section */
.values-section {
  padding: 80px 100px;
  background-image: url('images/bg-pattern.jpg');
}

.values-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.value-blob {
  width: 280px;
  height: 280px;
  background: var(--pink-blush);
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  border: 4px solid var(--honey-main);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  animation: morph 8s ease-in-out infinite;
}

.value-blob:nth-child(2) {
  animation-delay: 1s;
  border-radius: 38% 62% 63% 37% / 70% 33% 67% 30%;
}

.value-blob:nth-child(3) {
  animation-delay: 2s;
  border-radius: 49% 51% 48% 52% / 62% 44% 56% 38%;
}

.value-blob:nth-child(4) {
  animation-delay: 3s;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.value-blob:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(241, 198, 94, 0.3);
}

@keyframes morph {
  0%, 100% {
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  }
  50% {
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  }
}

.value-emoji {
  font-size: 3.5rem;
  margin-bottom: 15px;
}

.value-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--honey-dark);
  margin-bottom: 10px;
}

.value-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.4;
}

@media (max-width: 1500px) {
  .hero {
    padding-inline: 100px;
  }
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .about-hero {
    padding: 60px 20px;
  }

  .hero-benji-center {
    width: 250px;
  }

  .hero-honey-jar {
    width: 50px;
  }

  .honeycomb-section,
  .timeline-section,
  .team-section,
  .values-section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .honeycomb-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .values-container {
    gap: 30px;
  }

  .value-blob {
    width: 100%;
    max-width: 300px;
    height: auto;
    min-height: 250px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* Policies Page */

.policies-title-section {
  padding: 60px 100px;
  text-align: center;
  background: linear-gradient(135deg, var(--pink-blush) 0%, var(--honey-light) 100%);
  border: 3px solid var(--honey-main);
  border-inline: none;
}

.policies-title {
  font-family: var(--font-title);
  font-size: 3.5rem;
  color: var(--honey-dark);
  margin-bottom: 15px;
}

.policies-subtitle {
  font-size: 1.2rem;
  color: var(--text-dark);
  opacity: 0.85;
  max-width: 700px;
  margin: 0 auto;
}

/* Content Container */
.policies-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 100px;
  background-color: var(--text-light);
  margin-top: 40px;
  margin-bottom: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Policy Section */
.policy-section {
  margin-bottom: 50px;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-heading {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--honey-dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--pink-blush);
}

.policy-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.policy-subheading {
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-top: 25px;
  margin-bottom: 12px;
  font-weight: 600;
}

.policy-list {
  margin-left: 30px;
  margin-bottom: 15px;
}

.policy-list li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.policy-note {
  background-color: var(--honey-light);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid var(--honey-main);
  margin-top: 20px;
}

.policy-note p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0;
}

.policy-link {
  color: var(--honey-dark);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.policy-link:hover {
  color: var(--pink-deep);
}

/* Policies Page Mobile */

@media (max-width: 900px) {
  .policies-title-section {
    padding: 40px 20px;
  }

  .policies-title {
    font-size: 2.5rem;
  }

  .policies-subtitle {
    font-size: 1rem;
  }

  .policies-content {
    padding: 40px 20px;
    margin: 20px;
    border-radius: 15px;
  }

  .policy-heading {
    font-size: 1.6rem;
  }

  .policy-text,
  .policy-list li {
    font-size: 1rem;
  }
}

/* Cart Page */

.cart-title-section {
  padding: 50px 100px 30px;
  text-align: center;
}

.cart-title {
  font-family: var(--font-title);
  font-size: 3.5rem;
  color: var(--honey-dark);
  margin-bottom: 10px;
  text-shadow: 
    -2px -2px 0 var(--text-dark),
     2px -2px 0 var(--text-dark),
    -2px  2px 0 var(--text-dark),
     2px  2px 0 var(--text-dark);
}

.cart-subtitle {
  font-size: 1.2rem;
  color: var(--text-dark);
  opacity: 0.85;
}

/* Cart Container */
.cart-container {
  padding: 40px 100px 80px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Cart Items Section */
.cart-items-section {
  background-color: var(--text-light);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.cart-items-header {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-items-count {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--honey-main) 0%, var(--honey-light) 100%);
  color: var(--text-dark);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--honey-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  padding: 20px;
  border-bottom: 2px solid var(--pink-blush);
  align-items: center;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--cream-wall);
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-item-name {
  font-size: 1.3rem;
  color: var(--text-dark);
  font-weight: 600;
}

.cart-item-desc {
  font-size: 0.95rem;
  color: var(--text-dark);
  opacity: 0.7;
}

.cart-item-price {
  font-size: 1.2rem;
  color: rgb(14, 146, 14);
  font-weight: bold;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--pink-deep);
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s ease;
  font-family: var(--font-body);
}

.cart-item-remove:hover {
  color: #d4708a;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--pink-blush);
  padding: 8px 12px;
  border-radius: 30px;
}

.quantity-btn {
  width: 30px;
  height: 30px;
  border: none;
  background-color: var(--honey-main);
  color: var(--text-dark);
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.quantity-btn:hover {
  transform: scale(1.1);
  background-color: var(--honey-dark);
}

.quantity-value {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 600;
  min-width: 30px;
  text-align: center;
}

.empty-cart {
  text-align: center;
  padding: 60px 20px;
}

.empty-cart-icon {
  font-size: 5rem;
  color: var(--pink-main);
  margin-bottom: 20px;
}

.empty-cart-text {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.continue-shopping-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background-color: var(--honey-main);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 500px;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.continue-shopping-btn:hover {
  transform: scale(1.05);
}

/* Order Summary */
.order-summary {
  background: linear-gradient(135deg, var(--pink-blush) 0%, var(--honey-light) 100%);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  height: fit-content;
  position: sticky;
  top: 20px;
  border: 3px solid var(--honey-main);
}

.summary-title {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--honey-dark);
  margin-bottom: 25px;
  text-align: center;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.summary-label {
  opacity: 0.85;
}

.summary-value {
  font-weight: 600;
}

.summary-divider {
  height: 2px;
  background-color: var(--honey-main);
  margin: 20px 0;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.promo-code-section {
  margin-bottom: 20px;
}

.promo-code-input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--honey-main);
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 10px;
  background-color: var(--text-light);
}

.promo-code-input:focus {
  outline: none;
  border-color: var(--honey-dark);
}

.apply-promo-btn {
  width: 100%;
  padding: 10px 20px;
  background-color: var(--text-light);
  border: 2px solid var(--honey-main);
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.2s ease;
}

.apply-promo-btn:hover {
  background-color: var(--honey-main);
  transform: scale(1.02);
}

.checkout-btn {
  width: 100%;
  padding: 18px 30px;
  background-color: var(--honey-main);
  border: 3px solid var(--text-dark);
  border-radius: 500px;
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  text-decoration: none;
}

.checkout-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.secure-checkout-text {
  text-align: center;
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--text-dark);
  opacity: 0.7;
}

.secure-checkout-text i {
  color: rgb(14, 146, 14);
}

/* Cart Page Mobile */
@media (max-width: 900px) {
  .cart-title-section {
    padding: 30px 20px 20px;
  }

  .cart-title {
    font-size: 2.5rem;
  }

  .cart-subtitle {
    font-size: 1rem;
  }

  .cart-container {
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cart-items-section {
    padding: 20px;
  }

  .cart-item {
    grid-template-columns: 80px 1fr;
    gap: 15px;
  }

  .cart-item-image {
    width: 80px;
    height: 80px;
  }

  .cart-item-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .order-summary {
    position: static;
  }
}

/* Checkout Page */

.checkout-title-section {
  padding: 30px 100px;
  text-align: center;
}

.checkout-title {
  font-family: var(--font-title);
  font-size: 3rem;
  color: var(--honey-dark);
  margin-bottom: 10px;
}

/* Checkout Container */
.checkout-container {
  padding: 20px 100px 80px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Checkout Form */
.checkout-form-section {
  background-color: var(--text-light);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-section {
  margin-bottom: 40px;
}

.form-section:last-child {
  margin-bottom: 0;
}

.section-title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--honey-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 600;
}

.form-input,
.form-select {
  padding: 12px 16px;
  border: 2px solid var(--pink-blush);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: var(--cream-wall);
  transition: border-color 0.2s ease;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--honey-main);
  outline: none;
}

.form-checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.form-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--pink-deep);
}

.checkbox-label {
  font-size: 0.95rem;
  color: var(--text-dark);
  cursor: pointer;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-checkbox {
  margin-top: 2px;
  flex-shrink: 0;
}

.checkbox-label a.tos-link {
  color: var(--honey-dark);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
}

.checkbox-label a.tos-link:hover {
  color: var(--pink-deep);
  border-bottom-color: var(--pink-deep);
}

.tos-error {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #d32f2f;
  margin-top: 8px;
  animation: slideDown 0.2s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Shipping Method */
.shipping-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.shipping-option {
  padding: 20px;
  border: 3px solid var(--pink-blush);
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.shipping-option:hover {
  border-color: var(--honey-main);
  background-color: var(--honey-light);
}

.shipping-option.selected {
  border-color: var(--honey-main);
  background-color: var(--honey-light);
}

.shipping-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.shipping-radio {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.shipping-details h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.shipping-details p {
  font-size: 0.9rem;
  color: var(--text-dark);
  opacity: 0.7;
}

.shipping-price {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Payment Method */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.payment-option {
  padding: 20px;
  border: 3px solid var(--pink-blush);
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.payment-option:hover {
  border-color: var(--honey-main);
  background-color: var(--honey-light);
}

.payment-option.selected {
  border-color: var(--honey-main);
  background-color: var(--honey-light);
}

.payment-radio {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.payment-icon {
  font-size: 1.8rem;
}

.payment-label {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 600;
}

/* Order Summary Sidebar */
.order-summary {
  background: linear-gradient(135deg, var(--pink-blush) 0%, var(--honey-light) 100%);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  height: fit-content;
  position: sticky;
  top: 20px;
  border: 3px solid var(--honey-main);
}

.summary-title {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--honey-dark);
  margin-bottom: 25px;
  text-align: center;
}

.summary-items {
  margin-bottom: 25px;
}

.summary-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(58, 47, 42, 0.1);
}

.summary-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.summary-item-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--cream-wall);
}

.summary-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.summary-item-details {
  flex: 1;
}

.summary-item-name {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 5px;
}

.summary-item-qty {
  font-size: 0.85rem;
  color: var(--text-dark);
  opacity: 0.7;
}

.summary-item-price {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 600;
}

.summary-divider {
  height: 2px;
  background-color: var(--honey-main);
  margin: 20px 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.summary-label {
  opacity: 0.85;
}

.summary-value {
  font-weight: 600;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-dark);
  margin-top: 20px;
  margin-bottom: 25px;
}

.place-order-btn {
  width: 100%;
  padding: 18px 30px;
  background-color: var(--honey-main);
  border: 3px solid var(--text-dark);
  border-radius: 500px;
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
}

.place-order-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.secure-checkout-text {
  text-align: center;
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--text-dark);
  opacity: 0.7;
}

.secure-checkout-text i {
  color: rgb(14, 146, 14);
}

/* Checkout Page Mobile */
@media (max-width: 900px) {
  .navbar {
    width: 100%;
    margin: 0;
    border-radius: 0;
    padding: 12px 18px;
    border: none;
  }

  .nav-logo {
    width: 180px;
  }

  .nav-links-container,
  .cart-btn {
    display: none;
  }

  .hamburger {
    display: block;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
  }

  .checkout-progress {
    padding: 30px 20px 15px;
    gap: 10px;
  }

  .progress-label {
    display: none;
  }

  .progress-circle {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .progress-line {
    width: 40px;
  }

  .checkout-title-section {
    padding: 20px;
  }

  .checkout-title {
    font-size: 2.2rem;
  }

  .checkout-container {
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .checkout-form-section {
    padding: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }
}

/* Success Page */

.success-container {
  max-width: 800px;
  margin: 60px auto 80px;
  padding: 60px 40px;
  background-color: var(--text-light);
  border-radius: 25px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  text-align: center;
}

.success-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgb(14, 146, 14) 0%, rgb(10, 180, 10) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  animation: scaleIn 0.5s ease;
}

.success-icon i {
  font-size: 4rem;
  color: white;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-title {
  font-family: var(--font-title);
  font-size: 3rem;
  color: var(--honey-dark);
  margin-bottom: 15px;
}

.success-message {
  font-size: 1.2rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.85;
}

.benji-celebrate {
  width: 200px;
  margin: 20px auto;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Order Details Box */
.order-details-box {
  background: linear-gradient(135deg, var(--pink-blush) 0%, var(--honey-light) 100%);
  border: 3px solid var(--honey-main);
  border-radius: 20px;
  padding: 30px;
  margin: 40px 0;
  text-align: left;
}

.order-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 2px solid rgba(58, 47, 42, 0.1);
}

.order-detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  font-size: 1.05rem;
  color: var(--text-dark);
  opacity: 0.85;
}

.detail-value {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 600;
}

.order-number {
  font-family: var(--font-body);
  color: var(--honey-dark);
  font-weight: bold;
}

/* Info Section */
.info-section {
  background-color: var(--cream-wall);
  padding: 25px;
  border-radius: 15px;
  margin: 30px 0;
  text-align: left;
}

.info-title {
  font-size: 1.3rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-text {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
  opacity: 0.85;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 15px 30px;
  border-radius: 500px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
  font-weight: 600;
}

.btn-primary {
  background-color: var(--honey-main);
  color: var(--text-dark);
  border: 3px solid var(--text-dark);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-secondary {
  background-color: var(--pink-blush);
  color: var(--text-dark);
  border: 3px solid var(--pink-main);
}

.btn-secondary:hover {
  background-color: var(--pink-main);
  transform: scale(1.05);
}

/* Success Page Mobile */
@media (max-width: 900px) {
  .navbar {
    width: 100%;
    margin: 0;
    border-radius: 0;
    padding: 12px 18px;
    border: none;
  }

  .nav-logo {
    width: 180px;
  }

  .nav-links-container,
  .cart-btn {
    display: none;
  }

  .hamburger {
    display: block;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
  }

  .success-container {
    margin: 30px 20px 60px;
    padding: 40px 25px;
  }

  .success-icon {
    width: 100px;
    height: 100px;
  }

  .success-icon i {
    font-size: 3rem;
  }

  .success-title {
    font-size: 2.2rem;
  }

  .success-message {
    font-size: 1.05rem;
  }

  .benji-celebrate {
    width: 150px;
  }

  .order-details-box {
    padding: 20px;
  }

  .action-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

#confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
}

.confetti-piece {
  position: absolute;
  width: 8px;
  height: 14px;
  opacity: 0.9;
  border-radius: 2px;
  animation: fall linear forwards;
}

@keyframes fall {
  0% {
      transform: translateY(-10vh) rotate(0deg);
      opacity: 1;
  }
  100% {
      transform: translateY(110vh) rotate(360deg);
      opacity: 0;
  }
}

/* Product Page */

.breadcrumb {
  padding: 30px 100px 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.95rem;
}

.breadcrumb a {
  color: var(--text-dark);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

.breadcrumb-separator {
  color: var(--text-dark);
  opacity: 0.5;
}

.breadcrumb-current {
  color: var(--honey-dark);
  font-weight: 600;
}

.product-container {
  padding: 40px 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-image-container {
  width: 100%;
  aspect-ratio: 1;
  background-color: var(--cream-wall);
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid var(--honey-main);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--honey-main);
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--text-dark);
}

.thumbnail-container {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.thumbnail {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid var(--pink-blush);
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: var(--honey-main);
  transform: scale(1.05);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.product-detail-title {
  font-family: var(--font-title);
  font-size: 3rem;
  color: var(--honey-dark);
  line-height: 1.2;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars {
  color: var(--honey-main);
  font-size: 1.2rem;
  display: flex;
  gap: 3px;
}

.rating-text {
  color: var(--text-dark);
  font-size: 1rem;
  opacity: 0.8;
}

.product-price {
  font-size: 2.5rem;
  color: rgb(14, 146, 14);
  font-weight: bold;
}

.product-description {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.7;
  opacity: 0.9;
}

.product-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 25px;
  background-color: var(--pink-blush);
  border-radius: 15px;
  border: 2px solid var(--honey-main);
}

.option-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option-label {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 600;
}

.option-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.option-btn {
  padding: 10px 20px;
  border: 2px solid var(--text-dark);
  background-color: var(--text-light);
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text-dark);
}

.option-btn:hover {
  background-color: var(--honey-light);
  transform: scale(1.05);
}

.option-btn.selected {
  background-color: var(--honey-main);
  border-color: var(--text-dark);
}

.quantity-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--text-light);
  padding: 10px 20px;
  border-radius: 30px;
  border: 2px solid var(--text-dark);
}

.quantity-btn {
  width: 35px;
  height: 35px;
  border: none;
  background-color: var(--honey-main);
  color: var(--text-dark);
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.quantity-btn:hover {
  transform: scale(1.1);
  background-color: var(--honey-dark);
}

.quantity-value {
  font-size: 1.3rem;
  color: var(--text-dark);
  font-weight: 600;
  min-width: 40px;
  text-align: center;
}

.action-buttons {
  display: flex;
  gap: 15px;
}

.add-to-cart-btn,
.buy-now-btn {
  flex: 1;
  padding: 18px 30px;
  border-radius: 500px;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.add-to-cart-btn {
  background-color: var(--honey-main);
  border: 3px solid var(--text-dark);
  color: var(--text-dark);
}

.add-to-cart-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.buy-now-btn {
  background-color: var(--pink-main);
  border: 3px solid var(--text-dark);
  color: var(--text-dark);
}

.buy-now-btn:hover {
  background-color: var(--pink-deep);
  transform: scale(1.05);
}

/* Out-of-Stock Styles */
.badge.out-of-stock {
  background-color: #E74C3C;
  color: var(--text-light);
  border-color: #C0392B;
  animation: pulse-warning 2s infinite;
}

@keyframes pulse-warning {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.stock-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.stock-status.in-stock {
  background-color: #E8F8F5;
  color: #27AE60;
  border: 2px solid #27AE60;
}

.stock-status.out-of-stock-message {
  background-color: #FADBD8;
  color: #C0392B;
  border: 2px solid #E74C3C;
}

.add-to-cart-btn:disabled,
.buy-now-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #BDC3C7;
  border-color: #7F8C8D;
  color: #7F8C8D;
}

.add-to-cart-btn:disabled:hover,
.buy-now-btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

.product-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 25px;
  background-color: var(--honey-light);
  border-radius: 15px;
  border: 2px solid var(--honey-main);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.feature-icon {
  font-size: 2rem;
  color: var(--text-dark);
}

.feature-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
}

.product-details-section {
  grid-column: 1 / -1;
  margin-top: 40px;
}

.tabs-container {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 3px solid var(--pink-blush);
  padding-bottom: 10px;
}

.tab-btn {
  padding: 12px 25px;
  background-color: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 10px 10px 0 0;
  opacity: 0.6;
}

.tab-btn:hover {
  opacity: 1;
  background-color: var(--pink-blush);
}

.tab-btn.active {
  opacity: 1;
  background-color: var(--pink-blush);
  font-weight: 600;
}

.tab-content {
  display: none;
  padding: 30px;
  background-color: var(--text-light);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.tab-content.active {
  display: block;
}

.tab-content h3 {
  font-size: 1.5rem;
  color: var(--honey-dark);
  margin-bottom: 15px;
}

.tab-content p {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 15px;
}

.tab-content ul {
  list-style: none;
  padding-left: 0;
}

.tab-content ul li {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.tab-content ul li:before {
  content: "🐻";
  position: absolute;
  left: 0;
}

.review-item {
  padding: 20px;
  background-color: var(--cream-wall);
  border-radius: 12px;
  margin-bottom: 15px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.reviewer-name {
  font-weight: 600;
  color: var(--text-dark);
}

.review-stars {
  color: var(--honey-main);
}

.review-text {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.related-products-section {
  padding: 140px 100px;
  background-image: url('images/cta-bg.jpeg');
  background-size: cover;
  position: relative;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--honey-dark);
  justify-content: center;
  text-align: center;
  margin-bottom: 40px;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto;
}

.related-product-card {
  background-color: var(--text-light);
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid var(--honey-light);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.related-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.related-product-image {
  width: 100%;
  height: 200px;
  background-color: var(--pink-blush);
  position: relative;
}

.related-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-product-info {
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.related-product-name {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 8px;
}

.related-product-price {
  font-size: 1.2rem;
  color: rgb(14, 146, 14);
  font-weight: bold;
}

/* Product Page Mobile */
@media (max-width: 900px) {
  .breadcrumb {
      padding: 20px;
  }

  .product-container {
      padding: 30px 20px;
      grid-template-columns: 1fr;
      gap: 30px;
  }

  .product-gallery {
      max-width: 88vw;
      margin-inline: auto;
  }

  .product-title {
      font-size: 2.2rem;
  }

  .product-price {
      font-size: 2rem;
  }

  .action-buttons {
      flex-direction: column;
  }

  .product-features {
      grid-template-columns: 1fr;
  }

  .product-details-section {
      margin-top: 30px;
  }

  .tabs-container {
      flex-wrap: wrap;
  }

  .related-products-section {
      padding: 90px 20px;
  }

  .related-products-grid {
      grid-template-columns: 1fr 1fr;
      gap: 15px;
  }
}

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

/* Category Page */

.category-header {
background-color: var(--cream-wall);
padding: 60px 20px;
text-align: center;
border: 4px solid var(--pink-blush);
border-inline: none;
margin-bottom: 30px;
background-image: radial-gradient(var(--pink-blush) 2px, transparent 2px);
background-size: 30px 30px;
}

.category-title {
font-family: var(--font-title);
font-size: 3.5rem;
color: var(--honey-dark);
text-shadow: 2px 2px 0px var(--text-light);
margin-bottom: 15px;
}

.category-subtitle {
font-size: 1.2rem;
color: var(--text-dark);
max-width: 600px;
margin: 0 auto;
line-height: 1.6;
}

.filter-section {
max-width: 1400px;
margin: 0 auto 40px;
padding: 0 40px;
}

.filter-container {
  background-color: var(--text-light);
  border: 2px solid var(--honey-light);
  border-radius: 50px;
  padding: 15px 30px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.search-group {
  display: flex;
  border: 2px solid var(--pink-main);
  border-radius: 30px;
  overflow: hidden;
  max-width: 400px;
  flex-grow: 1;
}

.search-input {
  flex-grow: 1;
  padding: 8px 15px;
  border: none;
  background-color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
}

.search-input::placeholder {
  color: #a0a0a0;
}

.search-btn {
  width: 45px;
  height: 45px;
  border: none;
  background-color: var(--pink-main);
  color: var(--text-dark);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}

.search-btn:hover {
  background-color: var(--pink-deep);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.filter-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-right: 5px;
}

.filter-pill {
  padding: 8px 20px;
  border-radius: 30px;
  border: 2px solid var(--border-light);
  background: var(--text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  cursor: pointer;
  color: var(--text-dark);
  transition: all 0.2s ease;
}

.filter-pill:hover {
  border-color: var(--honey-main);
  transform: translateY(-2px);
}

.filter-pill.active {
  background-color: var(--honey-main);
  border-color: var(--honey-main);
  color: var(--text-dark);
  font-weight: 600;
}

.sort-dropdown {
  padding: 8px 15px;
  border-radius: 30px;
  border: 2px solid var(--pink-main);
  background-color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  cursor: pointer;
}

.category-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 40px;
}

.cat-product-card {
  background: var(--text-light);
  border-radius: 20px;
  border: 2px solid var(--border-light);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.cat-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-color: var(--honey-main);
}

.cat-img-wrapper {
  width: 100%;
  height: 280px;
  background-color: var(--cream-wall);
  position: relative;
  overflow: hidden;
}

.cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.cat-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--honey-main);
  color: var(--text-dark);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
  border: 2px solid white;
}

.cat-badge.new {
  background-color: var(--mint-soft);
}

.cat-badge.sale {
  background-color: var(--pink-main);
}

.cat-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background-image: url("images/paw.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 90px;
}

.cat-rating {
  color: var(--honey-main);
  font-size: 0.9rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.cat-title {
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.cat-desc {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.cat-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px dashed var(--border-light);
  padding-top: 15px;
}

.cat-price {
  font-size: 1.4rem;
  color: rgb(14, 146, 14);
  font-weight: bold;
}

.old-price {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: #999;
  margin-left: 5px;
  font-weight: normal;
}

.cat-btn {
  padding: 8px 20px;
  background-color: var(--pink-blush);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.cat-btn:hover {
  background-color: var(--pink-main);
  transform: scale(1.05);
}

.pagination-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 80px;
}

.page-btn {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--text-light);
  border: 2px solid var(--border-light);
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  transition: all 0.2s ease;
}

.page-btn:hover:not(.disabled) {
  border-color: var(--honey-main);
  background-color: var(--honey-light);
  transform: scale(1.1);
}

.page-btn.active {
  background-color: var(--honey-main);
  border-color: var(--honey-main);
}

.page-btn.disabled {
  opacity: 0.5;
  cursor: default;
}

/* Category Page Mobile */
@media (max-width: 768px) {
  .category-title {
    font-size: 2.5rem;
  }
  
  .filter-container {
    grid-template-columns: 1fr;
    border-radius: 20px;
    padding: 20px;
    }

    .search-group {
      max-width: 100%;
    }
    
    .filter-group {
      justify-content: flex-start;
    }
  
  .filter-group {
    justify-content: center;
  }
  
  .sort-dropdown {
    width: 100%;
  }
  
  .category-grid-container {
    padding: 0 20px;
    gap: 25px;
  }
}

/* 404 Page */

.lost-page-container {
    padding: 80px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    text-align: center;
}

.lost-content-inner {
    max-width: 600px;
    background-color: var(--text-light);
    padding: 50px;
    border-radius: 25px;
    border: 3px solid var(--pink-blush);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.lost-code {
    font-family: var(--font-title);
    font-size: 8rem;
    color: var(--honey-main);
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 4px 4px 0px var(--honey-dark);
}

.lost-bear-illustration {
    margin-bottom: 30px;
}

.lost-bear-img {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.lost-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--pink-deep);
    margin-bottom: 15px;
}

.lost-message {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 30px;
}

.lost-action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.lost-btn {
    padding: 15px 30px;
    border-radius: 500px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    border: 3px solid var(--text-dark);
}

.lost-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.primary-btn {
    background-color: var(--honey-main);
    color: var(--text-dark);
}

.secondary-btn {
    background-color: var(--pink-main);
    color: var(--text-dark);
}

.lost-tip {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
}

/* --- 404 Page Mobile --- */
@media (max-width: 600px) {
    .lost-content-inner {
        padding: 30px 20px;
    }
    
    .lost-code {
        font-size: 6rem;
    }

    .lost-action-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .lost-btn {
        width: 100%;
    }
}

/* Order Tracking Page*/
.tracking-page-container {
  padding: 60px 40px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.tracking-title {
  font-family: var(--font-title);
  font-size: 3rem;
  color: var(--honey-dark);
  margin-bottom: 10px;
}

.tracking-subtitle {
  font-size: 1.1rem;
  color: var(--text-dark);
  opacity: 0.8;
  margin-bottom: 40px;
}

.tracking-lookup-form {
  background-color: var(--pink-blush);
  padding: 30px;
  border-radius: 20px;
  border: 3px solid var(--pink-main);
  max-width: 500px;
  margin: 0 auto 50px;
}

.lookup-form-inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  margin-bottom: -5px;
}

.tracking-input {
  padding: 12px 15px;
  border: 2px solid var(--text-dark);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: var(--text-light);
}

.tracking-input::placeholder {
  color: #bfa597;
}

.lookup-btn {
  margin-top: 10px;
  padding: 15px 30px;
  border-radius: 500px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: 3px solid var(--text-dark);
  background-color: var(--honey-main);
  color: var(--text-dark);
}

.lookup-btn:hover {
  transform: scale(1.03);
}

.tracking-results-section {
  display: none;
  background-color: var(--cream-wall);
  border: 3px solid var(--honey-main);
  border-radius: 20px;
  padding: 30px;
  text-align: left;
}

.tracking-results-section.active {
  display: block;
}

.order-summary-box {
  background-color: var(--text-light);
  border-left: 5px solid var(--honey-main);
  padding: 15px 20px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.order-summary-box h3 {
  font-family: var(--font-body);
  color: var(--honey-dark);
  margin-bottom: 5px;
}

.status-text.delivery {
  color: rgb(14, 146, 14);
  font-weight: bold;
}

.tracking-timeline {
  position: relative;
  padding: 20px 0;
  border-left: 4px dashed var(--pink-main);
  margin-left: 20px;
  display: flex;
  flex-direction: column-reverse;
}

.timeline-step {
  position: relative;
  padding: 0 0 40px 40px;
  display: flex;
  align-items: flex-start;
}

.step-icon {
  width: 40px;
  height: 40px;
  background-color: var(--text-light);
  border: 4px solid var(--pink-main);
  color: var(--pink-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -22px;
  font-size: 1.1rem;
  z-index: 10;
  transition: all 0.3s ease;
}

.step-content {
  display: flex;
  flex-direction: column;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.step-date {
  font-size: 0.9rem;
  color: #666;
}

.timeline-step.completed .step-icon {
  background-color: var(--honey-main);
  border-color: var(--honey-dark);
  color: var(--text-dark);
}

.timeline-step.completed .step-title {
  color: var(--honey-dark);
}

.timeline-step.current .step-icon {
  transform: scale(1.2);
  box-shadow: 0 0 0 5px var(--pink-blush);
  background-color: var(--pink-deep);
  color: var(--text-light);
  border-color: var(--pink-deep);
}

/* Order Tracking Page Mobile */
@media (max-width: 600px) {
  .tracking-page-container {
      padding: 40px 20px;
  }
  
  .tracking-title {
      font-size: 2.5rem;
  }
  
  .tracking-lookup-form {
      padding: 20px;
  }
  
  .tracking-timeline {
      margin-left: 10px;
      padding: 10px 0;
  }

  .timeline-step {
      padding: 0 0 30px 30px;
  }
  
  .step-icon {
      width: 30px;
      height: 30px;
      left: -17px;
      font-size: 0.9rem;
  }
  }

/* Promo Code Section */
.promo-code-section {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  background-color: var(--honey-light);
  padding: 15px;
  border-radius: 12px;
  border: 2px solid var(--honey-main);
}

.promo-code-input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid var(--text-dark);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: var(--text-light);
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: border-color 0.2s ease;
}

.promo-code-input:focus {
  border-color: var(--honey-main);
  background-color: var(--text-light);
}

.promo-code-input:disabled {
  background-color: #f0f0f0;
  cursor: not-allowed;
  opacity: 0.7;
}

.promo-code-input::placeholder {
  color: #999;
  text-transform: none;
  letter-spacing: normal;
}

.promo-apply-btn {
  padding: 12px 24px;
  background-color: var(--pink-main);
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.promo-apply-btn:hover {
  background-color: var(--pink-deep);
  transform: scale(1.03);
}

.promo-apply-btn:active {
  transform: scale(0.98);
}

.promo-error {
  background-color: #ffebee;
  border: 2px solid #ef5350;
  color: #c62828;
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-weight: 600;
  display: none;
  animation: slideIn 0.3s ease;
}

.promo-success {
  background-color: #e8f5e9;
  border: 2px solid #66bb6a;
  color: #2e7d32;
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-weight: 600;
  display: none;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Checkout Mobile */
@media (max-width: 768px) {
  .promo-code-section {
    flex-direction: column;
    padding: 12px;
  }

  .promo-apply-btn {
    width: 100%;
  }
}