:root {
  --red-primary: #A92231;
  --red-secondary: #E02842;
  --red-light: #D30000;
  --red-gradients: linear-gradient(90deg, #A92231 0%, #E02842 100%);
  --bg-gray: #F4F4F4;
  --bg-red: #FFC5CD;
  --dark: #171717;
  --dark-opacity: #17171780;
  --warning: #FCD603;
  --success: #528A4D;
  --bg-footer: #2B2B2B;
  --bg-footer-light: #353535;
}

header {
  margin-top: 28px;
}
h2 {
  margin: 0;
}
p {
  margin: 0;
}

input {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
}
input:focus {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
}
input::placeholder {
  color: #17171766 !important;
  opacity: 1;
}
a {
  text-decoration: none !important;
  color: inherit !important;
}
.woocommerce-account .woocommerce-MyAccount-content {
  float: none !important;
  width: 100% !important;
}


/* colors */

.text-red-primary {
  color: var(--red-primary);
}
.text-red-secondary {
  color: var(--red-secondary);
}
.text-red-light {
  color: var(--red-light);
}
.text-dark {
  color: var(--dark);
}
.text-dark-opacity {
  color: var(--dark-opacity);
}
.text-warning {
  color: var(--warning);
}
.text-success {
  color: var(--success);
}
.text-gray {
  color: var(--bg-gray);
}
.text-red {
  color: var(--bg-red);
}

.bg-red-primary {
  background-color: var(--red-primary);
}
.bg-red-secondary {
  background-color: var(--red-secondary);
}
.bg-red-light {
  background-color: var(--red-light);
}

/* --- Woo quantity input: hide native spinners but keep numeric keyboard --- */
.quantity input.qty::-webkit-outer-spin-button,
.quantity input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity input.qty[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}
.woocommerce .quantity .qty {
  width: 32px !important;
}
.bg-dark {
  background-color: var(--dark);
}
.bg-dark-opacity {
  background-color: var(--dark-opacity);
}
.bg-warning {
  background-color: var(--warning);
}
.bg-success {
  background-color: var(--success);
}
.bg-gray {
  background-color: var(--bg-gray);
}
.bg-red {
  background-color: var(--bg-red);
} 
.bg-footer {
  background-color: var(--bg-footer);
}
.bg-footer-light {
  background-color: var(--bg-footer-light);
}
.bg-red-gradient {
  background: var(--red-gradients);
}

.border-red-primary {
  border-color: var(--red-primary) !important;
}
.border-red-secondary {
  border-color: var(--red-secondary);
}
.border-red-light {
  border-color: var(--red-light);
}
.border-dark {
  border-color: var(--dark);
}
.border-dark-opacity {
  border-color: var(--dark-opacity);
}
.border-warning {
  border-color: var(--warning);
}
.border-success {
  border-color: var(--success);
}
.border-gray {
  border-color: var(--bg-gray);
}
.border-red {
  border-color: var(--bg-red);
}
.border-red-gradient {
  border-color: var(--red-gradients);
}
.border-none {
  border: none;
}

/* button */
.wc-proceed-to-checkout {
  padding: 0 !important;
}

/* --- Woo quantity input: hide native spinners but keep numeric keyboard --- */
.quantity input.qty::-webkit-outer-spin-button,
.quantity input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity input.qty[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}
.woocommerce .quantity .qty {
  width: 32px !important;
}

.btn {
  border-radius: 32px;
  padding: 10px 22px;
  font-size: 14px;
  align-items: center;
  border: none;
}
.btn:hover {
  border: none;
  transition: 0.5s ease all;
}
.btn-red-primary {
  position: relative;
  display: inline-block; 
  color: #fff !important;
  overflow: hidden;
  background: linear-gradient(90deg,rgba(169, 34, 49, 1) 0%, rgba(224, 40, 66, 1) 100%);
}
.btn-red-primary:hover {
  color: #fff;
  background: linear-gradient(90deg,rgba(242, 136, 104, 1) 0%, rgba(250, 62, 87, 1) 100%);
}

.btn-secondary {
  color: var(--dark);
  background-color: var(--bg-gray);
}
.btn-secondary:hover {
  color: var(--dark);
  background-color: var(--bg-red);
}

.btn-white {
  color: var(--dark);
  background-color: #fff;
  font-size: 12px;
  height: 34px;
  padding: 10px 13px;
}
.btn-white:hover {
  color: var(--dark);
  background-color: var(--bg-red);
}

.btn-red-secondary {
  background-color: #FFC5CD;
  color: var(--red-secondary);
}
.btn-red-secondary:hover {
  background-color: #fff;
  color: var(--red-secondary);
}

/* alert */

.alert {
  display: flex;
  border: none;
  border-radius: 20px;
  padding: 16px;
  margin-top: 40px;
  font-size: 14px;
}
.alert-secondary {
  background-color: var(--bg-gray);
}

/* badge */
.badge {
  position: absolute;
  top: 0px;
  right: 0px;
  border-radius: 200px;
  padding: 12px;
  font-size: 28px;
}
.badge-warning {
  background-color: var(--warning);
  color: var(--dark);
}

/* header */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-catalog {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 16px;
  border-radius: 32px;
  padding: 0;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 3px var(--red-secondary);
  background-color: #fff;
}
.header-catalog input {
  font-size: 14px;
  color: #17171766;
}
.header-catalog img[alt="search icon"] {
  cursor: pointer;
  transition: opacity 0.2s;
}
.header-catalog img[alt="search icon"]:hover {
  opacity: 0.7;
}
.header-catalog a {
  min-width: 135px;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.bonuses {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.acounts-icons {
  display: flex;
  align-items: center;
}
.acounts-icons .cart-icon-wrapper {
  position: relative;
  display: inline-block;
}
.acounts-icons .cart-count-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--red-secondary);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}
.bonuses p.montserrat-medium {
  color: #17171780;
  font-size: 16px;
}
.bonuses p.montserrat-bold {
  font-size: 24px;
}
.dot {
  font-size: 8px;
  color: #C3C3C3;
  margin: 0 6px;
}
.bread-crumb {
  margin-bottom: 19px;
  font-size: 14px;
}
.bread-crumb-product {
  color: #17171766;
}

/* container-sale */

.container-sale {
  display: flex;
  background: var(--red-gradients);
  width: 100%;
  border-radius: 40px;
  margin-top: 24px;
  color: #fff;
  gap: 16px;
  padding: 13px;
  justify-content: center;
  align-items: center;
}
.container-sale h2 {
  font-size: 20px!important;
  align-items: center;
}

/* container-home-info */

.container-home-info {
  display: flex;
  gap: 23px;
  margin-top: 24px;
  justify-content: start;
  align-items: center;
}
.home-info-item {
  font-size: 14px;
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.home-info-item a {
  color: var(--dark);
  text-decoration: none;
  max-width: 100px;
}
.home-info-item p {
  margin-top: 11px;
}
.home-info-cards {
  display: flex;
  gap: 10px;
}
.home-info-card {
  max-height: 86px;
  background-color: var(--bg-gray);
  border-radius: 20px;
  padding: 12px 16px;
  font-size: 14px;
}
.home-info-buttons {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.home-info-buttons .btn-red-primary {
  padding: 9px 13px;
  max-height: 35px;
}
.home-info-buttons .btn-red-secondary {
  height: auto;
  padding: 7px 8px 8px 8px;
  width: 35px;
  height: 35px;
  align-items: center;
}
.home-info-buttons p {
  font-size: 18px;
}

/* container-banner */

.container-banner {
  margin-top: 32px;
  gap: 16px;
}
.container-banner img {
  border-radius: 24px;
  max-height: 200px;
}

/* container-current-discounts */

.container-current-discounts {
  margin-top: 48px;
}
.container-current-discounts h2 {
  font-size: 24px!important;
}
.current-discounts-list {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}
.current-discounts-list a {
  text-decoration: none !important;
}
.current-discounts-list img {
  height: auto;
  width: 100%;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
.discounts-title {
  background-color: var(--bg-gray);
  min-height: 60px;
  color: var(--dark);
  font-size: 12px;
  padding: 12px 16px;
  width: 100%;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

/* container-interesting */

.container-interesting { 
  margin-top: 48px;
}
.container-interesting h2 { 
  font-size: 24px!important;
}

/* product-card */

.product-cards {
  margin-top: 20px;
  display: flex;
  gap: 20px !important;
}
.like-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
}
.product-card {
  padding: 0;
}
.product-card span {
  color: var(--dark-opacity);
  font-size: 14px;
}
.product-card p {
  font-size: 14px;
  margin-top: 10px;
  max-width: 220px !important;
  height: 42px !important;
}
.product-card h3 {
  font-size: 22px;
  margin-right: 6px;
}
.product-card button {
  max-height: 40px;
}
.product-card-img {
  display: flex;
  width: 220px;
  height: 220px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--bg-gray);
  position: relative;
  background-size: contain;
}
.product-card-img img {
  max-height: 200px;
  width: auto;
}
.like-icon.active {
  width: 26px;
  height: 26px;
}
.price-small {
  font-size: 12px;
  color: var(--dark) !important;
  vertical-align: top;
}
.price-small.text-red-primary{
  color: var(--red-primary) !important;
}
.price-old {
  font-size: 14px;
  text-decoration: line-through;
  vertical-align: middle;
}
.product-card-price {
  display: flex;
  margin-top: 24px;
  margin-bottom: 20px;
}
.link-product {
  text-decoration: none;
  color: inherit;
}

/* product-page */
.product-page {
  display: flex;
  gap: 36px;
}
.product-row {
  display: flex;
  max-width: 500px;
  background-color: var(--bg-gray);
  border-radius: 24px;
  height: 100%;
}
.product-image-wrapper img {
  max-width: 400px;
  margin-right: auto !important;
  margin-left: auto !important;
}
.product-image-wrapper {  
  max-width: 500px;
}
.product-page-title {
  font-size: 40px;
  color: var(--dark);
}
.product-page-text {
  font-size: 16px;
  color: var(--dark-opacity);
  margin-top: 12px;
}
.product-page-price {
  font-size: 44px;
  color: var(--dark);
  margin-top: 37px;
}
.product-page-titles {
  position: relative;
}
.product-page-titles .btn {
  padding: 18px 73px 18px 73px;
  height: auto;
  font-size: 16px;
}
.product-page-description {
  margin-top: 28px;
}
.product-page-description h6 {
  font-size: 18px;
}
.product-page-description p {
  font-size: 14px;
}
.product-page-description .btn-link {
  font-size: 16px;
  color: var(--red-light);
  text-decoration: none;
  padding: 0;
}
.nutritional-value h6 {
  margin-top: 20px;
  font-size: 16px;
  color: #17171766;
}
.nutritional-value-colums {
  display: flex;
  gap: 8px;
  margin-top: 13px;
  justify-content: space-between;
  width: 100%;
}
.nutritional-value-colums div {
  padding: 9px;
  background-color: var(--bg-gray);
  font-size: 24px;
  border-radius: 12px;
  text-align: center;
  width: 160px;
}
.nutritional-value-colums p {
  font-size: 12px;
  color: var(--dark-opacity);
}
.product-characteristics {
  margin-top: 47px;
}
.characteristic-item {
  display: flex;
  font-size: 16px;
  align-items: center;
}
.characteristic-item p {
  white-space: nowrap;
  margin-top: 3px;
  font-size: 16px;
}
.characteristic-item span {
  flex-grow: 1;
  margin: 11px 11px 0 11px;
  border-bottom: 2px dashed #C5C5C5;
}
.characteristic-item .montserrat-semibold{
  color: var(--dark-opacity) !important;
  font-size: 16px;
}
.product-disclaimer {
  font-size: 12px !important;
  color: var(--dark-opacity) !important;
}

/* account-section */
.account-section {
  border-radius: 24px;
  background-color: var(--bg-gray);
  padding: 16px;
  position: relative;
}
.account-section button {
  padding: 8px 20px !important;
  margin-top: 20px;
  font-size: 14px;
  min-width: 111px;
  height: 39px;
}
.account-section h3 {
  font-size: 20px;
}
.account-section p {
  font-size: 13px;
  width: 80%;
}
.smile1-mobile {
  position: absolute;
  top: 0px;
  right: 0px;
}
.smile2-mobile {
  position: absolute;
  bottom: 0px;
  right: 44px;
}

/* slider */

.dots img {
  margin: 0 3px;
  width: 10px;
  height: 10px;
}
.slick-dots li {
  margin: 0 !important;
  width: 11px !important;
  height: 11px !important;
}
.slick-prev {
  left: -10px !important;
  z-index: 999 !important;
}
.slick-next {
  right: -2px !important;
}
.slick-arrows img {
  z-index: 999 !important;
  padding: 3px;
  border-radius: 40px;
  background-color: #fff;
  width: 30px;
  height: 30px;
  max-width: none !important;
}
.slick-next:before {
  content: none !important;
}
.slick-prev:before {
  content: none !important;
}
/* footer */
.footer {
  background-color: var(--bg-footer);
  margin-top: 100px;
  padding-bottom: 40px;
}
.footer-menu {
  background-color: var(--bg-footer);
  padding: 20px 0px;
  margin-top: 80px;
  gap: 70px;
  justify-content: space-between;
  align-items: center;
}
.footer-items {
  min-width: 600px;
}
.footer-logo {
  display: grid;
  margin-right: 30px;
  font-size: #FFFFFF4D !important;
}
.footer-logo img {
  margin-bottom: 8px;
}
.footer-item {
  color: #fff;
  display: grid;
  margin-top: 20px;
}
.footer-logo .contact-link {
  color: #FF4B5F !important;
  font-size: 12px;
  margin-top: 15px !important;
  text-decoration: underline !important;
}
.footer-item a {
  color: #FFFFFF80 !important;
  text-decoration: none;
  margin-top: 12px;
  font-size: 14px;
}
.footer-item a:first-child {
  font-size: 16px;
  color: #fff !important;
  font-weight: 700;
}
.footer-logo .tel-link {
  font-size: 20px;
  color: #FFFFFF4D !important;
  margin-top: 8px !important;
  text-decoration: none;
}
.footer-icons {
  display: flex;
}
.footer-icons a {
  padding: 28px 34px 20px 0
}
.footer-contact .working-hours {
  color: #FFFFFF80;
  font-size: 14px;
  letter-spacing: 1%;
}
.footer-contact p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 12px !important;
}
.email-link {
  color: #fff !important;
  font-size: 14px;
  text-decoration: underline !important;
}
.footer-bottom {
  background-color: var(--bg-footer-light);
}
.footer-info {
  padding: 32px 0;
  font-size: 14px;
  justify-content: center;
  align-items: center;
}
.footer-info a {
  color: #FFFFFF80;
  font-weight: 400;
}
.footer-info p {
  color: #FFFFFF80;
  font-weight: 400;
}

.btn-group .btn-link {
  color: var(--dark-opacity);
  font-size: 16px;
  text-decoration: none;
  padding: 0;
  border-radius: 0;
  margin-top: 20px;
}
.btn-group .active {
  border-bottom: 4px solid var(--red-light);
  color: var(--red-light);
}

/* navigation */

.navigation {
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
.navigation h2 {
 font-size: 40px;
 margin-right: 12px;
}
.navigation h3 {
  font-size: 18px;
  color: var(--dark-opacity);
  align-content: end;
}
.navigation .btn-link {
  font-size: 18px;
  color: var(--dark-opacity);
  text-decoration: none;
}

/* cart */

/* Hide WooCommerce update cart messages */
.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-cart .woocommerce-message[role="alert"] {
  display: none !important;
}

.free-delivery {
  margin: 22px 0 24px 0;
}
.free-delivery .progress{
  height: 4px;
  margin: 10px 0;
}
.free-delivery .progress-bar {
  background-color: var(--warning);
}
.cart-info-total {
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}
.cart-info-total .btn-red-primary {
  width: 100%;
  margin-top: 10px;
  border-radius: 16px;
}
.cart-info-total .spb {
  font-size: 16px;
  margin-bottom: 10px;
}
.delivery-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.info-total-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 28px;
  margin: 0 6px;
}
.info-total-price .price-small{
  font-size: 16px;
  vertical-align: text-top;
}
.cart-info-pay {
  margin: 18px 6px 0px 6px;
  border-bottom: 3px solid #E4E4E4;
  padding-bottom: 20px;
}
.cart-info-pay .characteristic-item{
  margin-bottom: 4px;
}
.cart-info-pay span.hr {
  flex-grow: 1;
  margin: 11px 11px 0 15px;
  border-bottom: 2px dashed #C5C5C5;
}
.cart-info-pay span {
  flex-grow: 1;
  margin: 0;
  border-bottom: none;
  font-size: 10px !important;
  vertical-align: text-top;
}
.cart-info-pay span.text-success {
  color: var(--success) !important;
}
.text-success {
  color: var(--success) !important;
}
.cart-info-pay .sale-group p {
  align-content: center;
  color: var(--success) !important;
  margin-top: 10px;
}
.cart {
  margin-top: 8px;
  display: flex;
  gap: 40px;
}
.cart-products {
  justify-content: space-between;
  align-items: center;
  max-width: 770px;
  width: 100%;
}
.cart-product-img img {
  max-width: 80px;
  height: auto;
}
.cart-product-img {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 103px;
  height: 103px;
  background-color: var(--bg-gray);
  border-radius: 12px;
  margin-right: 16px;
  padding: 10px;
}
.cart-product-item {
  width: 100%;
  justify-content: space-between;
  border-bottom: 3px solid #EEEEEE;
  padding-bottom: 32px;
  padding-top: 32px;
}
.cart-product-item:last-child {
  border-bottom: none;
}
.cart-product-count .btn-group {
  text-align: center;
  align-items: center;
  background-color: var(--bg-gray);
  padding: 8px;
  border-radius: 8px;
  gap: 12px;
  max-height: 32px;
  width: max-content;
}
.quantity-cart-group.btn-group {
  text-align: center;
  align-items: center;
  background-color: var(--bg-gray);
  padding: 8px;
  border-radius: 8px;
  gap: 12px;
  max-height: 40px;
  width: max-content;
}
.quantity-cart-group .btn {
  padding: 0 5px !important;
  margin-top: 0;
}
.quantity-cart-group .qty-input {
  display: none !important;
  max-width: 45px;
  text-align: center;
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Montserrat Alternates', sans-serif;
}
.quantity-cart-group .qty-input::-webkit-outer-spin-button,
.quantity-cart-group .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
.quantity-cart-group .qty-input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}
.quantity-cart-group .qty-input.active {
  display: block !important;
}
.quantity-cart-group .qty-display {
  font-size: 14px;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}
.quantity-cart-group .qty-display:hover {
  opacity: 0.7;
}
.quantity-cart-group .qty-display.hidden {
  display: none;
}
.quantity input {
  background-color: var(--bg-gray) !important;
}
.cart-product-count .btn {
  padding: 0;
  height: auto;
}
.cart-product-name p {
  font-size: 18px;
}
.cart-product-name a {
  text-decoration: none !important;
  color: var(--dark) !important;
}
.cart-product-name span {
  font-size: 16px;
  color: var(--dark-opacity);
}
.cart-product-count span {
  font-size: 24px;
}
.cart-product-count .price-old {
  font-size: 20px;
}
.cart-product-name .price-small{
  font-size: 10px;
  color: var(--dark-opacity) !important;
  vertical-align: text-top;
}
.cart-product-count .price-small{
  font-size: 16px;
  vertical-align: text-top;
}
.cart-info {
  background-color: #F0F1F6;
  border-radius: 24px;
  padding: 16px;
  margin-top: 40px;
  max-width: 388px;
  min-width: 370px;
}
.cart-info .btn-white {
  padding: 16px;
  margin-bottom: 10px;
  min-height: 76px;
  height: auto;
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  text-align: left;
  border-radius: 24px;
}
.cart-info .btn-white div {
  margin-right: auto;
  width: 100%;
}
.cart-info .btn-white .montserrat-semibold {
  font-size: 14px;
}
.cart-info .btn-white .montserrat-medium {
  font-size: 12px;
  color: var(--dark-opacity);
}
.cart-info input {
  padding: 11px 14px;
  background-color: var(--bg-gray);
  border-radius: 8px;
  border: none !important;
  margin-top: 10px;
  text-transform: uppercase;
  width: 100%;
}
.cart-info .btn-promo:hover {
  background-color: #fff;
}
.btn-promo .form-control:focus {
  background-color: var(--bg-gray);
}
.product-page {
  max-width: 1200px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}
.btn-group.web {
  display: inline-flex !important;
}
/* section-profile-info  */
.container-offers {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}
.offers-item {
  border-radius: 16px;
  background-color: #F6F7F9;
  padding: 12px;
  height: 112px;
  width: 168px;
  position: relative;
}
.offers-item-long {
  width: 370px !important;
}
.offers-item-long span{
  font-size: 12px;
}
.offers-item a{
  text-decoration: none;
  color: var(--dark);
}
.offers-item-red a{
  color: white !important;
}
.offers-item-red {
  background: var(--red-gradients);
}
.offers-item img {
  position: absolute;
  bottom: 0px;
  right: -8px;
}
.long-bannerpart1 {
  right: 5px !important;
  bottom: 5px !important;
}
.user-list-item {
  display: flex;
  border-bottom: 1px solid #EDEDED;
  text-decoration: none;
  color: var(--dark);
  padding: 5px 0;
  min-height: 60px;
  align-items: center;
}
.user-list-item span {
  color: var(--dark-opacity);
  font-size: 14px;
}
.container-user-list {
  width: 730px;
  margin-top: 20px;
}
.container-offers div{ 
  gap: 12px;
}
.user-list-item:hover {
  color: var(--red-secondary) !important;
  transition: all 0.4s ease;
}
.profile-title  {
  font-weight: 600 !important;
}
.offers-item {
  width: 100%;
}
.container-cart {
  max-width: 760px !important;
}

/* notifications-profile */
.notifications-profile {
  margin-top: 32px;
  margin-bottom: 32px;
}
.notification-profile {
  background-color: #F6F7F9;
  padding: 16px;
  border-radius: 16px;
  margin-bottom: 16px;
}
.notification-profile span {
  font-size: 12px;
}
.notification-profile h4 {
  font-size: 19px;
}
.history-title {
  font-size: 24px !important;
}
.history-nav .btn-secondary {
  border: none;
  padding: 8px;
  border-radius: 10px;
  height: 40px;
  width: 40px;
  justify-content: space-between;
}
.history-nav {
  align-items: center;
}
.history-nav .btn {
  font-weight: 500 !important;
}
.btn-group .active {
  background-color: white;
  color: var(--dark);
  font-weight: 600 !important;
}
.btn-group {
  background-color: var(--bg-gray);
  border-radius: 100px;
}
.btn-group .btn {
  padding: 10px 50px;
  border-radius: 100px !important;
  margin: 4px;
  border: none;
}
.btn-group .btn:hover{
  color: var(--red-secondary);
  background-color: var(--bg-gray);
}
.btn-group .btn.active:hover{
  color: var(--red-secondary);
  background-color: white;
}
.history-item {
  display: flex;
  border-radius: 16px;
  background-color: #F6F7F9;
  justify-content: space-between;
  padding: 15px;
  align-items: center;
  margin-bottom: 12px;
}
.container-history {
  margin-top: 24px;
}
.history-item-title .montserrat-medium{
  font-size: 14px;
}
.history-item-title .montserrat-semibold{
  font-size: 18px;
}
.history-item-title span{
  font-size: 14px;
}
.history-item-price p {
  font-size: 18px;
}
.history-item-price span {
  font-size: 14px;
}
.history-item-img {
  background-color: white;
  border-radius: 8px;
  text-align: center;
  padding: 2px;
}
.history-item-img img {
  width: 30px;
  height: 30px;
  margin: 2px;
}
.btn-group.mobile {
  display: none !important;
}
.btn-group.web {
  display: inline-flex !important;
}
/* category */
.category-title {
  font-size: 24px !important;
  margin-left: 15px;
}
.container-subcategories {
  margin-top: 25px;
  overflow: scroll;
  display: flex;
  flex-wrap: nowrap;     
  overflow-x: auto;       
  overflow-y: hidden;
  -ms-overflow-style: none;  /* IE, Edge */
  scrollbar-width: none;     /* Firefox */
}
.container-categories {
  margin-top: 25px;
  overflow: scroll;
  display: flex;
  flex-wrap: nowrap;     
  overflow-x: auto;       
  overflow-y: hidden;
  -ms-overflow-style: none;  /* IE, Edge */
  scrollbar-width: none;     /* Firefox */
  position: relative;
}
.container-products {
  overflow: scroll !important;
  display: flex;
  flex-wrap: nowrap;     
  overflow-x: auto;       
  overflow-y: hidden;
  -ms-overflow-style: none;  /* IE, Edge */
  scrollbar-width: none;     /* Firefox */
}
.container-fluid {
  padding-left: 200px !important;
}

.container-subcategories::-webkit-scrollbar {
    display: none;             /* Chrome, Safari */
}
.container-subcategories .btn {
  margin-right: 8px;
}
.container-subcategories .btn.active {
  background-color: var(--bg-footer);
}
.container-subcategories .btn.active:hover {
  background-color: var(--bg-footer);
  color: var(--bg-red);
}
.img-blure {
  position: absolute;
  bottom: 40px;
  right: 10px;
  height: 400px;
}

/* shop */
.shop-title{
  font-size: 28px !important;
  margin-top: 32px;
}
.btn-category:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-color: #FFE16F;
}
.btn-category {
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start; 
  width: 112px!important;
  min-width: 112px!important;
  height: 112px;
  border-radius: 14px;
  background-color: #FFE16F;
  text-align: left;
  align-items: start;
  padding: 12px;
  font-size: 12px;
  background-image: url('/assets/img/categories/steak.png');
  background-repeat: no-repeat;
  background-position: bottom 0 right;
  background-size: 110px auto;
  margin-right: 10px;
}

/* empty cart */
.empty-cart-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.empty-cart-content img {
  max-width: 280px;
  width: 100%;
  height: auto;
  margin-bottom: 32px;
}

.empty-cart-content h2 {
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 16px;
  text-align: center;
}

.empty-cart-content p {
  font-size: 16px;
  color: var(--dark-opacity);
  margin-bottom: 32px;
  text-align: center;
  max-width: 400px;
}

.empty-cart-content .btn {
  padding: 14px 40px;
  font-size: 16px;
}

/* checkout */
.cart-info-checkout .btn-white {
  min-height: 92px;
}
.cart-info-checkout .btn-white:hover {
  background-color: #fff;
}
.cart-info-checkout .img-product-checkout {
  width: 50px;
}
.cart-info-checkout .price-small {
  font-size: 10px;
}
.cart-product-checkout input {
  background-color: #F0F1F6;
  padding: 15px;
  border-radius: 10px !important;
  width: 100%;
}
.input-address {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  padding-left: 0 !important;
}
.cart-product-checkout .input-address {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  padding-left: 0 !important;
}
.cart-product-checkout span {
  background-color: #F0F1F6 !important;
  border: none !important;
  border-top-left-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
}
.checkout-input span{
  background-color: #fff !important;
  border: none !important;
  border-top-left-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
  padding: 14px !important;
}
.checkout-input input {
  background-color: #fff;
  padding: 14px 14px 14px 0 !important;
  border-radius: 10px !important;
  width: 100%;
  margin-right: 0px;
  margin-top: 0px !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  height: 100%;
  text-transform: none !important;
}
.btn-with-checkout {
  min-height: 0 !important;
  padding: 14px !important;
  justify-content: start !important;
  border-radius: 10px !important;
  font-size: 16px;

}
.btn-with-checkout div {
  margin-right: 0 !important;
  width: auto !important;
}
.cart-product-checkout .form-label {
  color: #17171766;
}
.cart-product-checkout {
  display: flex;
  margin-bottom: 20px;
}
.info-total-price button{
  width: 230px !important;
  margin-bottom: 10px;
}
.form-check-input:checked {
  background-color: #34C759 !important;
}
.form-switch .form-check-input {
  width: 2.5em !important;
}
.input-group {
  display: block !important;
}
.input-group input {
  width: 100% !important;
}
.cart-product-checkout .address{
  display: contents !important;
}
.checkout.woocommerce-checkout {
  gap: 60px !important;
}
.checkout-input {
  background-color: #fff;
  border-radius: 10px !important;
  width: 100%;
  flex-wrap: nowrap !important;
  display: flex !important;
}
.cart-product-checkout textarea {
  width: 100%;
  border: none !important;
  background-color: #F0F1F6 !important;
  border-radius: 10px !important;
  padding: 14px !important;
}
textarea::placeholder {
  color: #dedfe3 !important;
}
textarea:focus-visible {
  border: none !important;
  outline-color: #F0F1F6 !important;
}
.cart-product-checkout input:focus {
  background-color: #F0F1F6 !important;
}

@media (min-width: 1000px) {
    .container {
        max-width: 1200px;
    }
}
@media (max-width: 999px) {
    .btn-group.mobile {
      display: inline-flex !important;
    }
    .btn-group.web {
      display: none !important;
    }
    .cart-product-checkout input {
      margin-right: 0px;
    }
    .btn-group .btn {
      height: auto;
    }
    .btn-group {
      margin-top: 20px;
    }
    .container-fluid {
      padding-left: 18px !important;
    }
    .history-nav {
      justify-content: space-between;
    }
    .history-nav .btn-secondary{
      background-color: transparent;
    }
    .history-item-price {
      width: 100%;
    }
    .like-icon {
      width: 23px !important;
    }
    .container h2 img {
      display: none;
    }
    .offers-item-long {
      margin-top: 12px;
      width: 100%;
    }
    .container h2 {
      font-size: 20px !important;
    }
    .container-sale h2 {
      font-size: 12px !important;
      max-width: 160px;
    }
    .container-sale {
      justify-content: right;
      background-image: url('/assets/img/bg-bag.png');
      background-repeat: no-repeat;
      background-position: left center;
      background-size: contain;
    }
    .sale {
      background: var(--red-gradients);
      border-radius: 32px;
    }
    .current-discounts-list .col-5 {
      padding: 0 10px 0 10px;
    }
    .current-discounts-item {
      min-width: 155px;
    }
    .discounts-title {
      font-size: 10px;
    }
    .cart-info-checkout {
      background-color: #F0F1F6 !important;
      padding: 16px !important;
    }
    .btn-with-checkout {
      background-color: #fff !important;
    }
    .product-card-img {
      width: 180px;
      height: 180px;
    }   
    .btn-category {
      margin-right: 5px;
    }
    .container-user-list { 
      width: 100%;
    }
    .product-card img {
      width: 100px;
      height: auto;
    } 
    .product-page {
      padding-left: 12px;
      padding-right: 12px;
    }
    .footer-info {
      padding: 18px 0;
    }
    .footer-logo {
      text-align: center;
    }
    .footer-logo img {
      margin: 0 auto;
    }
    .footer-contact a {
      font-size: 10px;
    }
    .first {
      order: 2 !important;
    }
    .second {
      order: 1 !important;
    }
    .third {
      order: 3 !important;
    }
    .footer-items {
      min-width: unset;
    }
    .product-row {
      background-color: #fff;
    }
    .product-image-wrapper img {
      max-width: 250px;
      margin: 68px;
    }
    .product-page-title {
      font-size: 18px;
    }
    .product-page-price {
      margin-top: 18px;
    }
    .product-page-titles .btn {
      width: 100%;
      margin-top: 0px;
      padding: 10px 60px;
    }
    .cart-product-name p {
      font-size: 14px;
    }
    .product-page-description {
      margin-top: 35px;
    }
    .quantity-cart-group .btn {
      padding: 0 5px;
      margin-top: 0;
      width: 20px;
    }
    .quantity-cart-group.btn-group {
      padding: 6px;
      gap: 10px;
    }
    .quantity-cart-group .qty-display {
      font-size: 12px;
    }
    .cart-product-count span {
      font-size: 16px;
    }
    .cart-product-count .price-small {
      font-size: 10px;
    }
    .product-page-description h6 {
      font-weight: 500;
      font-style: normal;
    }
    .badge {
      position: static;
      font-size: 14px;
      padding: 6px;
      margin-bottom: 8px;
    }
    .cart-info {
      background-color: white;
      padding: 0;
    }
    .cart-info .btn-white {
      background-color: var(--bg-gray)
    }
    /* Empty cart mobile styles */
    .empty-cart-content {
      padding: 40px 20px !important;
    }
    .empty-cart-content img {
      max-width: 200px !important;
      margin-bottom: 24px !important;
    }
    .empty-cart-content h2 {
      font-size: 22px !important;
      margin-bottom: 12px !important;
    }
    .empty-cart-content p {
      font-size: 14px !important;
      margin-bottom: 24px !important;
    }
    .empty-cart-content .btn {
      padding: 12px 32px !important;
      font-size: 14px !important;
    }
}

/* WooCommerce Cart Page - hide default table structure */
.woocommerce-cart table.shop_table,
.woocommerce-cart .cart-collaterals h2 {
    display: none !important;
}

.woocommerce-cart .cart-collaterals {
    width: 100%;
    max-width: 388px;
    float: none;
}

.woocommerce-cart .cart_totals {
    width: 100%;
    max-width: none;
    float: none;
}

/* Cart quantity controls */
.cart-product-count .qty-input {
    display: none;
}

.cart-product-count .btn {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    height: auto !important;
}

.cart-product-count .btn:hover {
    background: transparent !important;
}

.cart-product-count .btn-group p {
    margin: 0;
    padding: 0;
    font-size: 14px;
}

/* WooCommerce price display */
.woocommerce-Price-amount {
    display: inline;
}

/* Custom price formatting */
.price-small {
    font-size: 12px;
    vertical-align: text-top;
    margin-left: 1px;
}

.product-page-price .price-small {
    font-size: 14px;
}

.cart-product-price .price-small {
    font-size: 12px;
}

.product-page {
  max-width: 1200px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}
/* Category buttons with custom background */
.btn-category[style*="background-image"] {
  color: #1A1A1A;
}

.btn-category[style*="background-image"]:hover {
  transform: translateY(-2px);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* Ensure text is readable on category buttons */
.btn-category {
  position: relative;
  overflow: hidden;
}

.btn-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
  z-index: 0;
}

.btn-category > * {
  position: relative;
  z-index: 1;
}

/* Add to Cart button states */
.btn-secondary.loading {
    opacity: 0.7;
    cursor: wait;
}

.btn-secondary.error {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
}

/* View Cart button - same styling as Add to Cart */
.view-cart-btn {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    text-decoration: none !important;
}

.view-cart-btn:hover {
    opacity: 0.9;
    text-decoration: none !important;
}

.category-loading {
    top: 0;
    left: 0;
    width: 100%;
    height: 465px;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.category-loading .spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3rem;
    border-color: var(--red-primary);
    border-right-color: transparent;
}

/* Search Modal Styles */
.search-modal {
    scrollbar-width: thin;
    scrollbar-color: #ccc #f5f5f5;
}
.search-modal a{
    height: auto;
}

.search-modal::-webkit-scrollbar {
    width: 8px;
}

.search-modal::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 4px;
}

.search-modal::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.search-modal::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.search-category-item:hover .category-icon {
    transform: scale(1.05);
    transition: transform 0.2s;
}
.search-category-item span{
  padding: 8px 13px;
  border-radius: 10px;
}
.search-category-item span:hover {
  background-color: var(--bg-gray);
}
.search-products .product-info-wrapper{
  padding: 5px 10px;
  border-radius: 10px;
}
.search-products .product-info-wrapper:hover {
  background-color: var(--bg-gray);
}
.search-product-item:hover .product-image {
    transform: scale(1.05);
    transition: transform 0.2s;
}

.search-loading,
.search-no-results {
    padding: 40px 20px;
    text-align: center;
}

.search-loading {
    color: #666;
}

.search-no-results {
    color: #999;
    font-size: 16px;
}

/* Breadcrumb styles for search results */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "•";
    padding: 0 8px;
    color: #999;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--red-primary);
}

.breadcrumb-item.active {
    color: #000;
}
