/*Global CSS*/
@font-face {
  font-family: "Gordita";
  src: url("../assets/fonts/Gordita-Regular.otf") format("opentype");
  font-style: normal;
}

:root {
  --gradient-start: #a8c4e0;
  --gradient-mid: #b8d4ea;
  --gradient-end: #c8d8f0;
  --brand-color: #1a2a3a;
  --nav-link-color: #0a0a0a;
  --nav-link-hover: #000000;
  --toggler-color: #0a0a0a;
  --footer-bg: #ffffff;
  --footer-bottom-bg: #f8f9fb;
  --brand-color: #1a2a3a;
  --text-color: #3a3a3a;
  --muted-color: #888;
  --link-color: #3a3a3a;
  --link-hover: #1a2a3a;
  --accent-pink: #e06fa0;
  --border-color: #e5e5e5;
  --gordita: url("../assets/fonts/Gordita\ Regular.otf") sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: "Gordita", sans-serif;
}
a {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Gordita", sans-serif;
}

ul {
  list-style: none;
}

.container {
  max-width: 1250px;
  margin: 0 auto;
}

/*Navbar Section Start*/
.benji-navbar {
  background: linear-gradient(to right, #8da3fa, #9ec5f8, #9bdaf7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(100, 140, 180, 0.18);
  padding: 12px 40px;
  transition: padding 0.3s ease;
}

.benji-navbar .navbar-brand {
  font-family: "Gordita", sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--brand-color);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
}
.benji-navbar .navbar-brand:hover {
  color: var(--nav-link-hover);
}

.benji-navbar .nav-link {
  font-family: "Gordita", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--nav-link-color);
  padding: 6px 16px !important;
  position: relative;
  transition: color 0.2s ease;
}
.benji-navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--nav-link-hover);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.benji-navbar .nav-link:hover {
  color: #ffffff;
}
.benji-navbar .nav-link:hover::after {
  width: 60%;
  background: #ffffff;
}

.cart-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin-left: 8px;
  transition: transform 0.2s ease;
}
.cart-wrapper:hover {
  transform: scale(1.1);
}
.cart-wrapper .bi-cart-fill {
  font-size: 22px;
  color: var(--nav-link-color);
}
.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--cart-badge-bg);
  color: #fff;
  font-family: "Gordita", sans-serif;
  font-size: 10px;
  font-weight: 500;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*Toggler */
.benji-toggler {
  border: 2px solid rgba(44, 62, 85, 0.4);
  border-radius: 6px;
  padding: 5px 9px;
  background: transparent;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.benji-toggler:hover {
  background: rgba(44, 62, 85, 0.08);
  border-color: rgba(44, 62, 85, 0.6);
}
.benji-toggler .toggler-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.benji-toggler .toggler-icon span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--toggler-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}
/*Navbar Section End*/

/*Banner Section Start*/
.hero-section {
  background: linear-gradient(to right, #8da3fa, #9ec5f8, #9bdaf7);
  min-height: 480px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.hero-circle-tl {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(2px);
  pointer-events: none;
  z-index: 0;
}

.hero-circle-bl {
  position: absolute;
  bottom: -40px;
  left: 60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  filter: blur(1px);
  pointer-events: none;
  z-index: 0;
}

.hero-leaf-deco {
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 130px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

.hero-cookies-img {
  background: rgba(255, 255, 255, 0.15);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.1));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 5400px;
}

.hero-title {
  font-family: "Gordita", sans-serif;
  font-size: 76px;
  font-weight: 400;
  color: var(--brand-color);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-title strong {
  font-family: "Gordita", sans-serif;
  font-weight: 700;
  display: block;
}

.hero-subtitle {
  font-family: "Gordita", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--brand-color);
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-btn {
  display: inline-block;
  background: var(--accent-pink);
  color: #fff;
  font-family: "Gordita", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
  padding: 11px 52px;
  border-radius: 50px;
  border: 2px solid var(--accent-pink);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition:
    color 0.35s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 4px 18px rgba(224, 111, 160, 0.35);
}
.hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 50px;
  z-index: -1;
  transition: left 0.35s ease;
}
.hero-btn:hover::before {
  left: 0;
}
.hero-btn:hover {
  color: var(--accent-pink);
  border-color: var(--accent-pink);
  box-shadow: 0 8px 24px rgba(224, 111, 160, 0.45);
}
/*Banner Section End*/

/*Goal Section Start*/
.goal-section {
  background: #ffffff;
  padding: 70px 0 60px;
}
.goal-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}
.goal-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.goal-title-block {
  flex: 0 0 auto;
  max-width: 300px;
}

.goal-title {
  font-family: "Gordita", sans-serif;
  font-size: 34px;
  font-weight: 400;
  color: var(--brand-color);
  line-height: 1.25;
  margin-bottom: 0;
}

.goal-title strong {
  font-family: "Gordita", sans-serif;
  font-weight: 700;
  display: block;
}

.goal-subtitle {
  font-family: "Gordita", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.8;
  max-width: 380px;
  opacity: 0.8;
  margin: 0;
}

.goal-cards-row {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.goal-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
}
.goal-card:hover {
  border-color: #e06fa0;
  box-shadow:
    0 0 8px rgba(224, 111, 160, 0.5),
    0 0 20px rgba(224, 111, 160, 0.25);
}

.goal-icon-wrap {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid transparent;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

/* .goal-icon-wrap:hover {
  border-color: #e06fa0;
  box-shadow:
    0 0 20px rgba(224, 111, 160, 0.5),
    0 0 20px rgba(224, 111, 160, 0.25);
} */

.goal-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.goal-label {
  font-family: "Gordita", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-color);
  line-height: 1.4;
  margin: 0;
}
/*Goal Section End*/

/*About Section Start*/
.about-section {
  background: linear-gradient(135deg, #8da3fa 0%, #9ec5f8 50%, #9bdaf7 100%);
  min-height: 420px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 60px 0;
  margin-top: 50px;
}

/* .about-circle-deco {
  position: absolute;
  left: 15%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 370px;
  height: 370px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  pointer-events: none;
  z-index: 0;
} */

.about-leaf-deco {
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 140px;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

/*image */
.about-img-col {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.about-dog-img {
  width: 100%;
  max-width: 380px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.08));
  position: relative;
  z-index: 1;
}

/*Content */
.about-content-col {
  position: relative;
  z-index: 1;
  padding: 20px 0 20px 20px;
}

.about-title {
  font-family: "Gordita", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--brand-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--brand-color);
  line-height: 1.85;
  opacity: 0.85;
  margin-bottom: 18px;
  max-width: 460px;
}

.about-desc:last-child {
  margin-bottom: 0;
}
/*About Section End*/

/*Product Section Start*/
.products-section {
  background: #ffffff;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.products-deco-cookie {
  position: absolute;
  top: 0;
  right: -20px;
  width: 160px;
  pointer-events: none;
  z-index: 0;
}

.products-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.products-title {
  font-family: "Gordita", sans-serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--brand-color);
  margin-bottom: 14px;
  line-height: 1.2;
}

.products-title strong {
  font-family: "Gordita", sans-serif;
  font-weight: 700;
  font-style: italic;
  color: var(--brand-color);
}

.products-subtitle {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-color);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto;
  opacity: 0.8;
}

.products-swiper-wrapper {
  position: relative;
  z-index: 1;
}

.product-slide {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 20px 40px;
}

.product-img-side {
  flex: 0 0 420px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-circle-bg {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: #ede4f5;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-circle-bg::before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: -30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(157, 218, 247, 0.45);
}
.product-circle-bg::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: -10px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(157, 218, 247, 0.3);
}

.product-img {
  width: 320px;
  height: 320px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.1));
}

.product-content-side {
  flex: 1;
}

.product-name {
  font-family: "Gordita", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-color);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.product-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 20px;
}

.product-desc-2 {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 30px;
}

.product-btn {
  display: inline-block;
  background: var(--accent-pink);
  color: #fff;
  font-family: "Gordita", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
  padding: 11px 32px;
  border-radius: 50px;
  border: 2px solid var(--accent-pink);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition:
    color 0.35s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 4px 18px rgba(224, 111, 160, 0.35);
}
.product-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 50px;
  z-index: -1;
  transition: left 0.35s ease;
}
.product-btn:hover::before {
  left: 0;
}
.product-btn:hover {
  color: var(--accent-pink);
  border-color: var(--accent-pink);
  box-shadow: 0 8px 24px rgba(224, 111, 160, 0.45);
}

.products-pagination {
  margin-top: 10px;
  text-align: center;
  padding-left: 0;
}

.products-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  border-radius: 50%;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.products-pagination .swiper-pagination-bullet-active {
  background: var(--accent-pink);
  transform: scale(1.2);
}
/*Product Section End*/

/*News Section Start*/
.news-section {
  background: #ffffff;
  padding: 80px 0 70px;
}

.news-header {
  text-align: center;
  margin-bottom: 50px;
}

.news-title {
  font-family: "Gordita", sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--brand-color);
  margin-bottom: 14px;
  line-height: 1.2;
}

.news-title strong {
  font-family: "Gordita", sans-serif;
  font-weight: 700;
  font-style: italic;
  color: var(--brand-color);
}

.news-subtitle {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-color);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto;
  opacity: 0.8;
}

.news-card {
  background: transparent;
  border: none;
  padding: 0;
}
.news-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: visible;
  margin-bottom: 20px;
  background: #f0ece8;
  aspect-ratio: 4 / 3;
  z-index: 0;
  transition: box-shadow 0.35s ease;
}

.news-card:hover .news-img-wrapper {
  box-shadow:
    0 0 0 1px #e06fa0,
    0 0 12px rgba(224, 111, 160, 0.7),
    0 0 24px rgba(224, 111, 160, 0.4);
}

.news-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}
.news-card-title {
  font-family: "Gordita", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-color);
  line-height: 1.4;
  margin-bottom: 10px;
}

.news-card-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted-color);
  line-height: 1.7;
  margin-bottom: 14px;
}

.news-read-more {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-pink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
  transition:
    gap 0.2s ease,
    color 0.2s ease;
}
.news-read-more::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent-pink);
  transition: width 0.25s ease;
}
.news-read-more:hover {
  color: #d45890;
  gap: 8px;
}
.news-read-more:hover::after {
  width: 100%;
}
/*News Section End*/

/*Promotion Section Start*/
.promo-section {
  background: linear-gradient(to right, #8da3fa, #9ec5f8, #9bdaf7);
  min-height: 320px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  margin-top: 50px;
}

.promo-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.promo-headline {
  font-family: "Gordita", sans-serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--brand-color);
  line-height: 1.25;
  margin-bottom: 14px;
}

.promo-headline strong {
  font-family: "Gordita", sans-serif;
  font-weight: 700;
  font-style: italic;
  display: block;
  font-size: 42px;
  color: var(--brand-color);
}

.promo-badge {
  display: inline-block;
  background: var(--accent-pink);
  color: #fff;
  font-family: "Gordita", sans-serif;
  font-size: 30px;
  font-weight: 700;
  padding: 2px 12px;
  border-radius: 6px;
  margin: 0 6px;
  vertical-align: middle;
  letter-spacing: 0.5px;
}
.promo-subtext {
  font-size: 14px;
  font-weight: 300;
  color: var(--brand-color);
  opacity: 0.75;
  margin-bottom: 28px;
  letter-spacing: 0.2px;
}

/* Button*/
.promo-btn {
  display: inline-block;
  background: var(--accent-pink);
  color: #fff;
  font-family: "Gordita", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
  padding: 11px 32px;
  border-radius: 50px;
  border: 2px solid var(--accent-pink);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition:
    color 0.35s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 4px 18px rgba(224, 111, 160, 0.35);
}
.promo-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 50px;
  z-index: -1;
  transition: left 0.35s ease;
}
.promo-btn:hover::before {
  left: 0;
}
.promo-btn:hover {
  color: var(--accent-pink);
  border-color: var(--accent-pink);
  box-shadow: 0 8px 24px rgba(224, 111, 160, 0.45);
}
.promo-btn:active {
  transform: translateY(0);
}
/*Promotion Section End*/

/*Footer Section Start*/
.footer-container {
  max-width: 1250px;
  margin-top: 50px;
}

.benji-footer {
  background: var(--footer-bg);
  padding: 60px 0 0 0;
  position: relative;
  overflow: hidden;
}

.footer-leaf {
  position: absolute;
  left: -10px;
  top: 30px;
  width: 110px;
  opacity: 0.55;
  pointer-events: none;
}

.footer-cookie-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 200px;
  height: auto;
  object-fit: cover;
  border-radius: 0 0 0 20px;
  background: white;
}

.footer-col-title {
  font-family: "Gordita", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-color);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-color);
  line-height: 1.7;
  max-width: 220px;
  margin-bottom: 20px;
}

.footer-email-form {
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid var(--border-color);
  padding-bottom: 6px;
  max-width: 240px;
}
.footer-email-form input {
  border: none;
  outline: none;
  background: transparent;
  font-family: "Gordita", sans-serif;
  font-size: 13px;
  color: var(--text-color);
  width: 100%;
  padding: 4px 0;
}
.footer-email-form input::placeholder {
  color: #bbb;
}
.footer-email-form button {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
}
.footer-email-form button:hover {
  transform: translateX(3px);
}
.footer-email-form button svg {
  fill: var(--accent-pink);
  width: 18px;
  height: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links li a {
  font-size: 13px;
  color: var(--link-color);
  text-decoration: none;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
  display: inline-block;
}
.footer-links li a:hover {
  color: #e06fa0;
  padding-left: 4px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}
.footer-social a {
  color: var(--text-color);
  font-size: 18px;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.footer-social a:hover {
  color: #e06fa0;
  transform: translateY(-2px);
}

.footer-divider {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 40px 0 0 0;
}

.footer-bottom {
  background: var(--footer-bottom-bg);
  padding: 16px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 12px;
  color: var(--muted-color);
}
.footer-copy a {
  color: var(--muted-color);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-copy a:hover {
  color: var(--brand-color);
}
.footer-copy span.sep {
  margin: 0 6px;
  color: #ccc;
}

.payment-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.pay-icon {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 3px 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.pay-icon.visa {
  color: #1a1f71;
}
.pay-icon.mastercard {
  color: #eb001b;
  background: linear-gradient(90deg, #eb001b 40%, #f79e1b 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pay-icon.discover {
  color: #f76f20;
}
.pay-icon.amex {
  color: #007bc1;
}
.pay-icon.paypal {
  color: #003087;
}
.pay-icon.amazon {
  color: #f90;
}

/*Footer Section End*/

/*Media Queries Start*/
@media (max-width: 1200px) {
  /*Navbar Section Start*/
  .benji-navbar {
    padding: 11px 32px;
  }
  .benji-navbar .navbar-brand {
    font-size: 20px;
  }
  .benji-navbar .nav-link {
    font-size: 14px;
    padding: 6px 14px !important;
  }
  /*Navbar Section End*/

  /*Banner Section Start*/
  .hero-section {
    padding: 55px 0;
    min-height: 440px;
  }
  .hero-title {
    font-size: 40px;
  }
  .hero-cookies-img {
    width: 440px;
    right: -10px;
  }
  .hero-leaf-deco {
    width: 110px;
  }
  /*Banner Section End*/

  /*Goal Section Start*/
  .goal-section {
    padding: 60px 0 50px;
  }
  .goal-title {
    font-size: 30px;
  }
  .goal-icon-wrap {
    width: 88px;
    height: 88px;
  }
  .goal-header-row {
    margin-bottom: 46px;
  }
  /*Goal Section End*/
  /*About Section Start*/
  .about-section {
    padding: 55px 0;
    min-height: 380px;
  }
  .about-title {
    font-size: 34px;
  }
  .about-dog-img {
    max-width: 340px;
  }
  .about-circle-deco {
    width: 320px;
    height: 320px;
    left: 14%;
  }
  .about-leaf-deco {
    width: 120px;
  }
  /*About Section End*/

  /*Product Section Start*/
  .products-section {
    padding: 70px 0 50px;
  }
  .products-title {
    font-size: 34px;
  }
  .product-img-side {
    flex: 0 0 360px;
  }
  .product-circle-bg {
    width: 330px;
    height: 330px;
  }
  .product-img {
    width: 280px;
    height: 280px;
  }
  .product-slide {
    gap: 44px;
  }
  .products-deco-cookie {
    width: 130px;
  }
  /*Product Section End*/

  /*News Section Start*/
  .news-section {
    padding: 70px 0 60px;
  }
  .news-title {
    font-size: 32px;
  }
  .news-subtitle {
    font-size: 13.5px;
  }
  .news-header {
    margin-bottom: 42px;
  }
  /*News Section End*/

  /*Promotion Section Start*/
  .promo-section {
    padding: 60px 0;
    min-height: 290px;
  }
  .promo-headline {
    font-size: 34px;
  }
  .promo-headline strong {
    font-size: 38px;
  }
  /*Promotion Section End*/

  /*Footer Section Start*/
  .benji-footer {
    padding: 50px 0 0 0;
  }
  .footer-cookie-img {
    width: 170px;
  }
  .footer-leaf {
    width: 90px;
  }

  /*Footer Section End*/
}

@media (max-width: 992px) {
  /*Navbar Section Start*/
  .benji-navbar {
    padding: 10px 24px;
  }
  .benji-navbar .navbar-brand {
    font-size: 18px;
    letter-spacing: 2px;
  }
  .benji-navbar .nav-link {
    font-size: 14px;
    padding: 9px 8px !important;
    border-bottom: 1px solid rgba(44, 62, 85, 0.08);
  }
  .benji-navbar .nav-link:last-child {
    border-bottom: none;
  }
  .benji-navbar .nav-link::after {
    display: none;
  }
  /**/
  .benji-navbar .navbar-collapse {
    background: linear-gradient(to right, #8da3fa, #9ec5f8, #9bdaf7);
    border-radius: 10px;
    margin-top: 12px;
    padding: 12px 16px;
    box-shadow: 0 6px 24px rgba(100, 140, 180, 0.2);
  }

  /*Navbar Section End*/

  /*Banner Section Start*/
  .hero-section {
    padding: 50px 0;
    min-height: 400px;
  }
  .hero-title {
    font-size: 34px;
  }
  .hero-subtitle {
    font-size: 13.5px;
    max-width: 300px;
  }
  .hero-cookies-img {
    width: 360px;
    right: -10px;
  }
  .hero-leaf-deco {
    width: 90px;
  }
  .hero-circle-tl {
    width: 260px;
    height: 260px;
  }
  /*Banner Section End*/

  /*Goal Section Start*/
  .goal-section {
    padding: 50px 0 44px;
  }
  .goal-title {
    font-size: 26px;
  }
  .goal-subtitle {
    font-size: 13.5px;
  }
  .goal-icon-wrap {
    width: 78px;
    height: 78px;
  }
  .goal-label {
    font-size: 13px;
  }
  .goal-header-row {
    gap: 24px;
    margin-bottom: 38px;
  }
  .goal-cards-row {
    gap: 16px;
  }
  /*Goal Section End*/

  /*About Section Start*/
  .about-section {
    padding: 50px 0;
    min-height: 340px;
  }
  .about-title {
    font-size: 30px;
  }
  .about-desc {
    font-size: 13.5px;
    max-width: 100%;
  }
  .about-dog-img {
    max-width: 290px;
  }
  .about-circle-deco {
    width: 270px;
    height: 270px;
    left: 13%;
  }
  .about-leaf-deco {
    width: 100px;
  }
  .about-content-col {
    padding-left: 12px;
  }
  /*About Section End*/

  /*Product Section Start*/
  .products-section {
    padding: 60px 0 44px;
  }
  .products-title {
    font-size: 30px;
  }
  .products-header {
    margin-bottom: 40px;
  }
  .product-img-side {
    flex: 0 0 300px;
  }
  .product-circle-bg {
    width: 270px;
    height: 270px;
  }
  .product-img {
    width: 230px;
    height: 230px;
  }
  .product-slide {
    gap: 32px;
  }
  .product-name {
    font-size: 20px;
  }
  .products-deco-cookie {
    width: 110px;
  }
  /*Product Section End*/

  /*News Section Start*/
  .news-section {
    padding: 60px 0 50px;
  }
  .news-title {
    font-size: 28px;
  }
  .news-subtitle {
    font-size: 13px;
    max-width: 400px;
  }
  .news-header {
    margin-bottom: 36px;
  }
  .news-card-title {
    font-size: 15px;
  }
  /*News Section End*/

  /*Promotion Section Start*/
  .promo-section {
    padding: 55px 0;
    min-height: 270px;
  }
  .promo-headline {
    font-size: 30px;
  }
  .promo-headline strong {
    font-size: 34px;
  }
  .promo-badge {
    font-size: 18px;
    padding: 2px 10px;
  }
  .promo-subtext {
    font-size: 13.5px;
  }

  /*Promotion Section End*/

  /*Footer Section Start*/
  .benji-footer {
    padding: 40px 0 0 0;
  }
  .footer-cookie-img {
    width: 140px;
    top: 0;
  }
  .footer-leaf {
    width: 75px;
    left: -5px;
  }
  .footer-col-title {
    font-size: 16px;
  }

  /*Footer Section End*/
}

@media (max-width: 768px) {
  /*Navbar Section Start*/
  .benji-navbar {
    padding: 10px 20px;
  }
  .benji-navbar .navbar-brand {
    font-size: 17px;
    letter-spacing: 1px;
  }
  .benji-navbar .nav-link {
    font-size: 14px;
  }
  .benji-navbar .navbar-collapse {
    border-radius: 8px;
  }
  /*Navbar Section End*/

  /*Banner Section Start*/
  .hero-section {
    padding: 44px 0;
    min-height: 360px;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-subtitle {
    font-size: 13px;
    max-width: 260px;
    margin-bottom: 24px;
  }
  .hero-cookies-img {
    width: 280px;
    right: -20px;
    opacity: 0.9;
  }
  .hero-leaf-deco {
    width: 75px;
  }
  .hero-btn {
    font-size: 13px;
    padding: 10px 26px;
  }
  /*Banner Section End*/

  /*Goal Section Start*/
  .goal-section {
    padding: 44px 0 36px;
  }
  .goal-header-row {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
  }
  .goal-title-block {
    max-width: 100%;
  }
  .goal-title {
    font-size: 24px;
  }
  .goal-subtitle {
    font-size: 13px;
    max-width: 100%;
  }
  .goal-cards-row {
    flex-wrap: wrap;
    gap: 28px;
  }
  .goal-card {
    flex: 0 0 calc(50% - 14px);
    align-items: flex-start;
  }
  .goal-icon-wrap {
    width: 80px;
    height: 80px;
  }
  /*Goal Section End*/

  /*About Section Start*/
  .about-section {
    padding: 44px 0 36px;
    min-height: auto;
  }
  .about-title {
    font-size: 28px;
    text-align: center;
  }
  .about-desc {
    font-size: 13px;
    text-align: center;
    max-width: 100%;
  }
  .about-img-col {
    justify-content: center;
    margin-bottom: 20px;
  }
  .about-dog-img {
    max-width: 260px;
  }
  .about-circle-deco {
    left: 50%;
    top: 30%;
    width: 240px;
    height: 240px;
  }
  .about-content-col {
    padding: 0 16px;
  }
  .about-leaf-deco {
    width: 85px;
  }
  /*About Section End*/

  /*Product Section Start*/
  .products-section {
    padding: 50px 0 40px;
  }
  .products-title {
    font-size: 26px;
  }
  .products-subtitle {
    font-size: 13px;
    padding: 0 16px;
  }
  .product-slide {
    flex-direction: column;
    gap: 24px;
    padding: 0 16px 40px;
    text-align: center;
  }
  .product-img-side {
    flex: unset;
    width: 100%;
    justify-content: center;
  }
  .product-circle-bg {
    width: 260px;
    height: 260px;
  }
  .product-img {
    width: 210px;
    height: 210px;
  }
  .product-content-side {
    width: 100%;
  }
  .product-name {
    font-size: 20px;
    text-align: center;
  }
  .product-desc,
  .product-desc-2 {
    text-align: center;
    font-size: 13px;
  }
  .products-pagination {
    text-align: center;
    padding-left: 0;
  }
  .products-deco-cookie {
    width: 90px;
  }
  /*Product Section End*/

  /*News Section Start*/
  .news-section {
    padding: 50px 0 44px;
  }
  .news-title {
    font-size: 26px;
  }
  .news-subtitle {
    font-size: 13px;
    max-width: 340px;
    padding: 0 10px;
  }
  .news-header {
    margin-bottom: 30px;
  }
  .news-img-wrapper {
    margin-bottom: 16px;
  }
  .news-card-title {
    font-size: 14.5px;
  }
  .news-card-text {
    font-size: 12.5px;
  }
  /*News Section End*/

  /*Promotion Section Start*/
  .promo-section {
    padding: 50px 0;
    min-height: 250px;
  }
  .promo-headline {
    font-size: 26px;
  }
  .promo-headline strong {
    font-size: 30px;
  }
  .promo-badge {
    font-size: 16px;
    padding: 2px 9px;
  }
  .promo-subtext {
    font-size: 13px;
    padding: 0 20px;
  }
  .promo-btn {
    font-size: 13.5px;
    padding: 10px 28px;
  }

  /*Promotion Section End*/

  /*Footer Section Start*/
  .benji-footer {
    padding: 36px 0 0 0;
  }
  .footer-cookie-img {
    width: 110px;
    opacity: 0.8;
  }
  .footer-leaf {
    display: none;
  }
  .footer-desc {
    max-width: 100%;
  }
  .footer-email-form {
    max-width: 100%;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /*Footer Section End*/
}

@media (max-width: 576px) {
  /*Navbar Section Start*/
  .benji-navbar {
    padding: 9px 16px;
  }
  .benji-navbar .navbar-brand {
    font-size: 16px;
    letter-spacing: 1px;
  }
  .benji-navbar .nav-link {
    font-size: 14px;
    padding: 8px 6px !important;
  }
  .cart-wrapper .bi-cart-fill {
    font-size: 20px;
  }
  /*Navbar Section End*/

  /*Banner Section Start*/
  .hero-section {
    padding: 40px 0;
    min-height: auto;
  }
  .hero-title {
    font-size: 24px;
  }
  .hero-subtitle {
    font-size: 12.5px;
    max-width: 220px;
    margin-bottom: 20px;
  }
  .hero-cookies-img {
    width: 210px;
    right: -16px;
    top: 55%;
  }
  .hero-leaf-deco {
    width: 60px;
  }
  .hero-btn {
    font-size: 12.5px;
    padding: 9px 22px;
  }
  .hero-circle-tl {
    width: 200px;
    height: 200px;
    top: -60px;
    left: -60px;
  }

  /*Banner Section End*/

  /*Goal Section Start*/
  .goal-section {
    padding: 36px 0 28px;
  }
  .goal-title {
    font-size: 22px;
  }
  .goal-subtitle {
    font-size: 12.5px;
  }
  .goal-cards-row {
    gap: 22px;
  }
  .goal-card {
    flex: 0 0 calc(50% - 11px);
  }
  .goal-icon-wrap {
    width: 70px;
    height: 70px;
  }
  .goal-label {
    font-size: 12.5px;
  }
  /*Goal Section End*/

  /*About Section Start*/
  .about-section {
    padding: 36px 30px;
  }
  .about-title {
    font-size: 24px;
    margin-bottom: 14px;
  }
  .about-desc {
    font-size: 12.5px;
    line-height: 1.75;
    margin-bottom: 14px;
  }
  .about-dog-img {
    max-width: 220px;
  }
  .about-circle-deco {
    width: 200px;
    height: 200px;
  }
  .about-leaf-deco {
    width: 70px;
  }
  /*About Section End*/

  /*Product Section Start*/
  .products-section {
    padding: 40px 0 32px;
  }
  .products-title {
    font-size: 22px;
  }
  .products-subtitle {
    font-size: 12.5px;
    padding: 0 20px;
  }
  .products-header {
    margin-bottom: 30px;
  }
  .product-circle-bg {
    width: 220px;
    height: 220px;
  }
  .product-img {
    width: 180px;
    height: 180px;
  }
  .product-name {
    font-size: 18px;
    letter-spacing: 1px;
  }
  .product-desc,
  .product-desc-2 {
    font-size: 12.5px;
  }
  .product-btn {
    font-size: 13px;
    padding: 9px 26px;
  }
  .products-deco-cookie {
    display: none;
  }
  /*Product Section End*/

  /*News Section Start*/
  .news-section {
    padding: 40px 0 36px;
  }
  .news-title {
    font-size: 22px;
  }
  .news-subtitle {
    font-size: 12.5px;
    padding: 0 16px;
  }
  .news-header {
    margin-bottom: 26px;
  }
  .news-card {
    margin-bottom: 32px;
  }
  .news-card-title {
    font-size: 14px;
  }
  .news-card-text {
    font-size: 12px;
  }
  .news-read-more {
    font-size: 12.5px;
  }
  /*News Section End*/

  /*Promotion Section Start*/
  .promo-section {
    padding: 44px 16px;
    min-height: auto;
  }
  .promo-headline {
    font-size: 22px;
  }
  .promo-headline strong {
    font-size: 26px;
  }
  .promo-badge {
    font-size: 14px;
    padding: 2px 8px;
    border-radius: 5px;
  }
  .promo-subtext {
    font-size: 12.5px;
    padding: 0 10px;
    margin-bottom: 22px;
  }
  .promo-btn {
    font-size: 13px;
    padding: 9px 24px;
  }
  /*Promotion Section End*/

  /*Footer Section Start*/
  .benji-footer {
    padding: 30px 0 0 0;
  }
  .footer-cookie-img {
    display: none;
  }
  .footer-col-title {
    font-size: 15px;
    margin-bottom: 12px;
  }
  .footer-links li a {
    font-size: 12.5px;
  }
  .footer-desc {
    font-size: 12.5px;
  }
  .footer-social {
    gap: 14px;
    margin-top: 24px;
  }
  .footer-social a {
    font-size: 16px;
  }
  .footer-copy {
    font-size: 11px;
  }
  .pay-icon {
    font-size: 9px;
    padding: 2px 5px;
  }

  /*Footer Section End*/
}

@media (max-width: 320px) {
  /*Navbar Section Start*/
  .benji-navbar {
    padding: 8px 12px;
  }
  .benji-navbar .navbar-brand {
    font-size: 14px;
    letter-spacing: 1px;
  }
  .benji-navbar .nav-link {
    font-size: 13px;
    padding: 7px 6px !important;
  }
  .benji-toggler {
    padding: 4px 7px;
  }
  .benji-toggler .toggler-icon span {
    width: 18px;
  }
  .cart-badge {
    width: 14px;
    height: 14px;
    font-size: 9px;
  }
  /*Navbar Section End*/

  /*Banner Section Start*/
  .hero-section {
    padding: 32px 0;
  }
  .hero-title {
    font-size: 20px;
  }
  .hero-subtitle {
    font-size: 12px;
    max-width: 180px;
    margin-bottom: 16px;
  }
  .hero-cookies-img {
    width: 160px;
    right: -10px;
  }
  .hero-leaf-deco {
    width: 50px;
  }
  .hero-btn {
    font-size: 12px;
    padding: 8px 18px;
  }
  /*Banner Section End*/

  /*Goal Section Start*/
  .goal-section {
    padding: 28px 0 22px;
  }
  .goal-title {
    font-size: 19px;
  }
  .goal-subtitle {
    font-size: 12px;
  }
  .goal-header-row {
    margin-bottom: 24px;
  }
  .goal-cards-row {
    gap: 16px;
  }
  .goal-card {
    flex: 0 0 calc(50% - 8px);
  }
  .goal-icon-wrap {
    width: 60px;
    height: 60px;
  }
  .goal-label {
    font-size: 12px;
  }
  /*Goal Section End*/

  /*About Section Start*/
  .about-section {
    padding: 28px 0 24px;
  }
  .about-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .about-desc {
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 12px;
  }
  .about-dog-img {
    max-width: 180px;
  }
  .about-circle-deco {
    width: 170px;
    height: 170px;
  }
  .about-leaf-deco {
    width: 55px;
  }
  .about-content-col {
    padding: 0 10px;
  }
  /*About Section End*/

  /*Product Section Start*/
  .products-section {
    padding: 32px 0 24px;
  }
  .products-title {
    font-size: 19px;
  }
  .products-subtitle {
    font-size: 12px;
    padding: 0 10px;
  }
  .product-circle-bg {
    width: 190px;
    height: 190px;
  }
  .product-img {
    width: 155px;
    height: 155px;
  }
  .product-name {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
  .product-desc,
  .product-desc-2 {
    font-size: 12px;
  }
  .product-btn {
    font-size: 12.5px;
    padding: 8px 22px;
  }
  /*Product Section End*/

  /*News Section Start*/
  .news-section {
    padding: 32px 0 28px;
  }
  .news-title {
    font-size: 19px;
  }
  .news-subtitle {
    font-size: 12px;
    padding: 0 8px;
  }
  .news-header {
    margin-bottom: 22px;
  }
  .news-card-title {
    font-size: 13.5px;
  }
  .news-card-text {
    font-size: 11.5px;
  }
  .news-read-more {
    font-size: 12px;
  }
  /*News Section End*/

  /*Promotion Section Start*/
  .promo-section {
    padding: 36px 12px;
  }
  .promo-headline {
    font-size: 19px;
  }
  .promo-headline strong {
    font-size: 22px;
  }
  .promo-badge {
    font-size: 13px;
    padding: 1px 7px;
  }
  .promo-subtext {
    font-size: 12px;
    padding: 0 4px;
    margin-bottom: 18px;
  }
  .promo-btn {
    font-size: 12.5px;
    padding: 8px 20px;
  }
  /*Promotion Section End*/

  /*Footer Section Start*/
  .benji-footer {
    padding: 24px 0 0 0;
  }
  .footer-col-title {
    font-size: 14px;
  }
  .footer-links li a {
    font-size: 12px;
  }
  .footer-desc {
    font-size: 12px;
  }
  .footer-email-form input {
    font-size: 12px;
  }
  .footer-social {
    gap: 12px;
    margin-top: 20px;
  }
  .footer-social a {
    font-size: 15px;
  }
  .footer-copy {
    font-size: 10.5px;
  }
  .payment-icons {
    gap: 4px;
  }
  .pay-icon {
    font-size: 8.5px;
    padding: 2px 4px;
  }

  /*Footer Section End*/
}
/*Media Queries End*/
