/*
Theme Name: Ministore
Theme URI: 
Author: 
Author URI: 
Description: Ministore is specially designed product packaged for Ministore by Moksha.
Version: 
*/

/*--------------------------------------------------------------
This is main CSS file that contains custom style rules used in this template
--------------------------------------------------------------*/

/*------------------------------------*\
    Table of contents
\*------------------------------------*/

/*------------------------------------------------

CSS STRUCTURE:

    
/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
  --accent-color:             #717171;
  --white-color:              #fff;
  --black-color:              #000;
  --gray-color:               #F3F3F3;
  --gray-color-300:           #D8D8D8;
  --gray-color-500:           #AEAEAE;
  --gray-color-800:           #3A3A3A;
  --light-gray-color:         #D7DDDF;
  --primary-color:            #72AEC8;
  --bs-primary-rgb:           114,174,200;
  --light-color:              #f8f9fa;
  --dark-color:               #212529;
  --light-blue-color:         #EDF1F3;
  --navbar-color-color:       #131814;
  --swiper-theme-color:       #4A4A4A;
  --swiper-pagination-color:  #4A4A4A;

}

/* on mobile devices below 600px
 */
@media screen and (max-width: 600px) {
    :root {
        --header-height : 100px;
        --header-height-min   : 80px;
    }
}

/* Fonts */
:root {
    --body-font           : "Lato", sans-serif;
    --heading-font        : "Jost", sans-serif;
}

/*----------------------------------------------*/
/* 1 GENERAL TYPOGRAPHY */
/*----------------------------------------------*/

/* 1.1 General Styles
/*----------------------------------------------*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
}
body {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}
p {
  font-size: 1.2em;
  color: var(--gray-color-500);
}
ul.inner-list li {
   font-size: 1.2em;
}
a {
  color: var(--dark-color);
  text-decoration: none;
  transition: 0.3s color ease-out;
}
a.light {
  color: var(--light-color);
}
a:hover {
  text-decoration: none;
  color: var(--primary-color);
}

/*------------ Background Color -----------*/
.bg-gray {
    background: var(--gray-color);
}
.bg-dark {
    background: var(--dark-color);
}
.bg-light {
    background: var(--light-color);
}
.bg-light-blue {
    background: var(--light-blue-color);
}

/* - Section Padding
--------------------------------------------------------------*/
.padding-xsmall {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.padding-small {
  padding-top: 2em;
  padding-bottom: 2em;
}
.padding-medium {
  padding-top: 4em;
  padding-bottom: 4em;
}
.padding-large {
  padding-top: 7em;
  padding-bottom: 7em;
}
.padding-xlarge {
  padding-top: 9.5em;
  padding-bottom: 9.5em;
}

/* no padding */
.no-padding-top {
  padding-top: 0 !important;
}
.no-padding-right {
  padding-right: 0 !important;
}
.no-padding-bottom {
  padding-bottom: 0 !important;
}
.no-padding-left {
  padding-left: 0 !important;
}
.no-padding-tb {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.no-padding-lr {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.no-gutter {
  padding: 0 !important;
}

/* no padding and margin */
.no-padding {
  padding: 0 !important;
}
.no-margin {
  margin: 0 !important;
}

/* - Section margin
--------------------------------------------------------------*/
.margin-small {
  margin-top: 3em;
  margin-bottom: 3em;
}
.margin-medium {
  margin-top: 5em;
  margin-bottom: 5em;
}
.margin-large {
  margin-top: 7em;
  margin-bottom: 7em;
}
.margin-xlarge {
  margin-top: 9em;
  margin-bottom: 9em;
}

@media only screen and (max-width: 768px) {
  .margin-small,
  .margin-medium,
  .margin-large {
    margin-top: 1em;
    margin-bottom: 1em;
  }
}


/* - Section Title
--------------------------------------------------------------*/
h3.card-title,
h3.cart-title {
   font-size: 1.5em;
}

/* - Section width
--------------------------------------------------------------*/
.u-full-width {
    width: 100%;
    border: none;
}

/*--------------------------------------------------------------
/** 2.10 Buttons
--------------------------------------------------------------*/
/* - Button Sizes
------------------------------------------------------------- */
.btn.btn-small {
  padding: 0.8em 1.8em;
  font-size: 0.65em;
}
.btn.btn-medium {
  padding: 0.8em 2.8em;
  font-size: 1.1em;
  letter-spacing: 2px;
}
.btn.btn-large {
  padding: 2.4em 5.1em;
  font-size: 1.8em;
}

/* - Button Shapes
------------------------------------------------------------- */
.btn.btn-rounded,
.btn.btn-rounded::after {
  border-radius: 6px;
}
.btn.btn-pill,
.btn.btn-pill::after {
  border-radius: 2em;
}
/* button outline */
.btn.btn-outline-dark,
.btn.btn-outline-light,
.btn.btn-outline-accent {
  background: transparent;
  text-shadow: none;
  box-shadow: none;
}
.btn.btn-outline-dark:hover::after,
.btn.btn-outline-light:hover::after {
  background-color: transparent;
}
.btn.btn-outline-dark {
  border-color: rgba(0,0,0,1);
  color: var(--dark-color);
}
.btn.btn-outline-dark:hover {
  background: var(--dark-color);
  color: var(--light-color);
}
.btn.btn-outline-light {
  border-color: rgba(255,255,255,0.5);
  color: var(--light-color);
}
.btn.btn-outline-light:hover {
  background: var(--primary-color);
  color: var(--light-color);
  border-color: var(--primary-color);
}
.btn.btn-outline-accent {
  background: transparent;
  border-color: var(--accent-color);
  color: var(--dark-color);
}
.btn.btn-outline-accent:hover {
  border-color: var(--dark-color);
  color: var(--dark-color) !important;
}
.btn.btn-full {
  display: block;
  margin: .85em 0;
  width: 100%;
  letter-spacing: 0.12em;
}

/* no border radius */
.btn-rounded-none,
.btn-rounded-none::after {
  border-radius: 0;
}

/* - Buttons Color Scheme
------------------------------------------------------------- */
.btn.btn-normal {
  text-decoration: underline;
  border: none;
}
.btn.btn-normal:hover {
  text-decoration: none;
}
.btn.btn-accent {
  color: var(--light-color);
  background-color: var(--accent-color);
  border: none;
}
.btn.btn-accent:hover {
  color: var(--light-color) !important;
  background-color: var(--primary-color);
}
.btn.btn-black {
  background-color: var(--dark-color);
  color: var(--light-color);
  border: none;
}
.btn.btn-black:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}
.btn.btn-light {
  background-color: var(--light-color);
  color: var(--dark-color);
  border: none;
}
.btn.btn-light:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}
.btn.btn-primary {
  background: var(--primary-color);
  color: var(--light-color);
  border: none;
}
.btn.btn-primary:hover {
  background-color: var(--dark-color);
  color: var(--light-color);
}

/* - Buttons Aligns
------------------------------------------------------------- */
.btn-left {
  text-align: left;
  display: block;
}
.btn-center {
  text-align: center;
  display: block;
}
.btn-right {
  text-align: right;
  display: block;
}

/*----------------------------------------------*/
/* 2 SITE STRUCTURE */
/*----------------------------------------------*/

/* - Search Bar
------------------------------------------------------------- */
.search-box {
    background: var(--gray-color);
    position: relative;
}
.close-button {
    position: absolute;
    top: 20px;
    right: 120px;
    cursor: pointer;
    z-index: 9;
}
.search-box input.search-input {
    font-size: 1.3em;
    width: 70%;
    height: 30px;
    padding: 25px;
    border-radius: 80px;
    border-color: rgb(0 0 0 / 25%);
    background: transparent;
}
.search-box svg {
    width: 22px;
    height: 22px;
    color: var(--primary-color);
}
.search-box svg.search {
    margin-left: -50px;
}


/** Search Form
--------------------------------------------------------------*/
.search-form input[type="search"].search-field {
  border: none;
  background: #f1f1f1;
  width: 100%;
  border-radius: 50px;
  padding: 10px 40px;
}
.search-form input[type="search"].search-field::focus {
  border-color: #af9aaa;
}
.search-form button {
  position: absolute;
  top: 6px;
  right: 9px;
  background: transparent;
  border: none;
}

/** Search Popup
--------------------------------------------------------------*/
.search-popup {
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
}
.search-popup.is-visible {
  opacity: 1;
  visibility: visible;
  cursor: -webkit-image-set(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23FFF' d='M20 1l-1-1-9 9-9-9-1 1 9 9-9 9 1 1 9-9 9 9 1-1-9-9'/%3E%3C/svg%3E") 1x, url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23000' d='M20 1l-1-1-9 9-9-9-1 1 9 9-9 9 1 1 9-9 9 9 1-1-9-9'/%3E%3C/svg%3E") 2x), pointer;
  cursor: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23000' d='M20 1l-1-1-9 9-9-9-1 1 9 9-9 9 1 1 9-9 9 9 1-1-9-9'/%3E%3C/svg%3E"), pointer;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.search-popup-container {
  background-color: transparent;
  position: relative;
  top: 50%;
  margin: 0 auto;
  padding: 0;
  width: 90%;
  max-width: 800px;
  text-align: center;
  box-shadow: none;
  cursor: default;
  -webkit-transform: translateY(-40px);
  transform: translateY(-40px);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.is-visible .search-popup-container {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.search-popup-form {
  position: relative;
  margin: 0 0 3em 0;
}
.search-popup-form .form-control {
  padding: 0 0 .375em 0;
  font-size: 2em;
}
.search-popup-form #search-popup-submit {
  display: none;
}
.search-popup .search-popup-close {
  display: block;
  position: absolute;
  top: 2em;
  right: 2em;
  margin: -0.5em;
  padding: 0.5em;
  line-height: 0;
}
.search-popup .search-popup-close:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.search-popup .search-popup-close i {
  display: block;
  position: relative;
  width: 1em;
  height: 1em;
  fill: rgba(0,0,0,0.5);
}
.search-popup .search-popup-close:hover i {
  fill: rgba(0,0,0,1);
}
.search-popup .cat-list-title {
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 0.6em;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.search-popup .cat-list {
  margin: 0;
  list-style-type: none;
}
.search-popup .cat-list-item {
  display: inline-block;
  margin-bottom: 0;
  letter-spacing: 0.015em;
  font-size: 2em;
}
.search-popup .cat-list-item a {
  position: relative;
}
.search-popup .cat-list-item a::after {
  background: none repeat scroll 0 0 #fff;
  content: "";
  height: 1px;
  border-bottom: 1px solid #ff9697;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 100%;
  width: 100%;
  -webkit-transition: height 0.3s,opacity 0.3s,-webkit-transform 0.3s;
  transition: height 0.3s,opacity 0.3s,transform 0.3s;
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}
.search-popup .cat-list-item a:hover::after {
  height: 1px;
  opacity: 1;
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}
.search-popup .cat-list-item::after {
  content: "/";
  padding: 0 5px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.5);
  vertical-align: text-top;
}
.search-popup .cat-list-item:last-child::after {
  display: none;
}

@media only screen and (max-width: 991px) {
  .search-popup .cat-list-item,
  .search-popup-form .form-control {
    font-size: 1.425em;
  }
}
@media only screen and (max-width: 767px) {
.search-popup .search-popup-close {
    top: 1em;
    right: 1em;
  }
}
@media only screen and (max-width: 575px) {
  .search-popup .cat-list-item,
  .search-popup-form .form-control {
    font-size: 1.125em;
  }
  .search-popup .search-popup-close {
    top: 1em;
    right: 1em;
  }
}

.search-popup input[type="search"] {
  font-size: 24px;
  height: 60px;
  padding: 26px;
}
.search-popup .search-form button {
  top: 12px;
  right: 15px;
}
.search-popup .search-form button svg {
  height: 28px;
  width: 28px;
}


/* 1. Header
/*----------------------------------------------*/
.site-header {
    position: fixed;
    width: 100%;
    z-index: 10;
  transition: background 0.3s ease-out, box-shadow 0.3s ease-out;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(19, 24, 20, 0.08);
  box-shadow: 0 10px 28px rgba(19, 24, 20, 0.06);
  backdrop-filter: blur(12px);
}
#header-nav {
  min-height: 82px;
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
}
.site-header .navbar-brand {
    display: inline-flex;
    align-items: center;
  max-width: min(32vw, 182px);
}
.site-header .logo {
    display: block;
    width: auto;
    max-width: 100%;
  max-height: 56px;
    object-fit: contain;
}
.navbar-toggler svg.navbar-icon {
    width: 50px;
    height: 50px;
}
.navbar-nav .nav-item a.nav-link {
    color: var(--accent-color);
}
.navbar-nav .nav-item a.nav-link.active, 
.navbar-nav .nav-item a.nav-link:focus, 
.navbar-nav .nav-item a.nav-link:hover {
    color: var(--primary-color);
}

/*------------ Offcanvas -------------- */
#header-nav .navbar-toggler:focus {
    box-shadow: none;
}
#header-nav .offcanvas.show {
    z-index: 9999;
    background-color: var(--light-blue-color);
}
#header-nav .offcanvas-end {
    width: 500px;
}
.offcanvas .offcanvas-body {
  padding-top: 16px;
}
.offcanvas.show .nav-item a.nav-link {
    font-size: 2em;
}
.offcanvas.show .offcanvas-body .navbar-nav {
    align-items: unset!important;
    padding-left: 20px;
}
#header-nav .offcanvas-header .logo {
    max-height: 68px;
}

/*------------ Top User Icons -----------*/
.site-header .user-items svg {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

@media only screen and (max-width: 991px) {
  #navbar .user-items {
    display: none;
  }
  #header-nav .offcanvas,
  #header-nav .offcanvas.show {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    background: var(--light-blue-color);
    opacity: 1;
    box-shadow: -24px 0 48px rgba(19, 24, 20, 0.16);
  }
  #header-nav .offcanvas-end {
    width: min(100vw, 360px);
    max-width: 100%;
  }
  #header-nav .offcanvas-body {
    display: block;
    flex: 1 1 auto;
    padding: 12px 24px 28px;
    overflow-y: auto;
  }
  .offcanvas.show .offcanvas-body .navbar-nav,
  #header-nav .offcanvas .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch !important;
    justify-content: flex-start !important;
    width: 100%;
    min-height: 0;
    padding-left: 0;
    gap: 0;
    flex-grow: 0 !important;
  }
  #header-nav .offcanvas .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(19, 24, 20, 0.08);
  }
  #header-nav .offcanvas .nav-item:last-child {
    border-bottom: none;
  }
  .offcanvas.show .nav-item a.nav-link,
  #header-nav .offcanvas .nav-item a.nav-link {
    display: block;
    width: 100%;
    margin-right: 0 !important;
    padding: 0.95rem 0;
    font-size: 1.02rem;
    line-height: 1.35;
  }
  #header-nav .offcanvas .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #header-nav .offcanvas .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    margin: 0 0 14px;
    border: 1px solid rgba(19, 24, 20, 0.08);
    border-radius: 16px;
    box-shadow: none;
  }
  #header-nav .offcanvas .dropdown-item {
    padding: 0.75rem 1rem;
    white-space: normal;
  }
  .site-header .navbar-brand {
    max-width: 156px;
  }
  .site-header .logo {
    max-height: 50px;
  }
}

@media only screen and (max-width: 575px) {
  .site-header .navbar-brand {
    max-width: 140px;
  }
  .site-header .logo {
    max-height: 46px;
  }
}

.footer-menu img[alt="logo"] {
    width: auto;
    max-width: 220px;
    max-height: 90px;
    object-fit: contain;
}


/* 2. Billboard
/*----------------------------------------------*/

/* Ambient background layers */
.billboard-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.bb-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(24px) brightness(0.50) saturate(1.2);
    transform: scale(1.09); /* prevent blur-edge bleed */
    transition: opacity 0.9s cubic-bezier(.4,0,.2,1);
    will-change: opacity;
}
.bb-layer.bb-b { opacity: 0; }
/* Gradient mask — keeps left text column readable */
.billboard-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        108deg,
        rgba(241,244,247,0.95)  0%,
        rgba(241,244,247,0.80) 30%,
        rgba(241,244,247,0.30) 58%,
        rgba(241,244,247,0.00) 100%
    );
}
/* Swiper and arrows must sit above the bg */
#billboard .main-swiper { position: relative; z-index: 1; }

#billboard {
    padding-top: 94px;
}
#billboard .main-swiper,
#billboard .swiper-slide,
#billboard .swiper-slide > .container,
#billboard .swiper-slide .row {
    min-height: calc(100vh - 94px);
}
#billboard .banner-content {
    max-width: 600px;
    padding: 36px 0;
}
#billboard .banner-content .display-2 {
    font-size: clamp(2.75rem, 5.3vw, 5.45rem);
    line-height: 1.05;
    letter-spacing: 0;
    padding-bottom: 2rem !important;
}
#billboard .image-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}
#billboard .image-holder img {
    display: block;
    width: 100%;
    max-width: 520px;
    max-height: min(44vh, 420px);
    object-fit: contain;
}
/*------------Swiper Arrow -----------*/
#billboard .swiper-arrow {
    position: absolute;
    top: 94px;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
}
.swiper-icon.swiper-arrow svg {
    fill: var(--light-gray-color);
    width: 68px;
    height: 68px;
    opacity: 0.85;
}
.swiper-icon.swiper-arrow:hover svg,
.swiper-icon.swiper-arrow:focus svg {
    fill: var(--primary-color);
}
#billboard .swiper-arrow.swiper-arrow-prev {
    left: 20px;
}
#billboard .swiper-arrow.swiper-arrow-next {
    right: 20px;
}

@media only screen and (max-width: 767px) {
  #billboard {
      padding-top: 78px;
  }
  #billboard .main-swiper,
  #billboard .swiper-slide,
  #billboard .swiper-slide > .container,
  #billboard .swiper-slide .row {
      min-height: auto;
  }
  #billboard .banner-content {
      margin-top: 0;
      padding: 48px 0 24px;
  }
  #billboard .banner-content .display-2 {
      font-size: clamp(2.35rem, 11vw, 4rem);
  }
  #billboard .image-holder {
      margin-top: 0;
      min-height: 220px;
      opacity: 1;
  }
  #billboard .image-holder img {
      max-height: 240px;
  }
  #billboard .swiper-arrow {
      top: 78px;
      align-items: flex-end;
      padding-bottom: 24px;
  }
  .swiper-icon.swiper-arrow svg {
      width: 44px;
      height: 44px;
  }
}

/* 3. Icon Box - Company Services
/*----------------------------------------------*/
.icon-box .icon-box-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--primary-color);
}

@media only screen and (max-width: 991px) {
  #company-services .icon-box {
    flex-wrap: wrap;
  }
}

/* 4. Product
/*----------------------------------------------*/
.product-store .product-card .image-holder {
    aspect-ratio: 4 / 3;
    background: #f7f7f7;
    overflow: hidden;
}
.product-store .product-card .image-holder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.product-store .product-card .cart-concern {
    bottom: 75px;
    width: 100%;
    display: flex;
    justify-content: center;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease-out;
    opacity: 0;
}
.product-store .product-card:hover .cart-concern {
    bottom: 90px;
    opacity: 1;
}
.product-card .cart-concern svg {
    width: 16px;
    height: 16px;
    fill: var(--light-color);
    margin-left: 9px;
}
.product-card .card-detail span {
    font-size: 1.1em;
    white-space: nowrap;
}
.product-card .product-category {
    color: var(--gray-color-500);
    font-size: 0.72rem;
    letter-spacing: 0;
}
.product-card .card-title {
    font-size: 1.05rem;
    line-height: 1.3;
}
.product-card .card-detail {
    gap: 16px;
    align-items: flex-start !important;
}

@media only screen and (max-width: 575px) {
  .product-store .product-card .card-detail {
      padding: 10px;
      flex-direction: column;
      gap: 6px;
  }
}

/* Public Shop
/*----------------------------------------------*/
.shop-page {
    background: #fff;
}
.shop-main {
  padding-top: 82px;
}
.shop-toolbar {
  padding: 28px 0 22px;
  border-bottom: none;
  background:
    linear-gradient(180deg, rgba(237, 241, 243, 0.92) 0%, rgba(255, 255, 255, 0.72) 100%);
}
.shop-toolbar > .container {
  display: grid;
  gap: 16px;
}
.shop-toolbar-inner {
    display: flex;
  align-items: flex-start;
    justify-content: space-between;
  gap: 18px;
}
.shop-toolbar .display-5 {
  font-size: clamp(2.2rem, 4.6vw, 3.55rem);
  line-height: 1.02;
  letter-spacing: 0.02em;
}
.shop-intro {
  max-width: 680px;
  line-height: 1.58;
}
.shop-eyebrow,
.shop-intro {
    color: var(--gray-color-500);
}
.shop-summary {
  align-self: flex-start;
  min-width: 150px;
  border: 1px solid rgba(19, 24, 20, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  padding: 14px 18px;
    text-align: center;
    font-size: 0.8rem;
  box-shadow: 0 18px 40px rgba(19, 24, 20, 0.06);
}
.shop-summary span {
    display: block;
    color: var(--dark-color);
  font-size: 2.1rem;
    line-height: 1;
    font-weight: 600;
}
.shop-controls {
    display: flex;
    align-items: center;
    gap: 16px;
  margin-top: 0;
  padding: 16px 18px;
  border: 1px solid rgba(19, 24, 20, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(19, 24, 20, 0.05);
}
.shop-search {
  max-width: 360px;
  border-radius: 16px;
  border-color: rgba(19, 24, 20, 0.1);
  min-height: 52px;
  padding: 0 16px;
  background: #fff;
}
.shop-category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.shop-filter-btn {
  border: 1px solid rgba(19, 24, 20, 0.1);
  border-radius: 999px;
    background: #fff;
    color: var(--dark-color);
  min-height: 44px;
  padding: 8px 16px;
    text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
    transition: all 0.2s ease-out;
}
.shop-filter-btn:hover,
.shop-filter-btn.active {
    border-color: var(--dark-color);
    background: var(--dark-color);
    color: #fff;
}
.shop-catalogue {
    padding-top: 36px;
    padding-bottom: 84px;
}
.shop-grid {
    display: grid;
  grid-template-columns: repeat(auto-fill, minmax(272px, 1fr));
  gap: 28px;
}
.shop-product-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
  border: 1px solid rgba(19, 24, 20, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 18px 42px rgba(19, 24, 20, 0.06);
    overflow: hidden;
    scroll-margin-top: 118px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.shop-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(114, 174, 200, 0.2);
  box-shadow: 0 26px 54px rgba(19, 24, 20, 0.1);
}
.shop-product-media {
    display: block;
    aspect-ratio: 1 / 0.82;
  background: linear-gradient(180deg, #f6f9fb 0%, #ffffff 100%);
}
.shop-product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  padding: 20px;
}
.shop-product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
  padding: 20px 20px 22px;
}
.shop-product-category {
    color: var(--gray-color-500);
    font-size: 0.74rem;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.shop-product-title {
    color: var(--dark-color);
  font-size: 1.16rem;
  line-height: 1.35;
  margin-bottom: 10px;
  min-height: 3.1rem;
}
.shop-product-title a {
    color: inherit;
}
.shop-product-title a:hover {
    color: var(--primary-color);
}
.shop-product-description {
    color: var(--gray-color-500);
    display: -webkit-box;
  min-height: 3.6em;
  line-height: 1.7;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  margin-bottom: 18px;
}
.shop-product-footer {
    display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
    margin-top: auto;
}
.shop-product-pricing {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(114, 174, 200, 0.08);
}
.shop-product-price {
    color: var(--primary-color);
  font-size: 1.14rem;
    font-weight: 600;
}
.shop-product-support {
  font-size: 0.88rem;
  line-height: 1.55;
}
.shop-product-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}
.shop-product-actions .btn {
  width: 100%;
  min-height: 54px;
  padding: 0.95em 1.2em;
  font-size: 0.82rem;
  line-height: 1.25;
  letter-spacing: 0.12em;
}
.shop-empty-state {
    margin: 40px 0 0;
    color: var(--gray-color-500);
    text-align: center;
}
.shop-footer {
    padding: 40px 0;
}
.shop-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.shop-footer-inner img {
    width: auto;
    max-width: 180px;
    max-height: 76px;
    object-fit: contain;
}
.product-detail-main {
    padding-top: 116px;
}
.product-detail-section {
    padding: 36px 0 84px;
}
.product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--gray-color-500);
    font-size: 0.86rem;
}
.product-breadcrumb a {
    color: var(--dark-color);
    font-weight: 600;
}
.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: clamp(28px, 5vw, 58px);
    align-items: center;
}
.product-detail-media {
    min-height: 420px;
    border: 1px solid rgba(19, 24, 20, 0.08);
    border-radius: 24px;
    background: linear-gradient(180deg, #f6f9fb 0%, #ffffff 100%);
    box-shadow: 0 24px 70px rgba(19, 24, 20, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(24px, 5vw, 52px);
}
.product-detail-media img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
}
.product-detail-copy {
    min-width: 0;
}
.product-detail-copy h1 {
    color: var(--dark-color);
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 1.05;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.product-detail-description {
    color: var(--gray-color-500);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 24px;
}
.product-detail-price {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(114, 174, 200, 0.1);
}
.product-detail-price span {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
}
.product-detail-price small {
    color: var(--gray-color-500);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.product-detail-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}
.product-detail-actions form,
.product-detail-actions .btn {
    width: 100%;
}
.product-detail-actions .btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.product-detail-note {
    display: grid;
    gap: 6px;
    border-top: 1px solid rgba(19, 24, 20, 0.08);
    padding-top: 18px;
    color: var(--gray-color-500);
    line-height: 1.7;
}
.product-detail-note strong {
    color: var(--dark-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.product-not-found {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

@media only screen and (max-width: 991px) {
    .shop-main {
    padding-top: 74px;
    }
    .product-detail-main {
        padding-top: 86px;
    }
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    .product-detail-media {
        min-height: 320px;
    }
    .shop-toolbar-inner,
    .shop-controls,
    .shop-footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
  .shop-toolbar {
    padding: 22px 0 18px;
  }
  .shop-toolbar > .container {
    gap: 14px;
  }
  .shop-summary {
    min-width: 0;
  }
  .shop-controls {
    padding: 14px 16px;
  }
    .shop-search {
        max-width: none;
        width: 100%;
    }
}

@media only screen and (max-width: 575px) {
    .shop-toolbar {
    padding: 18px 0 14px;
  }
  .shop-toolbar .display-5 {
    font-size: clamp(1.95rem, 10vw, 2.6rem);
  }
  .shop-summary {
    padding: 12px 14px;
  }
  .shop-controls {
    padding: 12px;
    gap: 12px;
    border-radius: 18px;
  }
  .shop-search {
    border-radius: 14px;
    }
    .product-detail-section {
        padding: 24px 0 58px;
    }
    .product-detail-actions {
        grid-template-columns: 1fr;
    }
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .shop-product-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

  .storefront-page {
    background:
      radial-gradient(circle at top left, rgba(114, 174, 200, 0.16), transparent 28%),
      linear-gradient(180deg, #fbfdff 0%, #ffffff 58%, #f7fafb 100%);
  }

  .storefront-main {
    padding-bottom: 72px;
  }

  .storefront-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .storefront-header-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(19, 24, 20, 0.12);
    border-radius: 999px;
    background: #fff;
    color: var(--dark-color);
    min-height: 46px;
    padding: 0 18px;
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .storefront-header-pill:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
  }

  .storefront-cart-pill {
    background: var(--dark-color);
    color: #fff;
  }

  .storefront-cart-pill:hover {
    background: var(--primary-color);
    color: #fff;
  }

  .storefront-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    min-height: 24px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
  }

  .storefront-count-badge.is-empty {
    background: rgba(255, 255, 255, 0.22);
  }

  .storefront-icon-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .storefront-nav-text {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .storefront-cart-icon-link {
    position: relative;
  }

  .storefront-cart-icon-link .storefront-count-badge {
    position: absolute;
    top: -9px;
    right: -16px;
    min-width: 22px;
    min-height: 22px;
    padding: 0 5px;
    font-size: 0.72rem;
  }

  .storefront-hero {
    padding: 42px 0 24px;
  }

  .storefront-hero-compact {
    padding-top: 36px;
  }

  .storefront-hero-card,
  .storefront-panel,
  .storefront-promo-banner {
    border: 1px solid rgba(19, 24, 20, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 70px rgba(19, 24, 20, 0.08);
  }

  .storefront-hero-card {
    padding: 34px clamp(20px, 4vw, 38px);
  }

  .storefront-hero-copy,
  .storefront-empty-copy,
  .storefront-helper-copy,
  .storefront-panel-copy,
  .storefront-banner-copy,
  .storefront-cart-description,
  .storefront-profile-list span,
  .storefront-checkout-order-item span,
  .storefront-feature-points span,
  .shop-product-support {
    color: var(--gray-color-500);
  }

  .storefront-section {
    padding-top: 8px;
  }

  .storefront-panel {
    padding: clamp(20px, 3vw, 30px);
  }

  .storefront-panel-accent,
  .storefront-success-panel {
    background: linear-gradient(135deg, rgba(114, 174, 200, 0.14), rgba(255, 255, 255, 0.98));
  }

  .storefront-panel-title,
  .storefront-cart-title {
    margin-bottom: 12px;
    color: var(--dark-color);
  }

  .storefront-notice {
    margin-bottom: 20px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid transparent;
    font-size: 1rem;
  }

  .storefront-notice-success {
    background: rgba(91, 177, 124, 0.12);
    border-color: rgba(91, 177, 124, 0.2);
    color: #1f5c38;
  }

  .storefront-notice-error {
    background: rgba(198, 76, 76, 0.12);
    border-color: rgba(198, 76, 76, 0.18);
    color: #7f1d1d;
  }

  .storefront-notice-info {
    background: rgba(114, 174, 200, 0.14);
    border-color: rgba(114, 174, 200, 0.18);
    color: #204d62;
  }

  .storefront-notice.small {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .storefront-promo-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
    padding: 18px 20px;
  }

  .storefront-inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .storefront-inline-actions-compact {
    justify-content: flex-end;
    align-items: center;
  }

  .storefront-inline-actions-column {
    flex-direction: column;
  }

  .shop-product-pricing {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .shop-product-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .shop-product-link,
  .storefront-text-link,
  .storefront-remove-button {
    border: none;
    background: transparent;
    color: var(--dark-color);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.45;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
  }

  .shop-product-link:hover,
  .storefront-text-link:hover,
  .storefront-remove-button:hover {
    color: var(--primary-color);
  }

  .product-card-actions {
    flex-wrap: wrap;
    gap: 10px;
  }

  .product-card-actions .btn {
    min-width: 0;
    padding: 0.85em 1.35em;
    font-size: 0.74em;
  }

  .storefront-auth-grid,
  .storefront-dashboard-grid,
  .storefront-checkout-layout,
  .storefront-cart-layout {
    display: grid;
    gap: 24px;
  }

  .storefront-auth-grid {
    grid-template-columns: 1.15fr 1fr 1fr;
  }

  .storefront-dashboard-grid,
  .storefront-checkout-layout,
  .storefront-cart-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.85fr);
  }

  .storefront-orders-panel {
    margin-top: 24px;
  }

  .storefront-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
  }

  .storefront-feature-points,
  .storefront-order-list,
  .storefront-profile-list,
  .storefront-checkout-order-list,
  .storefront-cart-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .storefront-feature-points > div,
  .storefront-order-card,
  .storefront-checkout-order-item {
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(243, 243, 243, 0.9);
  }

  .storefront-order-card {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .storefront-profile-list > div {
    display: grid;
    gap: 6px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(19, 24, 20, 0.08);
  }

  .storefront-profile-list > div:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .storefront-profile-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .storefront-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .storefront-form-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .storefront-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--dark-color);
  }

  .storefront-input {
    min-height: 52px;
    border-radius: 16px;
    border-color: rgba(19, 24, 20, 0.12);
    box-shadow: none;
    padding: 12px 16px;
  }

  .storefront-input:focus {
    border-color: rgba(114, 174, 200, 0.85);
    box-shadow: 0 0 0 0.2rem rgba(114, 174, 200, 0.12);
  }

  .storefront-textarea {
    min-height: 132px;
    resize: vertical;
  }

  .storefront-form-errors {
    margin-bottom: 18px;
    padding: 16px 18px;
    border: 1px solid rgba(198, 76, 76, 0.2);
    border-radius: 16px;
    background: rgba(198, 76, 76, 0.08);
    color: #7f1d1d;
  }

  .storefront-cart-card {
    display: grid;
    align-items: center;
    grid-template-columns: 112px minmax(0, 1.3fr) minmax(180px, 0.65fr) minmax(130px, 0.45fr);
    gap: 20px;
    padding: 22px;
    border: 1px solid rgba(19, 24, 20, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
  }

  .storefront-cart-image {
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    background: #f5f8f9;
    overflow: hidden;
  }

  .storefront-cart-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
  }

  .storefront-cart-price {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    color: var(--primary-color);
  }

  .storefront-quantity-form,
  .storefront-cart-line-total {
    display: grid;
    gap: 12px;
  }

  .storefront-quantity-input {
    width: 100%;
  }

  .storefront-summary-row,
  .storefront-checkout-order-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
  }

  .storefront-summary-row {
    padding: 14px 0;
    border-bottom: 1px solid rgba(19, 24, 20, 0.08);
  }

  .storefront-summary-row-total {
    border-bottom: none;
    font-size: 1.1rem;
  }

  .storefront-cart-summary,
  .storefront-checkout-summary {
    position: sticky;
    top: 116px;
    align-self: start;
  }

  .storefront-checkout-order-list {
    margin-bottom: 10px;
  }

  .storefront-checkout-order-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(19, 24, 20, 0.08);
  }

  .storefront-checkout-order-item:last-child {
    border-bottom: none;
  }

  .storefront-empty-panel {
    text-align: center;
  }

  .storefront-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1060;
    max-width: min(360px, calc(100vw - 32px));
    padding: 14px 18px;
    border-radius: 18px;
    background: var(--dark-color);
    color: #fff;
    box-shadow: 0 16px 36px rgba(19, 24, 20, 0.25);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .storefront-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .storefront-toast.is-error {
    background: #8c2f39;
  }

  @media only screen and (max-width: 1199px) {
    .storefront-auth-grid {
      grid-template-columns: 1fr 1fr;
    }

    .storefront-auth-grid > :first-child {
      grid-column: 1 / -1;
    }

    .storefront-order-card {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .storefront-cart-card {
      grid-template-columns: 96px minmax(0, 1fr);
    }

    .storefront-quantity-form,
    .storefront-cart-line-total {
      grid-column: span 2;
    }
  }

  @media only screen and (max-width: 991px) {
    .storefront-header-actions,
    .storefront-promo-banner,
    .storefront-section-head,
    .storefront-dashboard-grid,
    .storefront-checkout-layout,
    .storefront-cart-layout {
      grid-template-columns: 1fr;
      flex-direction: column;
      align-items: flex-start;
    }

    .storefront-cart-summary,
    .storefront-checkout-summary {
      position: static;
    }

    .storefront-header-actions {
      width: 100%;
      margin-top: 14px;
    }

    .storefront-header-pill {
      justify-content: center;
      width: 100%;
    }
  }

  @media only screen and (max-width: 767px) {
    .storefront-auth-grid,
    .storefront-form-grid,
    .storefront-order-card {
      grid-template-columns: 1fr;
    }

    .storefront-cart-card {
      grid-template-columns: 1fr;
    }

    .storefront-quantity-form,
    .storefront-cart-line-total {
      grid-column: auto;
    }

    .storefront-nav-text {
      display: none;
    }

    .storefront-promo-banner,
    .storefront-hero-card,
    .storefront-panel {
      border-radius: 20px;
    }

    .storefront-promo-banner {
      grid-template-columns: 1fr;
      padding: 16px;
      margin-top: 8px;
    }
  }

  @media only screen and (max-width: 575px) {
    .storefront-main {
      padding-bottom: 52px;
    }

    .storefront-header-actions {
      gap: 10px;
    }

    .storefront-inline-actions,
    .shop-product-actions {
      width: 100%;
    }

    .shop-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .shop-product-card {
      border-radius: 18px;
    }

    .shop-product-body {
      padding: 18px;
    }

    .shop-product-actions .btn,
    .storefront-inline-actions .btn,
    .storefront-inline-actions form,
    .storefront-cart-summary form {
      width: 100%;
    }

    .shop-product-link,
    .storefront-text-link,
    .storefront-remove-button {
      font-size: 0.78rem;
    }

    .storefront-toast {
      right: 16px;
      left: 16px;
      bottom: 16px;
      max-width: none;
    }
  }

/*------------Swiper Pagination -----------*/
.product-store .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 35px;
}
.swiper-pagination span.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
}

/* Customer Support
/*----------------------------------------------*/
#customer-support .customer-support-shell {
  display: grid;
  gap: 24px;
}

.customer-support-intro {
  max-width: 720px;
}

.customer-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.customer-support-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(19, 24, 20, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(237, 241, 243, 0.5) 100%);
  box-shadow: 0 20px 48px rgba(19, 24, 20, 0.06);
}

.customer-support-step {
  color: var(--primary-color);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.customer-support-label {
  color: var(--gray-color-500);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.customer-support-title {
  font-size: 1.35rem;
  line-height: 1.35;
  margin-bottom: 0;
}

.customer-support-title a {
  color: var(--dark-color);
}

.customer-support-title a:hover {
  color: var(--primary-color);
}

.customer-support-card p {
  margin-bottom: 0;
}

.customer-support-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

@media only screen and (max-width: 991px) {
  .customer-support-grid {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 575px) {
  .customer-support-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .customer-support-card .btn {
    width: 100%;
  }
}

/* 5. Trust Signals
/*----------------------------------------------*/
#testimonials .trust-signals-shell {
  display: grid;
  gap: 24px;
}

.trust-signals-intro {
  max-width: 760px;
}

.trust-signals-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.trust-signal-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  min-height: 100%;
  padding: 30px 28px;
  border: 1px solid rgba(19, 24, 20, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 246, 246, 0.78) 100%);
  box-shadow: 0 18px 44px rgba(19, 24, 20, 0.06);
}

.trust-signal-kicker {
  color: var(--primary-color);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.trust-signal-title {
  margin-bottom: 0;
  font-size: 1.32rem;
  line-height: 1.35;
}

.trust-signal-card p {
  margin-bottom: 0;
}

/* 6. Order CTA
/*----------------------------------------------*/
#order-cta .support-cta-content {
  border-radius: 32px;
  background: linear-gradient(135deg, #101512 0%, #1d3f31 100%);
  box-shadow: 0 28px 70px rgba(16, 21, 18, 0.22);
}

.support-cta-content p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 680px;
}

.support-cta-actions {
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .trust-signals-grid {
    grid-template-columns: 1fr;
  }

  .support-cta-actions {
    justify-content: flex-start;
  }
}

@media only screen and (max-width: 575px) {
  .trust-signal-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .support-cta-actions .btn {
    width: 100%;
  }
}

/* 8. Footer
/*----------------------------------------------*/
#footer {
  padding: 8px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 247, 0.96) 100%);
}

#footer .footer-top-area {
  width: 100%;
  padding: 26px 0 8px;
}

#footer .footer-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#footer .widget-title {
  margin-bottom: 0;
  color: var(--dark-color);
  letter-spacing: 0.04em;
}

#footer .footer-menu p,
#footer .footer-menu li,
#footer .footer-menu a {
  color: var(--gray-color-500);
}

#footer .menu-list {
  display: grid;
  gap: 10px;
  margin-bottom: 0;
}

#footer .menu-item {
  padding-bottom: 0 !important;
}

#footer .menu-item a,
#footer .footer-summary-link a,
#footer .contact-item a {
  color: var(--dark-color);
}

#footer .menu-item a:hover,
#footer .footer-summary-link a:hover,
#footer .contact-item a:hover {
  color: var(--primary-color);
}

#footer .footer-summary,
#footer .footer-contact-text {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.7;
}

#footer .footer-contact-link {
  font-weight: 600;
}

#footer .footer-contact-phone {
  white-space: nowrap;
}

#footer hr {
  margin: 18px 0 0;
  border-color: rgba(19, 24, 20, 0.08);
  opacity: 1;
}

#footer-bottom {
  padding: 24px 0 30px;
  background: rgba(244, 248, 247, 0.92);
}

#footer-bottom .row {
  row-gap: 14px;
}

.footer-bottom-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 100%;
  padding: 18px 20px;
  border: 1px solid rgba(19, 24, 20, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
}

.footer-bottom-card p {
  margin-bottom: 0;
}

.footer-bottom-card p:first-child {
  color: var(--dark-color);
  font-weight: 600;
}

@media only screen and (max-width: 991px) {
  #footer .footer-top-area {
    padding-top: 18px;
  }

  #footer .footer-menu {
    gap: 10px;
  }
}

@media only screen and (max-width: 575px) {
  #footer {
    padding-top: 0;
  }

  #footer .footer-top-area {
    padding: 16px 0 4px;
  }

  #footer .footer-summary,
  #footer .footer-contact-text {
    font-size: 0.98rem;
  }

  #footer .widget-title {
    padding-bottom: 0 !important;
  }

  .footer-bottom-card {
    padding: 16px;
  }
}


/* 9. About Us Page
/*----------------------------------------------*/
/*------------ Video Icon -----------*/
.video-item a {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.video-item svg.video-player {
    width: 80px;
    height: 80px;
    padding: 19px;
    border-radius: 50%;
}

/* - Shop Page
--------------------------------------------------------------*/
/* ----------- Search Bar -----------*/
.shopify-grid select#input-sort {
    font-size: 1.2em;
    color: var(--dark-grey-color);
    border: none;
    padding: 0;
    text-align: center;
}

/* ----------- SideBar -----------*/
.sidebar input.search-field {
    width: 290px;
    height: 50px;
    box-shadow: 5px 5px 15px 5px #eee;
    border: 1px solid #eee;
    padding-left: 20px;
    outline-offset: 0;
}
.sidebar .search-icon {
    padding: 14px;
}
.sidebar svg.search {
    width: 20px;
    height: 20px;
}
.sidebar h5.widget-title {
    font-size: 1.4em;
    margin-bottom: 15px;
}
.sidebar .sidebar-list li {
    font-size: 1.2em;
}
.sidebar .sidebar-list li a {
    color: var(--dark-30);
}
.sidebar .sidebar-list li a:hover {
    color: var(--primary-color);
}

@media only screen and (max-width: 991px) {
  .widget-search-bar form {
      flex-wrap: wrap;
  }
}

/* ----------- Pagination -----------*/
.paging-navigation .pagination .page-numbers {
    font-size: 1.4em;
    color: var(--gray-color-500);
}
.paging-navigation .pagination .page-numbers:hover {
    color: var(--primary-color);
}
.paging-navigation .pagination svg {
    width: 35px;
}


/* 10. Single Product Page
/*----------------------------------------------*/
/*------------ Product Info -----------*/
.product-info .rating svg.star-fill {
    fill: var(--dark-color);
}
.product-info .select-list li.select-item {
    font-size: 1.2em;
}
.product-quantity .input-group {
  width: 140px;
  gap: 2px;
}
.product-quantity #quantity {
  height: auto;
  width: 20px;
  border: none;
  margin: 0;
  padding: 0;
}
.product-quantity #quantity,
.product-quantity .btn-number {
  width: 40px;
  height: 40px;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  border-radius: 6px;
  color: #222;
  padding: 0;
}
.single-product .cart-wrap h4.item-title {
    font-size: 1.5em;
}
.single-product .product-quantity .stock-number {
    font-size: 1.2em;
}
.meta-product h4.item-title {
    font-size: 1.2em;
}

/*------------ Product Info Tabs -----------*/
.product-info-tabs .tabs-listing button {
    font-size: 2em;
    color: var(--dark-color);
}
.product-info-tabs .nav-tabs .nav-link {
    border: none;
}
.product-info-tabs .nav-tabs .nav-item.show .nav-link, 
.product-info-tabs .nav-tabs .nav-link.active {
    color: var(--primary-color);
}


@media only screen and (max-width: 991px) {
  .product-info-tabs .tabs-listing button {
      font-size: 1.2em;
      padding-right: 20px!important;
  }
}


/* 10. Cart Page
-----------------------------------------------------*/
.shopify-cart .card-price .money {
    font-size: 1.5em;
}
.shopify-cart .total-price .money {
    font-size: 2.9em;
}
.total-price .cart-totals {
    font-size: 1.5em;
}
.shopify-cart .table th {
    width: 30%;
}


/* 11. Checkout Page
--------------------------------------------------------------*/
.list-group-item span {
    font-size: 1.2em;
}


/* 12. Blog Page
--------------------------------------------------------------*/
/*------------ Sidebar -----------*/
.sidebar-post-item h4.card-title {
    font-size: 1.2em;
}

/* 13. Sibgle Post Page
--------------------------------------------------------------*/
#single-post-navigation .post-navigation span.page-nav-title {
    font-size: 1.5em;
}
.post-navigation svg {
    width: 30px;
    height: 45px;
}
.post-navigation:hover svg,
.post-navigation:focus svg {
    fill: var(--primary-color);
}
