/* Jost Font*/
@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&family=Fjalla+One&family=Shadows+Into+Light&display=swap');

@import url('https://fonts.googleapis.com/css2?family=BBH+Sans+Bogle&family=Eater&family=Fontdiner+Swanky&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Kumbh+Sans:wght,YOPQ@100..900,300&display=swap');
*{
  box-sizing:border-box;
  transition: all .3s linear;
  text-decoration:none;
  outline:none;
  border:none;
  margin:0;
  padding:0;
  list-style-type:none;
  font-family: "Jost", Arial, Helvetica, sans-serif;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-family: "Jost", sans-serif;
  font-family: "Fjalla One", sans-serif;
  font-family: "Cabin", sans-serif;
  font-weight:300;
  
}
.test {
    border-color:#e8991b;
    color:#FFB800;
    border-color:#FFBB28;
    border-color:#ffbd09;
}
html {
  scroll-padding-top:10px;
  scroll-behavior:smooth;
  overflow-x:hidden;
  scroll-padding-top:10px;
  

}
ul li {
    list-style: none;
}

a {
    font-size:16px;
    color:#333;
    color: #363535;
    text-decoration: none;
    color: #000;
    color:#ffd500;
    color:#0073aa;
}
strong {
    font-weight: 700;
    font-size:16px;
    color:#000;
}
.table-responsive {
  overflow-x: auto;
}
.table-responsive::-webkit-scrollbar {
  width:5px;
}
.table-responsive::-webkit-scrollbar-thumb {
  background-color: #777777;
}
.table-responsive::-webkit-scrollbar-track {
  background-color: #f3f3f3;
}
@media screen and (max-width:768px) {
  .table-responsive::-webkit-scrollbar {
    display: none;
  }
}
body {
  background:#F9FAFB;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  }
::-webkit-scrollbar-track {
  background-color:#f3f3f3;
  width: 8px;
  }
::-webkit-scrollbar-thumb {
  background: #777777;
  border-radius:10px;
  width: 8px;
  }  
.container {
  padding:40px;
  max-width: 1400px;
  margin:0 auto;
}
@media screen and (max-width:768px) {
  .container {
    padding:10px;
  }
}

/* Context for relative positioning */
label {
    position: relative;
  }
  
  /* Base styles for both types of inputs */
  input[type="radio"],
  input[type="checkbox"] {
    appearance: none;
    background: #fff;
    border: 1.5px solid #777;
    height: 1em;
    width: 1em;
    border-radius: 100%;
    vertical-align: middle;
    position: relative;
  }
  input[type="radio"] {
    vertical-align: text-top;
  }
  /* Remove the circular shape from checkboxes */
  input[type="checkbox"] {
    border-radius: 0;
  }
  
  /* Styles for the pseudo-elements */
  input[type="radio"]::before,
  input[type="checkbox"]::before {
    content: "";
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    top:0;
  }
  
  /* Center of the checked radio button */
  input[type="radio"]:checked::before {
    border: 2px solid transparent;
    border-radius: 100%;
    background: #ffd500;
    margin:1px;
  }
  
  /* The checkmark shape */
  input[type="checkbox"]:checked::before {
    border-right: 2px solid #ffd500;
    border-bottom: 3px solid #ffd500;
    height: 110%;
    width: 30%;
    transform: rotate(50deg) translateY(-20%) translateX(-10%);
  }
  
  /* Some focus styles for accessibility */
  input[type="radio"]:focus,
  input[type="checkbox"]:focus {
    outline: solid 1px;
    outline-offset: 1px;
  }
/*hr line*/
hr {
    position: relative;
    width: 80%;
    margin: 40px auto;
    height: 3px;
    border: none;
    background: linear-gradient(
      90deg,
      transparent,
      #ff3333,
      #f15e5e,
      #d7be42,
      #d1c845,
      transparent
    );
    overflow: visible;
    animation: gradient-shift 3s ease infinite;
  }
  
  hr::before {
    content: "✧";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 0 8px;
    color: #ffd500;
    font-size: 24px;
    animation: pulse 2s ease-in-out infinite;
  }
  .about-us-divider {
 
    border: 1px dotted #ffd500; 
    padding: 4px 0;
    margin: 20px 0;
  }
  hr::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    filter: blur(5px);
    background: inherit;
    opacity: 0.5;
  }
  
  @keyframes gradient-shift {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  @keyframes pulse {
    0%, 100% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 1;
    }
    50% {
      transform: translate(-50%, -50%) scale(1.2);
      opacity: 0.8;
    }
  }
/* Preloder */
.filtered-products-loader-wrapper {
    position: relative;
}
#dashboard-section-loader-wrapper {
    position: relative;
}
#preloder {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: rgba(208, 207, 207, 0.5);
    display:none;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		transform: rotate(0deg);
		border-left-color: transparent;
        border: 4px solid #ffd500;
	}
	50% {
		transform: rotate(180deg);
		border: 4px solid #1b0939;
		border-left-color: transparent;
	}
	100% {
		transform: rotate(360deg);
        border: 4px solid #ffd500;
		border-left-color: transparent;
	}
}

/* notifications popup */
.notify-popup {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 5px;
    left: 50%;
    transform:translate(-50%, -70px);
    width: 100%;
    max-width: 500px;
    min-width: fit-content;
    max-height: fit-content;
    min-height: fit-content;
    background-color: #cb4814;
    background:#01b141;
    color: #00000099;
    border-radius:2px;
    gap: 40px;
    padding: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, z-index 0s linear 0.3s;
}

.notify-popup.active {
    opacity: 1;
    pointer-events: auto; 
    z-index: 8020;
    transform:translate(-50%, 0px);
}
.notify-popup p {
    color: #ffffff;
    font-size:16px;
    font-weight:400;
}
.notify-popup p,
.notify-popup .notification-close,
.notify-popup i {
    color: #ffffff;
}

.notify-popup .notification-close {
    width:auto;
    height: auto;
    border-radius:50%;
    font-size:20px;
    padding:3px;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
.notify-popup {
    padding: 18px 10px;
    width: 100%;
    border-radius:0px;
}
.notify-popup p {
    font-size:14px;
    font-weight:400;
}
}

.button {
    color: #fff;
    padding: 14px 22px;
    font-weight: bold;
    font-size:15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
    border: none;
    border-radius: 2px;
    background-size: 120% auto;
    background-image: linear-gradient(315deg, #d19d43 0%, #dc2430 75%);
  }
  .button:hover {
    background-position: right center;
  }
  .button:active {
    top: 2px;
  }
  .sub-headline {
    display:grid;
    grid-template-columns:1fr auto 1fr;
    justify-content:center;
    align-items:center;
    max-width:600px;
    width:100%;
    margin:0 auto;
    gap:15px;
    font-size: 17px;
    color:#ffd500;
    font-weight:600;
    padding:10px 0;
    text-align: center;
    text-transform: uppercase;
    &:after,
    &:before {
        content:"";
        height:1px;
        background-color:#ffd500;
        opacity:1;
    }
  }
  


  .social-buttons {
    position: fixed;
    bottom:55px;
    right: 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

/* .social-button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
} */

.social-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.social-button i {
    font-size: 24px;
    color: white;
}

.whatsapp-button {
    background-color: #25D366;
    color:#ffffff;
    font-size:16px;
    font-weight:500;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:5px;
    width:100%;
    height:100%;
    border-radius:15px;
    padding:10px 10px;
    text-align:center;
    text-transform:uppercase;
    border:none;
    cursor:pointer;
    transition:all 0.3s ease-in-out;
    box-shadow:0 4px 8px rgba(0,0,0,0.1);
    &:hover {
        transform:scale(1.05);
    }
}

.phone-button {
    background-color: #0088cc;
}

.instagram-button {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

/* Optional animation for the icons */
.fa-beat-fade {
    animation: beat-fade 1.5s infinite;
}

@keyframes beat-fade {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

  /* Animation */
  .scale-up-center {
	-webkit-animation: scale-up-center 0.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: scale-up-center 0.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    }
    @-webkit-keyframes scale-up-center {
    0% {
        -webkit-transform: scale(0.1);
                transform: scale(0.1);
    }
    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
    }
    }
    @keyframes scale-up-center {
    0% {
        -webkit-transform: scale(0.1);
                transform: scale(0.1);
    }
    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
    }
    }
    #progress-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 0;
        height: 3px;
        background: #fffdfd;
        z-index: 9999;
        transition: width 0.4s ease-out;
    }
    .back-to-top {
        position: fixed;
        color:#ffffff;
        background:#ffd500;
        border-radius:8px;
        width: 46px;
        justify-content: center;
        align-items: center;
        height: 46px;
        border-radius:50%;
        text-align: center;
        font-size: 20px;
        cursor: pointer;
        padding:4px;
        display: none;
        right:10px;
        bottom: 8px;
        z-index: 11;
        border: none;
        outline: none;
        transition: all .3s ease-in-out;
        }

        @keyframes action {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(-15px);
        }
    }
/* Messages styling starts */
.messages {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	max-width: 500px;
	width: 100%;
	padding: 14px;
	position: fixed;
	opacity: 0;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
  background-color: rgb(230, 63, 63);
  background-color: green;
  color: #ffffff;
	font-size: 15px;
	border-radius: 2px;
	animation: fade_in_out 6s ease-in-out;
	z-index: 3000;
}

.messages .messages-close {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 19px;
	cursor: pointer;
}
.messages.hidden {
	display: none;
    pointer-events: none;
}
@keyframes fade_in_out {
	0% { opacity: 0; transform: translate(-50%, -40px); }
	30% { opacity: 1; transform: translate(-50%, 0); }
	70% { opacity: 1; transform: translate(-50%, 0); }
	100% { opacity: 0; transform: translate(-50%, -50px); }
}

/* Product_details_page */
.page-details {
    align-items: center;
    text-align: start;
    padding: 12px 30px;
    background:#ffffff;
    color: #000;
    font-weight:700;
    font-size: 24px;
}
.page-details span {
    color: #000;
    font-size: 16px;
}
.page-details span a {
    text-decoration: none;
    transition: transform 0.3s ease;
}
.page-details span a:hover {
    transform: scale(1.1);
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}
.page-details .rasquo {
    color: #ffd500;
    padding: 0 8px;
}
@media screen and (max-width:768px) {
    .page-details {
        padding: 12px 20px;
    }
}
.product-modal-container {
  margin-top:60px;
}
.product-detail-card {
    width:100%;
    border-radius:2px;
    background-color: #ffffff;
}
.product-card-top {
    padding:20px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.5fr 1fr;
}
.product-imgs {
    display:grid;
    grid-template-columns:0.2fr 1.8fr;
    gap:10px;
    justify-content:flex-start;
    align-items:start;
}
.img-display{
    overflow: hidden;
    background: #ffffff;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:12px;
    border-radius:1px;
    z-index: 999;
    width:100%;
    height:96%;
}
.img-display .prev-btn, .img-display .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    border: none;
    display:flex;
    justify-content:center;
    align-items:center;
    background: #f3f3f3;
    border-radius:50%;
    cursor: pointer;
    font-size: 14px;
    z-index: 10;
    width:30px;
    height:30px;
    z-index: 1000;
}
.img-display .prev-btn {
    left: -50px;
    opacity:0;
}
.img-display .next-btn {
    right: -50px;
    opacity:0;
}
.img-display:hover .prev-btn {
    transition:0.3s linear;
    opacity: 1;
    left:10px;
}
.img-display:hover .next-btn {
    transition:0.3s linear;
    opacity: 1;
    right: 10px;
}
.prev-btn:hover, .next-btn:hover {
    background: #ffffff;
}
.img-showcase{
    display: flex;
    width: 100%;
    max-width:100%;
    transition: all 0.5s ease;
    height:100%;
}
.img-showcase img{
    transition: opacity 0.3s ease;
    width:100%;
    max-width:100%;
    height:100%;
    object-fit:cover;
    display: block;
    cursor: zoom-in;
    z-index: 999;
}

.img-showcase img[style*="display: none"] {
    opacity: 0;
    position: absolute;
}

.img-showcase img[style*="display: block"] {
    opacity: 1;
    position: relative;
}

.img-select{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap:10px;
}
.img-select .img-item{
    width:120px;
    max-width:fit-content;
    border:0.5px solid #ccc;
    margin-right:5px;
    border-radius:1px;
}
.img-select .img-item.active {
    border: 2.4px solid #000;
    opacity:0.5;
}
.img-select .img-item img {
    height:100%;
    width:100%;
    object-fit:contain;
}
.img-item:hover{
    opacity: 0.8;
}
@media screen and (max-width:768px) {
    .prev-btn {
        opacity: 1;
        left:10px;
    }
    .next-btn {
        opacity: 1;
        right:10px;
    }
    }
@media (max-width: 500px) {
.img-showcase{
    height:400px;
}
.product-imgs {
    grid-template-columns:1fr;
    gap:5px;
    flex-wrap:wrap;
}
.img-select{
    flex-direction: row;
}

}
@media (max-width: 400px) {
.img-select .img-item{
    height:50px;      
    margin-right:2px;
    border-radius:2px;
}
}
.admin-product-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  overflow-x: scroll;
  gap: 10px;
  background-color: #f5f5f5;
}
.admin-img-item {
  width: 120px;
  height: 120px;
  position: relative;
  border: 1px solid #ccc;
  border-radius: 10px;
}
.admin-img-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;  
}
.admin-img-item .delete-image-btn {
  position: absolute;
  display: flex;
  gap:4px;
  justify-content: center;
  align-items: center;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -90%);
  background: #ffd500;
  color: #393939;
  font-size: 12px;
  text-align: center;
  padding: 5px;
  border-radius: 5px;
}
.admin-img-item .edit-image-btn {
  position: absolute;
  background: #000;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -10%);
  color: #ffffff;
  font-size: 12px;
  text-align: center;
  padding: 5px;
  border-radius: 5px;
  display: flex;
  gap:4px;
  justify-content: center;
  align-items: center;
}
.admin-product-images a:hover {
  color: #393939;
  background: #ffd500;
}
.admin-product-images .add-image-btn {
  background-color: #ffffff;
  color: #ffd500;
  padding: 10px;
  border: 1px dotted #ffd500;
  border-radius: 10px;
  color: #393939;
  text-decoration: none;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size:16px;
  transition: all 0.3s ease;
}
.admin-product-images .add-image-btn:hover {
  background-color: #ffd500;
  color: #393939;
}
@media screen and (max-width:768px) { 
  .admin-product-images {
    justify-content: flex-start;
    padding: 4px;
    gap: 5px;
    color: #393939;
  }
  .admin-img-item {
    width: 80px;
    height: 80px;
    border-radius: 2px;
  }
  .admin-img-item img {
    border-radius: 2px;
  } 
  .admin-product-images .add-image-btn {
    font-size: 12px;
  } 
}
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6000;
  }
  
  .modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
  }
  
  .modal-content {
    position: relative;
    width: 90%;
    height: 90%;
    margin: 2% auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .modal-image-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #modalImage {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transform-origin: center;
    transition: transform 0.3s ease;
    cursor: zoom-in;
  }
  
  .zoomed {
    cursor: move !important;
  }
  
  .close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #f1f1f1;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
  }
  
  .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px;
    cursor: pointer;
    font-size: 20px;
    border: none;
    border-radius: 1px;
    z-index: 1001;
    transition: background-color 0.3s;
  }
  
  .nav-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  #prevButton {
    left: 15px;
  }
  
  #nextButton {
    right: 15px;
  }
  
  .zoom-controls {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    display: flex;
    gap: 10px;
  }
  
  .zoom-button {
    background: white;
    color: black;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
  }
  
  .zoom-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  
.product-info {
    display: flex;
    flex-direction: column;
    padding: 15px 40px;
}
.product-info .card-title {
    font-size:22px;
    text-transform: uppercase;
    color:#000;
    font-weight:600;
    margin-bottom:10px;
}
.product-info .card-text {
    display:flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 7px;
    gap:10px;
    color:#333;
    font-size: 16px;
    padding-bottom:5px;
}
.product-info .card-text .product-price {
    color:#000;
    font-weight:600;
    font-size: 18px;
}
.product-info .card-text .former_price {
    color:#363535;
    font-weight:400;
    font-size: 16px;
    text-decoration: line-through;
}
.product-info .card-title .percentage_offer {
    color:#17a2b8;
    font-weight:700;
    font-size: 16px;
}
.product-info .card-text .product_availability_tag {
    color:#ffffff;
    color:rgba(0, 128, 0, 0.9);
    font-weight:500;
    font-size: 16px;
    border-radius:4px;
    padding:3px;
    text-align: center;
}
.social-share-links-container {
    display: flex;
    justify-content: flex-start;
    gap:14px;
    flex-wrap: wrap;
    align-items: center;
    padding-top:8px;
    margin:10px 0;
}
.social-share-links-container a>i {
   color:#000;
   font-size:14px;
   border:1px solid #ccc;
   padding:4px;
   width:24px;
   height:24px;
   cursor:pointer;
   transition: all .3s linear;
   display:flex;
   align-items: center;
   justify-content: center;
   border-radius:50%;
}
.social-share-links-container a .fa-x-twitter {
    background:#000;
    color:#ffffff;
 }
 .social-share-links-container a .fa-facebook {
    background:rgb(33, 116, 249);
    color:#ffffff;
 }
 .social-share-links-container a .fa-whatsapp {
    background:green;
    font-size:17px;
    color:#ffffff;
 }
 .social-share-links-container a .fa-instagram {
    background:#ffd500;
    color:#ffffff;
 }
 .social-share-links-container a .fa-tiktok {
    background:#000;
    font-size:17px;
    color:#ffffff;
 }
.social-share-links-container .share-title-container {
    display:flex;
    gap:8px;
    align-items: center;
    justify-content:flex-start;
    font-size:13px;
    color:#363535;
    cursor:pointer;
}
.social-share-links-container .share-title-container img {
    width:20px;
 }

.social-share-links-container a>i:hover {
   opacity:0.8;
}

.social-share-links-container a,
.product .add-to-wishlist-btn .heart-icon {
    position: relative;
}

.social-share-links-container a::after,
.product .add-to-wishlist-btn .heart-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 1px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    z-index: 2000;
    transition: opacity 0.3s, visibility 0.3s;
    clip-path: polygon(
        0% 0%, 100% 0%, 100% 80%, 55% 80%, 50% 100%, 45% 80%, 0% 80%
    );
    padding-bottom: 10px;
}

.social-share-links-container a:hover::after,
.product .add-to-wishlist-btn .heart-icon:hover::after {
    opacity: 1;
    visibility: visible;
}

.product-info .cart-form {
    margin-top: 18px;
}
.product-info .cart-form label {
    display:inline-block;
    margin-bottom:5px;
    font-size:16px;
    color:#333
 }
 
 .quantity-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 25px;
    overflow: hidden;
}

.quantity-input-wrapper .quantity-btn {
    background: #f3f3f3;
    border: none;
    color: #333;
    font-size: 14px;
    padding: 12px 14px;
    cursor: pointer;
}
.quantity-input-wrapper .quantity-btn:hover {
    background: #e0e0e0;
}
.quantity-input-wrapper .quantity-input {
    text-align: center;
    border: none;
    font-size: 14px;
    -moz-appearance: textfield;
    width: 50px;
}
.quantity-input-wrapper .quantity-input::-webkit-inner-spin-button,
.quantity-input-wrapper .quantity-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.size-group, .color-group {
    margin-bottom: 20px;
  }
  .option-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
  }
  .size-options, .color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .color-select-container {
    display:flex;
    justify-content:center;
    align-items:center; 
    gap:5px;
  }
  .size-option {
    width: 26px;
    height: 26px;
    border: 2px solid #ddd;
    border-radius:50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 400;
    font-size:11px;
    background: white;
    padding:4px;
  }
  .size-option:hover {
    color:#ffd500;
    border: 2px solid #ffd500;
  }
  .color-option {
    width:  22px;
    height: 22px;
    border-radius:50%;
    cursor: pointer;
    transition: transform 0.2s ease;
    border: 2px solid #ddd;
  }
  .color-option.active {
    transform: scale(1.1);
    border: 2px solid #ffd500;
  }
  .color-option.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size:12px;
    text-align: center;
    color:#ffffff;
    opacity: 1;
  }
  .size-option.selected {
    color:#ffd500;
    border: 2px solid #ffd500;
  }
  .color-option:hover {
    transform: scale(1.1);
  }
  .btn:disabled {
    opacity:0.6;
    cursor: not-allowed;
  }
  .hidden-input {
    display: none;
  }
  .print-customization {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
}
.print-customization h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.print-customization label {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.print-customization select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
    font-size: 15px;
}
.print-customization .artwork-upload {
    margin-bottom: 1rem;
    font-size: 15px;
}
.print-customization .artwork-upload label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 15px;
}
.print-customization .artwork-upload input[type="file"] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
    font-size: 15px;
}
.print-customization .special-requirements {
    margin-bottom: 1rem;
    font-size: 15px;
}
.print-customization .special-requirements label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 15px;
}
.print-customization .special-requirements textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
    font-size: 15px;
}
.print-customization .price-summary {
    margin-top: 1rem;
}
.design-price {
    font-size: 15px;
    margin-bottom: 10px;
}
.print-customization .price-summary .base-price {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 15px;
}
.print-customization .price-summary .customization-cost {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 15px;
}
.print-customization .price-summary .total-price {
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 15px;
    color: #393939;
}
.print-customization .price-summary .total-price span {
    font-weight: 600;
    font-size: 16px;
    color: #000;
}
/* Print Position Section Styling */
.print-position-section {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fafafa;
}

.print-position-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.print-position-section .section-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

.print-position-options select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    background-color: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.print-position-options select:focus {
    outline: none;
    border-color: #ffd500;
    box-shadow: 0 0 0 3px rgba(232, 153, 27, 0.1);
}

.custom-position-input {
    margin-top: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.custom-position-input label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.custom-position-text-input {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.custom-position-text-input:focus {
    outline: none;
    border-color: #ffd500;
    box-shadow: 0 0 0 3px rgba(232, 153, 27, 0.1);
}

.custom-position-text-input::placeholder {
    color: #999;
    font-style: italic;
}
.print-customization .add-to-cart-btn-container {
    margin-top: 1rem;
}
.price-summary .base-price {
    font-weight: 500;
    margin-bottom: 12px;
    color: #393939;
    font-size: 17px;
}
.price-summary .base-price span {
    font-weight: 700;
    padding-left: 5px;
    color: #000;
    font-size: 18px;
}
.price-summary .customization-cost {
    font-weight: 500;
    margin-bottom: 12px;
    font-size: 17px;
    color: #393939;
}
.price-summary .customization-cost span {
    font-weight: 700;
    color: #000;
    padding-left: 5px;
    font-size: 17px;
}
.price-summary .total-price {
  font-weight: 500;
  margin-bottom: 12px;
  font-size: 16px;
  color: #393939;
}
.price-summary .total-price span {
  font-weight: 700;
  color: #ffd500;
  padding-left: 5px;
  font-size: 18px;
  color: #000;
}
.cart-form .add-to-cart-btn-container  {
    display:flex;
    justify-content:flex-start;
    flex-wrap:wrap;
    align-items:center;
    gap:20px;
}
.cart-form .add-to-cart-btn-container .variant-add-to-cart-btn {
    display:flex;
    justify-content:center;
    align-items:center;
    gap:5px;
    width:50%;
    padding:12px;
    background:#ffd500;
    color:#393939;
    border:none;
    border-radius:25px;
    cursor:pointer;
    position: relative;
}
.product_card_form .add-to-cart-btn {
    display:flex;
    justify-content:center;
    align-items:center;
    gap:5px;
    background:#ffd500;
    color:#ffffff;
    border:none;
    border-radius:1px;
    cursor:pointer;
    position: relative;
}
.product_card_form .add-to-cart-btn>span {
    color:#393939;
    font-size: 12px;
}
.add-to-cart-btn-loader {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    background: #ffd500;
    z-index: 10;
}

.add-to-cart-btn-loader .bubbles {
    display: flex;
    gap: 5px;
}

.add-to-cart-btn-loader .bubble {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #393939;
    animation: bubble-bounce 0.6s infinite ease-in-out;
}

.add-to-cart-btn-loader .bubble:nth-child(2) {
    animation-delay: 0.2s;
}

.add-to-cart-btn-loader .bubble:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bubble-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.cart-form .add-to-cart-btn-container .variant-add-to-cart-btn .cart-icon{
   font-size:17px;
}
 .cart-form .add-to-cart-btn-container .variant-add-to-cart-btn:hover {
    background:#000;
    color:#ffffff;
 }
 .whatsapp-order-form {
     margin-top: 20px;
 }
.whatsapp-order-form .order-via-whatsapp-button-container  {
    margin:10px 0;
    display:flex;
    justify-content:flex-start;
    align-items:center;
    text-align: center;
}
.whatsapp-order-form .order-via-whatsapp-button-container .order-via-whatsapp-button {
    color:#ffffff;
    background:green;
    padding:11px 30px;
    font-size:13px;
    display:flex;
    align-items: center;
    justify-content: center;
    text-align:center;
    border-radius:25px;
}
.whatsapp-order-form .order-via-whatsapp-button-container .order-via-whatsapp-button.disabled {
    opacity: 0.8;        
    cursor: not-allowed;
    pointer-events: auto;
}
.whatsapp-order-form .order-via-whatsapp-button-container .order-via-whatsapp-button .fa-whatsapp{
    font-size:22px;
    padding-right:10px;
}
.whatsapp-order-form .order-via-whatsapp-button-container .order-via-whatsapp-button>a{
   font-size:12px;
   color:#ffffff
}
@media screen and (max-width:500px) {
    .whatsapp-order-form .order-via-whatsapp-button-container .order-via-whatsapp-button {
        width:100%;
    }
    .cart-form .add-to-cart-btn-container .variant-add-to-cart-btn {
        width:100%;
    }
}

  .more-product-details-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    border: 2px solid #f3f3f3;
    max-width: fit-content;
    margin: 15px auto;
    border-radius: 2px;
    position: relative; /* Added to position the sliding border */
}
.more-product-details-container .details-headings {
    padding: 10px 24px;
    color: #000;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease-in-out;
}
.more-product-details-container .sliding-border {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background-color: #ffd500;
    transition: all 0.3s ease-in-out;
    width: 0;
}

.more-product-details-container .details-headings.active {
    font-weight: 600;
    color: #ffd500;
}
.product-description-container {
    padding:20px;
}
.product-description-container .product-description-title {
    color:#000;
    font-size:22px;
    font-weight:500;
    padding-bottom:8px;
    margin-bottom:10px;
    border-bottom:1px solid #ffffff;
}
.product-description-container .product-description-title>span {
    color:#ffd500;
    font-size:20px;
    font-weight:500;
}
.product-description-container .description-text {
    list-style-type: disc;
    padding:3px 0;
    margin-left:22px;
    color:#363535;
    font-size:15px;
    font-weight:400;
    line-height:30px;
}
.container1, .container2, .container3 {
    margin-top:30px;
    padding:0 20px;
}
.container2 {
    display:flex;
    flex-direction:column;
    gap:10px;
}
.container2 .product_desc {
    display:flex;
    gap:10px;
    justify-content:flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin:16px 0;
}
.container2 .product_desc .product_colors_list,
.container2 .product_desc .product_sizes_list {
    border:1px solid #ccc;
    font-size:13px;
    padding:6px 10px;
    border-radius:5px;
    
}
.container2 .product_desc h4 {
    color:#000;
    font-size:17px;
    font-weight:500;
}
.container2 .product_desc p {
    color:#363535;
    font-size:15px;
    font-weight:400;
}
.product-description-container .container2,
.product-description-container .container3 {
  display:none;
}

/* product review */
.main-product-reviews-container {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    justify-content:center;
    align-items: start;
}
@media (max-width: 768px) {
   .main-product-reviews-container {
        grid-template-columns:1fr;
    }
    .container1, .container2, .container3 {
        margin-top:20px;
        padding:5px;
    }
}
.review-form .star-rating {
    direction: rtl;
    display: inline-block;
}

.review-form .star-rating input {
    display: none; /* hidden radio buttons */
}

.review-form .star-rating label {
    font-size: 22px;
    color: #363535; 
    cursor: pointer;
}

.review-form .star-rating input:checked ~ label {
    color: #ffa500;
}

.review-form .star-rating label:hover,
.review-form .star-rating label:hover ~ label {
    color: #ffa500;
}

.review-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width:100%;
}
.review-form p {
    display: block;
    margin-bottom: 10px;
    width:100%;
}
.review-form input[type="text"] {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border-bottom:1px solid #ccc;
    background:transparent;
    &:focus {
        border-bottom:1px solid #ffd500;
    }
}
.review-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 10px;
    resize: vertical;
    border-bottom:1px solid #ccc;
    background:transparent;
    &:focus {
        border-bottom:1px solid #ffd500;
    }
}
.product-review-posts-container {
    margin-bottom:30px;
    border:1px solid #ccc;
    padding:20px;
    height:100%
}
.product-review-posts-container .total-reviews,
.product-review-posts-container .review-customer-name,
.product-review-posts-container .review-comment  {
    margin-bottom:20px;
    font-weight:400;
    font-size:17px;
    color:#333;
}
.product-review-posts-container .total-reviews>span,
.product-review-posts-container .review-customer-name>span,
.product-review-posts-container .review-comment>span  {
    font-weight:500;
    color:#000;
}
.product-review-posts-container .user-review {
    margin-bottom:12px;
    border-bottom:1px solid #ffffff;
}
.product-review-posts-container .no-reviews-yet {
    color:#000;
    font-size:16px;
    padding:10px 0;
    font-weight:400;
}
.product-review-posts-container .no-reviews-yet>span {
    color:#000;
    font-size:16px;
    font-weight:700;
}
.product-review-posts-container p {
    color:#363535;
    font-size:16px;
    padding:4px 0;
    font-weight:500;
}
.product-review-posts-container p>span {
    color:#000;
    font-size:16px;
    padding:8px 0;
    font-weight:400;
}
.product-review-posts-container .star-rating {
    color: #ffa500;
 
}
.product-review-posts-container .star-rating .star-customer-rated {
    color: #ffa500;
    font-size: 20px;
}
.product-review-posts-container .star-rating .star-unrated {
    color:#363535;
    font-size: 20px;
}

.review-container {
    font-family: Arial, sans-serif;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .review-title {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .review-overview {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .review-score {
    font-size: 22px;
    font-weight: 700;
    margin-right: 10px;
  }
  
  .review-stars i {
    color: #ffa500;
    margin-right: 2px;
  }
  
  .review-count {
    font-size: 14px;
    color: #999;
    margin-left: 10px;
  }
  
  .review-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .review-bar {
    display: flex;
    align-items: center;
  }
  
  .review-bar-label {
    width: 60px;
    font-size: 14px;
  }
  
  .review-bar-progress {
    flex-grow: 1;
    height: 10px;
    background-color: #ddd;
    border-radius: 5px;
  }
  
  .review-bar-percentage {
    width: 40px;
    font-size: 14px;
    text-align: right;
  }
  .product_review_btn {
    display: inline-block;
    padding: 13px 22px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: #ffd500;
    border-radius: 2px;
    transition: background-color 0.3s ease;
    cursor:pointer;
  }
  .product_review_btn:hover {
    background-color: #333;
  }
.related-products {
    padding:30px;
}
.related-products  .related-products-subheading {
    color:#000;
    font-weight:600;
    font-size:26px;
    padding:20px 0;
    text-align:center;
}
.related-products-container {
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:10px;
    justify-content:center;
    align-items:center;
}
.product-detail-section {
  background-color:#f3f3f3;
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width:768px) {
.product-detail-section {
    margin: 20px 10px;
}
.product-card-top {
    grid-template-columns:100%;
    gap:10px;
    padding:10px;
}
.product-card-img-container {
   order:1;
}
.product-card-top  .product-card-img-sm {
   order:2;
}
.product-card-top .product-info {
   order:3;
}
.product-info {
    padding: 5px 8px;
}
.product-card-img-container {
    height: 400px;
}
.product-card-img-container .product-image {
    object-fit: contain;
}
.product-card-img-sm {
    width: 80px;
    height: 80px;
    border-radius:5px;
}
.product-card-img-sm img {
    object-fit: cover;
}
.more-product-details-container {
    gap:15px;
}
.more-product-details-container .details-headings {
    margin-bottom:8px;
}
.related-products {
    padding:5px;
    }
.related-products-container {
    grid-template-columns:repeat(2, 1fr);
    gap:10px;
}
}

/* privacy policy */
.privacy-policy-container {
    padding:40px;
}
.privacy-policy-container h2 {
   line-height:30px;
   text-align: center;
   font-size:20px;
   font-weight:700;
   color:#000;
   padding:15px 0;
}
.privacy-policy-container h3 {
    line-height:30px;
    font-size:17px;
    font-weight:600;
    color:#000;
    padding:10px 0;
 }
.privacy-policy-container p {
   line-height:30px;
   font-size:15px;
   font-weight:400;
   color:#333;
}
@media screen and (max-width:768px) {
    .privacy-policy-container {
        padding:10px;
    }
}
/* All products page /product-list */
.products-container-page {
    padding:0 10px;
}
.products-container-page .categories-list {
    display:flex;
    justify-content: center;
    align-items: center;
    gap:10px;
    flex-wrap:wrap;
    background:#f3f3f3;
    padding:8px 0;
}
.filtered-products-container {
    margin-top:20px;
}
.no-filtered-product-category {
    text-align: center;
    color:#333;
    font-weight:700;
    font-size:18px;
    padding:5px 0;
    background: rgb(224, 197, 195);
}
.filtered-products-container .filter-icon {
    width:20px;
}
.filtered-products-container .filter-products-btn {
    display:none;
}
.products-container-page .categories-list .category-item {
    padding:5px 10px;
    border-radius:2px;
    color:#000;
    font-weight:500;
    font-size:18px;
    position:relative;
    margin-bottom:2px;
}
.products-container-page .categories-list .category-item::after {
    content:"";
    position: absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    width:0;
    height:2.8px;
    background:#ffd500;
    margin-bottom:1px;
    transition:0.3s ease-in-out;
}
.products-container-page .categories-list .category-item:hover::after {
   width:80%;
}
.products-container-page .categories-list .category-item.active::after {
   width:80%;
}

.all-products-page-container {
    display:grid;
    max-width: 1400px;
    margin:0 auto;
    grid-template-columns:1fr 5fr;
    gap:50px;
    justify-content:start;
}
 .filters-container {
    display:block;
    padding-right:20px;
}
.side-category-container {
    border-bottom:1px solid var(--newgrayColor);
    padding:10px 0;
}
.categories-side-list a {
    color:#000;
    font-size:20px;
    margin-bottom:6px;
    font-weight:500;
}
.product-subcategory-list a {
    color:#000;
    font-size:16px;
    font-weight:400;
    padding-left:6px;
}
.brands-title {
    color:#000;
    font-size:19px;
    font-weight:500;
}
.layout-selector {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}
.layout-selector img {
    width:22px;
    height:22px;
    background: #f3f3f3;
    cursor: pointer;
    border-radius:1px;
    opacity:0.5;
}
.layout-selector img.active {
   opacity:1;
   background:var(--fromgrayColor);
   border:1px solid #ccc;
}

.layout-selector img:hover {
   opacity:0.8;
}
.products_list_page_container {
    display: grid;
    gap: 12px;
    justify-content: center;
    align-items: start;
    margin-top: 40px;
}

.products_list_page_container.columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.products_list_page_container.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.products_list_page_container.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.products_list_page_container.columns-1 {
    grid-template-columns: 1fr;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.step-links {
    display: flex;
    align-items: center;
    background-color:#ffffff;
    border-radius: 10px;
    padding: 5px;
   
}

.step-links a {
    color: #333;
    text-decoration: none;
    padding: 8px 12px;
    margin: 0 2px;
    border-radius: 10px;
    transition: background-color 0.3s, color 0.3s;
}

.step-links a:hover {
    background-color: #000;
    color: white;
}
.pagination-link-first, .pagination-link-last {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f3f3;
    color: black;
    border-radius: 10px;
    padding: 6px 20px;
}
.current {
    padding: 8px 12px;
    background-color: #000;
    color: #ffffff;
    border-radius: 10px;
    margin: 0 5px;
}
.pagination-link {
    display:flex;
    align-items: center;
    justify-content:center;
}
.products-page-top {
    display: flex;
    justify-content: space-between;
    flex-wrap:wrap;
    align-items: center;
    margin-bottom: 20px;
    padding:10px 20px;
    border-radius:4px;
    background:#ffffff;
    gap:40px;
}
.products-page-top h5 {
    padding-left:5px;
    position: relative;
    font-size: 17px;
    color: #000;
    font-weight: 500;
}

.products-page-top h5::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ffd500;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%); 
    left: -10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.products-page-top p {
   font-size:17px;
   color:#363535;
   font-weight:400;
}
.products-page-top p>span {
   color:#333;
   font-weight:500;
}
@media (max-width: 600px) {
    .step-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .step-links a, .current {
        margin: 2px;
    }
}

.all-products-page-container .filters-mobile-menu .product-filters-close {
    display:none;
 }
 .filtering-sorting-container {
    display: flex;
    align-items: start;
    justify-content:start;
    flex-direction: column;
    gap:34px;
    background:#f3f3f3;
    padding:30px;
    border-radius:2px;
}
.filtering-sorting-container h4 {
   color:#000;
   font-size:18px;
   font-weight:600;
   margin-bottom:15px;
}

/* Dropdown Styling */
.filtering-sorting-container select,
.products-page-top select {
    padding:8px;
    border-radius:2px;
    background-color: #fff;
    font-size: 16px;
    font-weight:500;
    border:1px solid #ccc;
    cursor: pointer;
}
.filtering-sorting-container select {
    width:100%;
}
/* Dropdown focus state */
.filtering-sorting-container select:focus,
.products-page-top select:focus {
    outline: none;
    border-color:#ffd500;
    box-shadow: 0 0 0 2px rgba(188, 164, 55, 0.2);
}

/* Styling the options */
.filtering-sorting-container select option {
    padding: 10px;
    background-color: #fff;
    color: #333;
}
.filtering-sorting-container select option:hover {
    background-color: #f3f3f3;
    color: #333;
    cursor:pointer;
}
/* Styling the selected option */
.filtering-sorting-container select option:checked {
    background-color: #ffd500;
    color: #fff;
}

/* For Firefox */
.filtering-sorting-container select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}
/* Slider Styling */
.price-filter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.price-filter label {
    font-size: 16px;
    color:#000;
    margin-bottom:8px;
    font-weight:500;
}

.price-filter input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
}

.price-filter input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background:#ffd500;
    cursor: pointer;
    border-radius: 50%;
}
.availability-filter {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.size-filter {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
}

.filtering-sorting-container input[type="checkbox"] {
    margin-right:4px;
    cursor:pointer;
}

.clear-filters-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1rem;
    background-color: #f3f4f6;
    color: #374151;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.clear-filters-btn:hover {
    cursor: pointer;
    background-color: #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.clear-filters-btn .btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}
.clear-filters-btn.compact {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
}
/* Material Filter Styles */
.material-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    }
.material-filter h4 {
    font-size: 16px;
    color:#000;
    font-weight: 500;
}
/* Color Filter Styles */
.color-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    }
.color-filter-title {
    font-size: 16px;
    color:#000;
    font-weight:500;
    }

.color-button {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    }

.color-button:hover {
    transform: scale(1.1);
}

.color-button.selected {
    border-color: #333;
}

.color-button.selected::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 16px;
    }

.color-button span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
    }

    /* Tooltip for color names */
.color-button::before {
    content: attr(data-color);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .color-button:hover::before {
    opacity: 1;
    visibility: visible;
    }

@media screen and (max-width:950px) {
    .products_list_page_container.columns-4 {
        grid-template-columns:repeat(3, 1fr);
        gap:10px;
        justify-content:center;
        align-items:start;
        margin-top:40px;
    }
}
@media screen and (max-width:800px) {
.all-products-page-container {
    grid-template-columns:100%;
    gap:10px;
}
.products_list_page_container.columns-4 {
    grid-template-columns:repeat(2, 1fr);
    gap:5px;
}
.products-container-page .categories-list .category-item {
    padding:2px 5px;
    font-size:16px;
    margin-bottom:2px;
}
.filtered-products-container .filter-products-btn {
    display:block;
}

.filters-container {
    display:none;
}
.all-products-page-container .filters-mobile-menu {
    position:fixed;
    top:0;
    left:-100%;
    width:0;
    display:flex;
    align-items:start;
    justify-content:start;
    flex-direction:column;
    gap:10px;
    padding:60px 20px;
    background:#ffffff;
    color:#000;
    z-index:2000;
    max-height: 100vh;
    height: auto;
    overflow-y: auto;
    transition:0.3s ease-in-out;
}
.all-products-page-container .filters-mobile-menu::-webkit-scrollbar {
    width:2px;
    }
.all-products-page-container .filters-mobile-menu::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    }

.all-products-page-container .filters-mobile-menu::-webkit-scrollbar-thumb {
    background-color: #000;
    }

.all-products-page-container .filters-mobile-menu .product-filters-close {
    display:block;
    position:absolute;
    top:25px;
    right:10px;
    width:24px;
}
.all-products-page-container .filters-mobile-menu.active {
    width:60%;
    gap:10px;
    left:0;
}
}
@media screen and (max-width:320px) {
.products_list_page_container.columns-4 {
    grid-template-columns:1fr;
}
}
 

/*mobilenav-search-form-modal */
#search-form-modal {
    z-index: -1;
    position: fixed;
    left:0;
    top: 9%;
    width: 100%;
    height:100%;
    background:rgba(0,0,0,0.8);
    justify-content: center;
    opacity:0;
    transition:0.3s ease-in-out;
}
#search-form-modal.active  {
    display: flex;
    opacity:1;
    z-index: 200;
}
#search-form-modal .mobile-search-form-wrapper {
    transform: translateY(50px);
    position:relative;
    opacity:0;
    background-color: #fff;
    width: 100%;
    height:fit-content;
    transition:0.3s ease-in-out;
   
}
#search-form-modal.active .mobile-search-form-wrapper {
    opacity:1;
    transform: translateY(0);
    padding:20px;
}
.mobile-search-form-wrapper .mobile-search-form {
    width:100%;
    display: flex;
    flex-wrap: nowrap;
    align-items:flex-end;
    padding:10px;
    padding-top:10px;
}
.mobile-search-form-wrapper .mobile-search-form input {
    font-size:16px;
    padding:12px;
    padding-bottom:5px;
    color:#000;
    width:100%;
    border-bottom:1.4px solid #000;
}
.mobile-search-form-wrapper .mobile-search-form input::placeholder {
    font-size:15px;
    color:#363535;
    opacity:0.7;
}
.mobile-search-form-wrapper .mobile-search-form input:focus::placeholder {
    opacity:0.2;
    transform:translateY(-10px);
}
.mobile-search-form-wrapper .mobile-search-form .mobile-search-button {
    border-bottom:1.4px solid #000;
    cursor:pointer;
}
.mobile-search-form-wrapper .mobile-search-form .mobile-search-button img {
  width:17px;
}
@media screen and (max-width:310px){
    .mobile-search-form-wrapper .mobile-search-form {
        flex-wrap:wrap;
    }
}
/* mobile-search results */
#search-form-modal .mobile-search-form-wrapper .mobile-search-results-grid-container {
    position:absolute;
    left:0;
    top:100%;
    width:100%;
    bottom:0;
    min-height:0;
    height:fit-content;
    z-index:6000;
    background:#ffffff;
    flex-direction:column;
    justify-content:center;
    align-items:start;
    gap:10px;
    padding:10px;
    padding-top:20px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

#search-form-modal .mobile-search-form-wrapper .mobile-search-results-grid-container::-webkit-scrollbar {
    width:2px;
}
#search-form-modal .mobile-search-form-wrapper .mobile-search-results-grid-container::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}
#search-form-modal .mobile-search-form-wrapper .mobile-search-results-grid-container::-webkit-scrollbar-thumb {
    background-color: #000;
}
#search-form-modal .mobile-search-form-wrapper .mobile-search-results-grid-container.active {
  display: flex;
}
#search-form-modal .mobile-search-form-wrapper .mobile-search-results-grid-container .result-item {
    list-style-type: none;
    margin-bottom:5px;
    font-size: 14px;
    display:flex;
    align-items: center;
    border-bottom:1px solid #ffffff;
}
#search-form-modal .mobile-search-form-wrapper .mobile-search-results-grid-container .result-item .result-item-img  {
    width:40px;
    height:40px;
}
#search-form-modal .mobile-search-form-wrapper .mobile-search-results-grid-container .result-item .result-item-img img {
    width:100%;
    height:100%;
    object-fit: contain;
}
#search-form-modal .mobile-search-form-wrapper .mobile-search-results-grid-container .result-item .result-item-body {
    padding:5px;
}
#search-form-modal .mobile-search-form-wrapper .mobile-search-results-grid-container .result-item-body a  {
    color:#333;
    font-size:13px;
    font-weight:700;
}
#search-form-modal .mobile-search-form-wrapper .mobile-search-results-grid-container .result-item-body a:hover {
    color:#ffd500;
}
/* search results ends */

/* search results for search page */
.search-results-container {
	background:#ffffff;
	font-size:16px;
	padding:30px;
}
.search-results-container .search-results-heading {
	color:var(--main_blue_Color);
	font-weight:600;
	padding:20px 0;
	font-size:19px;
}
.search-results-container .search-results-heading> span {
	color:#000;
	font-size:16px;
	font-weight:500;
}
.results-list .results-found {
	font-size:18px;
	padding-bottom:10px;
}
.search-results-grid-container {
	display:grid;
	grid-template-columns:repeat(6, 1fr);
	justify-content:center;
	align-items:center;
	gap:30px;
	margin-top:30px;
}
.search-results-container ul .result-item {
	list-style-type: none;
	margin-bottom:15px;
	font-size: 18px;
	display:flex;
	flex-direction:column;
    border:1px solid #ccc;
}
.result-item .result-item-img  {
	width:100%;
	height:140px;
}
.result-item .result-item-img img {
	width:100%;
	height:100%;
	object-fit: contain;
}
.result-item .result-item-body {
	padding:10px;
	color:#333;
	font-size:17px;
}
.result-item-body a  {
	color:#000;
	font-size:16px;
}
.result-item-body a:hover {
	color:#ffd500;
}
.search-results-container ul li::marker {
	color:var(--main_blue_Color);
}

.results-list .no-search-result-note {
	font-size:18px;
	color:#000;
	font-weight:600;
}
.results-list .search-tip-heading {
	font-size:17px;
	color:var(--main_blue_Color);
	font-weight:600;
	text-decoration: underline;
}
.results-list .search-tip {
	font-size:15px;
	color:#000;
	line-height:30px;
	font-weight:500;
	list-style-type: disc;
	margin-left:20px;
}
/* search results ends */
#search-form-container {
	padding:20px;
	margin:0 auto;
}
.search-heading {
    color: #000;
    font-size: 22px;
    font-weight: 600;
    padding: 25px 0;
    text-align: center;
}
#message {
	padding:15px;
	border:1px solid #000;
	font-size:16px;
	padding:14px;
	padding-bottom:5px;
	color:#000;
	width:100%;
	border-bottom:2px solid #000;
}
 #message::placeholder {
	font-size:15px;
	color:#363535;
	opacity:0.9;
}
#message:focus::placeholder {
	opacity:0.2;
	transform:translateY(-10px);
}
@media screen and (max-width:768px) {
.search-results-grid-container {
	grid-template-columns:repeat(3, 1fr);
	gap:20px;
}
}
@media screen and (max-width:500px) {
.search-results-grid-container {
	grid-template-columns:repeat(2, 1fr);
	gap:20px;
}
}
    @media screen and (max-width:340px){
	.search-form-container .search-form {
		flex-wrap:wrap;
	}
}

/* Cart-styling-section */
.cart-section {
    background-color:#f3f3f3;
    color: #333;
    max-width: 1400px;
    width:100%;
    margin: 0 auto;
    padding: 10px;
}

.cart-container {
    display:grid;
    gap:30px;
    grid-template-columns:3fr 1fr;
    justify-content:center;
    padding:20px;
    padding-top:0;
    margin-top:10px;
    border-radius: 12px;
    background:#ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.cart-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1rem;
}
.cart-item {
    display: flex;
    justify-content:flex-start;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}
.cart-item-info {
    display: flex;
    justify-content:flex-start;
    flex-direction: column;
    align-items:start;
    gap:5px;
}
.cart-item-info p {
  margin: 0;
  font-size: 14px;
  color: #333;
  border-bottom: 1px solid #f3f3f3;
  padding-bottom: 8px;
}
.cart-item-info a .cart-item-name {
  color: #333;
  font-size: 18px;
  font-weight: 700;
}
.cart-item-info a .cart-item-name:hover {
  opacity: 0.8;
}
.cart-item-info span {
  font-weight: bold;
}
.cart-item-info .printing-details {
  margin-top: 4px;
}
.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-right: 20px;
    border-radius: 3px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cart-item p {
    font-size:16px;
    color:#333;
    transition: color 0.3s ease;
}
.cart-item p:hover {
    color:#ffd500;
}

.update-cart-quantity-container {
    display:flex;
    background: #f4f6f7;
    align-items:center;
    border-radius:5px;
    border:1px solid #ccc;
    padding: 6px 8px;
    gap:6px;
}
.update-cart-quantity-container .decrease-quantity,
.update-cart-quantity-container .increase-quantity {
   cursor:pointer;
   transition: color 0.3s ease;
}
.update-cart-quantity-container .chevron {
    color: #363535;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}
.update-cart-quantity-container .chevron:hover {
    color: #ffd500;
}
.cart-item-quantity {
    margin: 0 0.5rem;
    font-weight: 500;
    color:var(--darkGrayColor);
}
@media screen and (max-width:768px) {
.cart-container {
    gap:20px;
    grid-template-columns:100%;
    padding:10px;
}
}
@media screen and (max-width:530px) {
.cart-container {
    gap:20px;
    grid-template-columns:100%;
    padding:10px;
}
.cart-item {
    gap:5px;
    padding:5px;
}
.cart-item img {
    width: 50px;
    height: 50px;
    object-fit:contain;
    border-radius: 2px;
    margin-right: 5px;
}
.cart-item p {
    font-size:14px;
}

.table-headings-row th {
    font-size:16px;
}
.table-subtotal {
    display:none;
}
}

@media screen and (max-width:400px){
.table-size_color {
    display:none;
}
.update-cart-quantity-container {
    flex-direction: column-reverse;
    border-radius:2px;
    border:1px solid #ccc;
    padding: 3px 8px;
}
}
th {
    border-bottom: 1.7px solid #f3f3f3;
    padding:10px 0;
    text-align:start;
}
td {
    border-bottom: 1px solid #f3f3f3;
}
.table-headings-row th {
    text-transform: uppercase;
    color: #333;
    font-weight:700;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f3f3f3
}

.table-contents-row:hover {
    background-color: #f9f9f9;
}
.update-cart-form button {
    display:flex;
    justify-content: center;
    align-items: center;
    background: #f3f3f3;
    width:32px;
    height:32px;
    border-radius: 50%;
}
.update-cart-form .remove-btn{
    color:#363535;
    font-size:24px;
    cursor:pointer;
}
.update-cart-form .remove-btn:hover{
    color:#ffd500;
}

.cart-summary-container {
    background:#ffffff;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #ecf0f1;
    border-top:none;
}
.cart-total {
    margin:10px 0;
}
.cart-total-column .cart-column-title {
    font-size:20px;
    color:#000;
    font-weight:600;
    padding-bottom:10px;
    margin-bottom:14px;
    border-bottom: 2px solid #ecf0f1;
}
.cart-total-column p {
    display: flex;
    justify-content: space-between;
    font-size:16px;
    border-bottom:1px solid #ecf0f1;
    line-height:30px;
    color:#363535;
    padding:10px 0;
}
.cart-total-column p span {
    color:#333;
    font-weight:500;
}
.cart-total-column p .overall-cart-total {
    font-size:18px;
    color:#ffd500;
    font-weight:500;
    padding:4px 8px;
}
.cart-actions  {
    display:flex;
    justify-content:flex-start;
    gap:10px;
    flex-direction:column;
}
.cart-actions .continue-to-checkout-btn {
    cursor:pointer;
    text-align: center;
    padding:12px 16px;
    font-size:15px;
    font-weight:700;
    color:#000;
    width:100%;
    background:#ffd500;
}
.cart-actions .continue-to-checkout-btn:hover {
    opacity:0.8;
}
tr td {
    padding:10px;
}
.empty-cart-message-container {
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items: center;
    text-align:center;
    gap:15px;
    padding:60px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.empty-cart-message-container img {
    width:50px;
    height:auto;
    opacity:0.6;
}
.empty-cart-message-container p {
    color:#333;
    font-size:16px;
    line-height:30px;
    font-weight:400;
}
.continue-shopping-link {
    color:#ffffff;
    padding:12px 16px;
    cursor:pointer;
    background:#ffd500;
    font-size:14px;
    border-radius:1px;
}
.continue-shopping-link:hover {
   opacity: 0.8;
}
.recommended-products-section {
    margin-top:50px;
}
.recommended-products-container {
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:5px;
    justify-content:center;
    align-items: center;
    padding:10px 30px;
}
.recommended-products-heading {
    padding-bottom:10px;
    font-size:24px;
    text-align:center;
    color:#000;
    font-weight:500;
    position: relative;
}
.recommended-products-heading::after {
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    width:16%;
    height:2px;
    background:#000;
    transform:translateX(-50%);
}
@media screen and (max-width:1024px) {
    .recommended-products-container {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media screen and (max-width: 768px) {
    .recommended-products-container {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 500px) {
    .recommended-products-container {
        grid-template-columns: repeat(2, 1fr);
        padding:10px;
    }
    .recommended-products-heading {
        font-size:20px;
}
}
@media screen and (max-width: 340px) {
    .recommended-products-container {
        grid-template-columns: 1fr;
        padding:10px;
    }
}
  /*//checkout////*/
.checkout-section {
    background-color:#f3f3f3;
    color: #333;
    max-width: 1400px;
    width:100%;
    margin: 0 auto;
    padding: 10px;
}
.checkout-container {
    display:grid;
    grid-template-columns: 3fr 2fr;
    gap:50px;
    justify-content:center;
    align-items:start;
    padding:50px 0;
    padding-top:15px;
}
.checkout-summary-container {
    margin:0 20px;
}
.returning-customer-login-container {
    padding-top:20px;
    padding-left:40px;
    padding-right:10px;
    max-width: 740px;
    width:100%;
}
.checkout-returning-customer-heading {
    font-size:16px;
    color:#333;
    line-height:28px;
    font-weight:400;
    padding-bottom:10px;
    cursor:pointer;
}
#checkout-login-form {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
#checkout-login-form.open {
    max-height:200px;
}
.returning-customer-login-container form .form-group {
    display:flex;
    gap:20px;
    justify-content:flex-start;
    align-items:center;
}
.returning-customer-login-container form input {
    padding:11px;
    width:100%;
    display:block;
    border:1px solid #ccc;
    font-size:15px;
    color:#333;
}
.returning-customer-login-container form input[type="submit"] {
    padding:12px;
    width:50%;
    display:block;
    background:#000;
    border:1px solid #ccc;
    color:#ffffff;
    cursor:pointer;
    margin:14px 0;
}
.returning-customer-login-container form p a {
   color:#363535;
   font-size:15px;
   font-weight:400;
}
.returning-customer-login-container form p a:hover {
   color:#ffd500;
}
@media screen and (max-width:500px) {
    .returning-customer-login-container {
        padding:12px;
    }
    .returning-customer-login-container form .form-group {
        flex-wrap: wrap;
    }
}
.checkout-container .checkout-summary-column {
   padding:20px;
   background: #ffffff;
   box-shadow: 0 5px 15px rgba(0,0,0,0.05);
   position: sticky;
   top: 0;
}
.checkout-container .checkout-summary-column p {
    display:flex;
    justify-content:space-between;
    padding:8px 0;
    line-height:30px;
    align-items: center;
    color:#363535;
    font-size:15px;
}
.checkout-container .checkout-summary-column p span {
  color:#000;
  font-weight:500;
  font-size:16px;
}
.checkout-container .checkout-summary-column p .total_payable {
    color:#000;
    font-weight:700;
    font-size:17px;
  }
   .checkout-title {
    color:#000;
    font-size:22px;
    font-weight: 600;
    text-align: start;
    padding-bottom:5px;
    margin-bottom:10px;
   }

   .checkout-items-section {
    background:#ffffff;
    padding:20px;
}
.checkout-item-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:5px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}
.checkout-item-image {
    width:50px;
    height:50px;
    object-fit: contain;
}

.checkout-info-container {
    padding:0 20px;
    padding-left:40px;
}
.payment_method{
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}
.payment_method input {
    margin-bottom:15px;
}
.checkout-info-container .modify-cart-btn-container {
    display:flex;
    justify-content: flex-start;
    align-items: center;
    margin:20px 0;
}
.checkout-info-container .modify-cart {
    padding:4px 10px;
    font-size:15px;
    color:#000;
    font-weight:600;
    background:rgb(211, 186, 138);
}
.checkout-info-container .modify-cart:hover {
    background:orange;
}
#checkout-form {
    width:100%;
}

#checkout-form .checkout-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
#checkout-form .checkout-form-grid .full-width {
    grid-column: 1 / -1;
}
#checkout-form label {
    display:block;
    color:#000;
    font-size:15px;
    padding:5px 0;
}
#checkout-form input[type=text],#checkout-form input[type=email]  {
    width:100%;
    color:#000;
    font-size:15px;
    padding:13px;
    border:1px solid #ccc;
    background:transparent;
}
#checkout-form .custom-select {
    width:100%;
    color:#000;
    font-size:15px;
    padding:7px;
    cursor:pointer;
    border:1px solid #ccc;
    background: transparent;
}
#checkout-form input:focus {
    border:1px solid #ffd500;
}
#checkout-form .checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}
#checkout-form .checkbox-container input[type="checkbox"] {
    margin-right: 12px;
    cursor: pointer;
    color:#ffd500;   
}
.checkout-button-container {
    display:flex;
    justify-content:flex-start;
    margin:20px 0;
    gap:20px;
    align-items: center;
}
.checkout-button-container a {
    color:#000;
    font-size:18px;

}
#checkout-button {
    width:100%;
    padding:13px 10px;
    color:#000;
    border-radius:1px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    background:#ffd500;
}

#checkout-button:hover {
    opacity:0.8;
}
.place-order-btn {
    margin-top:20px;
}

@media screen and (min-width:769px) {
    .place-order-btn.mobile {
        margin-top:20px;
        display:none;
    }
}
    @media screen and (max-width:768px) {
    .checkout-container {
        grid-template-columns:100%;
        gap:20px;
        margin-bottom:30px;
    }
    .place-order-btn.desktop {
        margin-top:20px;
        display:none;
    }
  
    .checkout-info-container {
        padding:10px;
        order:2;
    }
    .checkout-container .checkout-col-2 {
    order:1;
    }
    .checkout-container .checkout-col-2 {
    min-height:40vh;
    margin-top:30px;
    }
}
@media screen and (max-width:400px) {
    #checkout-form .checkout-form-grid {
        grid-template-columns:1fr;
        }
    }

    .home-banner-section {
        height:70vh;
        width:100%;
        margin-top:10px;
        position:relative;
    }
    .home-banner-section img {
        width: 100%;
        height:100%;
        object-fit:contain;
        position: relative;
    }
    .home-banner-section  .delete-banner-container {
        position:absolute;
        left:50%;
        top:50%;
        transform: translate(-50%,-50%);
    }
    .home-banner-section  .delete-banner-container .del-btn {
       color:#ffffff;
       background:#000;
       padding:8px 15px;
       font-weight:700;
       font-size:15px;
    }
        .set-bg {
            background-repeat: no-repeat;
            background-size: cover;
            background-position: top center;
        }
        
        /*---Trend --*/
        .trend {
            background:#f3f3f3;
        }
        .trend_row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 50px;
            justify-content: center;
            align-items: start;
        }
        @media (max-width: 768px) {
            .trend_row {
                grid-template-columns: repeat(2, 1fr);
                gap:20px;
            }
        }
        @media (max-width: 576px) {
            .trend_row {
                grid-template-columns: repeat(1, 1fr);
                gap:10px;
            }
        }
        .trend__content .section-title h4 {
            font-size: 20px;
            color: #111111;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        .trend__content .section-title h4:before {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 1px;
            width: 50px;
            background: #ffd500;
        }
        .trend__content .section-title h4:after {
            bottom: -6px;
        }
        
        .trend__item {
            overflow: hidden;
            margin-bottom: 35px;
        }
        
        .trend__item__pic {
            float: left;
            margin-right: 25px;
        
        }
        .trend__item__pic img {
            width:100px;
            height: 100px;
            object-fit: cover;
        }
        .trend__item__text {
            overflow: hidden;
        }
        
        .trend__item__text h6 {
            font-size: 14px;
            color: #111111;
            margin-bottom: 5px;
        }
        
        .trend__item__text .rating {
            line-height: 18px;
            margin-bottom: 6px;
        }
        
        .trend__item__text .rating i {
            font-size: 10px;
            color: #e3c01c;
            margin-right: -4px;
        }
        
        .trend__item__text .rating i:last-child {
            margin-right: 0;
        }
        
        .trend__item__text .product__price {
            color: #111111;
            font-weight: 600;
        }
        
        .trend__item__text .product__price span {
            font-size: 14px;
            color: #b1b0b0;
            text-decoration: line-through;
            margin-left: 4px;
        }
        /* ------ Services -------- */
        .services {
            max-width: 1200px;
            margin: 30px auto;
            width:100%;
            display: flex;
            align-items: center;
            justify-content: space-evenly;
            gap:30px;
            padding: 18px;
        }
        .services_row {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                justify-content: center;
                align-items: center;
                gap: 40px;
               
            }
            @media (max-width: 768px) {
                .services_row {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 20px;
                }
            }
            @media (max-width: 576px) {
                .services_row {
                    grid-template-columns: repeat(1, 1fr);
                }
                .trend__item__pic img {
                    width:60px;
                    height: 60px;
                    object-fit: cover;
                }
            }
        .services__item {
            padding-left: 50px;
            position: relative;
            
        }
        .services__item i,.services__item ion-icon {
            font-size: 36px;
            color: #ffd500;
            position: absolute;
            left: 0;
            top: 4px;
        }
        .services__item h6 {
            color: #111111;
            font-weight: 600;
            margin-bottom: 5px;
        }
        .services__item p {
            margin-bottom: 0;
        }
        /* end home  */
       
        .feature-section {
            background: #ffffff;
            max-width:90%;
            width:100%;
            margin:20px auto;
            border:1px dotted #ffd500;
        }
        @media screen and (max-width:768px) {
        .home-banner-section {
            height:60vh;
        }
        }
        @media screen and (max-width:500px) {
            .home-banner-section {
                height:30vh;
            }
        }

        .featured-products-section {
            padding:10px 0;
            background:#f3f3f3;
        }
        .products_list {
            display:grid;
            grid-template-columns:repeat(4, 1fr);
            gap:15px;
            justify-content:center;
            align-items:center;
        }
        .view-all-products-btn {
            margin:20px 0;
            display:flex;
            justify-content:center;
            align-items:center;
        }
        .view-all-products-btn a {
            color:#000;
            background:#ffffff;
            font-size:16px;
            padding:8px 12px;
            border-radius:12px;
        }
        .view-all-products-btn a:hover {
           text-decoration: underline;
        }
    @media screen and (max-width:1024px) {
        .products_list {
            grid-template-columns:repeat(3, 1fr);
        }    
        }
    @media screen and (max-width:768px) {
        .products_list {
            grid-template-columns:repeat(2, 1fr);
            gap:8px;
        }
        .about {
            padding:24px;
        }
    }
    @media screen and (max-width:400px) {
        .about {
            padding:12px;
        }
        .faq {
            padding:10px;
            padding-bottom:20px;
        }
        }
        @media screen and (max-width:330px) {
            .products_list {
                grid-template-columns:100%;
                gap:8px;
            }
        }

        /* Home-subscribe starts */
.subscribe-section {
		background: #000;
		padding:10px;
	}
	.subscribe-to-newsletter-heading {
		text-align: center;
		font-size:30px;
		color:#ffffff;
		font-weight: 600;
		padding-bottom: 10px;
	}
	.subscribe-to-newsletter-subheading {
		text-align: center;
		font-size:17px;
		line-height: 25px;
		color:#ffffff;
		font-weight: 400;
	}
	.subscribe-form {
		max-width:500px;
		margin:20px auto;
		border-radius: 2px;
	}
	.subscribe-form input {
		padding:11px 20px;
		background:transparent;
		font-size:15px;
		color:#ffffff;
		width:100%;
        border-bottom:1px solid #ffffff;
	}
	.subscribe-form input:focus {
		border-bottom:1px solid #ffd500;
	}
	.subscribe-form .input-submit-container {
		display:flex;
		justify-content: center;
		gap:20px;
		color:#ffffff;
	}
	.input-submit-container .form-input-box {
		width:100%;
	}
	.subscribe-button {
		padding:11px 26px;
		font-size:16px;
        font-weight:500;
		color:#ffffff;
		cursor:pointer;
		background: #ffd500;
	}
	.subscribe-button:hover {
		transform: scale(1.03);
		background: #ffffff;
		color:#000;
		cursor:pointer;
	}

	@media (max-width: 400px) {
	.subscribe-form .input-submit-container {
		display:flex;
		flex-wrap: wrap;
	}
	.subscribe-to-newsletter-heading {
		font-size:24px;
	}
    .subscribe-button {
		padding:11px 20px;
		border-radius: 2px;
        width:100%;
	}
	}
/* Home-subscribe end */

.subheading {
    color: #000;
    font-size: 1.6rem;
    margin-bottom: 1.7rem;
    text-align: center;
    font-weight: 500;
    font-family: 'Cursive', cursive;
}

@media (max-width: 600px) {
    .subheading {
        font-size: 25px;
        padding-bottom: 10px;
    }
}

/* Add this to your CSS file */
.alert-danger {
    color: #dc3545;
    background-color: #f2dede;
    border-color: #ebccd1;
    font-size: 0.9em;
    margin-top: 5px;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

/* Wishlist */
.saved_items_section {
    padding:30px;
    background:#ffffff;
}
.saved_items_table_header {
    background: #f3f3f3;
}
.saved_item {
    display: flex;
    justify-content:flex-start;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    padding:2px 10px;
}
.saved_item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 5px;
    margin-right: 10px;
}

.saved_item p {
    font-size:16px;
    color:#333;
    position: relative;
}
.saved_item p::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1.2px;
    background: #ffd500;
    transform-origin: left;
    transform: scale(0);
    transition: 0.3s ease;
}

.saved_item p:hover::after {
    transform-origin: right;
    transform: scaleX(1);
}

.saved_item .remove-btn {
    display:flex;
    justify-content:center;
    align-items:center;
    color:#333;
    font-size:15px;
    height:22px;
    width:22px;
    padding:5px;
    border:1px solid #ccc;
    background:#ffffff;
    border-radius:50%;
    cursor:pointer;
    margin-right:15px;
}
.saved_item .remove-btn:hover {
    color:#ffd500;
}

.saved_items_table {
    width:100%;
    border-collapse: collapse;
}
.saved_items_table th {
    padding:10px 0;
    text-align:center;
}
.saved_items_table td {
    text-align: center;
}
.saved_items_table th {
    font-size:19px;
    font-weight:400;
    color:#000;
}
.saved_items_table td .add-to-cart-button {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
    color:#ffffff;
    background:#ffd500;
    padding:9px;
    cursor:pointer;
    position: relative;
}
.saved_items_table td .add-to-cart-button span {
    font-size:12px;
}
.saved_items_table td .add-to-cart-button:hover {
    opacity:0.8;
}
.empty_saved_items_container {
    display:flex;
    justify-content:center;
    align-items: center;
    text-align:center;
    padding:60px;
    background:#f3f3f3;
}

.empty_saved_items_container p {
    color:#000;
    font-size:16px;
    line-height:30px;
    font-weight:400;
}
.empty_saved_items_container p>a {
    color:#ffd500;
    font-weight:500;
}

@media (max-width: 768px) {
    .saved_items_table td .add-to-cart-button {
        border: none;
        font-size:11px;
        padding:1px;
    }
}

@media screen and (max-width:530px) {
.saved_items_section {
    padding:10px;
}
.saved_item {
    gap:5px;
    padding:5px;
}
.saved_item img {
    width: 50px;
    height: 50px;
    object-fit:contain;
    border-radius: 2px;
    margin-right: 5px;
}
.saved_item p {
    font-size:14px;
}

}

/* User profile dashboard*/
.page-details h1 {
    font-size:20px;
}

.dashboard-container {
    display: grid;
    grid-template-columns:2fr 8fr;
    min-height: 100vh;
    background-color: #f9f9f9;
}
.dashboard-container a {
    text-decoration: none;
    color: #ffd500;
}
.sidebar {
    background-color: #fff;
    padding: 40px 30px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.profile-card {
    display:flex;
    justify-content: center;
    align-items: center;
    gap:15px;
    margin-bottom: 10px;
}

.profile-card .user-avatar {
    width:34px;
    height:34px;
    border-radius: 50%;
    object-fit: contain;
    padding:5px;
    background:#000;
}

.profile-card .username {
    font-weight: 700;
    font-size: 17px;
    color:#ffd500
}
.profile-card .username>span {
    font-weight: 500;
    font-size: 17px;
    color:#000;
}
.profile_side_nav ul {
    list-style: none;
    padding: 0;
}

.profile_side_nav li {
    padding:15px 5px;
    display:flex;
    justify-content: flex-start;
    gap:10px;
    align-items:center;
    border-bottom:1px solid #f3f3f3;
}
.selected {
    background:#f3f3f3;
    color:#000;
    cursor:pointer;
}
.profile_side_nav li:hover {
    background:#f3f3f3;
    cursor:pointer;
}
.profile_side_nav li .profile_side_nav_icon {
   font-size:18px;
   color:var(--darkGrayColor);
}
.profile_side_nav li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    display: block;
}

/* Main profile Content Styling */
.main_profile_content {
    padding: 40px;
    background: #f3f3f3;
}

.main_profile_content .welcome-message {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}
.main_profile_content .welcome-message p {
    color:#333;
    line-height:30px;
    font-size:15px;
}

.main_profile_content .dashboard-sections {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content:center;
    align-items:center;
    gap:20px;
}

.main_profile_content .dashboard-sections .section {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px;
    text-align: center;
    transition: transform 0.2s;
}

.main_profile_content .dashboard-sections .section .ion-icon {
    font-size:22px;
}

.main_profile_content .dashboard-sections .section:hover {
    transform: translateY(-5px);
}

.main_profile_content .dashboard-sections .section img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.main_profile_content .dashboard-sections .section h4 {
    font-size: 16px;
    color: #333;
    cursor:pointer;
}

.dashboard-items-container .profile_account_details_section {
    background:#ffffff;
    margin:20px 0;
    padding:30px;
}
.dashboard-items-container .profile_account_details_section .empty-profile-detail-section {
   display:flex;
   justify-content:center;
   align-items:center;
   padding:20px;
}

.dashboard-items-container .profile_account_details_section h1 {
    text-align:center;
    font-size:20px;
    font-weight:600;
    color:#000;
    padding:20px 0;
}
.orders_table_responsive,
.downloads_table_responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
table  {
   border-collapse:collapse;
   width: 100%;
}
.dashboard-items-container .profile_account_details_section table tr td .table-action-btn  {
  display:flex;
  align-items:center;
  gap:6px;
}
.dashboard-items-container .profile_account_details_section table tr td .table-action-btn .utility-btn,
.dashboard-items-container .profile_account_details_section table tr td .table-action-btn span  {
  font-size:17px;
}
.dashboard-items-container .profile_account_details_section table tr td .table-action-btn .trash-icon  {
  color:red;
}
.dashboard-items-container .profile_account_details_section table tr td,
.dashboard-items-container .profile_account_details_section table tr th  {
   border:1px solid #f3f3f3;
}
.dashboard-items-container .profile_account_details_section table tr th  {
   color:#000;
   font-weight:500;
   font-size:17px;
   text-align: left;
   padding-left:14px;
}
.dashboard-items-container .profile_account_details_section .addresses-container  {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
  justify-content:center;
  align-items:center;
}
.dashboard-items-container .profile_account_details_section .addresses-container .address-box {
    padding:20px;
    padding-bottom:10px;
    border:1px solid #ccc;
    border-radius:5px;
}
.dashboard-items-container .profile_account_details_section .addresses-container .address-box .default-address {
    padding:5px;
    color:#0073aa;
    font-weight:500;
    font-size:16px;
}
.dashboard-items-container .profile_account_details_section .addresses-container .address-box .addresses-actions-container {
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-top:1px solid #ccc;
    padding-top:5px;
}
.dashboard-items-container .profile_account_details_section .addresses-container .address-box .addresses-actions-container a {
    font-size:16px;
    color:#ffd500;
    font-weight:500;
    cursor:pointer;
}
.dashboard-items-container .profile_account_details_section .addresses-container .address-box .addresses-actions-container .ion-icon {
    font-size:20px;
    color:#ffd500;
    font-weight:500;
    cursor:pointer;
}
.dashboard-items-container .profile_account_details_section .addresses-container p  {
    padding:5px 0;
    color:#333;
    font-weight:500;
}
.dashboard-items-container .profile_account_details_section .addresses-container .add-address-btn-container  {
  cursor:pointer;
}

.dashboard-items-container .profile_account_details_section .addresses-container p>span  {
    color:#363535;
    padding-left:4px;
}

.dashboard-items-container .profile_account_details_section  .profile-edit-form p {
    font-weight:400;
    margin-bottom:12px;
    display:block;
}
.dashboard-items-container .profile_account_details_section  .profile-edit-form label {
    font-weight:500;
    color:#333;
    margin-bottom:10px;
    display:block;
}
.dashboard-items-container .profile_account_details_section  .profile-edit-form input {
    width:100%;
    color:#363535;
    padding:12px;
    margin-bottom:8px;
    border:1px solid #ccc;
    font-weight:400;
}
.dashboard-items-container .profile_account_details_section  .profile-edit-form .profile-edit-form-submit-btn  {
  font-weight:500;
  text-align:center;
  color:#ffffff;
  background:#000;
  padding:12px 16px;
}
.dashboard-items-container .profile_account_details_section  .profile-edit-form .profile-edit-form-submit-btn:hover  {
  color:#ffffff;
  background:#ffd500;
  cursor:pointer;
}
.address_create_edit_form {
width:100%;
background:white;
}
.address_create_edit_form label {
display:block;
padding-bottom:6px;
font-size:16px;
color:#363535;
}
.address_create_edit_form input {
display:block;
width:100%;
border:1px solid #ccc;
padding:11px;
margin-bottom:10px;
font-size:16px;
color:#333;
}

.address_create_edit_form button {
display:block;
width:100%;
background:#000;
color:white;
font-weight:500;
padding:12px 24px;
border:none;
border-radius:1px;
margin-top:10px;
transition:0.3s linear;
cursor:pointer;
}

/* Responsive Table Styles */
@media (max-width: 768px) {
/* Hiding table headers */
.profile_account_details_section table thead {
    display: none;
}

/* Making table elements display as blocks */
.profile_account_details_section table, 
.profile_account_details_section table tbody, 
.profile_account_details_section table tr, 
.profile_account_details_section table td {
    display: block;
    width: 100%;
}

/* Styling each table row as a card */
.profile_account_details_section table tr {
    margin-bottom: 15px;
    border: 1px solid #f3f3f3;
    border-radius: 5px;
    padding: 10px;
    background-color: #fff;
}

/* Style each table cell */
.profile_account_details_section table td {
    text-align: left;
    padding-left: 50%;
    position: relative;
    border: none;
    border-bottom: 1px solid #f3f3f3;
}

/* Remove last border */
.profile_account_details_section table td:last-child {
    border-bottom: none;
}

/* Add labels before cell content */
.profile_account_details_section table td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    width: 35%;
    padding-right: 10px;
    white-space: nowrap;
    font-weight: bold;
    text-align: left;
    color: #000;
}

/* Adjust action buttons */
.profile_account_details_section table td .table-action-btn {
    display: flex;
    align-items: center;
    gap: 2px;
    justify-content: flex-start;
}

/* Adjust icons and text in action buttons */
.profile_account_details_section table td .table-action-btn .ion-icon,
.profile_account_details_section table td .table-action-btn span {
    font-size: 16px;
}
}

@media (max-width: 480px) {
    .profile_account_details_section table td::before {
        font-size: 14px;
    }

}

@media (max-width: 768px) {
.profile_account_details_section table td .table-action-btn .ion-icon {
    margin-bottom: 5px;
}
}

.profile_account_details_section table td .table-action-btn {
padding: 8px 12px;
border-radius: 4px;
background-color: #f3f3f3;
transition: background-color 0.3s;
}

.profile_account_details_section table td .table-action-btn:hover {
background-color: var(--darkGrayColor);
}

@media screen and (max-width:860px) {
.dashboard-container {
        grid-template-columns:1fr;
    }
}
@media (max-width: 1000px) {
    .dashboard-items-container .profile_account_details_section .addresses-container  {
            grid-template-columns:repeat(2, 1fr);
            gap:20px;
        }
}
@media (max-width: 768px) {
    .dashboard-items-container .profile_account_details_section {
        margin:10px 0;
        padding:3px;
    }
    .main_profile_content .dashboard-sections {
        grid-template-columns: repeat(3, 1fr);
        gap:10px;
    }
    .dashboard-items-container .profile_account_details_section .addresses-container  {
        grid-template-columns:1fr;
        gap:20px;
    }
    .main_profile_content .welcome-message {
        display:none;
    }
    .sidebar {
        background-color: #fff;
        padding: 10px;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    }

}
@media (max-width: 650px) {
    .main_profile_content {
        padding: 5px;
        padding-top:5px;
    }
  
    .main_profile_content .dashboard-sections {
        grid-template-columns: repeat(2, 1fr);
        gap:10px;
    }
    .dashboard-items-container .profile_account_details_section .addresses-container  {
        grid-template-columns:1fr;
        gap:20px;
    }
}
.saved_items_section {
    padding:30px;
}
.saved_item {
    display: flex;
    justify-content:flex-start;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    padding:2px 10px;
}
.saved_item p {
    font-size:16px;
    color:#333;
}

.saved_item .remove-btn {
    display:flex;
    justify-content:center;
    align-items:center;
    color:#333;
    font-size:15px;
    height:22px;
    width:22px;
    padding:5px;
    border:1px solid #ccc;
    background:#ffffff;
    border-radius:1px;
    cursor:pointer;
    margin-right:15px;
}
.saved_item .remove-btn:hover {
    color:#ffd500;
}

.saved_items_table {
    width:100%;
    border-collapse: collapse;
}
.saved_items_table th {
    border-bottom: 1px solid #ccc;
    padding:10px 0;
    text-align:center;
}
.saved_items_table td {
    border-bottom: 1px solid #f3f3f3;
    text-align: center;
}
.saved_items_table th {
    font-size:19px;
    font-weight:400;
    color:#000;
}

.empty_saved_items_container {
    display:flex;
    justify-content:center;
    align-items: center;
    text-align:center;
    padding:60px;
    background:#ffffff;
}

.empty_saved_items_container p {
    color:#000;
    font-size:16px;
    line-height:30px;
    font-weight:400;
}
.empty_saved_items_container p>a {
    color:#ffd500;
    font-weight:500;
}
.selected {
    background:#f3f3f3;
    color:#000;
    cursor:pointer;
}

@media screen and (max-width:530px) {
.saved_items_section {
padding:10px;
}
.saved_item {
gap:5px;
padding:5px;
}
.saved_item p {
font-size:14px;
}

}

/* product_modal */
.product_modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 8000;
    transition: opacity 0.2s ease-in-out;
}
.product_modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9); 
    background: white;
    padding:20px;
    border-radius: 1px;
    z-index: 8001;
    max-width: 900px;
    max-height: 90vh;
    overflow: auto;
    width: 90%;
    pointer-events: none;
    opacity: 0;
    transition: all 0.2s ease-in-out; 
    visibility: hidden;
}

.product_modal.show {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.product_modal-backdrop.show {
    display: block;
    opacity: 1;
}

.product_modal_close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #000;
}
.modal_quantity_input {
    width:20%;
    padding:11px 14px; 
    border: 1px solid #ccc;
}
/* First, make sure we're using the default browser spin buttons */
.modal_quantity_input::-webkit-inner-spin-button,
.modal_quantity_input::-webkit-outer-spin-button {
    opacity: 1;
    height: auto;
}

/* For Firefox */
.modal_quantity_input {
    -moz-appearance: number-input;
}



/*about-page */
.about-hero-wrap {
    position: relative;
    height:40vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .about-hero-wrap::after {
    position: absolute;
    content:"";
    background:rgba(0, 0, 0, 0.4);
    left:0;
    top:0;
    width:100%;
    height:100%;
  }
  .branding-hero-wrap {
    position: relative;
    height:50vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .branding-hero-wrap::after {
    position: absolute;
    content:"";
    background:rgba(0, 0, 0, 0.4);
    left:0;
    top:0;
    width:100%;
    height:100%;
  }
 .promotional-products-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}
.services-list-grid {
      display:flex;
      flex-direction: column;
      gap: 15px;
      top:10px;
      position: sticky;
  }

  .services-list-grid li {
      background-color: white;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;
  }

  .services-list-grid li:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  .services-list-grid li::after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 3px;
      background-color: #ffd500;
  }

  .services-list-grid li strong {
      color: #ffffff;
      background-color: #f1f5f9;
      background-color:#ffd500;
      padding: 4px 10px;
      border-radius: 5px;
      font-weight: bold;
      font-size: 19px;
      display: block;
      margin-bottom: 8px;
  }

  .services-list-grid li span {
      color: #666;
      font-size: 16px;
      display: block;
      line-height: 1.5;
  }

  @media (max-width: 768px) {
      .services-list-grid li strong {
          font-size: 18px;
      }
      .services-list-grid li span {
          font-size: 14px;
      }
  }
.services-products-grid {
  display: grid;
  grid-template-columns: 2fr 5fr;
  gap: 50px;
}
@media (max-width: 768px) {
  .services-products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* Product Grid Styles */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.branded_product_card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.branded_product_card:hover .product-image{
   opacity:0.7;
}
.branded_product_card:hover  {
    transform: translateY(-5px);
    cursor: pointer;
}
.branded_product_card .product-image {
    width: 100%;
    height:180px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}
.branded_product_card .product-image.loaded {
  opacity: 1;
}
.product-title {
    font-size: 17px;
    color: #000;
    font-weight:700;
    padding: 15px;
}
  .breadcrumb-animate {
    position: absolute;
    z-index: 100;
    bottom:14%;
    left:6%;
    color:#ffffff;
   }
  
   .breadcrumbs {
    text-transform: uppercase;
    font-size: 14px;
    color:#ffffff;
    padding:10px 20px;
    opacity: 70%;
   }
  
  .bread {
    font-size: 40px;
    color:#ffffff;
    line-height: 1.1;
    padding:10px 20px;
    font-weight: 500;
  }
  .chevron {
    font-size: 14px;
    padding:0 3px;
    color:#ffffff
  }
  .home-page a{
    color:var(--orangeColor);
    font-weight:700;
  }
  .home-page a:hover {
    color:#ffffff;
  }
  
   @media (max-width: 768px) {
    .bread {
      font-size: 29px;
    }
   }

.about-bg2 { 
    height:80vh;
    width:100%;
    padding-left:10px;
    padding-top:50px;
    border-radius: 15px;
  }
  .about-bg2 img {
    width:100%;
    height:100%;
    object-fit: cover;
    border-radius: 15px;
  }
  @media (max-width: 768px) {
    .about-bg2 { 
      height:30vh;
      padding-top:20px;
    }
  }

  .testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
  }
  
  .testimonials-container {
    position: relative;
  }
  .reviewSwiper, .clientsSwiperRight, .clientsSwiperLeft {
    padding: 30px 0 30px 0;
    position: relative;
  }
  
  .testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  }
  
  .quote-decoration {
    position: absolute;
    top: -10px;
    left: 30px;
    background: linear-gradient(135deg, #ffd500 0%, #fcd863 100%);
    opacity: 0.7;
    padding: 2px;
    border-radius: 12px;
    color: white;
    box-shadow: 0 10px 20px rgba(var(--redColor-rgb), 0.2);
  }
  
  .testimonial-content {
    margin: 18px 0;
    margin-top:22px;
  }
  
  .testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #363535;
    margin-bottom:16px;
  }
  
  .rating {
    margin-bottom: 16px;
  }
  
  .stars {
    display: flex;
    gap: 0.25rem;
  }
  
  .star {
    color: #ffd700;
    font-size: 1.25rem;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.2));
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f1f2f6;
    padding-top: 1.5rem;
  }
  
  .author-image {
    position: relative;
    width: 40px;
    height: 40px;
  }
  
  .author-image img {
    width: 100%;
    height: 100%;
    padding:3px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .author-status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #b84700;
    border: 2px solid white;
    border-radius: 50%;
  }
  
  .author-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
  }
  
  .author-info p {
    font-size: 0.875rem;
    color: #363535;
    margin: 0.25rem 0 0 0;
  }
  
  @media screen and (max-width: 768px) {
    .testimonials-section {
      padding: 20px 0;
    }
    .testimonial-card {
      padding: 16px;
    }
    .quote-decoration {
      top: -15px;
      left: 20px;
    }
  
    .testimonial-text {
      font-size: 15px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .testimonial-text {
      font-size: 15px;
    }
  
    .author-image {
      width: 24px;
      height: 24px;
    }
  
    .author-info h3 {
      font-size: 1rem;
    }
  
    .author-info p {
      font-size: 16px;
    }
  }
/* Error Page */
.error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 2rem;
    text-align: center;
  }
  
  .error-image {
    width: 300px;
    max-width: 80%;
    animation: float 6s ease-in-out infinite;
  }
  
  .error-title {
    color: var(--orangeColor);
    font-size: 34px;
    margin: 12px 0;
    animation: fadeIn 1s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .error-message {
    font-size: 20px;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
    padding: 8px 0;
    animation: fadeIn 1.5s ease-out;
  }
  
  .home-button {
    display: inline-block;
    padding: 1rem 2rem;
    margin-top: 16px;
    background: linear-gradient(45deg, hsl(39, 93%, 52%), #ff6b6b);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 2s ease-out;
  }
  
  .home-button:hover {
    transform: translateY(-3px);
    opacity:0.8;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .error-title {
      font-size: 28px;
    }
  
    .error-message {
      font-size: 19px;
      padding: 10px;
    }
  
    .error-container {
      padding: 10px;
    }
  }
  
  @media (max-width: 480px) {
    .error-title {
      font-size: 24px;
    }
  
    .error-message {
      font-size: 17px;
    }
  
    .home-button {
      padding: 0.8rem 1.6rem;
    }
  }

/* Size Guide Popup Styles */
    .zo-size-guide-popup {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 9000;
        justify-content: center;
        align-items: center;
    }
    
    .zo-size-guide-popup.active {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }
    
    .zo-size-guide-content {
        background: white;
        border: 1px dashed #ffd500;
        padding: 15px;
        border-radius: 1px;
        max-width: 700px;
        width: 95%;
        transform: translateY(10%);
        pointer-events: none;
        opacity: 0;
        position: relative;
        max-height: 96vh;
        overflow-y: auto;
        transition: transform 0.3s linear;
    }
    
    .zo-size-guide-popup.active .zo-size-guide-content {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .size-guide-item{
      background: white;
      padding: 5x;
      margin-bottom: 25px;
      border: 1.4px dashed #ffd500;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
    .zo-open-size-guide-btn {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        cursor: pointer;
        padding-top: 10px;
        padding-bottom: 1px;
        gap: 5px;
        background: #ffffff;
        width: 70%;
    }
    
    /* Header Styles */
    .zo-size-guide-header {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .zo-size-guide-header img {
        width: 80px;
    }
    
    .zo-size-guide-header h2 {
        margin: 4px 0;
        font-size: 20px;
        font-weight: 600;
        color: #000;
    }
    
    /* Title and Section Styles */
    .zo-size-guide-title {
        margin-top: 10px;
        margin-bottom: 10px;
        
        padding-bottom: 5px;
        font-size: 20px;
        font-weight: 600;
        color: #ffd500;
        text-align: center;
        position: relative;
    }
    .zo-size-guide-title::after {
        content: "";
        display: block;
        width: 40%;
        left: 50%;
        bottom: 0;
        position: absolute;
        transform: translateX(-50%);
        height: 2px;
        background-color: #000;
    }
    .zo-measurement-note {
        font-style: italic;
        margin-bottom: 10px;
        font-size: 17px;
        color: #000;
        text-align: center;
    }
    
    
    /* Table Styles */
    .zo-size-guide-table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 30px;
    }
    
    .zo-size-guide-table th, 
    .zo-size-guide-table td {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: center;
    }
    
    .zo-size-guide-table th {
        background-color: #f2f2f2;
        font-weight: bold;
        font-size: 14px;
    }
    
    .zo-size-guide-table td {
        font-size: 13px;
    }
    
    .zo-size-guide-table tr:nth-child(even) {
        background-color: #f9f9f9;
    }
    
    .zo-size-guide-table tr:nth-child(odd) {
        background-color: #f4f4f4;
    }
    
    /* Image Container */
    .zo-size-guide-image-container {
        text-align: center;
        margin: 40px auto;
        border-radius: 10px;
        height: 300px;
        width: 300px;
    }
    
    .zo-size-guide-image {
        width: 100%;
        object-fit: contain;
        height: 100%;
    }
    
    /* Close Button */
    .zo-close-btn {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 24px;
        cursor: pointer;
        color: #666;
    }
    
    .zo-close-btn:hover {
        color: #000;
    }
    
    /* Media Queries */
    @media (max-width: 768px) {
        .zo-size-guide-layout {
            flex-direction: column;
        }
        
        .zo-measurement-instructions {
            grid-template-columns: 1fr;
        }
        
        .zo-measurement-figure {
            display: none;
        }
        
        .zo-size-guide-content {
            padding: 15px;
        }
    }