﻿/*------------------------------ Web Fonts Start -----------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap');


/*------------------------------ Web Fonts End -----------------------------------------*/

/* CSS Document */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "IBM Plex Sans", sans-serif;
  overscroll-behavior: none;
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
command,
datalist,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
font,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
keygen,
label,
legend,
li,
meter,
nav,
object,
ol,
output,
p,
pre,
progress,
q,
s,
samp,
section,
small,
source,
span,
strike,
strong,
sub,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
tr,
tt,
u,
ul,
var,
video {
  background: 0 0;
  border: 0 none;
  font-size: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: top;
  font-family: "IBM Plex Sans", sans-serif;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

table,
table td {
  padding: 0;
  border: none;
  border-collapse: collapse;
}

img {
  vertical-align: top;
}

embed {
  vertical-align: top;
}

article,
aside,
audio,
canvas,
command,
datalist,
details,
embed,
figcaption,
figure,
footer,
header,
hgroup,
keygen,
meter,
nav,
output,
progress,
section,
source,
video {
  display: block;
}

mark,
rp,
rt,
ruby,
summary,
time {
  display: inline;
}

input,
textarea {
  border: 0;
  padding: 0;
  margin: 0;
  outline: 0;
}

iframe {
  border: 0;
  margin: 0;
  padding: 0;
}

input,
textarea,
select {
  margin: 0;
  padding: 0px;
}

li {
  list-style: none;
}

*:focus {
  outline: none !important;
}

.clear {
  clear: both !important;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  border-radius: 99999px;
  background-color: #198EDD1A;
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 99999px;
}

.text-center {
  text-align: center !important;
}

.form-control {
  font-family: "IBM Plex Sans", sans-serif;
}

.form-control:focus {
  box-shadow: none;
  border-color: #000 !important;
}

textarea:focus {
  box-shadow: none;
  border-color: #000 !important;
}

/*---------------------------------------------basic html tags--------------------------------------------*/

:root {
  --primary: #041422;
  --primary-hover: #07233b;
  --secondary: #198EDD;
  --secondary-hover: #1672af;
  --green: #087845;
  --gray: #EEEEEE;
  --dark: #222222;
}


html,
body {
  overflow-x: hidden !important;
  box-sizing: border-box;
}

body {
  -webkit-transition: all ease 0.3s !important;
  transition: all ease 0.3s !important;
  background-color: #F9F7F4 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "IBM Plex Sans", sans-serif;
}

p,
label {
  font-family: "IBM Plex Sans", sans-serif;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none !important;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.ltr {
  direction: ltr !important;
}

.rtl {
  direction: rtl !important;
}

/* helper css */

.main-btn {
  background-color: var(--secondary);
  border: none;
  border-radius: 8px;
  padding: 8px 24px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: 0.3s ease;
}

.main-btn:hover {
  background-color: var(--secondary-hover);
}

.section-header {
  display: flex;
  justify-content: space-between;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--primary);
}

.section-subtitle {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--primary);
}


.shop-all {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  white-space: nowrap;
  text-decoration: underline !important;
}


/* Main Wrapper */

.bg-section {
  background-color: #EEEEEE;
  padding: 30px;
  border-radius: 12px;
}

/* Global Product cards */

.cards-wrapper {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
}

.cards-wrapper .product-card {
  height: auto !important;
}

.cards-wrapper>* {
  flex: 0 0 269px;
  scroll-snap-align: start;
}

.cards-wrapper::-webkit-scrollbar {
  height: 8px !important;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #fff;
  border: 1px solid #E5E5E5;
  padding: 16px 12px;
  border-radius: 8px;
  justify-content: space-between;
  transition: 0.3s ease-in;
  /* margin: 0 auto; */
  overflow: hidden;
}

.product-card:hover {
  border-color: var(--secondary);
}

.card-badge {
  position: absolute;
  left: -1px;
  top: -1px;
  background-color: var(--green);
  padding: 8px 16px;
  color: #fff;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.product-img {
  margin: 0 auto;
  text-align: center;
}

.product-card img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 500 / 500;
  width: 200px;
}

.product-card .product-title a,
.product-card .product-title span {
  color: var(--dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3rem;
  height: 2.3rem;
  white-space: normal;
  transition: 0.3s;
  text-align: left;
}

.product-card .product-title a:hover,
.product-card .product-title span:hover {
  color: var(--secondary);
}


.product-card .old-price {
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
  text-decoration: line-through;
  margin-bottom: 4px;
}

.product-card .price {
  color: var(--secondary);
  font-weight: 700;
  font-size: 18px;
}

.product-card .curr {
  font-size: 14px;
  line-height: 24px;
}


.add-cart-icon {
  background: none;
  border: 1px solid #04142233;
  padding: 6px;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.add-cart-icon img {
  max-width: 20px;
}

.add-cart-icon:hover {
  border-color: var(--secondary);
}


.add-cart-icon.delete-icon i {
  color: #e11c1c;
}

.add-cart-icon.delete-icon:hover {
  border-color: #e11c1c;
}


/* Inner Pages Breadcrumb */

.breadcrumb {
  background: none;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 5px;
}

.breadcrumb-item,
.breadcrumb-item a {
  color: #062C4D !important;
}

.breadcrumb-item.active,
.breadcrumb-item.active a {
  color: #000 !important
}

.breadcrumb-item+.breadcrumb-item::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f105";
  color: #062C4D;
}

.page-content {
  min-height: 700px;
}


/* Forms */

.form-group {
  margin-bottom: 20px;
}

.form-label {
  color: #000;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 1px;
  display: inline-block;
}

.form-input {
  border: 1px solid #C6C6C6;
  border-radius: 8px;
  padding: 16px;
  font-size: 16px;
  width: 100%;
  max-height: 48px;
  transition: 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
}

.form-textarea {
  height: 120px;
  padding: 16px;
  resize: none;
  border: 1px solid #C6C6C6;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
  transition: 0.3s ease;
  max-height: none;
}

.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}


/******************* Enquiry Modal Responsive CSS ************************/
#inquiry_popup {
  padding: 0 !important;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

#inquiry_popup.show {
  display: flex !important;
  z-index: 1000000;
}

#inquiry_popup .modal-dialog {
  max-width: 650px;
  width: 95%;
  margin: 0.5rem auto;
  height: auto;
  max-height: 95vh;
}

#inquiry_popup .modal-content {
  border-radius: 10px;
  border: none;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  max-height: 95vh;
}

#inquiry_popup .modal-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  border-bottom: none;
  padding: 1rem 1.5rem;
  position: relative;
  left: unset !important;
  right: unset !important;
  width: 100% !important;
  flex-shrink: 0;
}

#inquiry_popup .modal-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

#inquiry_popup .close {
  background: transparent;
  border: none;
  color: white;
  opacity: 0.9;
  font-size: 1.5rem;
  padding: 0;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

#inquiry_popup .close:hover {
  opacity: 1;
}

#inquiry_popup .modal-body {
  background-color: #F5F6F5;
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1 1 auto;
}

#inquiry_popup .modal-body>div {
  width: 100%;
}

#inquiry_popup .enquiry-popup {
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
}

#inquiry_popup .enquiry-popup li {
  margin-bottom: 1rem;
  padding: 0;
  width: 100%;
}

#inquiry_popup .form-group {
  margin-bottom: 0;
}

#inquiry_popup .control-label {
  color: #000;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  display: inline-block !important;
}

input.input-validation-error,
textarea.input-validation-error {
  border: 1px solid red !important;
}

input.input-validation-error:focus,
textarea.input-validation-error:focus {
  box-shadow: 0 0 2px rgba(255, 64, 0, 0.7) !important;
}

#inquiry_popup .form-control {
  border: 1px solid var(--gray);
  border-radius: 6px;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  background-color: white;
  transition: all 0.2s ease;
  margin-bottom: 0px !important;
  width: 100%;
}

#inquiry_popup .form-control:focus {
  border-color: #000;
  outline: none;
}

#inquiry_popup textarea.form-control {
  height: 80px;
  resize: none;
}

#inquiry_popup .text-danger {
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

/* ///////////////////////////////////////////////////// */

/* Popups */


/* Wishlist popup */
#loginPopup .modal-content,
#divwishpop .modal-content {
  max-width: 400px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: none;
  overflow: hidden;
}

/* Modal header */
#loginPopup .modal-header,
#divwishpop .modal-header {
  border-bottom: none;
  padding: 15px 15px 0;
  display: flex;
  justify-content: flex-end;
  background-color: #fff;
}

#loginPopup .close,
#divwishpop .close {
  background: transparent;
  border: none;
  padding: 5px;
  transition: all 0.2s ease;
}

#loginPopup .close img,
#divwishpop .close img {
  width: 16px;
  height: 16px;
}

/* Modal body content */
#loginPopup .modal-sec-cont,
#divwishpop .modal-sec-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 30px 30px;
  text-align: center;
}

#loginPopup .modal-fav-icon,
#divwishpop .modal-fav-icon {
  width: 55px;
  height: 55px;
  margin-bottom: 20px;
  filter: drop-shadow(0 3px 5px rgba(231, 146, 60, 0.2));
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

#loginPopup #loginPopupLabel,
#divwishpop #divwishlistmsg {
  font-size: 17px !important;
  color: #333;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  padding: 0 10px;
}

/* Modal footer */
#loginPopup .wishlist-modal-footer,
#divwishpop .wishlist-modal-footer {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background-color: #f8f9fa;
  border-top: 1px solid #eee;
}

/* Button styling */
#loginPopup .wishlist-modal-footer .btn,
#divwishpop .wishlist-modal-footer .btn {
  min-width: 100px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 10px 20px;
}

.wishlist-modal-footer .btn.close {
  border: solid 1px var(--primary) !important;
  color: var(--primary) !important;
  transition: 0.3s ease !important;
}

.wishlist-modal-footer .btn.close:hover {
  background-color: var(--primary) !important;
  color: #fff !important;
}

.wishlist-modal-footer .btn.login {
  background-color: var(--primary);
  color: #fff;
  transition: 0.3s ease;
}

.wishlist-modal-footer .btn.login:hover {
  background-color: var(--primary-hover);
}

#loginPopup .btn_m_size,
#divwishpop .btn_m_size {
  background-color: #fff;
  color: var(--dark);
  border: 1px solid #ddd;
}

#loginPopup .btn_m_size:hover,
#divwishpop .btn_m_size:hover {
  background-color: #f1f1f1;
  border-color: #ccc;
}

/* Responsive adjustments */
@media (max-width: 480px) {

  #divwishpop .modal-content,
  #loginPopup .modal-content {
    max-width: 90%;
  }

  #loginPopup .modal-sec-cont,
  #divwishpop .modal-sec-cont {
    padding: 15px 20px 20px;
  }

  #loginPopup #loginPopupLabel,
  #divwishpop #loginPopupLabel {
    font-size: 16px !important;
  }

  #loginPopup .wishlist-modal-footer,
  #divwishpop .wishlist-modal-footer {
    padding: 15px;
  }
}

/* AddToCart Modal */

#shippingcartmodal {
  padding: 0 !important;
  overflow: hidden;
}

#showshippingcartpopupdiv.modal-content,
#showcartpopupdiv.modal-content {
  max-width: 600px;
  width: 95%;
  margin: 30px auto;
  border-radius: 12px;
  border: none;
  overflow: hidden;
}

/* Modal header - Compact design */
#showshippingcartpopupdiv .modal-header,
#showcartpopupdiv .modal-header {
  border-bottom: none;
  padding: 10px 15px 0;
  /* background-color: #fff; */
}

#showshippingcartpopupdiv .shp-head.shoppopup-head,
#showcartpopupdiv .shp-head.shoppopup-head {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

#showshippingcartpopupdiv .close,
#showcartpopupdiv .close {
  background: transparent;
  border: none;
  padding: 5px;
  transition: all 0.2s ease;
  cursor: pointer;
  z-index: 10;
}

#showshippingcartpopupdiv .close img,
#showcartpopupdiv .close img {
  width: 16px;
  height: 16px;
}

/* Heading wrapper - More compact styling */
#showshippingcartpopupdiv .heading-wrapper-popup,
#showcartpopupdiv .heading-wrapper-popup {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  background-color: #f8f9fa;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
}

#showshippingcartpopupdiv .shoppopup-icon,
#showcartpopupdiv .shoppopup-icon {
  display: inline-block;
  margin-right: 10px;
  flex-shrink: 0;
}

#showshippingcartpopupdiv .shoppopup-icon svg,
#showcartpopupdiv .shoppopup-icon svg {
  width: 32px;
  height: 32px;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

#showshippingcartpopupdiv .cart-popup-details,
#showcartpopupdiv .cart-popup-details {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--dark);
}

#showshippingcartpopupdiv .cart-popup-details b,
#showcartpopupdiv .cart-popup-details b {
  color: var(--primary);
  font-size: 18px;
}

#showshippingcartpopupdiv .cart-popup-details span,
#showcartpopupdiv .cart-popup-details span {
  font-size: 14px;
  opacity: 0.85;
  display: inline-block;
}

/* Modal body - No scrolling allowed */
#showshippingcartpopupdiv .modal-body,
#showcartpopupdiv .modal-body {
  padding: 10px;
  overflow: hidden;
}

/* Product row layout */
#showshippingcartpopupdiv .shpcrt-lister,
#showcartpopupdiv .shpcrt-lister {
  display: flex;
  align-items: center;
  padding: 5px 0;
}

#showshippingcartpopupdiv .quick-bag-success-modal,
#showcartpopupdiv .quick-bag-success-modal {
  padding-right: 10px;
  max-width: 50%;
  margin: 0 auto;
}

#showshippingcartpopupdiv .quick-bag-pro-img,
#showcartpopupdiv .quick-bag-pro-img {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

/* Image scaling to fit container */
#showshippingcartpopupdiv .quick-bag-pro-img li img,
#showcartpopupdiv .quick-bag-pro-img li img {
  max-width: 100%;
  height: auto;
  max-height: 200px;
  /* Limit image height */
  border-radius: 8px;
  /* box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1); */
  object-fit: contain;
}

#showshippingcartpopupdiv .shopping-quick-cart-modal-cont,
#showcartpopupdiv .shopping-quick-cart-modal-cont {
  display: flex;
  flex-direction: column;
}

/* Product title - Handle overflow with ellipsis */
#showshippingcartpopupdiv .shopping-quick-cart-modal-cont h3,
#showcartpopupdiv .shopping-quick-cart-modal-cont h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 44px;
}

#showshippingcartpopupdiv .price-tag,
#showcartpopupdiv .price-tag {
  margin-bottom: 10px;
}

#showshippingcartpopupdiv .current-price,
#showcartpopupdiv .current-price {
  font-size: 16px;
  color: var(--primary);
}

#showshippingcartpopupdiv .em-dirham,
#showcartpopupdiv .em-dirham {
  margin-right: 4px;
  font-weight: normal;
}

/* Button section - Compact design */
#showshippingcartpopupdiv .shopcart-popup-btn-sec,
#showcartpopupdiv .shopcart-popup-btn-sec {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

#showshippingcartpopupdiv .shopcart-popup-btn-sec .btn,
#showcartpopupdiv .shopcart-popup-btn-sec .btn {
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 15px;
  text-align: center;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#showshippingcartpopupdiv .btn_l_size,
#showcartpopupdiv .btn_l_size {
  background-color: #fff;
  color: #000 !important;
  border: 1px solid var(--dark);
}

#showshippingcartpopupdiv .btn_l_size:hover,
#showcartpopupdiv .btn_l_size:hover {
  background-color: var(--primary);
  color: #fff !important;
}

#showshippingcartpopupdiv .btn_m_size,
#showcartpopupdiv .btn_m_size {
  background-color: var(--primary);
  color: white !important;
  border: none;
  box-shadow: 0 2px 5px rgba(170, 80, 7, 0.2);
}

#showshippingcartpopupdiv .btn_m_size:hover,
#showcartpopupdiv .btn_m_size:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 4px 8px rgba(170, 97, 7, 0.3);
  transform: translateY(-2px);
}

/* Completely remove all scrollbars */
.modal.fade.show,
#shippingcartmodal,
#showshippingcartpopupdiv,
#showcartpopupdiv,
#showshippingcartpopupdiv .modal-body,
#showcartpopupdiv .modal-body {
  overflow: hidden !important;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.modal.fade.show::-webkit-scrollbar,
#shippingcartmodal::-webkit-scrollbar,
#showshippingcartpopupdiv::-webkit-scrollbar,
#showcartpopupdiv::-webkit-scrollbar,
#showshippingcartpopupdiv .modal-body::-webkit-scrollbar,
#showcartpopupdiv .modal-body::-webkit-scrollbar {
  display: none;
}

/* Fix for glassCase plugin */
.gc-start {
  max-width: 100%;
}

.gc-display-area {
  max-width: 100% !important;
  height: auto !important;
  max-height: 200px !important;
}

.gc-display-container {
  max-width: 100% !important;
  max-height: 200px !important;
}

/* Adaptive styles for small screens */
@media (max-width: 767px) {

  #showshippingcartpopupdiv.modal-content,
  #showcartpopupdiv.modal-content {
    width: 95%;
    margin: 15px auto;
    max-height: 80vh;
  }

  #showshippingcartpopupdiv .shpcrt-lister,
  #showcartpopupdiv .shpcrt-lister {
    flex-direction: column;
  }

  #showshippingcartpopupdiv .col-md-6,
  #showcartpopupdiv .col-md-6 {
    width: 100%;
    margin-bottom: 10px;
    padding: 0 5px;
  }

  #showshippingcartpopupdiv .quick-bag-success-modal,
  #showcartpopupdiv .quick-bag-success-modal {
    padding-right: 0;
    max-width: 100%;
  }

  #showshippingcartpopupdiv .quick-bag-pro-img li img,
  #showcartpopupdiv .quick-bag-pro-img li img {
    max-height: 150px;
  }

  #showshippingcartpopupdiv .shopping-quick-cart-modal-cont,
  #showcartpopupdiv .shopping-quick-cart-modal-cont {
    text-align: center;
  }

  #showshippingcartpopupdiv .shopcart-popup-btn-sec,
  #showcartpopupdiv .shopcart-popup-btn-sec {
    align-items: center;
  }

  #showshippingcartpopupdiv .shopcart-popup-btn-sec .btn,
  #showcartpopupdiv .shopcart-popup-btn-sec .btn {
    font-size: 14px;
  }


  .main-btn {
    padding: 5px 15px;
    font-size: 14px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {

  #showshippingcartpopupdiv .cart-popup-details,
  #showcartpopupdiv .cart-popup-details {
    font-size: 14px;
  }

  #showshippingcartpopupdiv .cart-popup-details b,
  #showcartpopupdiv .cart-popup-details b {
    font-size: 16px;
  }

  #showshippingcartpopupdiv .cart-popup-details span,
  #showcartpopupdiv .cart-popup-details span {
    font-size: 12px;
  }

  #showshippingcartpopupdiv .shoppopup-icon svg,
  #showcartpopupdiv .shoppopup-icon svg {
    width: 24px;
    height: 24px;
  }

  #showshippingcartpopupdiv .quick-bag-pro-img li img,
  #showcartpopupdiv .quick-bag-pro-img li img {
    max-height: 120px;
  }

  #showshippingcartpopupdiv .shopping-quick-cart-modal-cont h3,
  #showcartpopupdiv .shopping-quick-cart-modal-cont h3 {
    font-size: 14px;
    -webkit-line-clamp: 1;
    max-height: 22px;
  }

  #showshippingcartpopupdiv .current-price,
  #showcartpopupdiv .current-price {
    font-size: 14px;
  }
}

.card-btn.shoppopup-btncont a {
  margin: 0px 3px;
  background-color: var(--primary) !important;
  color: #fff !important;
}

.card-btn.shoppopup-btncont {
  width: 100%;
  height: auto;
  float: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Error & Succuss & Warning Popup */

/* Shared Modal Styles */
.message-pop-wrapper .modal-content {
  border: none;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  direction: rtl;
}

.message-pop-wrapper .modal-body {
  padding: 25px 20px;
}

.message-popup-alert {
  text-align: center;
  position: relative;
  padding: 20px;
}

.message-pop-wrapper .sa {
  width: 80px;
  height: 80px;
  position: relative;
  margin: 0 auto 20px;
}

/* Common Button Styles */
.message-pop-wrapper .btn {
  border-radius: 5px;
  font-weight: 600;
  padding: 8px 25px;
  margin-top: 15px;
  transition: all 0.3s ease;
}

/* Message Text Styles */
.message-pop-wrapper .custom-alerts {
  font-size: 18px;
  font-weight: 600;
  margin: 15px 0;
  padding: 0;
  background: none;
  border: none;
  color: inherit;
}

.message-pop-wrapper .custom-alerts p {
  font-size: 14px;
  margin-top: 10px;
  font-weight: normal;
}

/* Success Modal Styling */
.success-pop-up .modal-content {
  background-color: #fff;
  border-top: 5px solid #4CAF50;
}

.success-pop-up .custom-alerts {
  color: #4CAF50;
}

.success-pop-up .btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.success-pop-up .btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}

/* Warning Modal Styling */
.warning-pop-up .modal-content {
  background-color: #fff;
  border-top: 5px solid #FF9800;
}

.warning-pop-up .custom-alerts {
  color: #FF9800;
}

.warning-pop-up .btn-primary {
  background-color: #FF9800;
  border-color: #FF9800;
}

.warning-pop-up .btn-primary:hover {
  background-color: #e68a00;
  border-color: #e68a00;
}

/* Error Modal Styling */
.error-pop-up .modal-content {
  background-color: #fff;
  border-top: 5px solid var(--bg-red);
}

.error-pop-up .custom-alerts {
  color: var(--bg-red);
}

.error-pop-up .btn-danger {
  background-color: var(--bg-red);
  border-color: var(--bg-red);
}

.error-pop-up .btn-danger:hover {
  background-color: #b80312;
  border-color: #b80312;
}

/* Icon Containers for FontAwesome Icons */
.sa-success,
.sa-warning,
.sa-error {
  position: relative;
  border-radius: 50%;
  box-sizing: content-box;
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
}

/* Success Icon Container */
.sa-success {
  border: 4px solid #4CAF50;
  background-color: rgba(76, 175, 80, 0.1);
  animation: pulseSuccess 1s ease-in-out;
}

/* Warning Icon Container */
.sa-warning {
  border: 4px solid #FF9800;
  background-color: rgba(255, 152, 0, 0.1);
  animation: pulseWarning 1s ease-in-out;
}

/* Error Icon Container */
.sa-error {
  border: 4px solid var(--bg-red);
  background-color: rgba(208, 4, 22, 0.1);
  animation: pulseError 1s ease-in-out;
}

/* FontAwesome Icon Styling */
.sa-success i,
.sa-warning i,
.sa-error i {
  font-size: 40px;
  color: inherit;
}

.sa-success i {
  color: #4CAF50;
}

.sa-warning i {
  color: #FF9800;
}

.sa-error i {
  color: var(--bg-red);
}

/* Subtle pulse animations for icon containers */
@keyframes pulseSuccess {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
  }
}

@keyframes pulseWarning {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.4);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 152, 0, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 152, 0, 0);
  }
}

@keyframes pulseError {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(208, 4, 22, 0.4);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(208, 4, 22, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(208, 4, 22, 0);
  }
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .message-pop-wrapper .modal-dialog {
    margin: 1rem;
  }

  .message-pop-wrapper .sa {
    width: 60px;
    height: 60px;
  }

  .message-pop-wrapper .custom-alerts {
    font-size: 16px;
  }

  .sa-success i,
  .sa-warning i,
  .sa-error i {
    font-size: 30px;
  }
}

/* /////////////////////////////////////////////////////////// */


/* Responsive Design */
@media (max-width: 768px) {

  .section-head {
    min-height: 260px;
  }

  .section-head h1 {
    font-size: 32px;
    text-align: left;
  }

  .section-head .breadcrumb {
    justify-content: flex-start;
  }

  .section-head .breadcrumb-item.active,
  .section-head .breadcrumb-item+.breadcrumb-item {
    font-size: 16px !important;
  }

  .modal-dialog {
    margin: 5% auto;
    width: 95%;
  }

  .relative label {
    font-size: 16px;
  }

  .main-card h3 {
    font-size: 18px;
  }

  .form-label {
    font-size: 16px;
  }

  .form-input {
    padding: 14px;
    font-size: 14px;
  }

  .section-title {
    font-size: 25px;
  }

  .product-card {
    gap: 5px;
  }

  .product-card .product-title a,
  .product-card .product-title span {
    font-size: 14px;
  }

  .product-card .old-price {
    font-size: 14px;
  }

  .product-card .price {
    font-size: 16px;
  }

  .card-badge {
    padding: 5px;
    font-size: 14px;
  }

  .add-cart-icon {
    width: 35px;
    height: 35x;
  }

}


@media (max-height: 700px) {
  #inquiry_popup .modal-dialog {
    max-height: 95vh;
  }

  #inquiry_popup textarea.form-control {
    height: 60px;
  }

  #inquiry_popup .form-control {
    padding: 0.5rem 0.8rem;
  }

  #inquiry_popup .modal-body {
    padding: 1rem;
  }
}

@media (max-width: 576px) {

  #inquiry_popup .modal-dialog {
    width: 95%;
    margin: 0.5rem;
  }

  #inquiry_popup .modal-header {
    padding: 0.8rem 1rem;
  }

  #inquiry_popup .modal-title {
    font-size: 1.2rem;
  }

  #inquiry_popup .close {
    right: 1rem;
  }

  #inquiry_popup .modal-body {
    padding: 1rem;
  }

  #inquiry_popup .control-label {
    font-size: 0.85rem;
  }

  #inquiry_popup .form-control {
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
  }
}


@media (max-width:450px) {

  .section-titles-wrapper {
    width: 100%;
  }

  .section-title {
    font-size: 22px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .shop-all {
    font-size: 14px;
  }
}


/* -----------------Login Pages------------------- */
/*************** Login Page Start ******************/

.login-page {
  padding: 60px 0px;
}

.form-block {
  background: #fff;
  padding: 40px;
  border: 1px solid #e2e2e2;
  border-top: 3px solid var(--primary);
}

.ml-auto {
  margin-left: auto !important;
}

.btn-login {
  background: var(--secondary);
  color: #fff;
  font-size: 16px;
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  transition: 0.3s ease;
}

.btn-login:hover {
  color: #fff;
  background-color: var(--secondary-hover);
}

.btn-guest {
  background: #1a73f8;
  color: #fff;
  font-size: 16px;
  width: 100%;
  padding: 10px;
  margin-top: 10px;
}

.btn-guest:hover {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-register:hover {
  color: #fff;
  background: var(--primary-hover) !important;
  border-color: var(--primary-hover);
}

.select-code {
  width: 90px;
  margin-left: 10px;
}

.phone-no {
  display: flex;
}

.login-btn-sec {
  margin-top: 15px;
}

.login-btn-sec a {
  display: block;
}

.login-page select#phonecode {
  border-radius: 4px !important;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 14px;
}

.register-btn-sec {
  margin-top: 40px;
  display: flex;
  background: #0f82ed14;
  padding: 15px;
  border: 1px solid #0f82ed3d;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.sign-up-heading {
  font-size: 14px;
  margin-top: 20px;
  color: #000;
  display: inline-block;
  margin-right: 40px;
  min-width: 135px;
}

.btn.btn-register {
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border-radius: 4px;
}

.forgot-pass-text a {
  color: var(--dark);
  text-decoration: underline !important;
}

span.line {
  display: block;
  text-align: center;
}

a.btn.btnfacebook.btn-login.btn-facebook {
  background: #3b5998;
  color: #fff;
  border-color: #3b5998;
  margin-top: 8px;
  height: 40px;
  width: 100%;
  border-radius: 4px;
  outline: none !important;
  padding: 8px 40px;
}

a.btn.btn-default.btn-login.btn-google {
  background: #ea4335;
  color: #fff;
  border-color: #ea4335;
  outline: none !important;
  width: 100%;
  display: block;
  height: 40px;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgb(206, 195, 175);
  padding: 8px 40px;
  margin-top: 8px;
}

.phone-no span.field-validation-error #phonenumber-error {
  position: absolute;
  margin-top: -26px;
  margin-right: 130px;
}

.phone-no .form-select {
  width: 160px;
  margin-right: 10px;
}

/*************** Login Page End ******************/


/* Login Page */
.login-container {
  margin: 40px auto;
}

.login-card {
  display: flex;
  gap: 20px;
  overflow: hidden;
}

.login-form-container {
  background-color: #fff;
  padding: 24px;
  border: 1px solid #E6E6E6;
  border-radius: 8px;
  height: fit-content;
  width: 65%;
  margin: 0px auto;
}

@media (max-width:992px) {

  .login-form-container {
    flex: 1;
    width: 100%;
  }
}

.phone-input-group {
  display: flex;
  margin-bottom: 15px;
}

.country-select {
  width: fit-content;
  font-size: 13px;
  border-radius: 8px 0 0 8px;
  border: 1px solid #E6E6E6;
  border-right: none;
  background-color: white;
  color: var(--dark);
  padding-right: 8px;
  cursor: pointer;
}

.phone-input {
  flex-grow: 1;
  border-radius: 0 8px 8px 0 !important;
}

.password-container {
  position: relative;
  margin-bottom: 15px;
}

.has-icon {
  padding: 8px 30px;
}

.input-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #848484;
}


.password-toggle,
.confirm-pass-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #848484;
  cursor: pointer;
}

.forgot-password {
  margin-bottom: 15px;
}

.forgot-password a {
  font-weight: 400;
  font-size: 14px;
  color: var(--dark);
}

.signin-btn {
  max-width: 100% !important;
  margin-bottom: 20px;
}

.account-prompt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0f82ed14;
  padding: 15px;
  border: 1px solid #0f82ed3d;
  border-radius: 4px;
  margin-top: 25px;
}

.account-prompt-text {
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
}

.signup-btn {
  background-color: white;
  color: #000;
  border: 1px solid #CECECE;
  padding: 12px 45px;
  border-radius: 8px;
  transition: 0.3s ease;
  white-space: nowrap;
}

.signup-btn:hover {
  background-color: var(--primary);
  color: #fff;
}