* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg-color: rgb(26, 83, 54);
  --text-color: #fff;
  --bg-color-gray: #f4f4f4;
  --bg-color-green: #7ad6a9;
}
body {
  font-size: 15.5px;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.4px;
  line-height: 1.6;
  color: #121212;
}
.owl-carousel {
  z-index: 0;
}

/* match Shopify page width (~1200px) instead of Bootstrap's 1320px */
@media (min-width: 1400px) {

  .container {
    max-width: 1200px;
  }
}

/* full-bleed wrapper for the home product slider */
.slider-bleed {
  padding-left: 24px;
  padding-right: 24px;
}
.btn-success{
  background: var(--bg-color);
  border-color: var(--bg-color);
  padding: 12px 35px;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active {
  background: #143f29 !important;
  border-color: #143f29 !important;
}

.btn-outline-success {
  color: var(--bg-color);
  border-color: var(--bg-color);
  padding: 12px 35px;
}

.btn-outline-success:hover,
.btn-outline-success:focus,
.btn-outline-success:active {
  background: var(--bg-color) !important;
  border-color: var(--bg-color) !important;
  color: var(--text-color) !important;
}

.text-success {
  color: var(--bg-color) !important;
}

/* thank you page */
.thankyou-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--bg-color);
  color: var(--text-color);
  font-size: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-bar {
  background: #1a5336;
  color: var(--text-color);
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.top-bar .item {
  height: 45px;
}

.top-bar {
  position: relative;
}

/* rotating messages: short slide + fade, no clipping */
.topbar-msgs {
  position: relative;
  height: 45px;
  overflow: hidden;
}

.topbar-msg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.topbar-msg.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.topbar-msg.exit-left {
  opacity: 0;
  transform: translateX(-28px);
}

.topbar-msg.exit-right {
  opacity: 0;
  transform: translateX(28px);
}

.topbar-arrow {
  position: absolute;
  top: 0;
  height: 45px;
  width: 45px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  cursor: pointer;
  z-index: 2;
}

.topbar-arrow:hover {
  opacity: 1;
}

.topbar-arrow-left {
  left: 0;
}

.topbar-arrow-right {
  right: 0;
}
.navbar {
  min-height: 80px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1020;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.logo img {
  max-height: 45px;
}

.navbar-nav .nav-link {
  font-size: 15px;
  color: #222;
  padding: 0 18px !important;
  font-weight: 400;
}

.navbar-nav .nav-link:hover {
  color: var(--bg-color);
}

.navbar-nav .active {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 8px;
  color: var(--bg-color) !important;
}

.header-icons {
  gap: 25px;
}

.icon-btn {
  color: #222;
  font-size: 24px;
  text-decoration: none;
}

.icon-btn:hover {
  color: #1a5336;
}

.cart-count {
  position: absolute;
  bottom: -4px;
  right: -8px;
  background: #1a5336;
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-btn .bi {
  font-size: 21px;
}

/* the person glyph draws smaller than search/bag - compensate */
.icon-btn .icon-person {
  font-size: 26px;
}

.nav-shop-dropdown {
  min-width: 180px;
  padding: 8px 0;
}

.nav-shop-dropdown .dropdown-item {
  padding: 8px 18px;
  font-size: 14.5px;
  color: #222;
}

.nav-shop-dropdown .dropdown-item:hover {
  background: var(--bg-color-gray);
  color: var(--bg-color);
}

.navbar .dropdown-toggle::after {
  vertical-align: 1px;
}

/* mobile menu drawer */
.mobile-menu {
  width: 300px;
}

.mobile-nav a,
.mobile-nav .mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 4px;
  font-size: 16px;
  color: #121212;
  text-decoration: none;
  border: none;
  background: transparent;
  border-bottom: 1px solid #f0f0f0;
  text-align: left;
}

.mobile-nav a:hover,
.mobile-nav .mobile-nav-toggle:hover {
  color: var(--bg-color);
}

.mobile-nav-toggle i {
  font-size: 13px;
  transition: transform 0.25s;
}

.mobile-nav-toggle:not(.collapsed) i {
  transform: rotate(180deg);
}

.mobile-submenu {
  background: #f8f9f8;
  border-radius: 8px;
  margin: 6px 0;
}

.mobile-submenu a {
  padding: 11px 16px;
  font-size: 15px;
  border-bottom: 1px solid #eef0ee;
}

.mobile-submenu a:last-child {
  border-bottom: none;
}

.mobile-menu-footer a {
  color: #121212;
  text-decoration: none;
  font-size: 15.5px;
  display: flex;
  align-items: center;
}

/* slide-down search bar */
.search-bar {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.search-bar.open {
  max-height: 90px;
  overflow: visible;
  position: relative;
  z-index: 1030;
}

/* predictive search panel */
.search-suggest {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, 100%);
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  z-index: 1040;
  overflow: hidden;
}

.search-suggest.show {
  display: block;
}

.suggest-col {
  padding: 16px 20px;
}

.suggest-col + .suggest-col {
  border-left: 1px solid #f0f0f0;
}

.suggest-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #8a8a8a;
  margin-bottom: 10px;
}

.suggest-term {
  display: block;
  padding: 7px 0;
  color: #121212;
  text-decoration: none;
  font-size: 14.5px;
  text-transform: capitalize;
}

.suggest-term:hover {
  color: var(--bg-color);
  text-decoration: underline;
}

.suggest-product {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  text-decoration: none;
  color: #121212;
  font-size: 14px;
  line-height: 1.45;
}

.suggest-product img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #eee;
  flex-shrink: 0;
}

.suggest-product small {
  display: block;
  color: #777;
  margin-top: 2px;
}

.suggest-product:hover {
  color: var(--bg-color);
}

.suggest-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px;
  border-top: 1px solid #f0f0f0;
  color: #121212;
  text-decoration: none;
  font-size: 14.5px;
  background: #fafafa;
}

.suggest-footer:hover {
  color: var(--bg-color);
}

.search-bar-group {
  max-width: 640px;
  margin: 0 auto;
  border: 1px solid #121212;
  border-radius: 50px;
  overflow: hidden;
  background: #fff;
}

.search-bar-group .form-control {
  border: none;
  height: 46px;
  font-size: 15px;
  padding-left: 22px;
  background: transparent;
}

.search-bar-group .form-control:focus {
  box-shadow: none;
}

.search-bar-group .btn {
  border: none;
  background: transparent;
  font-size: 18px;
  padding: 0 16px;
}

.search-bar-close {
  border: none;
  background: transparent;
  font-size: 18px;
  color: #333;
  padding: 8px;
}

.search-bar-close:hover {
  color: #000;
}

.dropdown-menu {
  border-radius: 0;
  border: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.account-dropdown {
  min-width: 220px;
  padding: 8px 0;
}

.account-dropdown .dropdown-item {
  padding: 9px 18px;
  font-size: 15px;
  color: #222;
}

.account-dropdown .dropdown-item:hover {
  background: var(--bg-color-gray);
  color: var(--bg-color);
}

.account-dropdown .dropdown-header {
  font-weight: 600;
  color: var(--bg-color);
}
/* banner */

.hero-banner {
  position: relative;
}

.banner-slider .owl-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  z-index: 99;
}

.banner-slider .owl-dot {
  width: 50px;
  height: 3px;
  background: rgba(255, 255, 255, 0.4) !important;
  margin: 0 12px;
  display: inline-block;
  border-radius: 3px;
  transition: 0.3s;
}

.banner-slider .owl-dot.active {
  background: var(--bg-color) !important ;
}

.banner-slider .item {
  position: relative;
}
.banner-slider .item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
/* Product */
.section-p1 {
  margin-top: 50px;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.section-gray {
  background: var(--bg-color-gray);
}
.product-card {
  border: 1px solid #616161;
  border-radius: 12px;
  background: transparent;
  padding: 15px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.product-card:hover {
  box-shadow: 0 6px 20px rgba(20, 40, 30, 0.08);
}

.product-content {
  flex: 1;
}

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

.product-title-link:hover h5 {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--bg-color);
}

/* square image block filling the card width (matches shopify cards) */
.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #fff;
}

.product-image img,
.owl-carousel .owl-item .product-image img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}

.discount-badge {
  position: absolute;
  top: 25px;
  left: 30px;
  background: var(--bg-color-green);
  color: var(--text-color);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
}

.stock-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #f3f3f3;
  color: #333;
  padding: 7px 16px;
  font-size: 13px;
}

.product-content h5 {
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
  color: #121212;
  min-height: 70px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rating {
  font-size: 13px;
  color: #1c1c1c;
  margin: 10px 0 14px;
  min-height: 16px;
}

.rating .fa-star {
  margin-right: 1px;
}

.rating .fa-regular {
  color: #b9bfba;
}

.rating span {
  color: #555;
  font-size: 13px;
  margin-left: 6px;
}

.old-price {
  display: inline;
  color: #8a8a8a;
  text-decoration: line-through;
  font-size: 14px;
  margin-right: 8px;
}

.sale-price {
  font-size: 16px;
  font-weight: 500;
  color: #121212;
}

.price-off {
  color: var(--bg-color);
  font-size: 13px;
  font-weight: 600;
  margin-top: 3px;
  letter-spacing: 0.5px;
}

.product-footer {
  margin-top: 35px;
}

.cart-btn {
  display: block;
  width: 100%;
  text-align: center;
  border: 1.5px solid var(--bg-color);
  border-radius: 50px;
  padding: 10px;
  font-size: 15px;
  font-weight: 400;
  color: var(--bg-color);
  background: var(--text-color);
  text-decoration: none;
  transition: 0.3s;
}

.cart-btn:hover {
  background: var(--bg-color);
  color: var(--text-color);
}

.disabled-btn {
  border-color: #c5d1c9;
  color: #95aa9d;
  background: #fff;
}
/* give card borders/shadows room inside the carousel's overflow:hidden */
.product-slider .owl-stage-outer {
  padding: 3px;
  margin: -3px;
}

/* equal card heights inside the carousel */
.product-slider .owl-stage {
  display: flex;
}

.product-slider .owl-item {
  display: flex;
  height: auto;
}

.product-slider .owl-item .product-card {
  height: 100%;
}

/* fixed card width so a partial next card peeks at the edge (like Shopify) */
.product-slider .product-card {
  width: 300px;
}

@media (max-width: 767.98px) {

  .product-slider .product-card {
    width: 44vw;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {

  .product-slider .product-card {
    width: 30vw;
  }
}

.product-slider .owl-nav {
  text-align: center;
  margin-top: 22px;
  display: flex !important;
  justify-content: center !important;
  align-items: center;
}

.product-slider .owl-prev,
.product-slider .owl-next {
  background: transparent !important;
  border: none !important;
  font-size: 20px !important;
  color: #555 !important;
  margin: 0 6px;
}

.product-slider .owl-prev:hover,
.product-slider .owl-next:hover {
  color: #111 !important;
}

.slider-counter {
  font-size: 14px;
  color: #333;
  letter-spacing: 1px;
  min-width: 46px;
  display: inline-block;
  text-align: center;
}

.btn-viewall {
  display: inline-block;
  background: #57b287;
  color: #fff;
  border-radius: 50px;
  padding: 11px 32px;
  font-size: 15px;
  text-decoration: none;
  transition: 0.2s;
}

.btn-viewall:hover {
  background: #479a73;
  color: #fff;
}
/* video section */
.video-section {
  padding: 4rem 0;
}

.video-wrapper {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(20, 40, 30, 0.18);
  line-height: 0;
}

.video-wrapper video {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  display: block;
}

@media (max-width: 767.98px) {

  .video-section {
    padding: 2.5rem 0;
  }

  .video-wrapper {
    border-radius: 12px;
  }

  .video-wrapper video {
    aspect-ratio: 16 / 10;
  }
}

/* Unique Section */
.unique-img img {
  height: 700px;
  width: 100%;
  object-fit: cover;
}
/* Floating WhatsApp button */
.whatsapp-float {
  text-decoration: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767.98px) {

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 26px;
    bottom: 18px;
    right: 18px;
  }
}

/* Instagram grid */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.insta-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
}

.insta-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.insta-tile:hover img {
  transform: scale(1.06);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 83, 54, 0.55);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}

.insta-tile:hover .insta-overlay {
  opacity: 1;
}

@media (max-width: 767.98px) {

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
}

/* Footer */
.footer-section {
  background: #1a5336;
}

.footer-links a,
.footer-contact {
  color: #d8e5dc;
  text-decoration: none;
  font-size: 16px;
  line-height: 2rem;
}
.footer-links a:hover {
  color: var(--text-color);
}

/* subscription page */
.subscription-text,
.subscription-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #121212;
}

@media (max-width: 767.98px) {

  .subscription-text,
  .subscription-text p {
    font-size: 15px;
  }
}

/* subscription page email box */
.subscribe-box {
  max-width: 420px;
  border: 1px solid #121212;
  border-radius: 50px;
  overflow: hidden;
  background: #fff;
}

.subscribe-box .form-control {
  border: none;
  height: 48px;
  padding-left: 22px;
  background: transparent;
}

.subscribe-box .form-control:focus {
  box-shadow: none;
}

.subscribe-box .btn {
  border: none;
  background: transparent;
  font-size: 18px;
  padding: 0 20px;
  color: #121212;
}

.subscribe-box .btn:hover {
  color: var(--bg-color);
}

.newsletter-box {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  overflow: hidden;
}

.newsletter-box .form-control {
  background: transparent;
  border: none;
  color: var(--text-color);
  padding: 10px 20px;
  font-size: 16px;
}

.newsletter-box .form-control:focus {
  box-shadow: none;
  background: transparent;
  color: var(--text-color);
}

.newsletter-box .form-control::placeholder {
  color: #d8e5dc;
}

.newsletter-box .btn {
  padding: 0 25px;
  font-size: 24px;
}

.footer-divider {
  border-color: #d8e5dc;
  margin: 0;
}

.copyright {
  color: #d8e5dc;
  font-size: 14px;
}

.social-icon {
  color: #d8e5dc;
  text-decoration: none;
  font-size: 20px;
  margin-left: 20px;
}
/* about-us*/

.feature-card {
  background: #e2e2e5;
  border-radius: 25px;
  padding: 25px;
  height: 100%;
}

.feature-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 30px;
}
.airlys-input {
  height: 50px;
  border: 2px solid #8f8f8f;
  border-radius: 50px;
  background: transparent;
  padding: 0 30px;
}

.airlys-textarea {
  height: 180px;
  border: 2px solid #8f8f8f;
  border-radius: 35px;
  background: transparent;
  padding: 10px 30px;
  resize: none;
}

.airlys-input:focus,
.airlys-textarea:focus {
  box-shadow: none;
  border-color: #666;
}

.airlys-btn {
  background: #65cb96;
  color: #fff;
  border: none;
  min-width: 170px;
  height: 50px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 500;
  padding: 0 40px;
}

.airlys-btn:hover {
  background: #54b885;
  color: #fff;
}
/* details */
.product-main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  background: #fff;
}

/* product detail: discount badge + prepaid offer */
.detail-discount-badge {
  background: var(--bg-color-green);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.prepaid-offer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e3f3ea;
  color: var(--bg-color);
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 13.5px;
}

.prepaid-offer i {
  font-size: 15px;
}

/* thumbnail strip with arrows (no visible scrollbar) */
.thumb-strip {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 2px;
}

.thumb-strip::-webkit-scrollbar {
  display: none;
}

.thumb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #d5d9d6;
  background: #fff;
  color: #121212;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  transition: 0.2s;
}

.thumb-nav:hover {
  background: var(--bg-color);
  color: #fff;
  border-color: var(--bg-color);
}

.thumb-prev {
  left: -10px;
}

.thumb-next {
  right: -10px;
}

.thumb {
  transition: 0.3s;
}

.thumb:hover {
  transform: scale(1.05);
}

.active-thumb {
  border: 3px solid #198754 !important;
}
/* shop filters (match airlys rounded input design) */
.shop-filters .form-control,
.shop-filters .form-select {
  height: 50px;
  border: 2px solid #8f8f8f;
  border-radius: 50px;
  background: transparent;
  padding: 0 25px;
  font-size: 15px;
}

.shop-filters .form-control:focus,
.shop-filters .form-select:focus {
  box-shadow: none;
  border-color: var(--bg-color);
}

.shop-filters .form-select {
  padding-right: 42px;
  cursor: pointer;
}

.shop-filters .input-group .form-control {
  border-radius: 50px 0 0 50px;
  border-right: none;
}

.shop-filters .input-group .btn {
  height: 50px;
  border-radius: 0 50px 50px 0;
  padding: 0 25px;
  border: 2px solid var(--bg-color);
}

.shop-filters .btn-outline-secondary {
  height: 50px;
  border-radius: 50px;
  border-width: 2px;
  padding: 0 20px;
  line-height: 46px;
}

/* account */
.account-orders thead th {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #8a8a8a;
  font-weight: 500;
  border-bottom: 1px solid #ddd;
  padding-bottom: 12px;
}

.account-orders tbody td {
  padding: 14px 8px;
  font-size: 14.5px;
  border-color: #eee;
}

.account-orders a {
  text-decoration: none;
}

.account-orders a:hover {
  text-decoration: underline;
}

/* checkout */
.checkout-wrap {
  min-height: 70vh;
}

.checkout-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}

.checkout-input {
  height: 48px;
  border-radius: 8px;
  border-color: #d5d9d6;
  font-size: 14.5px;
}

textarea.checkout-input {
  height: auto;
}

.checkout-input:focus {
  border-color: var(--bg-color);
  box-shadow: 0 0 0 0.15rem rgba(26, 83, 54, 0.12);
}

.checkout-summary {
  background: #f5f5f5;
  border-left: 1px solid #e3e3e3;
  padding-top: 10px;
  padding-bottom: 30px;
}

@media (min-width: 992px) {

  .checkout-summary {
    position: sticky;
    top: 90px;
    align-self: flex-start;
    padding: 30px 0 30px 40px;
  }

  .checkout-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media (max-width: 991.98px) {

  .checkout-summary {
    border-left: none;
    border-top: 1px solid #e3e3e3;
    margin-top: 30px;
    padding: 24px 16px;
    border-radius: 10px;
  }
}

.summary-thumb {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.summary-thumb img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
}

.summary-qty {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #666;
  color: #fff;
  font-size: 11px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-options {
  border: 1px solid #d5d9d6;
  border-radius: 10px;
  overflow: hidden;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  margin: 0;
  cursor: pointer;
  background: #fff;
}

.payment-option + .payment-option {
  border-top: 1px solid #e3e3e3;
}

.payment-option input {
  accent-color: var(--bg-color);
  width: 17px;
  height: 17px;
}

.payment-option:has(input:checked) {
  background: #eef6f1;
}

.payment-label {
  font-size: 14.5px;
  display: flex;
  flex-direction: column;
}

.payment-label small {
  color: #7c8a82;
  font-size: 12.5px;
}

.checkout-submit {
  font-size: 16px;
  font-weight: 600;
}

/* cart */
.cart-section {
  min-height: 65vh;
  display: flex;
  align-items: flex-start;
}

.cart-section > .container {
  width: 100%;
}

.cart-title {
  font-size: 40px;
  font-weight: 400;
}

@media (max-width: 767.98px) {

  .cart-title {
    font-size: 30px;
  }
}

.cart-item-name {
  max-width: 340px;
}

.cart-item-name h6 {
  font-size: 15px;
  line-height: 1.55;
}

.cart-head {
  font-size: 11px;
  letter-spacing: 1.2px;
  color: #8a8a8a;
  padding-bottom: 12px;
}

.qty-box {
  width: 150px;
  height: 50px;
  border: 1px solid #999;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.qty-btn {
  text-decoration: none;
  color: #000;
  font-size: 24px;
}

.qty-value {
  font-size: 22px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablets & below (collapsed navbar) */
@media (max-width: 991.98px) {

  .navbar-nav .nav-item {
    width: 100%;
    text-align: center;
  }

  .navbar-nav .nav-link {
    padding: 12px 0 !important;
    border-bottom: 1px solid #f0f0f0;
  }

  .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: none;
  }

  .navbar-nav {
    padding: 10px 0;
  }

  .header-icons {
    gap: 18px;
  }

  .icon-btn {
    font-size: 20px;
  }

  .navbar-toggler {
    border: none;
    padding: 4px 8px;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .unique-img img {
    height: auto;
    max-height: 450px;
  }

  .section-p1 {
    margin-top: 30px;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

/* Mobile */
@media (max-width: 767.98px) {

  body {
    font-size: 15px;
    letter-spacing: 0.5px;
  }

  h1 {
    font-size: 1.7rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .top-bar {
    font-size: 12px;
    height: 38px;
    line-height: 38px;
  }

  .top-bar .item {
    height: 38px;
  }

  .topbar-arrow {
    display: none;
  }

  .topbar-msgs {
    height: 38px;
  }

  .navbar {
    min-height: 64px;
  }

  .logo img {
    max-height: 38px;
  }

  .section-p1 {
    margin-top: 20px;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .btn-success {
    padding: 10px 24px;
  }

  /* banner */
  .banner-slider .item img {
    min-height: 160px;
  }

  .banner-slider .owl-dots {
    bottom: 12px;
  }

  .banner-slider .owl-dot {
    width: 28px;
    margin: 0 5px;
  }

  /* product cards (2-up on mobile) */
  .product-card {
    padding: 10px;
    border-radius: 16px;
  }

  .product-image {
    margin-bottom: 12px;
  }

  .product-content h5 {
    min-height: auto;
    font-size: 12px;
    -webkit-line-clamp: 2;
  }

  .rating {
    font-size: 12px;
    margin: 6px 0 10px;
  }

  .rating span {
    font-size: 12px;
  }

  .old-price {
    font-size: 13px;
    display: inline;
    margin-right: 6px;
  }

  .cart-btn {
    font-size: 13px;
    padding: 8px;
    border-width: 1.5px;
  }

  .sale-price {
    font-size: 16px;
  }

  .product-footer {
    margin-top: 12px;
  }

  .discount-badge,
  .stock-badge {
    top: 14px;
    left: 14px;
  }

  .thumb {
    width: 64px !important;
    height: 64px !important;
  }

  /* cart */
  .qty-box {
    width: 130px;
    height: 44px;
    padding: 0 15px;
  }

  .qty-value {
    font-size: 18px;
  }

  /* desktop-only line breaks in centered intro text */
  p.text-center br {
    display: none;
  }

  /* footer */
  .footer-section h5 {
    margin-top: 10px;
  }

  .footer-links a,
  .footer-contact {
    font-size: 15px;
  }

  .social-icon:first-of-type {
    margin-left: 0;
  }

  .unique-img img {
    max-height: 320px;
  }
}

/* Small phones */
@media (max-width: 575.98px) {

  .banner-slider .item img {
    min-height: 140px;
    object-fit: cover;
  }

  .header-icons {
    gap: 14px;
  }

  .discount-badge,
  .stock-badge {
    font-size: 10px;
    padding: 5px 10px;
  }
}

