body,
button,
input,
select,
table,
textarea {
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-family: "DM Sans", Arial, Verdana, sans-serif;
  font-optical-sizing: auto;
  color: var(--maho-color-text-primary);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* =============================================
   ANNOUNCEMENT BAR (all pages)
   ============================================= */
.announcement-bar {
  background: #CC2D2D;
  color: #FFFFFF;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
}

@media only screen and (min-width: 771px) {
  .page-header {
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    background: #2F4858;
    border-top: 5px solid #CC2D2D;
  }

  .page-header-container {
    justify-content: space-between;
    max-width: var(--site-max-width, 1400px);
    margin: 0 auto;
    padding-block: 0;
    padding-left: var(--site-gutter, 20px);
    padding-right: var(--site-gutter, 20px);
    box-sizing: border-box;
  }

  .page-header-container>div {
    display: flex;
    place-items: center;
    gap: 1.5rem;
  }



  .page-header-container .search {
    flex: 1;
    /* take up remaining space */
    display: flex;
    justify-content: center;
    /* center search bar */
    padding: 0 20px;
  }

  .page-header-container .icons {
    flex: 0 0 auto;
    /* keep icons fixed on the right */
    display: flex;
    align-items: center;
    gap: 15px;
    /* spacing between icons */
  }

  .center-head .input-box {

    width: 500px;
  }

  /* Nav rules moved to MAIN NAV BAR section below */

  .skip-link:not(.skip-active):hover {
    opacity: 0.8;
    color: #fff;
  }

  .skip-account,
  .skip-cart,
  .skip-blog,
  .skip-contact {
    color: #fff;
    font-weight: bold;
  }

  /* Header icon links (Account, Blog, Contact, Check Out) */
  .header-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: #fff;
    text-decoration: none;
    position: relative;
    min-width: 48px;
  }

  .header-icon svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .header-icon .label {
    font-size: 11px !important;
    font-weight: 500;
    line-height: 1.2 !important;
    white-space: nowrap;
    text-transform: none;
  }

  .header-icon:hover {
    opacity: 0.8;
    color: #fff;
  }

  /* Right-head icon spacing */
  .right-head {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  /* Cart button pill style */
  .skip-cart.header-icon {
    flex-direction: row;
    gap: 8px;
    background: #1B2A3D;
    border-radius: 999px;
    padding: 10px 16px;
    min-width: auto;
  }

  /* Cart badge (red circle with count) */
  .cart-badge {
    position: relative;
    top: auto;
    right: auto;
    background: #dc2626;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-sizing: border-box;
  }

  .footer {
    clear: both;
    width: auto;
    border-top: none;
    padding-top: 30px;
    max-width: var(--site-max-width, 1400px);
    margin: 0 auto;
    padding-left: var(--site-gutter, 20px);
    padding-right: var(--site-gutter, 20px);
    box-sizing: border-box;
  }

}


/* ===== Mobile View (Small Devices) ===== */
@media only screen and (max-width: 770px) {
  .page-header {
    width: 100%;
    padding: 10px var(--site-gutter, 16px);
    background: #2F4858;
    border-top: 5px solid #CC2D2D;
    text-align: center;
    display: flex;
    flex-direction: column;
  }

  /* Hide Blog and Contact icons on mobile, keep Account + Cart */
  .skip-blog,
  .skip-contact {
    display: none !important;
  }

  .header-icon .label {
    display: none !important;
  }

  .right-head {
    gap: 12px;
  }

  .header-icon svg {
    width: 22px;
    height: 22px;
  }

  .skip-cart.header-icon {
    padding: 8px 12px;
    gap: 6px;
  }

  .skip-cart.header-icon .label {
    font-size: 13px !important;
  }

  .cart-badge {
    min-width: 20px;
    height: 20px;
    font-size: 10px;
  }
}

/* ================================
   BASE STYLES
================================ */
.newsletter-container {
  display: none;
}

.footer-container {
  background: #2F4858;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

.custom-footer-wrapper {
  background-color: #2F4858;
  color: #ffffff;
  padding: 40px 15px;
  font-family: Arial, sans-serif;
}

.footer-newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #cccccc26;
  padding-bottom: 25px;
  margin-bottom: 30px;
}

.footer-newsletter h3 {
  font-size: 20px;
  margin: 0;
}

.footer-newsletter p {
  font-size: 13px;
  margin-top: 8px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  padding: 10px;
  border-radius: 4px;
  border: none;
  width: 300px;
  font-size: 14px;
  height: auto;
}

.newsletter-form button {
  background-color: #d42934;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 16px;
  cursor: pointer;
}

.footer-main {
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  padding-top: 30px;
}

.footer-about {
  font-size: 13px;
  margin: 20px 0;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #ffffff;
}

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

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

.footer-col ul li a {
  color: #ffffff;
  font-size: 13px;
  display: block;
}

.footer address {
  color: #fff;
  line-height: 1.8;
  font-size: 13px;
  margin: 0;
  padding: 0;
  margin-top: 25px;
}

/* ================================
   FOOTER BOTTOM
================================ */
.footer-container.footer-bottom {
  background-color: #d52a34 !important;
  height: auto;
  padding: 20px 29px;
  /* text-align: center; */
  color: #fff;
}

.bottom-section ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer .bottom-section li {
  display: inline-block;
  margin-right: 15px;
}

.footer .bottom-section li a {
  color: #ffffff;
  font-size: 13px;
  text-decoration: none;
}

.footer .bottom-section p {
  font-size: 13px;
  color: #ffffff;
  float: right;
  margin-top: -21px;
}

/* ================================
   SEARCH BAR
================================ */
#search_mini_form {
  display: flex;
  flex: 1;
  max-width: 500px;
}

#search_mini_form .input-box {
  position: relative;
  flex: 1;
  display: flex;
}

#search_mini_form .input-box input {
  width: 100%;
  height: 44px;
  padding: 0 16px;
  border: 2px solid #FFFFFF;
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-size: 14px;
  background: #FFFFFF;
  outline: none;
  box-sizing: border-box;
}

#search_mini_form .search-button {
  height: 44px;
  width: 50px;
  background: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-left: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #333;
  position: static;
}

#search_mini_form .search-button svg {
  width: 20px;
  height: 20px;
  display: block;
}

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

/* Tablets and smaller laptops */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .newsletter-form input[type="email"] {
    width: 250px;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .footer-newsletter {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .newsletter-form input[type="email"] {
    width: 90%;
  }

  .newsletter-form button {
    width: 90%;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
    gap: 20px;
  }

  .footer-container.footer-bottom {
    height: auto;
    padding: 20px 10px;
  }

  .bottom-section ul,
  .footer .bottom-section p {
    float: none;
    text-align: center;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-newsletter h3 {
    font-size: 18px;
  }

  .footer-newsletter p {
    font-size: 12px;
  }

  .newsletter-form input[type="email"] {
    width: 100%;
  }

  .newsletter-form button {
    width: 100%;
  }

  .footer .bottom-section li {
    display: block;
    margin: 5px 0;
  }

  .footer .bottom-section p {
    margin-top: 15px;
  }
}

/* ================================
   FILTER BLOCK (existing styles kept)
================================ */
@media (min-width: 768px) {
  .block-layered-nav .block-content>dl>dt {
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 2;
    background-color: #477E00;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: #fff;
    padding: 10px;
  }

  .block-layered-nav dl dd ol>li>span,
  .block-layered-nav dl dd ol>li>a {
    padding: 5px 15px;
    display: block;
    color: #477E00;
    font-weight: bold;
  }
}



.catalogsearch-result-index .price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #477E00;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  margin-top: auto;
  min-height: 40px;
  width: 196px;
  margin-left: 20px;
  text-decoration: none;
}

.catalogsearch-result-index .price-box .price {
  color: #fff !important;
  font-weight: 700;
  font-size: 18px;
  margin: 0 6px 0 0;
}


.products-grid .price-box {
  color: #fff;
  font-size: 0.813rem;
}


.product-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 8px;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  /* min-height: 86px; */
  text-align: left;
}

p.product-name a:hover {
  color: #477E00;
}

/* Container box */
.account-create {
  margin: 40px auto;
  font-family: Arial, sans-serif;
  width: 100%;
  max-width: 682px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

/* Title */
.page-title h1 {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
  margin-left: 30px;
  display: none;
}

/* Form styling */
.form-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.form-list li {
  margin-bottom: 15px;
}

/* Labels */
.form-list label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 600;
  color: #444;
}

/* Inputs */
.input-box input[type="text"],
.input-box input[type="email"],
.input-box input[type="password"] {
  width: 100%;
  height: 40px;
  padding: 8px 12px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-size: 14px;
  box-sizing: border-box;
}

.input-box input:focus {
  outline: none;
  border-color: #5B8C2A;
}

/* Checkbox */
.form-list .control {
  display: flex;
  align-items: center;
}

.form-list .control label {
  margin-left: 6px;
  font-size: 14px;
  font-weight: normal;
  color: #555;
  margin-top: 15px;
}

/* Buttons */
.buttons-set {
  text-align: center;
  margin-top: 20px;

}

button.button {
  width: 100%;
  padding: 7px;
  background: red;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
}

button.button:hover {
  background: #d10b20;
}

/* Back link */
.back-link {
  display: block;
  text-align: left;
  margin-bottom: 15px;
  font-size: 13px;
}

.back-link a {
  color: #666;
  text-decoration: none;
}

.back-link a:hover {
  text-decoration: underline;
}


/* ===============================
   GLOBAL VARIABLES & RESET
================================*/
:root {
  --color-primary: #e1001a;
  /* Red (from banner & buttons) */
  --color-dark-blue: #1d3b52;
  /* Dark navy for section backgrounds */
  --color-light-gray: #f6f6f6;
  /* Background gray */
  --color-text: #333;
  --color-white: #fff;
  --color-green: #3cb04b;
  /* CTA green */
  --transition-fast: all 0.3s ease;

  /* Maho base theme overrides */
  --maho-color-primary: #2F4858;
  --maho-color-primary-hover: #3a5a6d;
  --maho-color-primary-active: #243d4a;
  --maho-color-primary-dark: #1d3b52;
  --maho-color-text-primary: #333;
  --maho-color-price: #B90A1C;
  --maho-color-special-price: #B90A1C;
}

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

}



/* ===============================
   FEATURED PRODUCT & CATEGORIES
================================*/
/* Featured Categories Section */
.featured-categories-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #2F4858;
  padding: 50px 130px;

}

.featured-categories-container {
  max-width: var(--site-max-width, 1400px);
  margin: 0 auto;
  padding: 0 var(--site-gutter, 20px);
  box-sizing: border-box;
}

.featured-categories-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
  text-transform: initial;
  margin-left: 0;
}

.categories-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  /* max-width: 1200px; */
  margin: 0 auto;
  align-items: stretch;

}

/* Left large category */
.featured-left {
  flex: 1 1 45%;
  position: relative;
  min-width: 400px;
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
}

.featured-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-left:hover img {
  transform: scale(1.05);
}

.featured-left-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  text-align: center;
  padding: 22px 20px;
  transition: 0.3s;
}

.featured-left-overlay h3 {
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: #fff;
  text-transform: inherit;
  text-align: initial;
}

.featured-left-overlay p {
  font-size: 14px;
  margin-bottom: 12px;
  text-align: initial;
}

.shop-now-btn {
  background-color: #d32f2f;
  border: none;
  padding: 12px 335px;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.shop-now-btn:hover {
  background-color: #b71c1c;
}

/* Right category grid */
.featured-grid {
  flex: 1 1 50%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(206px, 1fr));
  gap: 15px;
}

.category-box {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s;
  background-color: #fff;
}

.category-box img {
  width: 100%;
  /* height: 180px; */
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.category-box:hover img {
  transform: scale(1.05);
}

.category-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #d32f2f;
  color: #fff;
  text-align: center;
  padding: 8px;
  font-size: 15px;
  border-radius: 0 0 8px 8px;
  font-weight: bold;
}

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

/* Medium Devices (Tablets) */
@media (max-width: 991px) {
  .categories-wrapper {
    flex-direction: column;
  }

  .featured-left {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .featured-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .shop-now-btn {
    padding: 10px 40px;
  }

  .featured-left-overlay h3 {
    font-size: 20px;
  }
}


/* Large Screens (max-width: 1650px) */
@media (max-width: 1650px) {
  .featured-categories-section {
    padding: 50px 110px;
  }

  .shop-now-btn {
    padding: 12px 273px;
    font-size: 17px;
  }
}

/* Desktops (max-width: 1200px) */
@media (max-width: 1200px) {
  .featured-categories-section {
    padding: 45px 80px;
  }

  .shop-now-btn {
    padding: 12px 160px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .shop-now-btn {
    padding: 10px 30px;
    font-size: 14px;
    width: 100%;
    /* make it full width for mobile */
  }
}

/* Small Devices (Mobiles) */
@media (max-width: 767px) {
  .featured-categories-section {
    padding: 30px 15px;
  }

  .featured-categories-title {
    font-size: 22px;
    text-align: center;
    margin-bottom: 25px;
    margin-left: 0;
  }

  .featured-left {
    min-width: 100%;
    border-radius: 8px;
  }

  .featured-left-overlay {
    padding: 25px 15px;
  }

  .featured-left-overlay h3 {
    font-size: 18px;
  }

  .shop-now-btn {
    padding: 8px 30px;
    font-size: 14px;
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .category-box img {
    height: 278px;
  }

  .category-name {
    font-size: 13px;
    padding: 6px;
  }
}

/* Extra Small Devices (Phones < 480px) */
@media (max-width: 480px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .featured-left-overlay h3 {
    font-size: 16px;
  }

  .featured-left-overlay p {
    font-size: 12px;
  }

  .shop-now-btn {
    width: 100%;
    padding: 10px 0;
    font-size: 13px;
  }
}





/* ===============================
   TOP SELLING PRODUCTS
================================*/
/* ===========================
   HOME FEATURED PRODUCTS
=========================== */
/* Container for the featured products block */
.home-featured-products {
  padding: 30px 0;
  position: relative;
}

.home-featured-products .ht-title {
  margin-bottom: 25px;
  color: #000;
  font-weight: bold;
  text-transform: none;
  /* text-align: center; */
  font-size: 28px;
  margin-left: 0px;

}

.home-featured-products .ht-title::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #e1dede;
  border-radius: 2px;
  top: 73px;
}


/* Carousel container */
.block-home-featured-products {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 15px;
  padding: 10px;
  margin: 0 auto;
  max-width: 88%;
  scroll-behavior: smooth;
}

/* When using slick carousel */
.block-home-featured-products.slick-initialized {
  display: block;
}

/* Product card container */
.block-home-featured-products .item {
  flex: 0 0 auto;
  /* width: 220px; */
}

/* Enhanced product card */
.product-card {
  border: 1px solid #e1e1e2;
  border-radius: 8px;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

/* Enhanced discount badge */
.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #ff4a4a, #ff6b6b);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Image wrapper improvements */
.product-img-wrapper {
  text-align: center;
  padding: 15px;
  background: #fff;
  border-radius: 6px 6px 0 0;
}

.product-thumb {
  max-width: 100%;
  /* height: 150px; */
  object-fit: contain;
  display: inline-block;
  transition: transform 0.3s ease;
}

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

/* Enhanced product info */
.product-info {
  flex: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-info .name {
  margin: 0 0 10px 0;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  height: 2.8em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-info .name a {
  text-decoration: none;
  color: #333;
  transition: color 0.2s ease;
}

.product-info .name a:hover {
  color: #477E00;
}

/* Improved rating */
.rating {
  font-size: 14px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.rating .star {
  color: #ddd;
  margin-right: 1px;
}

.rating .star.filled {
  color: #FFA800;
}

.rating .rating-count {
  font-size: 12px;
  color: #666;
  margin-left: 5px;
}

/* ===============================
   Modern Price Styling
================================*/
.price-wrap {
  text-align: center;
  background: linear-gradient(135deg, #4e9e00, #3e7a00);
  color: #fff;
  padding: 10px 10px;
  border-radius: 7px;
  margin-top: auto;
  box-shadow: 0 6px 15px rgba(62, 122, 0, 0.35);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-wrap:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 18px rgba(62, 122, 0, 0.45);
}

/* Light sweep animation */
/* .price-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: left 0.6s ease;
} */

.price-wrap:hover::before {
  left: 120%;
}

/* Price Tag */
/* .price-tag {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 6px;
} */

/* VAT Label */
.price-tag .vat-label {
  display: inline-block;
  font-size: 11px;
  margin-left: 6px;
  opacity: 0.9;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  vertical-align: middle;
  color: rgba(255, 255, 255, 0.9);
}

/* Old Price */
/* .old-price {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: line-through;
  margin-top: 4px;
  display: block;
  font-weight: 500;
  letter-spacing: 0.3px;
} */


/* Additional savings indicator */
.savings-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  margin-top: 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
}

/* Price comparison visual */
.price-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 5px;
}

.current-price {
  font-size: 20px;
  font-weight: 800;
}

.original-price {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: line-through;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .price-tag {
    font-size: 18px;
  }

  .price-wrap {
    padding: 12px 8px;
  }
}

/* Large Screens (max-width: 1650px) */
@media (max-width: 1650px) {
  .home-topselling-products .ht-title {
    font-size: 28px;
    margin-left: 113px;
  }

  .home-topselling-products .ht-title::after {
    left: 110px;
    width: calc(82% + 30px);
  }

  .block-home-featured-products {
    gap: 18px;
    padding: 25px 15px;
  }

  .product-card {
    flex: 0 0 230px;
  }

  .product-img-wrapper {
    /* height: 210px; */
  }
}


/* Animation for price emphasis */
@keyframes pricePulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.price-tag:hover {
  animation: pricePulse 0.3s ease;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .price-wrap {
    box-shadow: 0 4px 15px rgba(71, 126, 0, 0.4);
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .price-wrap {
    background: #2d5a00;
    border: 2px solid #ffffff;
  }

  .old-price {
    color: #ffffff;
    opacity: 1;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .price-wrap::before {
    display: none;
  }

  .price-tag:hover {
    animation: none;
  }
}

/* Navigation arrows for carousel */
.slick-prev,
.slick-next {
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #e1e1e2;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slick-prev:hover,
.slick-next:hover {
  background: #477E00;
  color: #fff;
}

.slick-prev {
  left: -20px;
}

.slick-next {
  right: -20px;
}

/* Responsive design */
@media (max-width: 1200px) {
  .home-featured-products {
    padding: 25px 15px;
  }
}

@media (max-width: 768px) {
  .home-featured-products .ht-title {
    font-size: 24px;
    margin-bottom: 33px;
  }

  .product-info {
    padding: 12px;
  }

  .product-img-wrapper {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .home-featured-products .ht-title {
    font-size: 20px;
    margin-left: 0px;
  }

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



/* ===============================
   SECTION WRAPPER
=============================== */
.home-topselling-products {
  width: 100vw;
  padding: 40px 0;
  background-color: #f9f9f9;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}

/* ===============================
   SECTION TITLE
=============================== */
.home-topselling-products .ht-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #222;
  text-transform: none;
  margin-left: 135px;
  position: relative;
}

.home-topselling-products .ht-title::after {
  content: "";
  position: absolute;
  /* top: 85px;
  left: 138px;
  width: calc(82% + 74px); */
  height: 2px;
  background-color: #e1e1e1;
  border-radius: 2px;
  left: 4px;
  width: calc(90% + 35px);
  top: 46px;
}

/* ===============================
   PRODUCT ROW
=============================== */
.block-home-featured-products {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 20px;
  /* padding: 28px 20px; */
  scroll-behavior: smooth;
}

.block-home-featured-products::-webkit-scrollbar {
  height: 8px;
}

.block-home-featured-products::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.block-home-featured-products::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* ===============================
   PRODUCT CARD
=============================== */
.product-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  flex: 0 0 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #dddcdc;
  margin-top: 8px;
}

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

/* Product Image */
.product-img-wrapper {
  position: relative;
  width: 100%;
  /* height: 230px; */
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.product-img-wrapper img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
}

/* Discount Badge */
.discount-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #2e4659;
  color: #fff;
  font-size: 13px;
  padding: 8px;
  font-weight: 600;
  border-radius: 10px 0 10px 0;
}

/* Product Info */
.product-info {
  padding: 12px;
  text-align: center;
}

.product-info .name {
  font-size: 15px;
  color: #333;
  margin: 8px 0;
}

.product-info .name a {
  color: inherit;
  text-decoration: none;
}

.product-info .name a:hover {
  color: #407105;
}

/* Rating Stars */
.rating {
  color: #ffb400;
  font-size: 14px;
  margin-bottom: 8px;
}

.rating .star {
  margin-right: 2px;
}

.rating .rating-count {
  color: #fff;
  font-size: 13px;
}

/* Price Styling */
.price-wrap {
  justify-content: center;
}

.price-tag {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  margin-left: -12px;

}

.old-price {
  color: #fff;
  text-decoration: line-through;
  font-weight: normal;
  margin-left: 3px;
}

.vat-label {
  display: block;
  font-size: 11px;
  color: #fff;
  font-weight: normal;
}

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

/* Large Screens (max-width: 1650px) */
@media (max-width: 1650px) {
  .home-topselling-products .ht-title {
    font-size: 28px;
    margin-left: 110px;
  }

  .home-topselling-products .ht-title::after {
    left: 4px;
    width: calc(90% + 35px);
    top: 46px;
  }

  .block-home-featured-products {
    gap: 18px;
    padding: 25px 15px;
  }

  .product-card {
    flex: 0 0 230px;
  }

  .product-img-wrapper {
    /* height: 210px; */
  }
}

/* Desktops (max-width: 1200px) */
@media (max-width: 1200px) {
  .home-topselling-products .ht-title {
    margin-left: 80px;
    font-size: 26px;
  }

  .home-topselling-products .ht-title::after {
    left: 80px;
    width: calc(85% + 20px);
  }

  .product-card {
    flex: 0 0 220px;
  }
}

/* Tablets (max-width: 991px) */
@media (max-width: 991px) {
  .home-topselling-products .ht-title {
    font-size: 24px;
    margin-left: 60px;
  }

  .home-topselling-products .ht-title::after {
    left: 60px;
    top: 70px;
    width: calc(90% - 60px);
  }

  .product-card {
    flex: 0 0 200px;
  }

  .product-img-wrapper {
    /* height: 190px; */
  }
}

/* Mobiles (max-width: 767px) */
@media (max-width: 767px) {
  .home-topselling-products .ht-title {
    font-size: 22px;
    margin-left: 25px;
  }

  .home-topselling-products .ht-title::after {
    left: 25px;
    top: 80px;
    width: calc(100% - 50px);
  }

  .product-card {
    flex: 0 0 180px;
  }

  .product-img-wrapper {
    /* height: 160px; */
  }
}

/* Extra Small Devices (max-width: 480px) */
@media (max-width: 480px) {
  .home-topselling-products .ht-title {
    font-size: 20px;
    margin-left: 15px;
  }

  .home-topselling-products .ht-title::after {
    left: 15px;
    top: 50px;
    width: calc(100% - 30px);
  }

  .block-home-featured-products {
    gap: 12px;
  }

  .product-card {
    flex: 0 0 160px;
  }

  .product-img-wrapper {
    /* height: 140px; */
  }

  .price-tag {
    font-size: 15px;
  }
}


/* ===============================
   WHY CHOOSE US SECTION
================================*/
.why-choose-us-wrapper {
  /* background: #ffffff; */
  /* padding: 60px 20px; */
  max-width: 100%;
  margin: 0 auto;
}

.section-title {
  /* text-align: center; */
  font-size: 26px;
  font-weight: 700;
  color: #000;
  margin-bottom: 45px;
  position: relative;
  margin-left: 0;
  /* margin-top: 45px; */
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #dbd9d9;
  border-radius: 2px;
  top: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 25px;
}

.feature-box {
  background-color: #2F4858;
  color: #ffffff;
  border-radius: 12px;
  padding: 25px 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.feature-box:hover {
  transform: translateY(-6px);
  border-color: #2F4858;
  background-color: #2F4858;
}

.feature-box .icon {
  font-size: 28px;
  flex-shrink: 0;
  color: #ffcc00;
  margin-top: 5px;
  transition: color 0.3s ease;
}

.feature-box:hover .icon {
  color: #ffd633;
}

.feature-box .content {
  flex: 1;
}

.feature-box-heading {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
}

.feature-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #e0e0e0;
}

@media (max-width: 991px) {
  .section-title {
    font-size: 22px;
  }
}

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

  .feature-box {
    flex-direction: row;
    padding: 20px;
  }

  .feature-box .icon {
    font-size: 26px;
  }
}

/* ===============================
   TESTIMONIALS
================================*/
/* ===============================
   HOME TESTIMONIAL SECTION
================================*/
/* ===============================
   TESTIMONIAL SECTION
================================*/
.home-testimonial-wrapper {
  /* background: #f9fafb; */
  padding: 80px 20px;
  text-align: center;
  font-family: "Inter", sans-serif;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

}

/* Title */
.home-testimonial-wrapper .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 25px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.home-testimonial-wrapper hr {
  width: 100%;
  max-width: var(--site-max-width, 1400px);
  height: 1px;
  background: #e5e7eb;
  border: none;
  margin: 0 auto 50px;
}

/* ===============================
   TESTIMONIAL CARDS CONTAINER
================================*/
.cards-wrapper {
  display: flex;
  /* justify-content: center; */
  gap: 38px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0px 30px;
  scrollbar-width: none;
  max-width: 88%;
  margin: 0 auto;
}

/* Hide scrollbar */
.cards-wrapper::-webkit-scrollbar {
  display: none;
}

/* ===============================
   TESTIMONIAL CARD
================================*/
.card {
  flex: 0 0 300px;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f1f1f1;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); */
}

/* Background color variations */
.card.bg-peach {
  background: #fff6eb;
  border: 1px solid #ffd8a8;
}

.card.bg-mint {
  background: #eefcf3;
  border: 1px solid #a8e6bd;
}

.card.bg-lavender {
  background: #f8f6ff;
  border: 1px solid #d4ccff;
}

.card.bg-sky {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
}

/* ===============================
   USER INFO
================================*/
.user-info {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 12px;
}

.user-icon {
  width: 40px;
  height: 40px;
  background: #1f2937;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: bold;
}

.user-icon::before {
  content: "👤";
  font-size: 18px;
  color: #fff;
}

.user-details {
  flex: 1;
}

.user-details h4 {
  margin: 0 0 2px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.user-location {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 500;
  display: block;
}

/* ===============================
   REVIEW TEXT
================================*/
.review-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #374151;
  margin-bottom: 15px;
  flex: 1;
  font-style: normal;
}

/* Remove the quote marks since they're not in your design */
.review-text::before {
  content: none;
}

/* ===============================
   STAR RATING
================================*/
.stars {
  color: #ffb800;
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-top: 10px;
  text-align: left;
  display: none;
}

.stars::before {
  content: "★★★★★";
}

/* ===============================
   COMPACT STYLING FOR SHORT REVIEWS
================================*/
.card.compact {
  padding: 20px;
}

.card.compact .user-info {
  margin-bottom: 12px;
}

.card.compact .review-text {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 12px;
}

/* ===============================
   NAVIGATION ARROWS (Optional)
================================*/
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
}

.nav-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  color: #374151;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-arrow:hover {
  background: #477E00;
  border-color: #477E00;
  color: white;
  transform: scale(1.05);
}

/* ===============================
   RESPONSIVE DESIGN
================================*/
@media (max-width: 1200px) {
  .cards-wrapper {
    gap: 20px;
    padding: 10px 15px 25px;
  }

  .card {
    flex: 0 0 280px;
  }
}

@media (max-width: 1024px) {
  .home-testimonial-wrapper .section-title {
    font-size: 1.8rem;
  }

  .card {
    flex: 0 0 260px;
    padding: 22px;
  }
}

@media (max-width: 768px) {
  .home-testimonial-wrapper {
    padding: 60px 15px;
  }

  .card {
    flex: 0 0 240px;
    padding: 20px;
  }

  .home-testimonial-wrapper .section-title {
    font-size: 1.6rem;
  }

  .user-info {
    margin-bottom: 12px;
  }

  .review-text {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

@media (max-width: 640px) {
  .cards-wrapper {
    gap: 15px;
    padding: 50px 10px 20px;
  }

  .card {
    flex: 0 0 220px;
    padding: 18px;
  }

  .home-testimonial-wrapper .section-title {
    font-size: 1.4rem;
  }

  .user-icon {
    width: 36px;
    height: 36px;
  }

  .user-icon::before {
    font-size: 16px;
  }

  .user-details h4 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .home-testimonial-wrapper {
    padding: 50px 10px;
  }

  .card {
    flex: 0 0 200px;
    padding: 16px;
  }

  .home-testimonial-wrapper .section-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .home-testimonial-wrapper hr {
    margin-bottom: 40px;
  }

  .user-info {
    gap: 10px;
  }

  .review-text {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .stars {
    font-size: 1rem;
  }
}

/* Mobile landscape optimization */
@media (max-width: 768px) and (orientation: landscape) {
  .cards-wrapper {
    gap: 15px;
  }

  .card {
    flex: 0 0 220px;
  }
}

/* ===============================
   ACCESSIBILITY
================================*/
@media (prefers-reduced-motion: reduce) {

  .card,
  .nav-arrow,
  .cards-wrapper {
    transition: none;
    scroll-behavior: auto;
  }

  .card:hover {
    transform: none;
  }
}

/* Focus styles for accessibility */
.card:focus-within {
  outline: 2px solid #477E00;
  outline-offset: 2px;
}

.nav-arrow:focus {
  outline: 2px solid #477E00;
  outline-offset: 2px;
}



/* Add the full-width horizontal line */
.header-arrows h2::after {
  content: "";
  position: absolute;
  bottom: 362px;
  left: 133px;
  width: calc(80% + 115px);
  height: 2px;
  background-color: #dcdddd;
  border-radius: 2px;
}

/* ===============================
   Responsive adjustments
=============================== */

/* Large Screens (max-width: 1650px) */
@media (max-width: 1650px) {
  .header-arrows h2::after {
    left: 117px;
    bottom: 362px;
    width: calc(81% + 80px);
  }
}

/* Tablets */
@media (max-width: 991px) {
  .header-arrows h2::after {
    left: 60px;
    bottom: 376px;
    width: calc(90% - 60px);
  }
}

/* Mobiles */
@media (max-width: 767px) {
  .header-arrows h2::after {
    left: 20px;
    bottom: 336px;
    width: calc(100% - 40px);
  }
}

/* Extra small devices (phones under 480px) */
@media (max-width: 480px) {
  .header-arrows h2::after {
    left: 10px;
    bottom: 331px;
    width: calc(100% - 20px);


  }
}


/* =====================================
   ARROW NAVIGATION + SECTION HEADER
===================================== */

/* Section header wrapper */
.section-header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 25px;
  padding: 0 15px;
}

/* Title Styling */
.section-header h2,
.section-header .ht-title {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin: 0;
  padding-right: 80px;
  /* space for arrows on desktop */
}

/* =============================
   Magento Homepage Scoped CSS
============================= */
.cms-index-index.cms-home-left .arrows,
.cms-index-index.cms-home-left .slider-nav,
.cms-index-index.cms-home-left .related-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 25px;
  right: 0px;
  z-index: 2;
}

/* Arrow Buttons */
.cms-index-index.cms-home-left .arrow-btn,
.cms-index-index.cms-home-left .slider-nav button,
.cms-index-index.cms-home-left .related-nav button {
  color: #939191;
  border: 2px solid #C6C6C6;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
}

.cms-index-index.cms-home-left .arrow-btn:hover,
.cms-index-index.cms-home-left .slider-nav button:hover,
.cms-index-index.cms-home-left .related-nav button:hover {
  background-color: #fff;
  color: #2F4858;
  transform: scale(1.1);
}

.cms-index-index.cms-home-left .arrow-btn:focus,
.cms-index-index.cms-home-left .arrow-btn:active,
.cms-index-index.cms-home-left .slider-nav button:focus,
.cms-index-index.cms-home-left .related-nav button:focus {
  outline: none;
}

/* Responsive */
@media (max-width: 1650px) {
  .cms-index-index.cms-home-left .arrows {
    margin-right: 110px !important;
    margin-top: 35px;
  }

  .cms-index-index.cms-home-left .slider-nav {
    margin-right: 114px !important;
  }
}

@media (max-width: 1200px) {
  .cms-index-index.cms-home-left .arrows {
    margin-right: 70px;
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  .cms-index-index.cms-home-left .arrows {
    margin-right: 50px;
    margin-top: 25px;
  }
}

@media (max-width: 767px) {
  .cms-index-index.cms-home-left .arrows {
    justify-content: center;
    margin-right: 0;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .cms-index-index.cms-home-left .arrows {
    justify-content: center;
    margin-top: -10px !important;
    margin-right: 10px !important;
  }
}

@media (max-width: 384px) {
  .cms-index-index.cms-home-left .slider-nav {
    margin-right: 22px !important;
  }
}

/* Default Positions */
.cms-index-index.cms-home-left .slider-nav {
  margin-right: 138px;
  margin-top: 15px;
}

.cms-index-index.cms-home-left .arrows {
  margin-right: 136px;
  margin-top: 37px;
}


/* REASONS TO BUY WITH US... css */

.feature-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
  color: black;
  margin-left: 0;
}

/* REASONS TO BUY WITH US... css end */


/* ===============================
   H2 / .h2 HEADING STYLING
=============================== */
h2,
.h2 {
  margin: 0;
  margin-left: 114px;
  margin-bottom: 0.5em;
  color: #0f0f0f;
  font-size: 1.5rem;
  /* ~24px */
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: capitalize;
  text-align: left;
}

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

/* Large Screens (max-width: 1650px) */
@media (max-width: 1650px) {

  h2,
  .h2 {
    margin-left: 100px;
    font-size: 1.4rem;
    /* ~22px */
  }
}

/* Desktops (max-width: 1200px) */
@media (max-width: 1200px) {

  h2,
  .h2 {
    margin-left: 80px;
    font-size: 1.3rem;
    /* ~21px */
  }
}

/* Tablets (max-width: 991px) */
@media (max-width: 991px) {

  h2,
  .h2 {
    margin-left: 50px;
    font-size: 1.2rem;
    /* ~19px */
  }
}

/* Mobiles (max-width: 767px) */
@media (max-width: 767px) {

  h2,
  .h2 {
    margin-left: 25px;
    text-align: left;
    font-size: 1.1rem;
    /* ~18px */
  }
}

/* Extra Small Devices (max-width: 480px) */
@media (max-width: 480px) {

  h2,
  .h2 {
    margin-left: 15px;
    font-size: 1rem;
    /* ~16px */
  }
}


/* one page css */

/* ======= Checkout Step Navigation ======= */
.horizontal-steps {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  flex-wrap: wrap;
  background-color: #E8EAED;
  border-radius: 8px;
  margin-left: 21px;
  margin-top: 15px;
  margin-right: 21px;
}

/* ✅ Mobile Responsive - Stack one by one */
@media (max-width: 768px) {
  .horizontal-steps {
    flex-direction: column;
    /* Stack items vertically */
    align-items: stretch;
    /* Each takes full width */
    margin-left: 10px;
    margin-right: 10px;
  }

  .horizontal-steps li {
    width: 100%;
    text-align: center;
    padding: 12px 0;
    border-bottom: 1px solid #d1d3d6;
  }

  .horizontal-steps li:last-child {
    border-bottom: none;
    /* remove border on last item */
  }
}

.step-title {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 10px 0;
}

.step-number {
  display: inline-block;
  width: 34px;
  height: 34px;
  line-height: 32px;
  border-radius: 50%;
  background: #2f4553;
  color: #fff;
  font-weight: bold;
  border: 2px solid #fff;
}

.step-title .active .step-number {
  background: #477E00;
}

.step-title .completed .step-number {
  background: #477E00
}

/* === Basic Look (Customize freely) === */
.checkout-wrapper {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  padding: 20px;
}


.checkout-contents .step-content {
  display: none;
  padding: 20px;
}

/* ======= Checkout Options ======= */
.checkout-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
  width: 100%;
}

.option-box {
  display: flex;
  align-items: flex-start;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 12px 15px;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.3s;
}

.option-box:hover {
  border-color: #477E00;
}

.option-box input[type="radio"] {
  margin-right: 10px;
  margin-top: 5px;
}

.option-content h3 {
  margin: 0;
  font-size: 16px;
  color: #333;
}

.option-content p {
  margin: 3px 0 0;
  color: #666;
  font-size: 13px;
}

.option-box input[type="radio"]:checked+.option-content {
  /* border-left: 3px solid #6cbb3c; */
}

/* ======= Login Form ======= */
#checkout-login-form {
  width: 90%;
  max-width: 420px;
  padding: 20px;
  margin: 20px auto;
  border-radius: 8px;
  box-sizing: border-box;
  /* background: #f9f9f9;
  border: 1px solid #dcdcdc;
  box-shadow: 0 0 10px rgba(0,0,0,0.05); */
}

#checkout-login-form h3 {
  margin-bottom: 15px;
  text-align: center;
  font-size: 1.5rem;
  color: #334155;
}

/* Responsive inputs and button */
#checkout-login-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #ccc;
}

#checkout-login-form .step-buttons button {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  background-color: #477E00;
}

/* Mobile-specific adjustments */
@media (max-width: 480px) {
  #checkout-login-form {
    width: 95%;
    padding: 15px;
  }

  #checkout-login-form h3 {
    font-size: 1.3rem;
  }

  #checkout-login-form input {
    padding: 8px;
  }

  #checkout-login-form .step-buttons button {
    padding: 10px;
    font-size: 0.95rem;
  }
}

.checkout-onepage-index button.next-step {
  background-color: #477E00 !important;
  color: #fff;
  border: none;
}


.checkout-onepage-index button.next-step:hover {
  background-color: #3a6600 !important;
}

.checkout-onepage-index button.button.prev-step {
  background: #FFFFFF;
  border: 2px solid #2F4858;
  color: #4F4F4F;
}

.checkout-onepage-index .col-main {
  float: left;
  width: 100%;
  background-color: #fff !important;
}

.catalog-category-view .col-main {
  float: left;
  width: 75%;

}

/* ===== Mobile (Small Devices) ===== */
@media only screen and (max-width: 770px) {
  .catalog-category-view .col-main {
    float: none;
    width: 100%;
    padding: 10px 15px;
  }
}

.form-list {
  list-style: none;
  padding: 0;
}

.form-list li {
  margin-bottom: 12px;
}

.form-list label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

.input-text {
  width: 100%;
  height: 40px;
  padding: 8px 12px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
}

.step-buttons {
  display: flex;
  justify-content: flex-end;
  margin-top: 15px;
  margin-bottom: 10px;
}

.button {
  background-color: #477E00;
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.button:hover {
  background-color: #477E00;
}

.primary-btn {
  background-color: #477E00;
}

.primary-btn:hover {
  background-color: #477E00;
}

.checkout-login-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


/* Checkout step item like your arrow image */
.step-title.active {
  position: relative;
  background-color: #2f4553;
  color: #fff;
  padding: 15px 40px 15px 25px;
  font-family: Arial, sans-serif;
  border-right: 1px solid #fff;
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
}

.checkout-contents .buttons-set button.button {
  background: #477E00 !important;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 6px;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* Hover effect */
.checkout-contents .buttons-set button.button:hover {
  background: #3b6b00 !important;
}

/* Responsive for mobile view */
@media (max-width: 768px) {
  .checkout-contents .buttons-set {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .checkout-contents .buttons-set button.button {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
  }
}

/* Extra small devices (like 480px and below) */
@media (max-width: 480px) {
  .checkout-contents .buttons-set button.button {
    padding: 12px 18px;
    font-size: 14px;
  }
}


/* one page css end */



/* payment success */

/* External CSS */

/* Custom scrollbar for table */
/* Scrollbar Styling */
.scrollbar-thin::-webkit-scrollbar {
  height: 6px;
}

.scrollbar-thin::-webkit-scrollbar-thumb {
  background-color: #a0aec0;
  border-radius: 3px;
}

.scrollbar-thin::-webkit-scrollbar-track {
  background-color: #edf2f7;
}

/* Truncate long product titles */
.truncate-2-lines {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Container */
.max-w-6xl {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  flex-grow: 1;
  text-align: left;
}

/* Header */
.bg-green-700 {
  background-color: #508510;
  border-radius: 4px;
}

.bg-green-800 {
  background-color: #508510;
}

.text-green-700 {
  color: #508510;
}

/* Button */
.bg-green-700:hover {
  background-color: #508510;
}

.text-white {
  color: #fff;
}

.font-semibold {
  font-weight: 600;
}

.text-sm {
  font-size: 0.875rem;
}

.text-xs {
  font-size: 0.75rem;
}

/* Title section */
.font-semibold {
  font-weight: 600;
}

.text-lg {
  font-size: 1.125rem;
}

/* Table and other sections */
.bg-white {
  background-color: #fff;
}

.text-gray-900 {
  color: #1a202c;
}

.text-gray-800 {
  color: #2d3748;
}

.text-gray-700 {
  color: #4a5568;
}

.text-gray-500 {
  color: #a0aec0;
}

.bg-gray-100 {
  background-color: #f7fafc;
}

.bg-gray-200 {
  background-color: #edf2f7;
}

.bg-blue-gray-800 {
  background-color: #2c3e50;
}

.border {
  border-width: 1px;
}

.border-gray-200 {
  border-color: #edf2f7;
}

.border-gray-300 {
  border-color: #e2e8f0;
}

.shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.p-4 {
  padding: 1rem;
}

.p-3 {
  padding: 0.75rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.w-48 {
  width: 12rem;
}

.w-14 {
  width: 3.5rem;
}

.w-24 {
  width: 6rem;
}

.w-32 {
  width: 8rem;
}

.h-6 {
  height: 1.5rem;
}

.h-10 {
  height: 2.5rem;
}

.flex {
  display: flex;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.items-center {
  align-items: center;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-2 {
  gap: 0.5rem;
}

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

.text-right {
  text-align: right;
}

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

.font-normal {
  font-weight: 400;
}

.font-semibold {
  font-weight: 600;
}

.leading-snug {
  line-height: 1.375;
}

.text-sm {
  font-size: 0.875rem;
}

.text-xs {
  font-size: 0.75rem;
}

.whitespace-pre-line {
  white-space: pre-line;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-0.5 {
  margin-top: 0.125rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.space-y-1 {
  margin-top: 0.25rem;
}

.space-y-6 {
  margin-top: 1.5rem;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.items-center {
  align-items: center;
}

.text-gray-500 {
  color: #a0aec0;
}

/* Footer */
.bg-blue-gray-800 {
  background-color: #2c3e50;
}

.text-white {
  color: #fff;
}

.text-sm {
  font-size: 1rem;
}

.font-medium {
  font-weight: 500;
}

/* Tables */
.table {
  width: 100%;
}

.w-full {
  width: 100%;
}

.w-auto {
  width: auto;
}

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

.text-right {
  text-align: right;
}

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

.border-collapse {
  border-collapse: collapse;
}

.text-xs {
  font-size: 0.75rem;
}

.border-b {
  border-bottom-width: 1px;
}

.p-3 {
  padding: 0.75rem;
}

/* Thank you Banner */
.thank-you-banner {
  background-color: #2c3e50;
  /* Dark blue color */
  color: white;
  /* White text */
  padding: 10px 0;
  /* Padding for top and bottom */
  text-align: center;
  /* Center the text */
  font-size: 18px;
  /* Text size */
  font-weight: bold;
  /* Make text bold */
  letter-spacing: 1px;
  /* Space out letters */
  border-radius: 3px;
  /* Rounded corners */
  width: 90%;
  /* Full width */
  margin: 0 auto;
  /* Center the banner */
}

/* Container Flex Layout */
.flex-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  /* Space between the left and right sections */
  flex-wrap: wrap;
  /* Allow wrapping when needed */
}

/* Left and Right Sections */
.flex-container .left-section,
.flex-container .right-section {
  width: 48%;
  /* 50% width for each, with some gap */
  display: flex;
  flex-direction: column;
}

/* Make sure text inside these sections is aligned properly */
.left-section,
.right-section {
  margin-bottom: 1.5rem;
}

/* Adjust margins between sections */
.bg-white {
  margin-bottom: 1.5rem;
}

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

  /* Stack sections vertically on mobile */
  .flex-container {
    flex-direction: column;
    align-items: center;
  }

  /* Each section takes full width on smaller screens */
  .left-section,
  .right-section {
    width: 100%;
  }
}

/* Container for all sections */
.custom-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

/* Billing and Shipping Information (Side by side in one row) */
.billing-shipping-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Common Box Style for Billing, Shipping, Payment, and Shipping Method */
.box-style {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  padding: 16px;
}

.payment-shipping-method {

  background-color: white;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  padding: 16px;

}

/* Header Styles for Billing and Shipping Information */
.box-header {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  background-color: #e0e0e0;
  padding: 8px 12px;
  border-radius: 4px;
  color: #000;
}

/* Address Styles */
.address-text {
  font-size: 12px;
  color: #4a4a4a;
  line-height: 1.6;
  white-space: pre-line;
  font-style: normal;
}

/* Payment Method and Shipping Method Box Style */
.payment-shipping-method {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  padding: 16px;
}


/* Payment and Shipping Method Header */
.payment-shipping-header {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  background-color: #e0e0e0;
  padding: 8px 12px;
  border-radius: 4px;
  color: #000;
}

.order-summary-block {
  font-family: Arial, sans-serif;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sub-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

.order-summary-table-main {
  margin-bottom: 20px;
}

.order-summary-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.order-summary-table th,
.order-summary-table td {
  padding: 12px;
  text-align: left;
  vertical-align: middle;
  /* border-bottom: 1px solid #ddd; */
}

.order-summary-table th {
  background-color: #f1f1f1;
  font-size: 1rem;
  font-weight: bold;
  color: black;
}

.order-summary-table td {
  font-size: 0.9rem;
}

.quantity {
  text-align: center;
}

.price,
.total {
  text-align: right;
}

.product-title {
  font-weight: bold;
}

.product-sku .label {
  font-style: italic;
}

.order-summary-totals p {
  margin: 5px 0;
  font-size: 1rem;
}

.amount {
  font-weight: bold;
}

.shipping-method,
.tax,
.subtotal {
  font-size: 1.1rem;
  text-align: right;
  margin-bottom: 10px;
}

.order-summary-totals .amount {
  color: #e97f2b;
  font-size: 1.2rem;
  font-weight: bold;
}

.featured-title {

  text-align: left;
  width: 90%;
  margin: 0 auto;
  padding: 25px 0;

}

.payment-success {

  color: #508510;
  font-weight: bold;
  font-size: 33px;
  padding: 0px 10px;

}

.thank_you_product {

  margin: 0 auto;
  padding: 60px 71px;
  width: 100%;

}

.thank_you_product .home-featured-products .product-card {
  width: 312px !important;
}

@media (max-width: 767px) {
  .thank_you_product {
    padding: 20px 15px;
    /* Adjust padding for smaller screens */
  }

  .thank_you_product .home-featured-products .product-card {
    width: 100% !important;
    /* Full width for mobile */
    margin-bottom: 15px;
    /* Space between products */
  }
}

@media (max-width: 768px) {
  .continue-shopping {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .payment-success {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-bottom: 10px;
  }

  .payment-success img,
  .continue-shopping img {
    width: 20px;
    /* Adjust the size of the images for mobile */
  }

  .payment-success span {
    font-size: 14px;
    /* Adjust font size for mobile */
  }
}

.payment-shipping-text {

  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 12px;
  color: #4a4a4a;

}

.left {
  text-align: left;
}

.right {
  text-align: right;
}


/* end payment success */

/* css for about us page - design by sandeep */



.about-main .about-section3 {

  /* background-color: #ffffff;

    padding: 30px 0; */

}



.about-main .about-section3 .main-container {

  /* width: 90%; */

  max-width: 100%;

  margin: 0 auto;

  overflow: hidden;

  /* Prevent child elements from overflowing */

}



.about-main .about-section3 .main-container .detail-common {

  text-align: left;

  width: 100%;

  margin: 0px;

  padding: 0px;

  /* background-color:#ffffff; */

  border: none;

}

.about-main .about-section3 .main-container .detail-common .detail-common-content p {
  font-size: 16px;
  color: #000;
  font-weight: 500;
}

.about-main .about-section3 .main-container .testimonial-section .testimonial-slider .testimonial-box p {
  font-size: 16px;
}




.about-main .about-section3 .main-container .detail-common .about-banner-img1 {

  max-width: 100%;

  width: 100%;

  /* Ensures full container fit */

  height: auto;

  display: block;

  margin: 0 auto;

  border-radius: 10px;

  box-sizing: border-box;

  object-fit: cover;

  /* Prevents overflow due to padding */

}



.about-main .about-section3 .main-container .detail-common .about-banner-img2 {

  max-width: 100%;

  width: 100%;

  /* Ensures full container fit */

  height: auto;

  display: block;

  margin: 0 auto;

  border-radius: 10px;

  box-sizing: border-box;

  /* Prevents overflow due to padding */

}



.about-main .about-section3 .main-container .detail-common .about-banner-img3 {

  max-width: 100%;

  width: 100%;

  /* Ensures full container fit */

  height: auto;

  display: block;

  margin: 0 auto;

  border-radius: 10px;

  box-sizing: border-box;

  /* Prevents overflow due to padding */

}



.about-main .about-section3 .main-container .detail-common .container {

  margin-top: 0px;

}



.about-main .about-section3 .main-container .detail-common .container h1 {

  font-size: 24px;

  font-weight: bold;

  color: #333;

  text-align: left;

}


.about-main .about-section3 .main-container .detail-common .container p {

  text-align: justify;

  color: #555;

  line-height: 1.6;

  margin-top: 15px;

}



.about-heading-inner {

  display: flex;

  align-items: center;

  /* Vertically center image and heading */

  gap: 1rem;

  /* Space between image and heading */

}



.about-heading-icon {

  width: 50px;

  /* Adjust as needed */

  height: auto;

  margin: 0px;

  margin-bottom: 30px;

}



.about-heading-title {

  margin: 0;
  font-size: 2rem;
  color: #000;
  margin-top: -23px;
  font-weight: 422;

  /* Adjust based on design */

}

.who_r_v {
  color: #000;
  /* Text color */
  text-transform: uppercase;
  /* Uppercase letters */
  font-family: Arial, sans-serif;
  /* Font family */
  font-weight: 700;
  /* Bold text */
  margin: 50px 0 50px 0px;
  padding: 0px;

}



/* .who_r_v {

    margin: 50px 0 50px -24px;



} */



.customers_review {

  margin-bottom: 0px;

}







.detail-common-content .what_set_us {

  text-transform: none !important;

}



.checklist {

  list-style: none;

  padding-left: 0;

  margin: 0;

}

.feature-boxes {

  display: flex;

  justify-content: space-around;

  flex-wrap: wrap;

  background-color: #002742;

  color: white;

  padding: 20px;

}



.feature-box {

  flex: 1 1 200px;

  margin: 10px;

  background: #2F4858;

  /* text-align: center; */

  padding: 15px;

  border-radius: 5px;

}



h2 {

  /* padding: 20px; */

  font-size: 1.5rem;

}



.section {

  padding: 0 auto -9px;

  max-width: 100%;

  margin: auto;

}





.footer-section {

  background-color: #fff;

  padding: 30px 20px;

  text-align: left;

}



.customer-satisfaction-section {

  padding: 40px 20px;

  background-color: #f8f9fa;

  text-align: left;

}



.customer-satisfaction-section h2 {

  font-size: 1rem;

  font-weight: bold;

  margin-bottom: 20px;

  text-transform: uppercase;

  border-bottom: 1px solid #ccc;

  padding-bottom: 10px;

}



.satisfaction-boxes {

  display: flex;

  gap: 20px;

  flex-wrap: wrap;

}



.satisfaction-box {

  background-color: #294252;

  color: #ffffff;

  padding: 15px 20px;

  border-radius: 6px;

  flex: 1 1 200px;

  display: flex;

  align-items: center;

  gap: 10px;

}



.satisfaction-box:hover {

  transform: translateY(-5px);

}



.satisfaction-box img {

  width: 30px;

  height: 30px;

}



.satisfaction-box span {

  font-size: 0.95rem;

  font-weight: 500;

}







.testimonial-section {

  padding: 0px 0px;

  background-color: #F5F5F5;

}



.testimonial-slider {

  display: flex;

  gap: 20px;

  margin: 0px;
  padding: 0px;

}



.testimonial-box {

  padding: 20px;

  border-radius: 8px;

  min-height: 260px;

  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);

  transition: transform 0.3s ease;

  margin: 10px;

  flex: 1;

}



.testimonial-box:hover {

  transform: translateY(-5px);

}



.testimonial-header {

  display: flex;

  /* align-items: center; */

  gap: 10px;
  /* space between icon and text */

}



.author-icon {

  width: 40px;

  height: 40px;

}



.author-details strong {

  font-size: 16px;

  color: #000;

}



.author-details span {

  font-size: 14px;

  color: #555;

}



.author-details {



  margin-bottom: 28px;

}





.testimonial-box p {

  font-size: 14px;

  line-height: 1.6;

  color: #333;

}



.stars {

  font-size: 16px;

  color: #f39c12;

  margin-top: 15px;

}





/* end css  for about us page - design by sandeep*/





/************** ABOUT PAGE FULL WIDTH START ****************/

/* Reset layout padding/margins */
.cms-about .main-container,
.cms-page-view.cms-about .main,
.cms-page-view.cms-about .col1-layout .col-main {
  max-width: 100%;
  padding: 0;
  margin: 0;
  background: #fff;
}

/* Remove unwanted borders/paddings */
.cms-page-view.cms-about .main-container .std {
  border: none;
  padding: 0;
}

/* Common background sections */
.common-bg-grey {
  /* background: #f8f8f8; */
  padding: 34px 0px;
  width: 87%;
  margin-left: 124px;
}

.common-bg-wht {
  background: #fff;
  padding: 80px 0;
  width: 100%;
}

/* About Page Banner */
.about-banner {
  width: 100%;
  display: block;
  overflow: hidden;
}

.about-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Section Title */
.design-manfucture-title {
  color: #000;
  font-size: 80px;
  text-transform: uppercase;
  line-height: normal;
  margin-bottom: 50px;
  text-align: center;
}

.design-manfucture-title span {
  font-weight: bold;
}

/* Design Section */
.design-common-inner {
  float: left;
  width: 19%;
  margin-right: 8%;
  text-align: center;
}

.design-common-inner:last-child {
  margin-right: 0;
}

.design-common-img {
  max-width: 200px;
  margin: 0 auto;
}

.design-common-img img {
  border-radius: 50%;
  border: 10px solid #c8382a;
  max-width: 100%;
  height: auto;
}

/* Box style */
.detail-common {
  background: #fff;
  border: 1px solid #dcdcdc;
  padding: 40px;
  text-align: left;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

/* Title inside detail boxes */
.cms-page-view .std .detail-common-title h1 {
  color: #c8382a;
  border: none;
  padding: 0;
  font-weight: bold;
  font-size: 28px;
}

/* Sidebar Links */
.about-sidebar {
  float: left;
  width: 100%;
  text-align: left;
  padding: 60px;
  background: #f9f9f9;
}

.cms-about .col-main .std .about-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cms-about .col-main .std .about-sidebar ul li {
  display: block;
  margin-bottom: 15px;
}

.about-sidebar ul li a {
  color: #000;
  font-size: 17px;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.about-sidebar ul li a:hover {
  color: #c8382a;
}

/* Paragraphs */
.cms-page-view .std .about-main p {
  font-size: 18px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 20px;
}

/* Headings */
.design-common-title {
  font-size: 16px;
  margin: 25px 0;
  font-weight: bold;
  text-transform: uppercase;
  color: #222;
}

/* Section 6 (Testimonials or Additional Section) */
.about-section6 {
  text-align: left;
  width: 100%;
}

.about-section6 .home-testimonial-wrapper {
  padding: 0;
}

/* Breadcrumb styling only for About Page */
.cms-page-view.cms-about .breadcrumbs {
  overflow: hidden;
  margin: 1px 127px 5px;
  background: transparent;
  padding: 10px 0;
  font-size: 14px;
}

/* Breadcrumb Links */
.cms-page-view.cms-about .breadcrumbs li {
  display: inline-block;
  color: #666;
  font-weight: 500;
}

.cms-page-view.cms-about .breadcrumbs li a {
  /* color: #c8382a; */
  text-decoration: none;
  transition: color 0.3s ease;
}

.cms-page-view.cms-about .breadcrumbs li a:hover {
  color: #000;
}

/* Separator (› or /) */
.cms-page-view.cms-about .breadcrumbs li::after {
  content: "›";
  margin: 0 8px;
  color: #999;
}

.cms-page-view.cms-about .breadcrumbs li:last-child::after {
  content: "";
}


/************** RESPONSIVE FIXES ****************/

/* Tablets */
@media (max-width: 992px) {
  .common-bg-grey {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    padding: 60px 15px;
  }

  .design-common-inner {
    width: 45%;
    margin-right: 5%;
    margin-bottom: 30px;
  }

  .design-common-inner:nth-child(2n) {
    margin-right: 0;
  }

  .design-manfucture-title {
    font-size: 50px;
  }

  .detail-common {
    padding: 30px;
  }
}

/* Mobile Large (up to 768px) */
@media (max-width: 768px) {
  .common-bg-grey {
    width: 100%;
    margin-left: 0;
    padding: 50px 20px;
  }

  .design-common-inner {
    width: 100%;
    margin: 0 0 40px 0;
  }

  .about-sidebar {
    padding: 30px 20px;
  }

  .detail-common {
    padding: 25px 20px;
  }

  .design-manfucture-title {
    font-size: 38px;
    margin-bottom: 30px;
  }

  .cms-page-view .std .about-main p {
    font-size: 16px;
    text-align: justify;
  }
}

/* Mobile Small (up to 480px) */
@media (max-width: 480px) {
  .design-manfucture-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .design-common-img img {
    border-width: 6px;
  }

  .detail-common {
    padding: 20px 15px;
  }

  .about-sidebar ul li a {
    font-size: 15px;
  }

  .cms-page-view .std .about-main p {
    font-size: 15px;
    line-height: 1.5;
  }

  .common-bg-grey,
  .common-bg-wht {
    padding: 40px 15px;
  }
}

/************** ABOUT PAGE FULL WIDTH END ****************/


/* Thank you for your purchase CSS */

.order-success-container {
  /* max-width: 960px; */
  margin: 30px auto;
  background: #fff;
  border-radius: 8px;
  padding: 20px 0px;
  font-family: "Open Sans", Arial, sans-serif;
  color: #222;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

.success-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.success-icon img {
  width: 42px;
  height: 42px;
  margin-left: 27px;
}

.success-message {
  flex: 1;
}

.success-message h2 {
  color: #447800;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px 0;
  margin-top: 8px
}

.success-message p {
  color: #333;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  float: left;
  margin-top: 37px;
  margin-left: -59px;
}

.success-message strong {
  font-weight: bold;
}

.continue-btn {
  background-color: #477E00;
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  /* space between icon and text */
  margin-top: -100px;
  transition: all 0.3s ease;
  white-space: nowrap;
  margin-right: 22px;
}

.continue-btn:hover {
  background-color: #477E00;
  transform: translateY(-1px);
}

.continue-btn .lock-icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

/* ✅ RESPONSIVE FIXES */
@media (max-width: 768px) {
  .continue-btn {
    width: 100%;
    margin-top: 15px;
    font-size: 15px;
    padding: 14px 0;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .continue-btn {
    flex-direction: row;
    gap: 5px;
    font-size: 14px;
    border-radius: 8px;
    margin-top: -124px;
    margin-left: -129px;
  }

  .continue-btn .lock-icon {
    width: 18px;
    height: 18px;
  }
}

.divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 25px 0;
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 247px;
  margin-bottom: 25px;
  text-align: justify;
  margin-left: 31px;
}

.column h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 23px;
  text-transform: inherit;
}

.column p {
  font-size: 14px;
  color: #333;
  margin: 6px 0;
  line-height: 1.8;
}

.confirmation-footer {
  background: #f5f6f7;
  padding: 15px 33px;
  border-radius: 0 0 8px 8px;
  font-size: 13px;
  color: #334155;
  text-align: left;
  margin-bottom: -21px;
}

.confirmation-footer a {
  color: #334155;
  font-weight: 600;
  text-decoration: none;
}

.confirmation-footer a:hover {
  text-decoration: underline;
}

/* Thank you for your purchase CSS  END*/

/* billing information css */

.form-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.form-list .fields {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.form-list .field {
  flex: 1;
  min-width: 220px;
}

.form-list .wide {
  width: 100%;
  margin-bottom: 15px;
}

.form-list label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
  font-size: 13px;
}

.form-list .input-box input,
.form-list .input-box select {
  width: 100%;
  padding: 0px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  transition: all 0.15s ease;
  font-size: 14px;
  height: 36px;
}

.form-list .input-box input:focus,
.form-list .input-box select:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.08);
  outline: none;
}

.form-list .required:after {
  content: " *";
  color: red;
}

.buttons-set {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.buttons-set .button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.buttons-set .button:hover {
  background-color: #0056b3;
}

@media (max-width: 560px) {
  .form-list .fields {
    flex-direction: column;
  }
}

/* === Full-width row for name fields === */
li.fields .customer-name,
li.fields .customer-name-middlename {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
}

/* === Each field (First, Middle, Last) takes half of full width === */
li.fields .customer-name .field,
li.fields .customer-name-middlename .field {
  flex: 1 1 48%;
  min-width: 300px;
}

/* === Label and input stretch full inside column === */
li.fields .customer-name .field label,
li.fields .customer-name .field .input-box,
li.fields .customer-name-middlename .field label,
li.fields .customer-name-middlename .field .input-box {
  width: 100%;
  display: block;
}

/* === Responsive stacking on small screens === */
@media (max-width: 768px) {

  li.fields .customer-name,
  li.fields .customer-name-middlename {
    flex-direction: column;
    gap: 15px;
  }

  li.fields .customer-name .field,
  li.fields .customer-name-middlename .field {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

/* billing information CSS END */


/* footer payment CSS */
/* ===========================
   Payment Section Styling
=========================== */
.payment-section {
  margin-left: 15px;
  margin-right: 212px;
  padding-bottom: 40px;
}

/* Payment banner image */
.payment-banner {
  margin-top: 35px;
  display: block;
  max-width: 100%;
  height: auto;
}

/* Description text */
.payment-note {
  margin-top: 26px;
  color: #1e1e1e;
  line-height: 27px;
  font-size: 15px;
}

/* Container for payment method logos */
.payment-logo-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 69px;
  direction: ltr;
}

/* Payment logos */
.payment-logos {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===========================
   Responsive Adjustments
=========================== */
@media (max-width: 1024px) {
  .payment-section {
    margin-right: 60px;
    margin-left: 15px;
  }
}

@media (max-width: 768px) {
  .payment-section {
    margin: 0 20px;
    text-align: center;
  }

  .payment-banner {
    margin-top: 25px;
    max-width: 500%;
    margin-left: auto;
    margin-right: auto;
  }

  .payment-note {
    margin-top: 20px;
    font-size: 14px;
    line-height: 24px;
  }

  .payment-logo-container {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
  }

  .payment-logos {
    max-width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .payment-section {
    margin: 0 10px;
  }

  .payment-note {
    font-size: 13.5px;
    line-height: 22px;
  }

  .payment-logos {
    max-width: 90%;
  }
}

/* footer payment CSS END */


/* footer delivery CSS */

/* ============================================
   MAGENTO CMS DELIVERY PAGE (cms-page-view cms-delivery)
   ============================================ */

.cms-page-view.cms-delivery {
  background-color: #fff;
}

.cms-page-view.cms-delivery .page-main {
  padding: 0;
}

/* Section styling */
.cms-delivery .delivery-section {
  width: 100%;
  /* background-color: #fff; */
  padding: 60px 0;
}

.cms-delivery .delivery-container {
  /* max-width: 1100px; */
  margin: 0 auto;
  padding: 0 20px;
  color: #222;
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.7;
}

/* Header */
.cms-delivery .delivery-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: -24px;
}

.cms-delivery .delivery-icon {
  width: 55px;
  height: auto;
}

.cms-delivery .delivery-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  margin: 0;
}

/* Divider */
.cms-delivery .divider {
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
}

/* Content blocks */
.cms-delivery .delivery-block {
  margin-bottom: 40px;
  padding: 0px;
}

.cms-delivery .delivery-block h3 {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  font-size: 14px;
  line-height: 3.5;
}

.cms-delivery .delivery-block p {
  color: #444;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 24px;
}

.cms-delivery .delivery-block ul {
  padding-left: 25px;
  margin-bottom: 12px;
}

.cms-delivery .delivery-block li {
  list-style: disc;
  margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .cms-delivery .delivery-section {
    padding: 40px 0;
  }

  .cms-delivery .delivery-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cms-delivery .delivery-title {
    font-size: 1.6rem;
  }

  .cms-delivery .delivery-icon {
    width: 45px;
  }

  .cms-delivery .delivery-block h3 {
    font-size: 1.15rem;
  }
}

@media (max-width: 480px) {
  .cms-delivery .delivery-title {
    font-size: 1.4rem;
  }

  .cms-delivery .delivery-block p,
  .cms-delivery .delivery-block li {
    font-size: 0.95rem;
  }
}

/* footer delivery CSS END */


/* Returns & Refunds Policy CSS */
.return-policy strong {
  display: block;
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 8px;
  color: #212529;
}

/* Paragraph styling */
.return-policy p {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
}

/* List styling */
.return-policy ul {
  font-weight: 600;
  padding-left: 20px;
  margin-bottom: 15px;
}

.return-policy ul li {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

/* Address block */
.return-policy address {
  font-style: normal;
  font-weight: 600;
  font-family: 'Rubik', sans-serif;
  line-height: 1.5;
  color: #444;
  margin-bottom: 15px;
}

/* Links */
.return-policy a {
  font-weight: 600;
  color: #007bff;
  text-decoration: underline;
}

.return-policy a:hover {
  color: #0056b3;
  font-weight: 600;
  text-decoration: none;
}

/* Optional: spacing between sections */
.return-policy section {
  margin-bottom: 30px;
}

/* Responsive tweaks (if needed) */
@media (max-width: 576px) {
  .return-policy strong {
    font-size: 16px;
  }

  .return-policy p,
  .return-policy li {
    font-size: 15px;
  }
}

/* Returns & Refunds Policy CSS END */

.cms-page-view.cms-returns .wrapper {
  background: #fff;

}

.cms-page-view.cms-delivery .wrapper {
  background: #fff;
}

.cms-page-view.cms-about .wrapper {
  background-color: #fff;
}

.cms-page-view.cms-faqs .wrapper {
  background-color: #fff;
}

.cms-page-view.cms-payment-methods .wrapper {
  background-color: #fff;
}

.contacts-index-index .wrapper {
  background-color: #F8F8F8;
}


/* ==============================
   MAIN NAV BAR (Desktop)
   ============================== */
#header-nav1 {
  position: relative;
  width: 100%;
  background: #1B2A3D;
  border-top: 2px solid #CC2D2D;
  z-index: 1000;
}

#header-nav1 #nav {
  max-width: var(--site-max-width, 1280px);
  margin: 0 auto;
  padding: 0 var(--site-gutter, 20px);
  box-sizing: border-box;
  position: relative;
}

#header-nav1 .nav-primary {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Top-level items — RELATIVE so dropdown aligns to this item */
#header-nav1 .nav-primary > li.level0 {
  position: relative;
}

#header-nav1 .nav-primary > li.level0 > a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.5px;
  padding: 14px 16px;
  transition: background 0.15s;
  white-space: nowrap;
}

/* Chevron for items with children */
#header-nav1 .nav-primary > li.level0.parent > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255, 255, 255, 0.7);
  margin-left: 2px;
  transition: transform 0.15s;
}

/* Hover state on top-level items */
#header-nav1 .nav-primary > li.level0:hover > a,
#header-nav1 .nav-primary > li.level0 > a:focus {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Active state — current category */
#header-nav1 .nav-primary > li.level0.active > a {
  border-bottom: 2px solid #CC2D2D;
}

/* =============================================
   DESKTOP NAV DROPDOWNS
   ============================================= */

/* ---- DROPDOWN PANEL (level0 > ul) ---- */
#header-nav1 .nav-primary > li.level0 > ul {
  /* Hidden by default */
  display: none;

  /* Position below the parent nav item, aligned to its left edge */
  position: absolute;
  top: 100%;
  left: 0;
  /* Don't set right:0 — let it auto-size based on content */

  /* Styling */
  background: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-top: 3px solid #CC2D2D;
  border-radius: 0 0 8px 8px;
  padding: 24px 28px;
  z-index: 9999;
  min-width: 220px;

  /* Reset list styles */
  list-style: none;
  margin: 0;
  box-sizing: border-box;

  /* Constrain height for large menus (e.g. Spare Parts with 70+ items) */
  max-height: 70vh;
  overflow-y: auto;
}

/* Remove base theme pseudo-elements */
#header-nav1 .nav-primary > li.level0 > ul::before,
#header-nav1 .nav-primary > li.level0 > ul::after {
  display: none;
}

/* Show on hover — flex for multi-column layout */
#header-nav1 .nav-primary > li.level0:hover > ul,
#header-nav1 .nav-primary > li.level0.menu-active > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
}

/* For right-side nav items, prevent dropdown going off-screen */
#header-nav1 .nav-primary > li.level0:nth-last-child(-n+3) > ul {
  left: auto;
  right: 0;
}

/* Rotate chevron when dropdown open */
#header-nav1 .nav-primary > li.level0.parent:hover > a::after,
#header-nav1 .nav-primary > li.level0.menu-active > a::after {
  transform: rotate(180deg);
}

/* Highlight hovered top-level item */
#header-nav1 .nav-primary > li.level0.parent:hover > a,
#header-nav1 .nav-primary > li.level0.menu-active > a {
  background: rgba(255, 255, 255, 0.15);
}

/* ---- LEVEL 1 ITEMS (columns inside dropdown) ---- */
#header-nav1 .nav-primary > li.level0 > ul > li.level1 {
  flex: 0 0 auto;
  min-width: 170px;
  max-width: 200px;
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: none;
  position: static;
}

/* Level 1 headings — parent items with children */
#header-nav1 .nav-primary > li.level0 > ul > li.level1.parent > a {
  font-weight: 700;
  color: #1B2A3D;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.3px;
  display: block;
  padding: 0 0 6px;
  margin-bottom: 6px;
  border-bottom: 1px solid #E8E8E8;
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.15s;
}

/* Level 1 links — non-parent items (no children, just a link) */
#header-nav1 .nav-primary > li.level0 > ul > li.level1:not(.parent) > a {
  font-weight: 600;
  color: #1B2A3D;
  text-transform: uppercase;
  font-size: 12px;
  display: block;
  padding: 4px 0;
  text-decoration: none;
  border-bottom: none;
  line-height: 1.6;
  transition: color 0.15s;
}

/* Hover on all level1 links */
#header-nav1 .nav-primary > li.level0 > ul > li.level1 > a:hover {
  color: #5B8C2A;
}

/* Active level1 subcategory */
#header-nav1 .nav-primary > li.level0 > ul > li.level1.active > a {
  color: #5B8C2A;
}

/* ---- LEVEL 2 LIST (children inside a level1 column) ---- */
/* CRITICAL: Override base theme's generic positioning rules.
   Base theme sets: .nav-primary li.level0 ul { position: absolute; display: none; width: 250px; }
   and: .nav-primary li.level1 ul { left: 60px; top: 15px; }
   These MUST be completely neutralised for level1+ child lists. */
#header-nav1 .nav-primary > li.level0 > ul > li.level1 > ul {
  display: block !important;
  position: static !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  border-top: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  min-width: 0 !important;
  width: auto !important;
  max-height: none !important;
  overflow: visible !important;
  opacity: 1 !important;
  visibility: visible !important;
  list-style: none;
  left: auto;
  top: auto;
  z-index: auto;
  flex-wrap: nowrap;
  gap: 0;
}

/* Broader override to catch any base theme generic selectors */
#header-nav1 .nav-primary li.level1 > ul,
#header-nav1 .nav-primary li.level2 > ul {
  position: static !important;
  display: block !important;
  width: auto !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  left: auto !important;
  top: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  max-height: none !important;
  overflow: visible !important;
  min-width: 0 !important;
  list-style: none;
}

/* Remove base theme chevron arrows inside dropdown */
#header-nav1 .nav-primary li.level0 li.parent > a::after {
  display: none;
}

/* Override base theme border on all links inside dropdown */
#header-nav1 .nav-primary li.level1 a,
#header-nav1 .nav-primary li.level2 a,
#header-nav1 .nav-primary li.level3 a {
  border-bottom: none;
}

/* Level 2 items */
#header-nav1 .nav-primary > li.level0 > ul > li.level1 > ul > li.level2 {
  list-style: none;
  margin: 0;
  padding: 0;
}

#header-nav1 .nav-primary li.level2 > a {
  display: block;
  color: #555555;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  padding: 3px 0;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
  transition: color 0.15s;
}

#header-nav1 .nav-primary li.level2 > a:hover {
  color: #5B8C2A;
}

/* Active level2 link */
#header-nav1 .nav-primary li.level2.active > a {
  color: #5B8C2A;
  font-weight: 600;
}

/* ---- LEVEL 3 LIST ---- */
#header-nav1 .nav-primary li.level2 > ul {
  padding-left: 10px !important;
}

#header-nav1 .nav-primary li.level3 {
  list-style: none;
  margin: 0;
  padding: 0;
}

#header-nav1 .nav-primary li.level3 > a {
  display: block;
  color: #777;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  padding: 2px 0;
  line-height: 1.5;
  transition: color 0.15s;
}

#header-nav1 .nav-primary li.level3 > a:hover {
  color: #5B8C2A;
}

/* Level 4+ nested submenus — hide */
#header-nav1 .nav-primary li.level3 > ul {
  display: none !important;
}

/* ---- "VIEW ALL" LINKS ---- */
#header-nav1 .nav-primary > li.level0 > ul > li.level1.view-all > a,
#header-nav1 .nav-primary > li.level0 > ul > li.level1 > ul > li.level2.view-all > a {
  color: #5B8C2A;
  font-weight: 600;
  font-size: 12px;
}

/* ---- First child in each dropdown ("View All X") ---- */
#header-nav1 .nav-primary > li.level0 > ul > li.level1:first-child > a {
  color: #5B8C2A;
  font-weight: 600;
}

/* =============================================
   NAV VISIBILITY — DESKTOP vs MOBILE
   ============================================= */

/* Desktop: show #header-nav1, hide #header-nav (.org-menu) */
@media (min-width: 771px) {
  #header-nav1.skip-content.desk-menu,
  .skip-content.desk-menu {
    display: block !important;
  }

  .org-menu,
  #header-nav.skip-content {
    display: none !important;
  }
}

.skip-content {
  border: none !important;
}

/* =============================================
   MOBILE NAV — #header-nav (.org-menu)
   ============================================= */
@media (max-width: 770px) {
  /* Hide desktop nav on mobile */
  #header-nav1 {
    display: none !important;
  }

  /* Show mobile nav only when toggled via skip-link */
  #header-nav.skip-content.org-menu {
    display: none;
  }

  #header-nav.skip-content.org-menu.skip-active {
    display: block !important;
    background: #FFFFFF;
    border-bottom: 1px solid #E0E0E0;
  }

  /* Mobile nav primary list — vertical stack */
  #header-nav .nav-primary {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  /* Mobile level0 items */
  #header-nav .nav-primary > li.level0 {
    position: relative;
    border-bottom: 1px solid #F0F0F0;
  }

  #header-nav .nav-primary > li.level0 > a {
    display: block;
    padding: 14px 20px;
    color: #1B2A3D;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.3px;
  }

  /* Chevron for parent items on mobile */
  #header-nav .nav-primary > li.level0.parent > a::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #999;
    transition: transform 0.2s;
  }

  #header-nav .nav-primary > li.level0.parent.menu-active > a::after {
    transform: translateY(-50%) rotate(180deg);
  }

  /* Mobile dropdowns — hidden accordion, expand via .menu-active */
  #header-nav .nav-primary > li.level0 > ul {
    display: none !important;
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    border-top: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #F8F8F8 !important;
    max-height: none !important;
    overflow: visible !important;
    width: auto !important;
    list-style: none;
  }

  #header-nav .nav-primary > li.level0.menu-active > ul {
    display: block !important;
  }

  /* Mobile level1 items */
  #header-nav .nav-primary li.level1 {
    list-style: none;
    border-bottom: none;
  }

  #header-nav .nav-primary li.level1 > a {
    display: block;
    padding: 10px 20px 10px 32px;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: none;
    text-transform: none;
  }

  #header-nav .nav-primary li.level1 > a:hover,
  #header-nav .nav-primary li.level1 > a:active {
    color: #5B8C2A;
  }

  /* Mobile level1 child lists — always visible under their parent */
  #header-nav .nav-primary li.level1 > ul {
    display: block !important;
    position: static !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: auto !important;
    list-style: none;
  }

  /* Mobile level2 items */
  #header-nav .nav-primary li.level2 > a {
    display: block;
    padding: 8px 20px 8px 48px;
    color: #666;
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    border-bottom: none;
  }

  #header-nav .nav-primary li.level2 > a:hover,
  #header-nav .nav-primary li.level2 > a:active {
    color: #5B8C2A;
  }

  /* Mobile level2 child lists */
  #header-nav .nav-primary li.level2 > ul {
    display: block !important;
    position: static !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: auto !important;
    list-style: none;
  }

  /* Mobile level3 items */
  #header-nav .nav-primary li.level3 > a {
    display: block;
    padding: 6px 20px 6px 64px;
    color: #888;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    border-bottom: none;
  }

  #header-nav .nav-primary li.level3 > a:hover,
  #header-nav .nav-primary li.level3 > a:active {
    color: #5B8C2A;
  }

  /* Remove all chevrons inside mobile dropdowns */
  #header-nav .nav-primary li.level0 li.parent > a::after {
    display: none;
  }

  /* Remove base theme pseudo-elements */
  #header-nav .nav-primary > li.level0 > ul::before,
  #header-nav .nav-primary > li.level0 > ul::after {
    display: none;
  }

  /* Hide inline mobile nav — now served via offcanvas */
  #header-nav.skip-content.org-menu,
  #header-nav.skip-content.org-menu.skip-active {
    display: none !important;
  }
}

/* =============================================
   OFFCANVAS NAV — left-side mobile menu
   ============================================= */

/* Hamburger icon — white, no label text */
.skip-nav.offcanvas-trigger {
  color: #FFFFFF;
}

.skip-nav.offcanvas-trigger svg {
  stroke: #FFFFFF;
}

/* Nav list — card layout */
#offcanvas .nav-primary {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 12px 16px;
  gap: 10px;
}

/* Level 0 — card rows */
#offcanvas .nav-primary > li.level0 {
  position: relative;
  background: #F5F5F5;
  border-radius: 10px;
  border: none;
}

#offcanvas .nav-primary > li.level0 > a {
  display: block;
  padding: 18px 52px 18px 20px;
  color: #333;
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
  line-height: 1.3;
  border: none;
}

/* + icon for parent items */
#offcanvas .nav-primary > li.level0.parent > a::after {
  content: '+';
  position: absolute;
  left: auto;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: #333;
  border: none;
  width: auto;
  height: auto;
  margin: 0;
}

/* − when expanded */
#offcanvas .nav-primary > li.level0.parent.menu-active > a::after {
  content: '−';
  transform: translateY(-50%);
}

/* Accordion: hide submenus, show on active */
#offcanvas .nav-primary > li.level0 > ul {
  display: none !important;
  position: static !important;
  box-shadow: none !important;
  background: transparent;
  padding: 0 0 8px;
  margin: 0;
  width: auto !important;
  left: auto !important;
  list-style: none;
}

#offcanvas .nav-primary > li.level0.menu-active > ul {
  display: block !important;
}

/* Level 1 items */
#offcanvas .nav-primary li.level1 {
  list-style: none;
}

#offcanvas .nav-primary li.level0 li {
  padding-left: 0;
}

#offcanvas .nav-primary li.level1 > a {
  display: block;
  padding: 10px 20px 10px 20px;
  color: #444;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  text-transform: none;
  line-height: 1.3;
  border: none;
}

/* Nested lists always visible once parent is expanded */
#offcanvas .nav-primary li.level1 > ul,
#offcanvas .nav-primary li.level2 > ul {
  display: block !important;
  position: static !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  width: auto !important;
}

/* Level 2 items */
#offcanvas .nav-primary li.level2 > a {
  display: block;
  padding: 8px 20px 8px 32px;
  color: #666;
  font-size: 13px;
  text-decoration: none;
  line-height: 1.3;
  border: none;
}

/* Level 3 items */
#offcanvas .nav-primary li.level3 > a {
  display: block;
  padding: 6px 20px 6px 44px;
  color: #888;
  font-size: 12px;
  text-decoration: none;
  line-height: 1.3;
  border: none;
}

/* Hide chevrons inside offcanvas submenus */
#offcanvas .nav-primary li.level0 li.parent > a::after {
  display: none;
}

/* Remove desktop mega-menu pseudo-elements */
#offcanvas .nav-primary > li.level0 > ul::before,
#offcanvas .nav-primary > li.level0 > ul::after {
  display: none;
}


.postcode-lookup-inline {
  display: flex;
  align-items: center;
  /*gap: 8px;  space between input and button */
}

.postcode-lookup-inline .input-text {
  flex: 1;
  height: 36px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0 10px;
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

.postcode-lookup-inline .lookup-btn {
  background-color: #4b8e08;
  /* green button like screenshot */
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  width: auto;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  height: 36px;
}

.postcode-lookup-inline .lookup-btn:hover {
  background-color: #3d7606;
}

.postcode-lookup-inline .lookup-btn .icon {
  font-size: 14px;
}

.postcode-lookup-block select {
  margin-top: 8px;
  width: 100%;
}

/* Dropdown spacing below the lookup row */
.address-select-box {
  margin-top: 8px;
}

.address-select-box select {
  width: 100%;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
}


/* === Magento Checkout Review Page Scoped CSS === */
.checkout-onepage-index .review-product-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.checkout-onepage-index .review-img img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 5px;
  background: #fff;
}

.checkout-onepage-index .review-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}

.checkout-onepage-index .review-product-name {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  border-bottom: 1px solid #a8a3a3;
}

.checkout-onepage-index .review-sku {
  font-size: 14px;
  color: #4b4848;
}

.checkout-onepage-index .review-item-row td {
  padding: 14px 12px !important;
  vertical-align: middle !important;
}

.checkout-onepage-index #checkout-review-table-wrapper {
  border: 1px solid #e6e1e1;
  border-radius: 10px;
  margin-bottom: 20px;
}

.checkout-onepage-index .review-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #000;
  background: #E8EAED;
  padding: 26px 3px 20px 18px;
  border-top-right-radius: 7px;
  border-top-left-radius: 7px;
}

/* .edit-icon {

  border-radius: 50%;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  cursor: pointer;
  float: right;
} */

.checkout-onepage-index .checkout-review-table thead th {
  border-bottom: 2px solid #ddd;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 702;
}

/* === Responsive === */
@media (max-width: 600px) {
  .checkout-onepage-index .review-product-wrapper {
    flex-direction: row;
    align-items: flex-start;
  }

  .checkout-onepage-index .review-img img {
    width: 60px;
    height: 60px;
  }

  .checkout-onepage-index .review-product-name {
    font-size: 13px;
  }

  .checkout-onepage-index .review-sku {
    font-size: 11px;
  }
}


/* Only apply to the Chainsaws category page */
.catalog-category-view.category-chainsaws .block-layered-nav {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}

/* Hide “Category” label */
.catalog-category-view.category-chainsaws #narrow-by-list2 dt {
  display: none;
}

/* List styling */
.catalog-category-view.category-chainsaws #narrow-by-list2 ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.catalog-category-view.category-chainsaws #narrow-by-list2 ol li {
  border-bottom: 1px solid #eee;
}

.catalog-category-view.category-chainsaws #narrow-by-list2 ol li:last-child {
  border-bottom: none;
}

/* Links */
.catalog-category-view.category-chainsaws #narrow-by-list2 ol li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  font-size: 15px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

/* Count */
/* .catalog-category-view.category-chainsaws #narrow-by-list2 ol li a .count {
    color: #555;
} */

/* Hover */
.catalog-category-view.category-chainsaws #narrow-by-list2 ol li a:hover {
  background: #477E00;
  color: #fff;
}

/* Active state */
.catalog-category-view.category-chainsaws #narrow-by-list2 ol li a.current {
  font-weight: 600;
  background: #477E00;
  color: #fff;
}

.catalog-category-view #narrow-by-list2 dd {
  padding: 0px;
}


/* Wrapper */
.catalog-category-view .block-layered-nav {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

/* Remove default title */
.catalog-category-view #narrow-by-list2 dt {
  display: none;
}

/* Back to parent category link */
.catalog-category-view .sidebar-back-link {
  display: block;
  background: #243949;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 18px;
  text-decoration: none;
}
.catalog-category-view .sidebar-back-link::before {
  content: "\2190\00a0\00a0";
}
.catalog-category-view .sidebar-back-link:hover {
  background: #1a2e3a;
  color: #fff;
}


/* padding inside dd (list wrapper) */
.catalog-category-view #narrow-by-list2 dd {
  padding: 0;
}

/* Remove bullet & spacing */
.catalog-category-view #narrow-by-list2 ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Each li border */
.catalog-category-view #narrow-by-list2 li {
  border-bottom: 1px solid #e6e6e6;
}

.catalog-category-view #narrow-by-list2 li:last-child {
  border-bottom: none;
}

/* Category link style */
.catalog-category-view #narrow-by-list2 a {
  display: block;
  padding: 14px 18px;
  font-size: 15px;
  color: #000;
  text-decoration: none;
}

/* Hover */
.catalog-category-view #narrow-by-list2 a:hover {
  background: #477E00;
  color: #fff;
}
.catalog-category-view #narrow-by-list2 a:hover .count {
  color: #fff;
}

/* Active link */
.catalog-category-view #narrow-by-list2 a.current {
  font-weight: 600;
  background: #477E00;
  color: #fff;
}
.catalog-category-view #narrow-by-list2 a.current .count {
  color: #fff;
}



/* checkout continue shopping css */

/* EMPTY CART BOX */
/* ==============================
   CART PAGE – EMPTY CART STYLE
   Magento: .checkout-cart-index
==============================*/
.checkout-cart-index .empty-cart-page .cart-box {
  background: #FFEFF0;
  border-radius: 12px;
  padding: 60px 100px;
  text-align: center;
  margin: 20px auto 50px;
  max-width: 100%;
}

/* Empty Cart Icon */
.checkout-cart-index .cart-box-inner img.cart-icon {
  width: 180px;
  margin-bottom: 15px;
  margin-left: 678px;
}

/* Heading */
.checkout-cart-index .cart-box-inner h2 {
  font-size: 26px;
  font-weight: 600;
  color: #222;
  text-align: center;
}

.checkout-cart-index .cart-box-inner .highlight {
  color: #e30026;
}

/* Sub Text */
.checkout-cart-index .cart-subtext {
  font-size: 14px;
  color: #777;
  margin-bottom: 21px;
  text-align: revert;
  margin-left: 88px;
}

/* Start Shopping Button */
.checkout-cart-index .btn-shop {
  background: #4CAF50;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  margin-left: 102px;
}

.checkout-cart-index .btn-shop:hover {
  background: #3a9c40;
}

.checkout-cart-index .btn-shop img.btn-icon-sm {
  width: 18px;
}

/* ==============================
   FEATURED PRODUCTS SECTION
==============================*/
/* ✅ Featured Products Heading */
/* ==============================
   FEATURED PRODUCTS STYLE (Screenshot Matching)
==============================*/

/* ========== Section Title ========== */
.checkout-cart-index .featured-section {
  margin-top: 30px;
}

.checkout-cart-index .featured-section h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #000;
  border-bottom: 1px solid #d3cfcf;
  text-transform: initial;
}

/* Divider */
.checkout-cart-index .simple-divider {
  width: 180px;
  height: 2px;
  background: #eee;
  margin: 12px 0 32px;
  border: none;
}

/* ========== Slider Wrap ========== */
.checkout-cart-index .featured-slider-wrapper {
  position: relative;
}

/* Scroll Version */
.checkout-cart-index .product-slider {
  display: flex;
  gap: 33px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  max-width: 100%;
}

.checkout-cart-index .product-slider::-webkit-scrollbar {
  display: none;
}

/* Slick Override */
.checkout-cart-index .slick-track {
  display: flex !important;
  gap: 24px !important;
}

/* ========== Product Card ========== */
.checkout-cart-index .product-card {
  scroll-snap-align: start;
  /* width: 260px;
    min-width: 260px; */
  max-width: 260px;

  background: #fff;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 20px 18px;
  text-align: left;
  transition: 0.25s ease;
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  margin-left: -2px;
}

.checkout-cart-index .product-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

/* Discount Badge */
.checkout-cart-index .discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #2F4858;
  color: #fff;
  font-size: 11px;
  padding: 5px 8px;
  border-radius: 4px;
  font-weight: 600;
}

/* Image */
.checkout-cart-index .image-box {
  width: 100%;
  /* height: 190px; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.checkout-cart-index .image-box img {
  max-width: 100%;
  /* max-height: 170px; */
  object-fit: contain;
}

/* ========== Text / Title ========== */
.checkout-cart-index .product-title a {
  color: #000;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.35;
  display: block;
  min-height: 42px;
  margin-bottom: 6px;
}

/* Rating */
.checkout-cart-index .rating {
  color: #f7b500;
  font-size: 15px;
  margin: 6px 0;
}

.checkout-cart-index .rating span {
  font-size: 12px;
  color: #888;
}

/* ========== Price ========== */
.checkout-cart-index .product-price-btn {
  background: #4a8e05;
  padding: 12px;
  border-radius: 6px;
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.checkout-cart-index .special-price {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.checkout-cart-index .vat-text {
  color: #fff;
  font-size: 12px;
}

/* Old price style */
.checkout-cart-index .regular-price del {
  opacity: 0.7;
}

/* Hide add button (if exists) */
.checkout-cart-index .add-to-cart-btn {
  display: none !important;
}

/* ========== Arrows ========== */
.checkout-cart-index .slick-prev-btn,
.checkout-cart-index .slick-next-btn {
  position: absolute;
  top: -87px;
  right: 0;
  background: #fffdfd;
  color: #9C9C9C;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 34px;
  transition: 0.2s;
  border: 1px solid #d3cbcb;
}

.checkout-cart-index .slick-prev-btn {
  right: 38px;
}

.checkout-cart-index .slick-prev-btn:hover,
.checkout-cart-index .slick-next-btn:hover {
  background: #dbdada;
}

/* ✅ Large screens (1650px) */
@media (max-width: 1650px) {
  .checkout-cart-index .product-card {
    max-width: 240px;
    min-width: 256px;
  }
}

/* ✅ Laptop screens */
@media (max-width: 1366px) {
  .checkout-cart-index .product-card {
    max-width: 230px;
    min-width: 220px;
  }
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  body.checkout-cart-index .product-card {
    min-width: 230px;
    max-width: 230px;
  }
}

@media (max-width: 768px) {
  body.checkout-cart-index .product-card {
    min-width: 210px;
    max-width: 210px;
  }

  body.checkout-cart-index .slick-prev-btn,
  body.checkout-cart-index .slick-next-btn {
    top: -85px;
  }
}

@media (max-width: 480px) {
  body.checkout-cart-index .product-card {
    min-width: 273px;
  }
}


/* Slider Arrows */
.checkout-cart-index .custom-arrow {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  padding: 6px 10px;
  font-size: 18px;
  cursor: pointer;
  transition: .3s;
}

.checkout-cart-index .custom-arrow:hover {
  background: #ddd;
}

/* ==============================
   REASONS TO BUY SECTION
==============================*/
.checkout-cart-index .reasons-section h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 35px 0 18px;
  color: #000;
}

.checkout-cart-index .reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.checkout-cart-index .reason-card {
  display: flex;
  gap: 12px;
  padding: 16px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
  align-items: center;
}

.checkout-cart-index .reason-card img {
  width: 42px;
}

.checkout-cart-index .reason-card strong {
  font-size: 14px;
  color: #000;
}

.checkout-cart-index .reason-card p {
  font-size: 12px;
  color: #777;
  margin: 2px 0 0;
}

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

/* Tablet */
@media (max-width: 991px) {
  .checkout-cart-index .cart-box-inner img.cart-icon {
    margin-left: 0 !important;
    margin: 0 auto 15px;
    display: block;
    width: 160px;
  }

  .checkout-cart-index .cart-subtext {
    margin-left: 0 !important;
    text-align: center !important;
  }

  .checkout-cart-index .btn-shop {
    margin-left: 0 !important;
    margin: 10px auto;
    display: flex;
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .checkout-cart-index .empty-cart-page .cart-box {
    padding: 40px 15px;
  }

  .checkout-cart-index .cart-box-inner {
    text-align: center;
    padding: 10px;
  }

  .checkout-cart-index .cart-box-inner img.cart-icon {
    width: 140px;
  }

  .checkout-cart-index .btn-shop {
    width: 100%;
    max-width: 260px;
    font-size: 14px;
    justify-content: center;
  }

  .checkout-cart-index .reasons-grid {
    grid-template-columns: repeat(1, 1fr);
    /* ✅ 2 cards per row on mobile */
    gap: 12px;
  }
}


/* Featured slider wrapper */
.checkout-cart-index .featured-slider-wrapper {
  position: relative;
  margin-top: 28px;
  padding: 0;
  /* ❌ -1px removed */
}

/* Navigation buttons wrapper */
.checkout-cart-index .related-nav {
  position: absolute;
  top: -45px;
  left: 0;
  /* move left */
  display: flex;
  gap: 8px;
}

/* Buttons */
.checkout-cart-index .related-nav button {
  background: #bbb7b7;
  color: #fff;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s ease;
}

/* Hover effect */
.checkout-cart-index .related-nav button:hover {
  background: #e23d3d;
}

/* Disable state */
.checkout-cart-index .related-nav button:disabled {
  background: #888;
  cursor: not-allowed;
}

.checkout-cart-index .breadcrumb {
  color: #D52A34;
}

/* checkout continue shopping css end.. */


.catalog-category-view .breadcrumbs {
  margin-bottom: 20px !important;
}

.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 15px;
  text-transform: capitalize;
  margin-left: 10px;
}

.breadcrumbs li:not(:last-child)::after {
  /* content: "›"; */
  margin: 0 0.5rem;
}

.breadcrumbs ul li span {
  margin: 0 5px 0 5px;
}


/* checkout button css */

.button,
.cart-table .product-cart-actions .button,
#co-shipping-method-form .buttons-set .button,
.footer .button {
  padding: 15px 15px !important;
}

/* checkout button css  end*/

/* .cms-index-index.cms-home-left svg {
  margin-top: -8px;
}

.checkout-onepage-index svg{
  margin-top: -8px;
} */

/* .catalog-category-view.category-fuel-transfer .skip-link svg {
  width: 30px;
  height: 30px;
  background-size: 30px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
} */

.skip-link svg {
  color: #fff;
  width: 24px;
  height: 24px;
}

/* ================================
   Full-width Lists for Home Page
================================ */
/* .cms-index-index.cms-home-left ol,
.cms-index-index.cms-home-left ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100vw;          
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;       
  margin-right: -50vw;
  background: #2F4858;
  box-sizing: border-box;
  color: #fff;
  top: 10px;
} */

/* ====== Optional list item styling ====== */
.cms-index-index.cms-home-left ul li,
.cms-index-index.cms-home-left ol li {
  /* padding: 12px 20px; */
  /* border-bottom: 1px solid rgba(255,255,255,0.1); */
}



/* ================================
   Mobile View
================================ */
@media only screen and (max-width: 770px) {

  .cms-index-index.cms-home-left ol,
  .cms-index-index.cms-home-left ul {
    padding: 8px 15px;
  }

  .cms-index-index.cms-home-left ul li,
  .cms-index-index.cms-home-left ol li {
    padding: 8px 12px;
  }


}

/* --------------------------------------------------------
   Loading button spinner (used by add-to-cart buttons)
   Minicart styles moved to minicart.css
   -------------------------------------------------------- */
.btn--loading {
  position: relative;
  pointer-events: none;
  color: transparent !important;
}

.btn--loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin .6s linear infinite;
}

@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

/* =============================================
   SEARCH AUTOCOMPLETE OVERRIDES
   ============================================= */
.search-autocomplete {
  z-index: 10000 !important;
  border: 2px solid #1b2a3d !important;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.search-autocomplete:before {
  border-bottom-color: #1b2a3d !important;
}

.search-autocomplete .view-all {
  background-color: #1b2a3d !important;
  color: #fff !important;
}

.search-autocomplete .view-all:hover {
  background-color: #253a50 !important;
}

.search-autocomplete .autocomplete-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}

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

.search-autocomplete .autocomplete-item:hover {
  background: #f8f4f4;
}

.search-autocomplete .ac-image {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
}

.search-autocomplete .ac-image img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 4px;
}

.search-autocomplete .ac-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.search-autocomplete .ac-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2F4858;
  line-height: 1.3;
}

.search-autocomplete .ac-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: #B90A1C;
}


/* Category results in autosuggest */
.search-autocomplete .category-results {
  padding: 0;
  border-bottom: none;
  margin-bottom: 0;
}

.search-autocomplete .category-results-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #4a5568;
  padding: 10px 14px 6px;
}

.search-autocomplete .category-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.search-autocomplete .category-item {
  border-bottom: 1px solid #eee;
}

.search-autocomplete .category-item:last-child {
  border-bottom: none !important;
}

.search-autocomplete .category-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  text-decoration: none;
  color: #1b2a3d;
  font-size: 0.85rem;
  transition: background 0.15s;
}

.search-autocomplete .category-link:hover {
  background: #f0ecea;
}

.search-autocomplete .category-path {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #6b7b8d;
  font-size: 0.8rem;
}

.search-autocomplete .category-path .path-item::after {
  content: "›";
  margin-left: 4px;
}

.search-autocomplete .category-name {
  position: static;
  background: none;
  text-align: left;
  border-radius: 0;
  padding: 0;
  font-weight: 600;
  font-size: 0.85rem;
  color: #1b2a3d;
}

/* Products title in autosuggest */
.search-autocomplete .product-results-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #4a5568;
  padding: 10px 14px 6px;
  border-top: 1px solid #ddd;
}

/* =============================================
   TOAST NOTIFICATIONS (pure CSS)
   Converts Maho session messages into floating
   toast popups that auto-dismiss after 6 seconds.
   ============================================= */
@keyframes toast-in {
  from { translate: 0 -1rem; opacity: 0; }
  to   { translate: 0 0;     opacity: 1; }
}

@keyframes toast-out {
  0%   { translate: 0 0;     opacity: 1; }
  100% { translate: 0 -1rem; opacity: 0; }
}

@keyframes toast-progress {
  from { inline-size: 100%; }
  to   { inline-size: 0; }
}

ul.messages {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

ul.messages > li {
  position: relative;
  max-width: 520px;
  width: 100%;
  padding: 0.875rem 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 24px rgb(0 0 0 / .12), 0 1px 4px rgb(0 0 0 / .08);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  pointer-events: auto;
  overflow: hidden;
  animation:
    toast-in  0.35s ease-out,
    toast-out 0.4s  ease-in 5.6s forwards;
}

/* Progress bar */
ul.messages > li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  block-size: 3px;
  inline-size: 100%;
  border-radius: 0 0 0.5rem 0.5rem;
  animation: toast-progress 6s linear forwards;
}

/* Reset nested list */
ul.messages > li > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.messages > li > ul > li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

/* Type icon via ::before on the inner span */
ul.messages > li > ul > li > span::before {
  display: inline-block;
  margin-right: 0.35rem;
  font-size: 1.05em;
  vertical-align: -0.1em;
}

/* ---- Success ---- */
ul.messages > li.success-msg {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}
ul.messages > li.success-msg::after {
  background: #22c55e;
}
ul.messages > li.success-msg > ul > li > span::before {
  content: "\2713";
  color: #22c55e;
}

/* ---- Error ---- */
ul.messages > li.error-msg {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
ul.messages > li.error-msg::after {
  background: #ef4444;
}
ul.messages > li.error-msg > ul > li > span::before {
  content: "\2717";
  color: #ef4444;
}

/* ---- Warning ---- */
ul.messages > li.warning-msg {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}
ul.messages > li.warning-msg::after {
  background: #f59e0b;
}
ul.messages > li.warning-msg > ul > li > span::before {
  content: "\26A0";
  color: #f59e0b;
}

/* ---- Notice / Info ---- */
ul.messages > li.notice-msg {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
}
ul.messages > li.notice-msg::after {
  background: #3b82f6;
}
ul.messages > li.notice-msg > ul > li > span::before {
  content: "\2139";
  color: #3b82f6;
}

/* On mobile, full-width toasts */
@media (max-width: 600px) {
  ul.messages {
    width: calc(100% - 1rem);
  }
  ul.messages > li {
    max-width: 100%;
  }
}