/*
 =======================================
  SECTION: Styles For Ecommerce Application              
  DESCRIPTION: ALl Styles for CSS       
  AUTHOR: Dhaneshkumar Rameshlal Solanki
  DATE: 2025-03-2023
  
 =======================================
  */


:root {
  --base: #C8BDAA;
  --dark: #7C7362;
  --mid: #A0937D;
  --light: #DAD3C6;
  --lightest: #F2EFE9;
  --color-success: #14a44d;
  --color-danger: #dc4c64;
  --color-warning: #e4a11b;
  --color-info: #54b4d3;
  --text-success: #0c622e;
  --text-info: #3b7e94;
  --text-warning: #896110;
  --text-danger: #b03d50;
  --text-dark: #3B2F2F;
  --text-light: #F2E9DB;
  --text-lightest: #F2E9DB;
  --color-light: #fbfbfb;
  --color-dark: #332d2d;

  /* Font Sizes */
  --fs-sm: 1rem;
  --fs-xlg: 2.5rem;
  --fs-base:1.2rem;
  --fs-md: 1.5rem;
  --fs-lg:2rem;

  --font-lora: 'Lora', serif;
  --font-playfair: 'Playfair Display', serif; 
  --font-georgia: 'Georgia', serif; 
  --font-inter: 'Inter', sans-serif;
  --font-mulish: 'Mulish', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size-adjust: 100%;
  font-size: 14px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-family: var(--font-mulish);
}

body {
  background-color: #fdfcf9;
  line-height: var(--line-height);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: var(--font-georgia) !important;
}
h1{
  font-size: 2.8rem;
  font-weight: 600;
}
h2{
  font-size: 2.5rem;
  font-weight: 600;
}
h3{
  font-size: 2.2rem;
  font-weight: 600;
}
h4{
  font-size: 2rem;
  font-weight: 700;
}
h5{
  font-size: 1.8rem;
  font-weight: 400;
}
h6{
  font-size: 1.5rem;
  font-weight: 400;
}
button {
  padding: 8px 16px;
  border: none;
  font-size: var(--fs-base);
  background: var(--mid);
  border-radius: var(--radius);
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: none;
}

button:active {
  transform: scale(0.95);
}

input[type="file"],
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="search"],
input[type="url"],
input[type="date"],
select,
textarea {
  padding: 0.5rem 1rem;
  border-radius: 5px;
  background-color: var(--color-light);
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
input[type="number"] {
  -moz-appearance: textfield; /* Firefox */
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; /* Safari and Chrome */
}

section {
  width: 100%;
  padding: 16px 24px;

  margin-bottom: 22px;
}

.section-info {
  width: 100%;
  display: flex;
  
  padding-bottom: 10px;

}

.section-info-left {
  width: 85%;
  padding: 8px;

}

.section-info-left h1 {
  font-size: 2.5rem !important;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-family: var(--font-georgia);

}

.section-info-left span {
  font-weight: 800;
  font-size: 2.8rem;
  padding-bottom: 4px;
  color: var(--base);
}

.section-info-left p {
  font-size: 1.2rem;
  color: var(--text-dark);
  font-weight: 400;
  line-height: 1.6;

}

.section-info-right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15%;
  display: none;

}

.section-info-left a,
.section-info-right a {

  background-color: var(--primary-color);
  color: white;
  padding: 12px;
  width: 150px;
  text-align: center;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
}

/* 
.section-about-left button:hover>.section-about>.section-about-center
{
  display: block;
}
*/
/* To show .section-about-center on button hover, use JavaScript or restructure HTML so .section-about-center is a sibling of the button and use a selector like .section-about-left:hover ~ .section-about-center */


/* ++++++++++++ Loading-Overlay +++++++++++++++++ */
.loading-overlay {
  background: rgb(0, 0, 0,0.9);
  font-family: var(--font-secondary);
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  visibility: visible;
  z-index: 999999;

}

.bounce-loader {


position: absolute;
text-align: center;
top: 50%;
-webkit-transition: all .2s;
transition: all .2s;
width: 100%;
z-index: 10000;
}
.bounce-loader p
{
margin: 8px;
color: white;
font-size: 1.2rem;
font-weight: 200;
text-transform: capitalize;
}
.bounce-loader .bounce1, .bounce-loader .bounce2, .bounce-loader .bounce3 {
-webkit-animation: 1.4s ease-in-out 0s normal both infinite bouncedelay;
animation: 1.4s ease-in-out 0s normal both infinite bouncedelay;
background-color: var(--light);
border-radius: 100%;
-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
display: inline-block;
height: 25px;
width: 25px;
}
.bounce-loader .bounce1 {
-webkit-animation-delay: -.32s;
animation-delay: -.32s;
}
.bounce-loader .bounce2 {
-webkit-animation-delay: -.16s;
animation-delay: -.16s;
}
@-webkit-keyframes bouncedelay {
0%,  80%,  100% {
-webkit-transform: scale(0);
transform: scale(0);
}
40% {
-webkit-transform: scale(1);
transform: scale(1);
}
}@keyframes bouncedelay {
0%,  80%,  100% {
-webkit-transform: scale(0);
transform: scale(0);
}
40% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
/* ------------ Loading-Overlay ----------------- */

/* ++++++++++++ Header-Start +++++++++++++++++ */
header {
  font-family: var(--font-Lora);
  
}

.fixed-header {
  position: fixed;
  top: 0;
  z-index: 9999;
  background-color: white;
  width: 100%;
}


/* ------------ Header-top ----------------- */
.header-top {
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--base);
  width: 100%;
}

.header-top-left {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  color: white;
  font-size: var(--fs-base);

}

.header-top-left li {
  display: flex;
  position: relative;
  gap: 0.5rem;
  align-items: center;
  letter-spacing: 0.025em;
  font-weight: 400;
  font-size: 1rem;
}

.header-top-left li::after {
  position: absolute;
  width: 2px;
  height: 20px;
  background-color: white;
  right: -20px;
  content: "";
  top: 2px;
  opacity: 0.9;
}

.header-top-left li:hover {
  color: var(--text-dark);
  transform: translateY(-3px);
  border-bottom: 1px solid var(--text-dark);

}

.header-top-right {
  display: flex;
  list-style: none;
  gap: 2rem;
  color: #f1f1f1;
  font-size: var(--fs-base);
  font-weight: 500;
}

.header-top-right li {
  position: relative;
  font-size: 1.1rem;
}

.header-top-right li:hover {
  transform: translateY(-3px);
}

/* ------------ Header-Middle ----------------- */
.header-middle {
  width: 100%;
  display: flex;
  position: relative;
  align-items: center;
  font-family: var(--font-Lora);
  box-shadow: 0 2px 3px 0 var(--mid);
  background-color: white;
  padding: 0 20px;
}
.header-mobile-menu-icon
{
  width: 50px;
  height: 50px;
 
  font-size: 1.5rem;
  display: none;
}
.mobile-menu-header
{
  display: flex;
  align-items: center;
  gap: 10px;
}
.showmobilmenu .mobile-close-icon
{
  width: 50px;
  height: 50px;
  padding: 8px;
  font-size: 1.5rem;
  display: none;
}
.mobile-close-icon{
  display: none;
}
.header-mobile-menu
{
  box-shadow: 0 2px 3px 0 var(--mid);
  width: 200px;
  height: 100vh;
  position: absolute;
  background-color: white;
  left: 0;
  top: 0;
  display: none;
}
.showmobilmenu
{
  display: flex;
  flex-direction: column;
  z-index: 99999;
  justify-content: safe;
}
.header-mobile-logo
{
  width: 80%;
  height: 60px;
  padding: 4px;
}
.header-mobile-logo img {
  height: 100%;
  width: 100%;
  

}
.header-mobile-menulist
{
  padding: 4px;

}
.header-mobile-menulist a
{
  display: flex;
  gap: 10px;
  padding: 8px;
 border-bottom: 1px solid var(--dark);
  width: 100%;
}

.header-mobile-social
{
  
  margin-top: 5px;
  padding: 4px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  list-style: none;
  justify-content: center;
}
.header-mobile-social li{
  display: flex;
  align-items: center;
  justify-content: center;
  
  font-size: 1.2rem;
}
.header-mobile-contact
{
  
  font-size: 0.9rem;
}
.header-mobile-contact li
{
  padding: 4px;
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 1rem;
}


.header-middle-logo {
  width: 20%;
  height: 70px;
  

}

.header-middle-logo img {
  height: 100%;
  width: 100%;
  padding: 8px 4px;

}

.header-middle-menu {
  justify-content: space-between;
  display: flex;
  
  height: fit-content;
  width: 80%;
  
}

.header-middle-menu-list {
  display: flex;
  align-items: center;
  list-style: none;
  padding-left: 40px;
  color: black;
  width: 100%;
  gap: 0.5rem;
}

.header-middle-menu-list li {
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;

}

.header-middle-menu-list li a {
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.015em;

}

.header-middle-menu-list .active 
{
  font-weight: 600;
  background-color: var(--base);
  color: var(--color-light);
  border-radius: 4px;
}
.header-middle-menu-list .active a
{
  color: var(--color-light);
}
.header-middle-menu-list li a:hover {
  font-weight: 600;
  transform: translateY(-3px);
  border-bottom: 1px solid var(--text-dark);
}
.header-middle-menu-actions {
  display: flex;
  align-items: center;
margin-right: 30px;
  gap: 20px;

}

.notif,
.cart,
.user {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  position: relative;
  background-color: var(--lightest);

}

.cart i,
.user i {
  font-size: 1.2rem;
  color: var(--text-dark);
}

.cart span {
  height: 20px;
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  position: absolute;
  top: -20%;
  right: -20%;
  background-color: var(--color-warning);
  border-radius: 50%;
  color: white;
}

.user span {
  height: 20px;
  width: 20px;
  padding: 4px;
  display: flex;
  justify-content: center;
  align-items: center;

  position: absolute;
  bottom: 0;
  right: -30%;
  background-color: var(--color-danger);
  border-radius: 50%;

  color: white;
}

.menu-product-dropdown,
.user-dropdown,
.cart-dropdown {
  display: none;

}

/*Product DROPDOWN*/
.header-middle-menu-list li:nth-child(3):hover .menu-product-dropdown {
  display: block;
}

.menu-product-dropdown {
  position: absolute;
  width: 180px;
  height: auto;
  background-color: var(--lightest);
  top: 110%;
  left: 0;

  border-radius: 4px;
  z-index: 9999;
}

.menu-product-dropdown h4 {
  padding: 10px 10px;
  font-size: 1.2rem;
  font-weight: 400;
  background-color: var(--mid);
  border-radius: 8px 8px 0 0;
  color: var(--lightest);
  text-transform: capitalize;
}

.menu-product-dropdown-list {

  display: flex;
  flex-direction: column;

}

.menu-product-dropdown-category {
  padding: 6px 8px;
  display: flex;

  align-items: center;
  border-bottom: 1px solid var(--mid);
  font-size: 1rem;
}

.menu-product-dropdown-category:last-child {
  border-bottom: none;
}

.menu-product-dropdown-category i {
  font-size: 1rem;
  color: var(--text-dark);
  width: 20%;

}

.menu-product-dropdown-category p {
  font-size: 1rem;
  color: var(--text-dark);
  width: 80%;

}

.menu-product-dropdown-category:hover {
  background-color: var(--base);
}


/* UserDropdown */
.user:hover .user-dropdown,
.cart:hover .cart-dropdown {
  display: block;
  z-index: 99999;
}

.user-dropdown {
  position: absolute;
  width: 200px;
  height: auto;
  background-color: var(--lightest);
  top: 110%;
  right: 0;
  border-radius: 4px;
  z-index: 999;
  font-family: var(--font-Lora) !important;
}

.user-dropdown h4 {
  padding: 10px 10px;
  font-size: 1.2rem;
  font-weight: 400;
  background-color: var(--mid);
  border-radius: 8px 8px 0 0;
  color: var(--lightest);
  text-transform: capitalize;
}

.user-option {
  display: flex;
  flex-direction: column;
}

.user-option .option {
  padding: 6px 8px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--mid);

}

.user-option .option:hover {
  background-color: var(--base);
}

.user-option .option:last-child {
  border-bottom: none;
}

.user-option .logout {
  background-color: var(--color-danger);
  color: white;
}

.option i {
  width: 20%;
  font-size: 1rem;
  color: var(--text-dark);

}

.logout i {
  color: white;
}

.logout a {

  color: white !important;
}

.option a {
  width: 80%;
  font-size: 1rem;
  color: var(--text-dark);
}

/* CART */

.cart-dropdown {
  position: absolute;
  width: 400px;
  height: auto;
  background-color: var(--lightest);
  top: 110%;
  right: 0;
  border-radius: 4px;

}

.cart-dropdown h4 {
  padding: 10px 10px;
  font-size: 1.2rem;
  font-weight: 400;
  background-color: var(--mid);
  border-radius: 8px 8px 0 0;
  color: var(--lightest);
  text-transform: capitalize;
}

.dropdown-cart-list {
  display: flex;
  flex-direction: column;


}

.dropdown-cart-item {
  padding: 4px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--mid);

}
.emptycart
{
  justify-content: center;
  text-align: center;
}
.dropdown-cart-item:hover {
  background-color: var(--base);
}

.dropdown-cart-product-image {
  width: 80px;
  height: 60px;

}

.dropdown-cart-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dropdown-cart-product-info {
  width: 100%;
  margin-left: 10px;
  display: flex;
  flex-direction: column;
}

/* .dropdown-cart-product-info h5 {} */

.dropdown-cart-product-info a {
  font-weight: 600;
  line-height: 1.6;
  font-size: 1.1rem;
  color: var(--gray-dark);
  text-decoration: underline;
  text-transform: capitalize;
}

.dropdown-cart-product-info p {
  font-size: 0.9rem;
  margin: 0;
  font-weight: 400;
  color: var(--gray-dark);
  display: flex;
  align-items: center;
  width: 100%;
  line-height: 1.5;
}
.dropdown-cart-product-info p b
{
  width: 20%;
}
.dropdown-cart-product-action {
  width: 20px;
  height: 20px;
  padding: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

}

.dropdown-cart-product-action i {
  color: var(--color-danger);
  font-size: 0.9rem;
}

.dropdown-cart-action {
  display: flex;
  gap: 10px;
  padding: 8px 14px;
}

.dropdown-cart-action a {
  padding: 5px;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  border-radius: 4px;
  background-color: var(--primary-color);
  color: white;
}

.dropdown-cart-action .dangerbtn {
  background-color: var(--color-danger);
}

.dropdown-cart-action .successbtn {
  background-color: var(--color-success);
}

/* ------------ Header-End ----------------- */


.notficatin-alert {
  
  position: absolute;
  width: 500px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 999999;
  top: 20%;
  right: 0;
  animation: slideUpNotification 0.5s ease-in-out;
  margin-right: 10px;
  padding: 8px;
  border-radius: 8px 8px 8px 8px;
}

.auto-remove {
    transition: opacity 1s ease;
}

.auto-remove.fade-out {
    opacity: 0;
}

.danger-alert {
  right: 0;
  top: 20%;
  background-color: var(--color-danger);
  
}

.danger-alert .alert-close {
  border: 4px solid var(--color-danger);
  background-color: var(--color-danger); 
}

.success-alert {
  
  background-color: var(--color-success); 
  
}

.success-alert .alert-close {
  border: 4px solid var(--color-success);
  background-color: var(--text-success); 
}

.notficatin-alert-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  font-size: 2rem;
  color: white;
  
  
}

.notficatin-alert-details {
  color: white;
  
  font-family: var(--font-inter);
}

.notficatin-alert h5 {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.6;
}
.notficatin-alert span, 
.notficatin-alert p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.6;
}

.alert-close {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  
  color: white;
  padding: 5px;
  font-size: 1rem;
  position: absolute;
  top: -10%;
  right: 0;
  border-radius: 50% 50% 50% 50%;
  
  
}

/* ------------ Footer-Start ----------------- */
footer {
  width: 100%;
  background-color: #262421;
  font-family: var(--font-Lora) !important;
}

/* ------------ Footer-Top ----------------- */
.footer-top {
  display: flex;
  border-bottom: 1px solid var(--light);
  align-items: center;
  padding: 8px 24px;
}

.footer-top-logo {
  width: 20%;
  height: 60px;
}

.footer-top-logo img {
  height: 100%;
  width: 100%;
  filter: brightness(100);
}

.footer-top-slogan {
  text-align: center;
  padding: 8px;
  font-style: italic;
  width: 65%;
  font-weight: 300;
  font-size: 1.2rem;
  color: white;
  letter-spacing: 0.09em;

}

.footer-top-icons {

  width: 20%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: space-around;
  list-style: none;
}

.footer-top-icons li a i {
  color: white !important;
  font-size: 20px;
}

.footer-top-icons li:hover {
  transform: translateY(-2px);
}

/* ------------ Footer-Middle ----------------- */
.footer-middle {
  display: flex;
  padding: 8px 24px;
  border-bottom: 1px solid var(--light);

}

.footer-middle-contact {
  width: 25%;
  border-right: 1px solid var(--light);


}

.footer-middle-contact p {
  font-size: 1rem;
  color: white;
  margin-bottom: 8px;
  
}

.footer-middle-contact ul {
  display: flex;
  flex-direction: column;
  list-style: none;

  padding: 6px;
}

.footer-middle-contact ul li {
  border-bottom: 1px solid var(--light);
  display: flex;
  gap: 0;
  padding: 4px 0;
  align-items: center;

}

.footer-middle-contact ul li:last-child {
  border: none;
}

.footer-middle-contact ul li i {
  font-size: 1rem;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.footer-middle-contact ul li div {

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 5px;
  width: 100%;
}

.footer-middle-contact ul li span {
  width: 100%;
  color: var(--text-lightest);
  font-size: 1.3rem;
  font-family: var(--font-Playfair) !important;
  letter-spacing: 0.035em;
}

.footer-middle-contact ul li p {
  color: var(--gray-300);
  font-size: 0.89rem;
  margin-bottom: 1px;
  font-weight: 200;
  color: var(--lightest);

  width: 100%;
}



.footer-middle-links {
  display: flex;
  width: 75%;
  padding-left: 20px;

}

.footer-middle-links-home,
.footer-middle-links-webiste {
  flex: 2;
  padding: 2px;
}


.footer-middle-links-home h3,
.footer-middle-links-webiste h3,
.footer-middle-links-newsletter h3 {
  padding: 6px;
  width: 100%;
  font-size: 1.5rem;

  margin-bottom: 5px;
  color: var(--text-lightest);
}

.footer-middle-links-home ul li,
.footer-middle-links-webiste ul li {

  padding: 6px 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-middle-links-home ul li a,
.footer-middle-links-webiste ul li a {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-lightest);
}

.footer-middle-links-home ul li i,
.footer-middle-links-webiste ul li i {
  font-size: 0.9rem;

  color: var(--lightest);
}

.footer-middle-links-newsletter {
  flex: 3;

}

.footer-middle-links-newsletter p {
  margin-top: 10px;
  font-weight: 300;
  color: var(--lightest);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-middle-links-newsletter span {
  margin-top: 20px;
  font-size: 1rem;
  color: var(--light);
  font-weight: 400;
  margin-bottom: 1rem;
}

.footer-middle-links-newsletter .news-letterinput {

  padding: 4px;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.news-letterinput input {
  padding: 4px 8px;
  height: 50px;
  border-radius: 4px;
  font-size: 1rem;
}

.news-letterinput button {
  padding: 4px 8px;
  height: 50px;
  border-radius: 4px;
  color: white;
}

/* ------------ Footer-Bottom ----------------- */
.footer-bottom {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  justify-content: space-between;
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 400;
  text-align: center;
}
.footer-bottom a
{
 
}
/* ------------ Footer-End ----------------- */



/**************BANNER***********************/

.banner-section {
  position: relative;
  width: 100%;
}

.banner-slider {
  height: calc(100vh - 80px);
  display: flex;
  overflow: hidden;
}

.banner-video {
  
  height: calc(100vh - 80px);
  width: 100%;
  background-color: var(--mid);
}

.banner-video video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.banner {
  height: 100%;
  width: 100%;
  position: relative;
  background-color: var(--mid);
}
.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* black overlay with 50% opacity */
  pointer-events: none;
}


.banner img {
  height: 100%;
  width: 100%;
  object-fit: fill;
  position: relative;
}

.banner-info {
  font-family: var(--font-primary);
  padding: 0 24px;
  width: 100%;
  position: absolute;
  z-index: 103;
  bottom: 20%;
  color: var(--text-lightest);
  animation: slideUp 0.5s ease-in-out;
}

.banner-video-info{
  font-family: var(--font-primary);
  padding: 0 24px;
  width: 100%;
  position: absolute;
  z-index: 103;
  bottom: 20%;
  color: var(--text-lightest);
  animation: slideUp 0.5s ease-in-out;
}

.banner-video-info h1,
.banner-info h1 {
  font-size: 4rem;
  margin-bottom: 8px;
}

.banner-video-info p,
.banner-info p {
  font-size: 20px;
  margin-bottom: 16px;
}

.banner-video-action,
.banner-action {
  display: flex;
  font-family: var(--font-Lora);
  gap: 10px;
  margin-top: 12px;

}

.banner-video-action a,
.banner-action a {
  padding: 16px;
  width: fit-content;
  text-align: center;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  font-family: var(--font-Lora);
}

.banner-video-action a:nth-child(1),
.banner-action a:nth-child(1) {

  color: var(--lightest);
  background-color: var(--dark);
}

.banner-video-action a:nth-child(2),
.banner-action a:nth-child(2) {
  border: 1px solid var(--light);
}

.banner-dots {

  position: absolute;
  display: flex;
  bottom: 0;
  right: 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 18px;
  height: 25px;
  z-index: 103;
}

.banner-dots span {
  height: 15px;
  width: 15px;
  background-color: var(--dark);

  border-radius: 50%;
}

.banner-dots .active {
  border: 2px solid white;
}



/* ABout Section */

.section-about {
  display: flex;
  flex-wrap: wrap;

}

.section-about-left,
.section-about-right {
  width: 50%;
  padding: 12px;
  position: relative;
  
}
.section-about-left
{
  transform: translateX(-100%);
  animation: slidetestimonial-left 3s forwards;
}
.section-about-right
{
  transform: translateX(100%);
  animation: slidetestimonial-right 3s forwards;
}
.section-about-center
{
  width: 100%;
  padding: 12px;
  display: none;
}
.section-about-left .quote
{
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  width: 100%;
  text-align: left;
}
.showmore{
  display: block;
 animation: slideUp 0.5s ease-in-out;
}

.section-about-right .main-image {
  height: 410px;
  width: 100%;
  border: 10px solid var(--mid);
  filter: grayscale(0);

}

/* .section-about-right .main-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1;
} */

.section-about-right .about-more {
  height: 250px;
  width: 250px;
  position: absolute;
  top: -8%;
  left: -8%;
  z-index: 3;
}

.about-more .about-more-img {

  height: 100%;
  width: 100%;
  border-radius: 50%;
  border: 10px solid var(--mid);
}

.section-about-right .about-more-big {
  height: 250px;
  width: 250px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.about-more-big .about-more-big-img {

  height: 100%;
  width: 100%;
  border: 10px solid var(--mid);

}

.section-about-left h1 {
  font-family: var(--font-georgia) !important;
  font-size: 2.8rem;
  width: 100%;
  color: var(--text-dark);
  font-weight: 900;
  margin-bottom: 10px;
  margin-top: 8px;
 
}

.section-about-left h1 span {
  color: var(--text-dark);
  font-size: 3.5rem;
  font-weight: 900;
  font-family: var(--font-georgia) !important;
}
.section-about-center p,
.section-about-left p {

  font-family: var(--font-primary);
  font-size: 1.1rem;
  margin-bottom: 8px;
  line-height: 25px;
  color: var(--text-dark);
  

}

.section-about-left .readmore {
  margin-top: 15px;
  padding: 12px 18px;
  border: none;
  background-color: var(--dark);
  color: white;
  font-size: 1.2rem;
  text-transform: uppercase;
  border-radius: 4px;

}
/* .section-about-left button:hover
{
  background: none;
  border: 1px solid var(--mid);
  color: var(--text-dark);
} */
/* To show .section-about-center when a button is hovered, you need to use JavaScript or restructure your HTML so that .section-about-center is a sibling of the button and use the adjacent sibling selector (+) or general sibling selector (~) if possible. Example for adjacent sibling: */







.section-service-features {
  background-color: var(--color-dark);
  
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 16px 24px;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.service {
  padding: 15px;
  width: 100%;
  border-radius: 8px;
  perspective: 1000px;
  text-align: left;
  height: fit-content;
  border: 1px solid white;

}

.service:hover {
  transform: translateY(-5px);

}

.service:hover .service-info p {}

.service .service-icon {

  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 3rem;
  color: var(--lightest);
  
}

.service .service-info {
  
}

.service .service-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--color-light);
  text-transform: uppercase;
  font-family: var(--font-inter);
  font-weight: 600;
  letter-spacing: 0.015em;
  line-height: 1.6;
}

.service .service-info p {
  font-size: 0.8rem;
  color: white;
  display: none;
}


.section-categories {

  margin: 25px 0;
  display: grid;
  padding: 10px;

  grid-template-columns: repeat(8, 1fr) !important;
  gap: 20px;
}

.category {
  border-radius: 8px;
  
  display: flex;
  flex-direction: column;
}

.category:hover {
  transform: translateY(5%);
}

.category i {
  height: 60px;
  width: 60px;
  font-size: 2.5rem;
  margin-bottom: 4px;
  color: var(--lightest);
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;

}
.category img
{border-radius: 8px;
  width: 100%;
  height: 150px;
}
.category p {
  font-size: 1.2rem;
  color: var(--text-dark);
  font-weight: 600;
  text-align: center;
  margin-top: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  max-height: 40px; /* Ensure a max-width for ellipsis to work */
 


}

.section-team {
  

  font-family: var(--font-inter);
  
}
.team-info
{
  width: 100%;
  display: flex;
  padding: 40px 40px;
  
}
.team-info:nth-child(2)
{
  flex-direction: row-reverse;
  
}
.team-info-message
{
   width: 100%;
  padding: 20px 20px;
  
}
.message-head{
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 1.2rem;
}
.team-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40%;
  border-radius: 8px;
  justify-self: center;
  text-align: center;
  background-color: var(--lightest);
  border-radius: 8px;
  height: 100%;
}

.team-item img {
  width: 100%;
  height: 280px;
  border-radius: 8px 8px 0 0;
  object-fit: cover;

}

.team-item-info {
  width: 100%;
  padding: 8px;
  display: flex;
  flex-direction: column;
  
}

.team-item-info h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
}

.team-item h4 {
  padding: 4px 18px;
  position: absolute;
  font-family: var(--font-inter);
  color: white;
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: 600;
  width: 100%;
  text-align: center;
  animation: slideDown 0.5s ease-in-out;
  margin-bottom: 5px;
top: -5%;
  right: -5%;
  border-radius: 4px;
  line-height: 1.6;
}

.team-item .second {
  background-color: var(--color-warning);
  width: auto;
  white-space: nowrap;

}

.team-item .first {
  background-color: var(--color-danger);
  

}

.team-item-info h6 {
  font-family: var(--font-Playfair);
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 400;
}

.team-item-info p {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 8px;
  text-decoration: underline;
}

.team-item-social {
border-radius:  0 0 8px 8px;
  padding: 6px;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  list-style: none;
  gap: 20px;

  background-color: var(--light);
  animation: slideDown 0.5s ease-in-out;


}

.team-item-social li i {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 30px;
  width: 30px;
  font-size: 1.2rem;
}

.team-item:hover {
  transform: translateY(-5%);

}

.team-item:hover .team-item-social {
  display: flex;
  animation: slideDown 0.5s ease-in-out;
}

.team-item:hover h4 {
  display: block;
  display: flex;
  animation: slideDown 0.5s ease-in-out;
}

.team-item-social li i:hover {
  transform: translateY(-5%) scale(1.5);
}




.section-products-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
  gap: 20px;
  margin-top: 10px;
  font-family: var(--font-secondary);
 
}






.product {
  width: 100%;
  position: relative;
  box-shadow: 3px 3px 5px 0 var(--light);
  background-color: var(--lightest);
  border-radius: 8px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  
}

.product-image {
  border-radius: 4px;
  height: 230px;

}

.product-image img {
  height: 100%;
  border-radius: 4px 4px 0 0;
  width: 100%;
  object-fit: fill;
}



.product-details {
  padding: 10px 8px;
 
  justify-content: end;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;


}

.product-details h3 {

  font-size: 1.7rem;
  margin-bottom: 5px;
  color: var(--text-dark);
  font-weight: 700;
  text-align: start;
  vertical-align: middle;
  line-height: 1.5;
  
 

}

.product-details h4 {
  font-size: 1.25rem;
  margin-bottom: 2px;
  font-weight: 800;
  color: var(--text-dark) !important;
   line-height: 1.5;
  width: 100%; /* or set a fixed width like 250px */

}

.product-details p {
  font-size: 1rem;
  width: 100%;
  font-weight: 400;
  color: var(--text-dark);

  margin-bottom: 8px;
  
}

.product-details .product-buttons {
  margin-top: 5px;
  display: flex;
  flex-direction: row-reverse;
  gap: 1rem;
  
}

.product-buttons a
{
  text-align: center;
  width: 100%;
  padding: 4px 8px;
  border: none;
  background-color: var(--text-dark);
  color: white;
  border-radius: 4px;
  font-size: 0.9rem;
  line-height: 1.6;

}
.product-buttons button {
  text-align: center;
  width: 100%;
  padding: 8px 16px;
  border: none;
  
  background-color: var(--color-warning);
  color: white;
  border-radius: 4px;
  font-size: 0.9rem;
}
.product-buttons a:hover,
.product-buttons button:hover {
  transform: translateY(-5%);
}



.product:hover .product-details .product-buttons {
  display: flex;
  /* animation: slideDown 0.8s ease-in-out; */
}
.product:hover .product-details h4
{
  overflow: visible;
  white-space: normal;
}
.product:hover .product-details p
{
  display: block;
}
.product:hover .pro-info {
  display: flex;
  /* /  animation: slideDown 0.5s ease-in-out; */
}

@keyframes slideDown {
  0% {
    transform: translateY(-50%);
    opacity: 0.2;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideUp {
  0% {
    transform: translateY(50%);
    opacity: 0.2;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideUpNotification {
  0% {
    transform: translateY(90%);
    opacity: 0.0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}



.product-action-one {
  position: absolute;
  top: 5%;
  left: 0;
  background-color: var(--base);
  color: white;
  padding: 8px;
  border-radius: 0 8px 8px 0;
  font-size: 1rem
}
.product-action-two {
  position: absolute;
  top: 15%;
  right: 0;
  background-color: var(--color-info);
  color: white;
  padding: 8px;
  border-radius: 8px 0 0 8px;
  font-size: 1rem;
  display: none;
}
.product-action-two b,
.product-action-one b {
  font-size: 14px;
}

.product-details .product-code {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.product-code-info {
  font-size: 0.9rem;
  text-transform: capitalize;
  text-decoration: underline;
}

.product-code-star
{
  
}
.product-code-star i {
  color: var(--dark);
}
.product-code-star b {
  color: var(--text-dark);
  text-align: end;
}
.pro-info {
  margin-bottom: 5px;
}

.pro-info table {
  width: 100%;
  font-size: 0.9rem;
  text-align: left;
  border-collapse: collapse;
  color: var(--gray-600);
}

.pro-info table th {
  padding: 4px;
  font-weight: 500;

}

.pro-info table td {
  padding: 4px;
  font-weight: 300;

}





.section-testimonial-grid {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 60px;      /* vertical gap */
  column-gap: 40px;   /* horizontal gap */
  padding:  35px 25px;

}

.testimonial {

  width: 100%;
  border-radius: 8px;
  position: relative;
  height: fit-content;
  opacity: 0;
}
.testimonial:nth-child(1) {
  transform: translateX(-100%);
  animation: slidetestimonial-left 3s forwards;
}
.testimonial:nth-child(2) {
  transform: translateY(100%);
  animation: slidetestimonial-up 3s forwards;
}
.testimonial:nth-child(3) {
  transform: translateX(100%);
  animation: slidetestimonial-right 3s forwards;
}

@keyframes slidetestimonial-up {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slidetestimonial-left {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slidetestimonial-right {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}






.testimonial-message {
  /* border-top: 2px solid var(--color-gray-900);
                    border-right: 2px solid var(--color-gray-900);
                    border-bottom: 2px solid var(--color-gray-900);
                    border-left: 2px solid var(--color-gray-900); */

  color: var(--text-dark);
  margin-bottom: 10px;
  padding: 35px 20px 35px 30px;
  width: 100%;

  position: relative;
  line-height: 22px;
  border-radius: 8px;
  box-shadow: 1px 2px 2px 1px var(--mid);
  background-color: var(--lightest);
  
}

.testimonial-message p {
  font-size: 1rem;

}

.testimonial-message::before {
  border-radius: 30%;

  content: '\f10d';
  /* FontAwesome icon code for quote-left */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 1px;
  left: 1px;

  font-size: 30px;
  padding: 10px;
  color: var(--dark);
}

.testimonial-message::after {
  border-radius: 30%;


  content: '\f10e';
  /* FontAwesome icon code for quote-right */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  bottom: 1px;
  padding: 10px;
  right: 1px;
  font-size: 30px;
  color: var(--dark);
}

.testimonial-info {
  position: absolute;
  width: auto;
  min-width: 300px;
  background-color: var(--mid);
  width: fit-content;
  bottom: -10%;
  left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: start;
  z-index: 5;
  border-radius: 50px;

  box-shadow: 1px 2px 2px 1px var(--base);

}

.testimonial-info-photo {
  border-radius: 50px;
  height: 50px;
  width: 50px;
  border: 5px solid white;

}

.testimonial-info-photo img {
  height: 100%;
  border-radius: 50px;

}

.testimonial-info-design {

  width: 100%;
  text-align: start;
  display: flex;
  flex-direction: column;

  align-items: center;
  text-align: left;
  color: var(--color-light);
  font-family: var(--font-Lora);
}

.testimonial-info-design h4 {
  font-size: 1.2rem;

  width: 100%;
  text-align: start;
}

.testimonial-info-design p {
  width: 100%;
  font-size: 1rem;
  margin-bottom: 0;
  text-align: start;
}

.testimonial-info-design p span {
  width: 100%;
  font-size: 12px;
  margin-bottom: 0;
  text-align: start;
  font-weight: 400;

}

.testimonial-info-product {
  position: absolute;
  width: auto;
  min-width: 300px;
  background-color: var(--mid);
  width: fit-content;
  top: -20%;
  right: -5%;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: start;
  z-index: 5;
  border-radius: 8px;
  box-shadow: 1px 2px 2px 1px var(--base);
  color: white;
 

}
.testimonial-info-product2 {
  
  background-color: var(--dark);
  width: fit-content;
  padding: 0 15px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: start;
  z-index: 5;
  border-radius: 8px;
  box-shadow: 1px 2px 2px 1px var(--base);
  color: white;
  margin-bottom: 5px;
  display: none;

}
.testimonial-product-photo
{
  height: 50px;
  width: 50px;
  
}
.testimonial-product-photo img {
  height: 100%;
  width: 100%;

}
.testimonial-info-product span{
  font-size: 1.1rem;
}
/*Login Page*/
.login-container {
  font-family: var(--font-inter);
  width: 100%;
  display: flex !important;
  padding: 5rem 3rem;
  justify-content: center;
}

.login-box {
  width: 600px;
  padding: 16px;
  background-color: var(--mid);
  border-radius: 8px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
}

.login-box h1 {
  font-size: 2rem;
  margin-bottom: 4px;
  color: var(--color-light);
  text-align: center;
  font-weight: 800;
  text-transform: capitalize;
}

.login-box p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: var(--color-light);
  text-align: center;
  font-weight: 400;
}

.login-box-register {

  text-align: center;
  color: var(--light);
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;

}

.login-box-register a {

  font-weight: 500;
  text-decoration: none;
  text-transform: capitalize;
  text-underline-offset: 8px;
  color: var(--color-light);
  text-decoration: underline;
}

.login-box-register:hover {
  transform: translateY(-5%);
}

.login-box-register span {
  color: var(--color-light);
  font-weight: 400;

}

.form-action {
  display: flex;
  flex-direction: column;
  width: 100%;

}
.form-action h3{
  margin-bottom: 5px;
  color: var(--text-dark);
}
.form-action p{
   margin-bottom: 5px;
   color: var(--text-dark);
   font-weight: 400;
   line-height: 1.6;
}
.form-action span{
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 1.1rem;
   color: var(--text-dark);
}

.form-info{
  font-weight: 400 !important;
  font-size: 0.9rem !important;
  color: var(--text-warning) !important;
}
.form-note{
  font-weight: 600;
  color: black !important;
  
  font-size: 1.2rem;
}
.form-warn
{
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 1rem;
}

.form-action-row
{
  display: flex;
}

.form-action-box {
  display: flex;
  flex-direction: column;
  padding: 4px;
  width: 100%;

}

.form-action-box-two {
  display: flex;
  padding: 8px;
}

.form-action-box-two .error,
.form-action-box .error {
  /* border: 1px solid crimson;  */
  border-radius: 4px;
}

.form-action-box label {
  display: none;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 4px;
  color: var(--color-light);
}

.form-action-box-two .form-action-input-box-two {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-action-box .form-action-input-box {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  
}

.form-action-input-box-two input {
  padding: 10px;
  height: 40px;
  width: 100%;
  font-size: 0.8rem;
  font-weight: 300;
  
}

.form-action-input-box-two i,
.form-action-input-box i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  padding: 6px;
  height: 35px;
  min-width: 50px;
  background-color: var(--lightest);
  border-radius: 4px;
  color: var(--dark);

}

.form-action-box .form-action-checkbox-box {
  display: flex;
  align-items: center;
  gap: 10px;


}

.form-action-box .form-action-button-box {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
  margin-top: 15px;
  padding: 0 10px;
  

}

.form-action-checkbox-box input {
  width: 20px;
  height: 30px;

}

.form-action-checkbox-box span {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--color-light);
}

.form-action-input-box textarea
{
  padding: 8px;
  border-radius: 4px;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--font-inter);
  color: var(--text-dark);
  border: none;
  transition: border 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  background-color: white;

}
.form-action-box select,
.form-action-input-box input {
  padding: 8px;
  height: 35px;
  border-radius: 4px;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--font-inter);
  color: var(--text-dark);
  border: none;
  transition: border 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  background-color: white;

}




.form-action-button-box button {
  padding: 12px;
  font-size: 1rem;
  background-color: var(--color-dark);
  border: none;
  border-radius: 4px;
  min-width: 180px;
  color: var(--color-light);
}
.form-action-button-box button:nth-child(2)
{
  background-color: var(--color-warning);
}
.form-action-button-box button:hover {
  
  border: 1px solid var(--lightest);
  transform: translateY(-5%);
  color: var(--color-light);

}

/* Dashboard */
.dashboard {
  display: flex;

  font-family: var(--font-Lora);
}

.dashboard-left {
  width: 18%;
  border-right: 2px solid var(--mid);
}

.dashboard-left ul {
  display: flex;
  flex-direction: column;
}

.dashboard-left ul li {
  padding: 6px;
  display: flex;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
  align-items: center;
  border-bottom: 1px solid var(--mid);
  color: var(--text-dark);
}

.dashboard-left ul .active,
.dashboard-left ul li:hover {
  background-color: var(--base);
  color: var(--color-light);
}

.dashboard-left ul .active i,
.dashboard-left ul li:hover i {
  color: var(--color-light);
  transform: scale(1.3);
}

.dashboard-left ul li i {
  width: 30px;
  height: 30px;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-dark);
}

.logoutbutton {

  width: 100%;

  padding: 12px;

}

.logoutbutton a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  padding: 8px;
  background-color: var(--color-danger);
  color: white;
  text-align: center;
}

.dashboard-right {
  width: 85%;
}

.tab-details {
  width: 100%;
  display: flex;
  flex-wrap: wrap;

}

.tab-content {
  display: none;
}

.dashboard-right .active {
  display: block;
}

.tab-title {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 4px;
  background-color: var(--base);
  color: var(--color-light);
  border: 1px solid var(--mid);
}

.tab-title-left {
  padding: 5px;
  width: 100%;
  gap: 10px;
  display: flex;
  align-items: center;
}

.tab-title-left i {
  width: 25px;
  height: 25px;
  font-size: 1.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tab-title-left h2 {
  width: 95%;
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
}

/* DASHMAIN */
.dashboard-user {
  margin-bottom: 30px;
  font-size: 2rem !important;

  font-weight: 600;
  display: flex;
  align-items: center;

}

.dashboard-user span {
  color: var(--color-danger);
  border-bottom: 3px solid var(--color-danger);
}

.dashboard-user i {
  font-size: 4rem;
  color: var(--color-danger);
  margin-right: 10px;
}

.dashboard-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: auto;
  align-items: start;
  

}

.dashboard-contact p {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: start;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);

}

.dashboard-contact p i {
  font-size: 1.2rem;
  color: var(--text-dark);
}

.dashboard-grid {
  display: grid;
  padding: 16px;
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.dashboard-grid-item {
  padding: 8px;
  text-align: center;

  border-radius: 4px;
}

.dashboard-grid-item h1 {
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--color-light);
}

.dashboard-grid-item p {
  font-size: 1rem;
  color: var(--color-light);
  font-weight: 400;
}

.dashboard-grid-item:nth-child(1) {
  background-color: var(--color-danger);
}

.dashboard-grid-item:nth-child(2) {
  background-color: var(--color-warning);
}

.dashboard-grid-item:nth-child(3) {
  background-color: var(--color-success);
}

.dashboard-grid-item:nth-child(4) {
  background-color: var(--color-info);
}

.dashboard-grid-item:nth-child(5) {
  background-color: var(--base);
}

/* DASHADDR */
.address-list {
  padding: 16px 24px;
  gap: 15px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);


}

.address-list li {
  width: 100%;
  padding: 8px;
  background-color: var(--lightest);
  display: flex;
  gap: 10px;
  align-items: center;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

}

.address-list li .address-info {
  width: 100%;
  padding: 5px;
  font-family: var(--font-Lora);

}

.address-info h3 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 5px;
}

.address-info h4,
.address-info h5 {
  font-weight: 300;
  color: var(--gray-900);
  font-size: 1rem;
  text-decoration: underline;
  margin-bottom: 1px;
}

.address-info p {
  font-weight: 300;
  font-size: 1rem;
  margin-top: 5px;
  margin-bottom: 4px;
  color: var(--gray-900);
}

.address-list li i {
  font-size: 0.9rem;
  background-color: var(--color-danger);
  padding: 8px;
  color: white;
  border-radius: 4px;
  height: 25px;
  width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DASHORDER */
.order-conatiner {
  padding: 16px 24px;
}

.order-card {
  font-family: var(--font-Lora);
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;

}

.order-header {
  padding: 8px 8px;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  align-items: center;

}

.order-header-left {
  width: 69%;
  display: flex;
  flex-direction: column;
}

.order-header-right span,
.order-header-left span {
  padding: 2px 5px;
  font-size: 1rem;
  font-weight: 500;
}

.order-header-right {
  width: 25%;
  display: flex;
  flex-direction: column;
  text-align: end;
}

.order-header-icon {
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--base);
  padding: 4px;
  border-radius: 4px;
}

.order-header-icon i {
  color: var(--gray-50);
  font-size: 1.5rem;
}

.order-details {
  display: none;
  flex-wrap: wrap;

  margin-top: 10px;
  width: 100%;
}

.showorders {

  display: flex;

}

.order-info {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--base);

}

.order-items h4,
.order-status h4,
.order-info h4 {
  background-color: var(--base);
  color: white;
  padding: 6px 6px;
  font-size: 1.2rem;
  font-weight: 500;
}

.order-info-list {
  display: flex;
  padding: 6px;
  list-style: none;
  flex-direction: column;
  gap: 3px;

}

.order-info-list li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  padding: 4px;
}

.order-info-list li p {
  font-weight: 300;
  font-size: 1rem;
  text-align: right;
}

.order-info-list li span {
  font-weight: 500;
  font-size: 1rem;
  text-align: left;
}

.order-status {
  padding: 8px;
  display: grid;

}

.ecommerce {
  grid-template-columns: repeat(4, 1fr);
}

.customize {
  grid-template-columns: repeat(6, 1fr);
}

.order-status-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4px;
  position: relative;
}

.order-status .spostion .status-icons {
  background-color: var(--color-success);
  color: var(--color-light);
}

.order-status .spostion:after {
  content: '';
  position: absolute;
  top: 22%;
  left: 0;
  width: 100%;
  height: 6px;
  height: 6px;
  background-color: var(--color-success);
}


.order-status-item .status-icons {
  height: 35px;
  width: 35px;
  background-color: var(--base);
  color: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 5px;
  z-index: 99;

}

.order-status .active .status-icons {
  background-color: var(--color-success);
}

.order-status-item .active .status-icons i {
  font-size: 1rem;
  color: white;
  z-index: 99;
}

.order-status-item h5 {
  font-size: 0.9rem;
  margin-bottom: 2px;
  font-weight: 500;
}

.order-status-item p {
  font-size: 0.8rem;
  font-weight: 300;
}

.order-items {
  display: flex;
  flex-direction: column;
  width: 69%;


}

.order-items table {
  width: 100%;
  border-collapse: collapse;
}

.order-items table thead th {
  padding: 8px;
  text-align: center;

}

.order-items table tr {
  border-bottom: 1px solid var(--base);
}

.order-items table tbody td {

  padding: 6px;
  text-align: center;

}

.order-items table tbody tr .item {
  text-align: start;
  display: flex;
  align-items: center;
  gap: 5px;
}

.order-items table .item img {
  width: 40px;
  height: 40px;
}

.cancellation {
  display: flex;
  padding: 8px;
  justify-content: space-between;
  height: fit-content;

}

.cancellation h5 {
  font-size: 1.2rem !important;
}

.cancellation button {
  padding: 4px 4px;
  background-color: var(--color-danger);
  border: none;
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 4px;
}

.cancellation button i {
  font-size: 1.2rem;
}

/* DASHMAIN */
.tab-details-notifcation {
  width: 100%;
  padding: 16px 24px;
}

.tab-details-change
 {
  width: 50%;
  padding: 8px;
}
.tab-details-profile {
  width: 50%;
  padding: 8px;
}

/* DASHMAIN */
/* DASHMAIN */
.support-section {
  display: flex;
  font-family: var(--font-inter);
}

.support-section-left {
  width: 50%;
  padding: 20px;
}

.support-section-right {
  width: 50%;
  padding: 20px;
}

.support-section-right p,
.support-section-right h3 {
  margin-bottom: 10px;
}

.support-category {
  margin-top: 15px;
  line-height: 1.6 ;
}

.support-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.support-category ul {
  list-style: none;
  display: flex;
  flex-direction:
  column;
  gap: 10px;
  margin-top: 10px;
}



.sup-heder
{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 8px;
  background-color: var(--light);
  border-radius: 4px 4px 0 0;
  line-height: 1.6 ;
  
}
.sup-heder span
{
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
 
}
.sup-heder i
{
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 1.2rem;
 color: white;
  
}
.support-category li p
{
  padding: 8px 4px;
  font-weight: 400;
  font-size: 1rem;
  display: none;
  color: var(--text-dark);
  
}
.support-category li:hover .sup-heder i
{
  transform: rotate(180deg);
  transition: transform 0.5s ease-in-out;
}

.support-category li:hover p
{
  display: block;
  animation: slideDown 0.5s ease-in-out;
  border-left: 1px solid var(--base);
  border-bottom: 1px solid var(--base);
  border-right: 1px solid var(--base);
}

/* Product Page */
.product-page {

  display: flex;
  justify-content: start;
  font-family: var(--font-Lora);
}

.product-page-left {
  
  display: flex;
  flex-direction: column;
  gap: 0px;
  justify-content: end;
  
  
}

.product-page-right {
  position: relative;
  padding: 0 8px;
  display: flex;
  flex-direction: column;
  height: auto;
  font-family: var(--font-inter);
  
  justify-content: space-between;
}
.product-var
                            {
                              
                              
                                display: flex;
                              
                                align-items: center;
                                margin-bottom: 8px;
                                line-height: 1.6;
                               gap: 0px;
                            }
                            .var-group
                            {
                               
                                width: 80%;
                                display: grid;
                                grid-template-columns: repeat(3,1fr);
                                align-items: center;
                                gap: 5px;
                                
                            }
                            .var-select
                            {
                                width: 75%;   
                            }
                            .product-var h6
                            {
                                width: 25%;
                                font-size: 1.2rem;
                                font-family: var(--font-inter) !important;
                                font-weight: 600;
                                padding: 4px;
                                
                            }
                            .var-group-radio
                            {
                                border: 1px solid var(--mid);
                                display: flex;
                                align-items: center;
                                gap: 10px;
                                padding: 2px;
                                border-radius: 4px;
                                font-size: 1rem;
                            }
                            .var-group-radio label,
                            .var-group-radio-info label
                            {
                                color: var(--text-dark);
                                font-weight: 600;
                                font-size: 1.1rem;
                            }
                            .var-group-radio-info span
                            {
                                color: var(--text-dark);
                            }
                            .var-select select
                            {
                              width: 100%;
                              padding: 6px;
                              border: 1px solid #ccc;
                              border-radius: 8px;
                              color: var(--text-dark);
                              font-size: 16px;
                              background-color: transparent;
                              font-weight: 400;
                              appearance:none; /* Remove default arrow in most browsers */
                              -webkit-appearance: none;
                              -moz-appearance: none;
                              background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="gray"><polygon points="0,0 12,0 6,6"/></svg>');
                              background-repeat: no-repeat;
                              background-position: right 12px center;
                              background-size: 13px;
                              cursor: pointer;
                            }
                            .var-select .optionfinish
                            {
                              padding: 8px;
                            }
                           
/* product Left Side */
.product-page-left-images {
  
  display: grid;
  grid-template-columns: repeat(5,1fr);
  
}

.images-item {
  height: 120px;
  
  padding: 4px;
  
}

.images-item img {
  height: 100%;
  width: 100%;
  border-radius: 8px;
  object-fit: fill;
}

.product-page-left-master {
  width: 600px;
  
  position: relative;
  overflow: hidden;
  
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
 

}

.master-item {
  flex: 0 0 100%;
  
  
  position: relative;
}

/* .master-item:hover {
  transform: scale(.5);
  z-index: 9999;
  border: 2px solid black;
 
} */
.master-item img {
  width: 100%;
  height: 420px;
  max-height: 480px;
  display: block;
  border-radius: 8px;
  object-fit: fill;
}

.prev,
.next {
  position: absolute;
  top: 80%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 0;
  font-size: 0.9rem;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.zoom-box {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 2px solid #000;
  background-repeat: no-repeat;
  background-size: 1200px 800px;
  /* Twice the size of original */
  display: none;
  pointer-events: none;
  background: rgba(255, 255, 255, 1);
  border-radius: 50%;
  overflow: hidden;
}

/* product Right Side */
.product-page-right h4 {
  color: var(--text-dark);
  font-weight: 800;
  font-size: 2.1rem;
  line-height: 1.2;
  
}
.product-page-right h6 {
  color: var(--text-dark);
  
  line-height: 1.5;
  
}
.product-page-right p {
  
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 500;
  
  line-height: 1.4;
 
  
}




.product-note {
  
  font-weight: 400;
  font-size: 1.15rem;
  padding: 4px;
  color: var(--text-dark);
  line-height: 1.6;
}

.product-note b {
  font-weight: 600;
  font-size: 1.2rem;
}

.product-page-action {
  display: flex;
  gap: 8px;
  padding: 0 4px;
  
  line-height: 1.6;
}

.product-cart {
  padding: 8px;
  display: flex;
  justify-content: center;
  border: 1px solid var(--gray-600);
  width: 150px;
  gap: 8px;
  justify-content: space-around;
  align-items: center;
  

}

.product-cart i {
  font-size: 1rem;

  padding: 6px;
}

.product-cart input {
  width: 35px;
  border: 1px solid var(--mid);
  border-radius: 0;
  color: var(--text-dark) !important;
  padding: 6px;
  font-size: 0.8rem;
  appearance: none; /* Remove default arrow in most browsers */
                              -webkit-appearance: none;
                              -moz-appearance: none;
}

.product-page-action-button {
  width: 100%;
  
  padding: 6px;
  display: flex;
  gap: 10px;

}

.product-page-action-button button {
  padding: 8px 16px;
  border-radius: 8px;
  
  width: 50%;
  border: none;
  color: white;
}

.addtocart {
  background-color: var(--color-warning);
}

.customization {
  background-color: var(--color-dark);
}
.product-breadcrum
{
  display: flex;
  padding: 0 4px ;
  align-items: center;
}
.product-breadcrum a
{
   
  
  font-size: 1rem;
}
.product-breadcrum a::after {
  content: ">";
  margin: 15px 10px 15px 10px;
  color: #6c757d;
  height: 15px;
  font-size: 1.2rem;
}
.product-breadcrum a:last-child:after {
  content: none;
}
.product-page-info-right-rating {
  font-family: var(--font-inter);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--base);
  line-height: 1.6;
  
  
}

.star-rating {
  
  


}

.star-rating i {
  color: gold !important;
  font-size: 1.5rem;
}

.stockspan {
  
  color: white;
  padding: 4px 8px;
  background-color: var(--color-success);
  font-size: 1rem;
  border-radius: 8px;
}

.ordercount {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: start;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1.2rem;
 
  padding: 0 4px;
  
}
.ordercount i{
  color: var(--color-warning);
  font-size: 1.5rem;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-page-info-right-rating-price-box {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--font-inter);
  color: var(--color-warning);
  margin-bottom: 20px;
  
                                line-height: 1.6;
  
}

.product-page-info-right-rating-price-box h2 {
 
  display: flex;
  gap: 10px;
  align-items: center;



}

.product-page-info-right-rating-price-box h2 b {
  color: var(--text-dark);
  font-size: 2.5rem;
}

.product-page-info-right-rating-price-box h3 {
 
  font-size: 2rem !important;
  color: var(--text-dark);
}

.product-tab-section {
font-family: var(--font-inter);
  margin-top: 15px;
}

.product-tab-section-header {
  color: white;
  padding: 5px;
  
  background-color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-tab-section-header-logo {
  display: flex;
  gap: 8px;
  align-items: center;
}

.product-tab-section-body {

  padding: 8px;
}

.product-tab-section-header i,
.product-tab-section-header-logo i {
  height: 30px;
  width: 30px;
  padding: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
}

.product-tab-section-header-logo h1 {
  font-size: 1.3rem;
}

.pro-detials {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding: 18px;

}

.pro-item {
  padding: 8px;
  background-color: var(--lightest);
  text-align: center;
  color: var(--color-dark);
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  font-size: 0.9rem;
  height: auto;
  position: relative;
  border-radius: 8px;

}

.pro-item i {
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 2rem;
  height: 50px;
  width: 30px;
  background-color: var(--gray-100);

}

.pro-item strong {
  font-size: 1rem;
  margin-bottom: 2px;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
}

.review {
  width: 100%;
  background-color: var(--lightest);
  border-radius: 8px;
  padding: 18px 8px;
  color: var(--text-dark);
  position: relative;
  height: fit-content;
}

.review .etsy
{
  height: 30px;
  width: 30px;
  background-color:orangered;
  color: white;
  position: absolute;
  top: -5px;
  left: -5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 4px;
}

.review span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  font-size: 1.2rem;

}

.review p {

  font-size: 1rem;
  padding: 0 8px;
}
.reviewrating
{
    color: gold;
    font-size: 1rem;
}
.usecases-grid
{
  display: grid !important;
  grid-template-columns: repeat(6,1fr);
  gap: 10px;
}
.usecases-grid img
{
  height: 200px;
  width: 100%;
}


/* Product-List_page */
.product-list-page {
  width: 100%;
  font-family: var(--font-Lora);

}


.product-list-page-body {
  
  width: 100%;
  display: flex;
  height: fit-content;
}

.product-list-page-filter {
  padding: 10px;
  width: 20%;
  height: fit-content;
}

.category-filter {
  display: flex;
  flex-direction: column;

}

.filter-box {}

.filter-body {
  border: 1px solid var(--mid);
}

.filter-header {
  background-color: var(--base);
  padding: 6px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.filter-header span {
  font-size: 1rem;
  color: var(--color-light);
}

.filter-header i {
  display: none;
  color: var(--color-light);
}

.filter-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 6px;
  border-bottom: 1px solid var(--mid);

}

.filter-item .rangebox
{
  width: 100%;
}
.range
{
  font-size: 1rem;
}
.filter-item p {
  font-size: 1rem !important;
  color: var(--text-dark) !important;
}


.product-list-page-products {
  width: 80% !important;
  padding: 10px;
  grid-template-columns: repeat(4, 1fr) !important;
}




.wholesale-whyus {
  margin-bottom: 0;

}

.wholesale-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  list-style: none;
  justify-content: center;
  padding: 20px 25px ;
}

.wholesale-whyus-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--dark);
  padding: 16px 8px;
  position: relative;
  height: fit-content;
  border-radius: 8px;
}

.wholesale-whyus-item img {
  height: 100%;
  object-fit: fill;
  border-radius: 8px 8px 0 0;
  margin: 0;
  width: 100%;

}

.wholesale-whyus-item h4 {
  font-family: var(--font-inter);
  margin: 0;
  color: var(--color-light);
  border-radius: 0 0 8px 8px;
  font-size: 1.2rem !important;
  text-transform: uppercase;
  font-weight: 600;
  margin-left: 40px;
  line-height: 1.6;
  
}

.wholesale-whyus-item i {
  height: 50px;
  width: 50px;
  
  display: flex;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-light);
  background-color: var(--mid);
  align-items: center;
  margin-bottom: 5px;
  position: absolute;
  top: -6%;
  left: -8%;

}

.wholesale-grid .active p
{
  
  animation: slideDown 0.5s ease-in-out;
  
}
.wholesale-grid .active i{
  animation: coolPulse 1.2s ease-in-out infinite;
}
@keyframes coolPulse {
  0%, 100% {
    transform: scale(1);
    text-shadow: 0 0 5px var(--dark), 0 0 10px var(--dark), 0 0 20px var(--dark);
  }
  50% {
    transform: scale(1.2);
    text-shadow: 0 0 10px var(--dark), 0 0 20px var(--dark), 0 0 40px var(--dark);
  }
}

.wholesale-whyus-item p {
  font-size: 0.9rem;
  display: none;
  color: var(--color-light);
  ;
}


.wholesale-options {
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;

}

.wholesale-designer {
  padding: 15px 30px;
  width: 50%;
 
  
}
.wholesale-designer a
{
  padding: 8px 16px;
  font-size: 1.2rem;
  background: var(--dark);
  border-radius: 4px;
  color: white;
}
.wholesale-designer h1
{
  
  font-size: 2.2rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.wholesale-designer p
{
  
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.5;
}
.wholesale-designer-info {
  padding: 15px;
  width: 45%;
  height: 350px;
  
}

.wholesale-designer-info img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: fill;
}

.wholesale-history {
  margin-bottom: 50px;

}

.wholesale-history-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  padding: 20px 25px;

}
.home-blog-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  padding: 20px 25px;
}


.wholesale-history-item {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  font-family: var(--font-inter) !important;
}

.wholesale-history-item img {
  width: 100%;
  height: 260px;
  border-radius: 8px 8px 0 0;
}

.wholesale-history-item .date {
  width: auto;
  background-color: var(--dark);
  position: absolute;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  top: 2%;
  left: 2%;
  font-family: var(--font-inter) !important;
}

.wholesale-history-info {
  height: auto;
  position: relative;
  padding: 16px;
  color: var(--text-dark);
  border-radius: 0 0 8px 8px;
  background-color: var(--light);
  box-shadow: 5px 5px 3px 0 var(--color-gray-400);
}

.wholesale-history-info p {
  font-family: var(--font-inter) !important;
  margin: 0;
  padding: 0;
  text-align: left !important;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.wholesale-history-info h4 {
  font-family: var(--font-inter) !important;
  margin: 0;
  text-align: left !important;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 12px;
  

}

.wholesale-history-info a {
  width: 100%;
  text-align: end;
  padding: 8px 16px;
  font-family: var(--font-inter);
  border-radius: 8px;
  background-color: var(--dark);
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 8px;
  color: white;

}

.wholesale-store-flex {
  display: flex;
  height: 100%;
}

.wholesale-store-left {
  padding: 8px;
  width: 40%;
  display: flex;
  flex-direction: column;
  height: 100%;

}

.wholesale-store-right {
  padding: 8px;
  width: 60%;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.wholesale-store-right form span
        {
            font-weight: 600;
            color: var(--secondary-color);
        }
        .wholesale-store-right form p
        {
            font-weight: 400;
            font-size: 14px;
            color: var(--secondary-color);
        }



.wholesale-store-left .offer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  
  margin-top: 20px;
}
.wholesale--offer h2
{
  font-size: 2.2rem;
  color: var(--text-dark);
}
.wholesale--offer p
{
  font-size: 1.2rem;
  color: var(--text-dark);

}
.offer {
  position: relative;
  border: 1px solid var(--base);
  min-height: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: space-around;
}

.offer h2 {
  font-size: 1.8rem;
color: var(--text-dark);
  text-align: center;
  width: 60%;
   
}
.offer h1
{
  color: var(--text-dark);
  font-size: 2rem;
  width: 40%;
  
   text-align: center;

}
.offer h3
{
  color: var(--text-dark);
  font-size: 1.6rem;
  width: 80%;
   
  text-align: center;
}

/*Customization  */
.steps
                    {
                      
                        padding: 20px;
                        display: flex;
                        justify-content: space-evenly;
                        font-family: var(--font-Lora);
                        position: relative;
                        
                    }
                    .step
                    {
                        padding: 8px;
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        align-items: center;
                        width: 30%;
                        gap: 4px;
                        position: relative;
                        opacity: 0;
                        transform: scale(0.8) translateY(40px);
                        transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
                        
                    }

                    .step.animate {
                      opacity: 1;
                      transform: scale(1) translateY(0);
                      animation: popIn 0.8s ease-out;
                  }
.step.in-view {
    opacity: 1;
    transform: scale(1) translateY(0);
}
                   
                  @keyframes fadeSlideUp {
                    to {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }



                @keyframes popIn {
                  0% {
                      opacity: 0;
                      transform: scale(0.8) translateY(40px);
                  }
                  60% {
                      opacity: 1;
                      transform: scale(1.05) translateY(-8px);
                  }
                  100% {
                      opacity: 1;
                      transform: scale(1) translateY(0);
                  }
              }
                    .step::before {
                        content: '';
                        position: absolute;
                        top: 35%;
                        right: -25%;
                        width: 150px;
                        height: 6px;
                        background-color: var(--base);
                    }
                    .step:last-child:before {
                        display: none;
                    }
                    .step .stepno
                    {
                        width: 90px;
                        height: 90px;
                        margin-bottom: 15px;
                        border-radius: 50%;
                        font-family: var(--font-inter);
                        display: flex;
                        justify-content: space-around;
                        align-items: center;
                        font-size: 3rem;
                        line-height: 120px;
                        vertical-align: middle;
                        text-align: center;
                        background-color: var(--dark);
                        color: var(--text-light);
                        border: 10px solid var(--mid);
                        font-weight: 600;
                        
                    }
                    .step .steptit{
                        width: 100%;
                        font-family: var(--font-inter);
                        color: var(--text-dark);
                        font-size: 1.42rem;
                        line-height: 20px;
                        vertical-align: middle;
                        text-align: center;
                        font-weight: 600;
                    }
                    
                    .step .stepdes
                    {
                        width: 100%;
                        font-family: var(--font-Lora);
                      
                        font-size: 1rem;
                        vertical-align: middle;
                        text-align: center;
                        font-weight: 300;
                        color: var(--gray-700);
                        
                    }

                    .customize-options
                    {
                        display: grid;
                        gap: 50px;
                        grid-template-columns: repeat(3,1fr);
                        padding: 50px 50px;
                        margin-bottom: 30px;
                    }
                    
                    .customize-designer
                    {
                        font-family: var(--font-inter);
                        width: 100%;
                        background-color: var(--lightest);
                        text-align: center;
                        border-radius: 12px 12px 12px 12px;
                         height: fit-content;
                      
                        
                    }
                    .customize-option-info img
                    {
                        width: 100%;
                        height: 200px;
                        border-radius: 12px 12px 0 0;
                        margin: 0;
                    }
                    .customize-option-info p
                    {
                        width: 100%; 
                        font-size: 1rem;
                        font-weight: 400;
                        padding: 8px 12px;
                        color: var(--text-dark);
                       
                    }
                    .customize-option-info h3
                    {
                        font-size: 1.5rem;
                        padding: 4px;
                        font-family: var(--font-primary);
                        margin-bottom: 2px;
                        font-weight: 600;
                        background-color: var(--dark);
                        width: 100%;
                        color: white;
                        
                    }
                    .customize-option-info a
                    {
                        font-family: var(--font-secondary);
                        background-color: var(--color-secondary);
                        font-size: 18px;
                        color: white;
                        padding: 8px 16px 8px 16px;
                        border-radius: 8px;
                    }
                    .customize-option-info
                    {
                     
                      display: flex;
                      flex-direction: column;
                     
                    }
                    
        
                   
                
                .customize-history-grid
                {
                  margin-top: 20px;
                    display: grid;
                    gap: 30px;
                    grid-template-columns: repeat(3,1fr);
                }
                
                .customize-history-item
                {
                    border-radius: 8px 8px 0 0 ;
                    position: relative;
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                   
                   
                }
                
                .customize-history-item .date
                {
                    width: 150px;
                    background-color: var(--dark);
                    position: absolute;
                    color: white;
                    padding: 8px;
                    border-radius: 8px;
                    top: 2%;
                    left: 2%;
                    font-family: var(--font-secondary);
                }
                .customize-history-info
                {
                    background-color: var(--light);
                    height: auto;
                    position: relative;
                    padding: 16px;
                    color: var(--text-dark);
                    border-radius: 0 0 8px 8px;
                   
                    
                  
                }
                .customize-history-info p
                {
                    
                    font-family: var(--font-inter);
                    margin: 0;
                    padding: 0;
                    text-align: left !important;
                    font-weight: 400;
                    font-size: 1rem;
                    margin-bottom: 15px;
                }
                .customize-history-info h4
                {
                    font-family: var(--font-inter);
                    margin: 0;
                    text-align: left !important;
                    font-weight: 600;
                    font-size: 18px;
                    margin-bottom: 10px;
                    
                }
                .customize-history-info a
                {
                    width: 100%;
                    text-align: end;
                    padding: 5px;
                    display: none;
                    font-family: var(--font-inter);
                    border-radius: 8px;
                    
                    font-weight: 400;
                    font-size: 16px;
                    margin-bottom: 8px;
                    color: white;
                    
                }
                .customize-history-before-after
                {
                    width: 100%;
                    display: flex;
                    position: relative;
                    gap: 2px;
                    border-radius: 8px 8px 0 0 ;
                }
                .customize-history-before-after .after,
                .customize-history-before-after .before
                {
                    width: 100%;
                    position: relative;
                    height: 250px;
                } 
                .customize-history-before-after .after img,
                .customize-history-before-after .before img
                {
                    
                    width: 100%;
                    height: 100%;
                    border-radius: 8px 8px 0 0 ;
                    object-fit: fill;
                    transition: opacity 1s ease-in-out;
                }
                .customize-history-before-after .after span
                {
                        text-align: center;
                        position: absolute;
                        width: 80px;
                        background-color: var(--color-success);
                        position: absolute;
                        color: white;
                        padding: 4px;
                        border-radius: 8px;
                        bottom: 2%;
                        right: 2%;
                        font-family: var(--font-inter);
                
                }
                .customize-history-before-after .before span
                {
                        text-align: center;
                        position: absolute;
                        width: 100px;
                        background-color: var(--color-danger);
                        position: absolute;
                        color: white;
                        padding: 4px;
                        border-radius: 4px;
                        bottom: 2%;
                        left: 2%;
                        font-family: var(--font-inter);
                }
/*  */
.cart-page
        {
            display: flex;
           
            font-family: var(--font-inter);
        }
        .cart-page-left
        {
            width: 70%;
            
            height: fit-content;
        }
        .cart-page-right
        {
            
            width: 30%;
            
        }
        
        .cart-container{
            width: 100%;
            padding: 8px;
           
        }
        .cart-container table
        {
            width: 100%;
            border-collapse: collapse;
        }
        .cart-container table thead
        {
           
        }
        .cart-container table tbody tr
        {
            border-bottom: 1px solid black;
        }
        .cart-container table tr th
        {
            background-color: var(--mid);
            padding: 10px;
            text-align: center;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
        }


        .cart-container table tr td
        {
            text-align: center;
          
            padding: 10px;
            font-size: 1rem;
            font-weight: 500;
            vertical-align: center;
           
        }

        .cart-table td:nth-child(1),
        .cart-table th:nth-child(1) { width: 45%; }

        .cart-table td:nth-child(2),
        .cart-table th:nth-child(2) { width: 10%; }

        .cart-table td:nth-child(3),
        .cart-table th:nth-child(3) { width: 20%; }

        .cart-table td:nth-child(4),
        .cart-table th:nth-child(4) { width: 15%; }

        .cart-table td:nth-child(5),
        .cart-table th:nth-child(5) { width: 10%; }
        .cart-product
        {
            display: flex;
            width: 100%;
        }
        .cart-product img
        {
            width: 80px;
            height: 80px;
            object-fit: cover;
            margin-right: 10px;
        }
        .cart-info{
            text-align: left;
            
            display: flex;
            line-height: 1.6;
            flex-direction: column;
            font-family: var(--font-inter);
        }
        .cart-info h3
        {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 0;
            padding: 0;
            text-transform: capitalize;
        }
        .cart-info p
        {
            font-size: 1.1rem;
            font-weight: 300;
            margin: 0;
            padding: 0;
        }
        .cart-info span
        {
            font-size: 0.9rem;
            font-weight: 400;
            margin: 0;
            width: 100%;
            padding: 0;
        }
        .cart-rate{
            font-size: 1rem;
            font-weight: 400;
            margin: 0;
        }
.cart-qty {
  
  justify-content: center;
  align-items: center;
  gap: 0px;
  display: flex;
  
 
}

.cart-qty button {
  width: 30px;
  height: 30px;
 
  font-size: 0.8rem;
  background: none;
  
  border-radius: 50%;
  align-items: center;
}

.cart-qty input {
  width: 45px;
  border: 1px solid var(--mid);
  border-radius: 0;
  color: var(--text-dark) !important;
  padding: 6px;
  font-size: 0.8rem;
}
.cart-checkout-items h2,
.cart-offers h2,
.cart-summray h2
{
            background-color: var(--mid);
            padding: 10px;
            text-align: left;
            font-size: 1.2rem;
            color: white;
            font-weight: 600;
}
.cart-summray-buttons
{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 12px 8px;
    gap: 10px;
    
}
.cart-checkout-items,
.cart-offers,
.cart-summray
{
    padding: 8px;
    height: fit-content;
}
.cart-summray-item
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    border-bottom: 1px solid black;
}
.cart-summray-item p
{
    font-size: 1rem;
    font-weight: 600;
}
.cart-summray-item span
{
    font-size: 0.9rem;
    font-weight: 300;
}
.cart-summray-buttons a
{
    width: 100%;
    padding: 8px;
    background-color: var(--mid);
    color: white;
    border-radius: 8px;
    text-align: center;
}
.cart-summray-buttons a:nth-child(1)
{
    background-color: var(--color-danger);
}
.cart-summray-buttons a:nth-child(2)
{
    background-color: var(--color-success);
}
.cart-offers-item
{
    display: flex;
    justify-content: space-between;
    padding: 8px;
    border-bottom: 1px solid black;
}
.cart-offers-item p
{
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    padding: 0;
    width: 100%;
}
.cart-offers-item span{
    padding: 4px;
    font-size: 0.9rem;
    font-weight: 300;
    background-color: crimson;
    color: white;
}
.delete-icon
{
    width: 40px;
    height: 40px;
    background-color: var(--color-danger);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    color: white;
    margin: auto;
}

.checkout-addressadd
{
 border-radius: 8px;
  padding: 8px;
  height: fit-content;
  font-size: 1rem;
  text-align: center;
  background-color: var(--color-danger);
  color: white;

}
.adddelbutton{
  background-color: transparent;
}

.contact-section
{
  display: block;
  position: relative;
  height: 100%;
}
.contact-section img
{
  display: block;
  width: 100%;
  height: 480px;
}
.contact-section img::before
{
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  z-index: 1;
  left: 0;
}
.contact-action
{
  font-family: var(--font-inter);
  position: absolute;
  top: 40%;
  padding: 16px;
  width: 100%;
  height: 100px;
 line-height: 1.6;
  color: white;
}
.contact-action h3
{
  font-size: 2.5rem;
}
.contact-action p
{
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 400;
}
.shipping-info {
  
  padding: 10px;
  border-radius: 8px;
}

.shipping-info ul {
  list-style-type: disc;
  padding-left: 20px;
}

.shipping-info ul ul {
  list-style-type: circle;
  margin-top: 5px;
  margin-left: 10px;
}

.shipping-info li {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 1.1rem;
}

.shipping-info strong {
  color: #333;
}



 /* Popup wrapper */
 .popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center; align-items: center;
  z-index: 1000;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
  
}

.popup-content {
  background: white;
  padding: 10px;
  min-width: 900px;
  width: 80%;
  border-radius: 4px;
  position: relative;
  display: flex;
  animation: slideUp 0.4s ease;
  flex-wrap: wrap;
  height: auto;
}

.popup-content button.close {
  position: absolute;
  right: 10px;
  top: 5px;
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
}

.popup-content-left
{
  width: 50%;
 
  padding: 4px;
}
.popup-content-right
{
  width: 50%;
  
  padding: 4px;
}
.popup-master h5
{
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.steps-product
{
  list-style-type: none;
  list-style: none;
   display: grid;
   grid-template-columns: repeat(3,1fr);

}
.steps-product li{
  padding: 8px;
  display: flex;
  flex-direction: column;
  
  align-items: center;
  justify-content: center;
  text-align: center;
}
.howitworks
{
  font-weight: 600;
  font-size: 1.5rem;
  padding: 8px 0;
}
.popup-content-center
            {
                width: 100%;
                
                padding: 8px;
            }
            .popup-content-center h3
            {
              color: var(--text-dark);
              margin-bottom: 5px;
            }
            .popup-content-center h6
            {
              font-weight: 400;
              color: var(--text-dark) !important;
              margin-bottom: 5px;
              font-size: 1.1rem;
            }
            .popup-master
            {
                
               
            }
            .popup-item-img
            {
                height: 420px;
            }
            .popup-item-img img
            {
                width: 100%;
                height: 100%;
            }
            


            .checkout-page-section
        {
            font-family: var(--font-Lora);
            height: 100%;
        }
       
        .checkout-section-header
        {
            display: flex;
            width: 100%;
            justify-content: space-between;
            
            margin-bottom: 15px;
           
        }
        
        .checkout-section-header-tab
        {
            display: flex;
            width: 100%;
            display: flex;
            align-items: center;
            
            cursor: pointer;
           
            position: relative;
            flex-direction: column;
            justify-content: start;
            text-align: left;
        }
        .checkout-section-header-tab::after
        {
            content: "";
            position: absolute;
            top: 25%;
            left: 0;
            width: 100%;
            height: 10px;
            border-radius: 0;
            background-color: var(--dark);
            z-index: -1;
        }
        .activity .checkout-section-header-tab-number
        {
            color: white;
            background-color: var(--color-success);
        }
        .activity::after
        {
            background-color: var(--color-success);
            color: white;
        }
        .checkout-section-header-tab-number
        {
            display: flex;
           justify-content: center;
           align-items: center;
            padding: 20px;
           
            top: 0;
            left: 0;
            background-color: var(--dark);
            height: 50px;
            width: 50px;
            border-radius: 50%;
            color: white;
        }
        
        
        .checkout-section-header-tab-info
        {
            display: flex;
            flex-direction: column;
        }   
        .checkout-section-body
        {
            width: 100%;
            height: 100%
           
            
        }
        .checkout-section-body .activecheck
        {
            display: block;
        }
        .checkout-section-body-tab
        {
            display: none;
            border: 2px solid var(--mid);
            height: 100%
        }
        .body-tab-buttons
        {
            flex-direction: row-reverse;
           
            display: flex;
            align-items: center;
            width: 100%;
            justify-content: end;
            gap: 20px;
            padding: 10px;
        }
        
        .body-tab-buttons button
        {
            padding: 10px 20px;
            border-radius: 5px;
            border: none;
            cursor: pointer;
            font-size: 16px;

        }
        .body-tab-buttons button:nth-child(1)
        {
            background-color: crimson;
            color: white;
        }
        .body-tab-buttons button:nth-child(2)
        {
            background-color: gray;
            color: white;
        }
        .body-tab-title
        {
            padding: 8px;
            background-color: var(--mid);
            color: white;
          
            font-weight: 600;
        }
        .body-tab-title h2
        {
          font-size: 1.2rem !important;
        }
        .checkout-flex
        {
            display: flex;
            width: 100%;
            flex-direction: row-reverse;
            
            
        }
        .checkout-left
        {
            width: 70%;
            padding: 8px;
            min-height: 100%;
           
        }
        .checkout-right
        {
            width: 30%;
            min-height: 100%;
            
        }
        .cart-checkout-items
        {
            display: flex;
            flex-direction: column;
        }
        .cart-checkout-item
        {
            padding: 8px 8px;
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid black;
        }
        .cart-checkout-item img
        {
            width: 30px;
            height: 30px;
            border-radius: 5px;
        }
        .cart-checkout-item-info
        {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .body-tab-body
        {
           
            
            height: 100%;
        }
        .body-tab-body .bodyp
        {
            padding: 16px;
            line-height: 1.6;
        }
        .payment-options
        {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            justify-content: center;
            align-items: center;
            padding: 20px;
            gap: 20px;
           
        }
        .payment-button
        {
            padding: 12px 24px;
            border-radius: 5px;
            width: auto;
            display: flex;
            align-items: center;
            background-color: #0070ba;
            color: white;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.2rem;
            color: white;
            gap: 15px;
        }
        
        .paypal {
            background-color: #0070ba;
        }
        .credit {
            background-color:var(--mid);
        }
        .mastercard {
            background-color: #eb001b;
            opacity: 0.2;
        }
        .express {
            background-color: #4b9cd3;
            opacity: 0.2;
        }
        .payment-info
        {
            padding: 8px;
        }
        .pay-info
        {
            display: flex;
            align-items: center;
            gap: 10px;
            line-height: 1.6;
        }
        .pay-info i{
            color: var(--mid);
            font-size: 1.2rem;
        }
        .pay-info p{
            font-size: 1rem;
        }
        .payment-note p{
            padding: 8px;
            font-size: 1rem;
            font-weight: 800;
        }
        
        .order-confirmation-details
        {
           padding: 8px;
           display: flex;
           flex-direction: column;
           gap: 5px;
           list-style: none;
           
            width: 100%;
        }
        .order-confirmation-details li
        {
            padding: 4px 8px;
          
            font-size: 1rem;
            width: 100%;
        }
        .order-confirmation-details li strong{
          font-size: 1.1rem;
            font-weight: 600;
        }
        .order-confirmation-title
        {
            
            padding: 16px 8px;
            color: black;
            font-size: 1rem;
           
            align-items: center;
            display: flex;
            flex-direction: column;
        }
        .order-confirmation-title h1
        {
            font-size: 2.5rem;
            color: var(--color-success);
            margin: 0;
           
            
        }
        .order-confirmation-title p
        {
            font-size: 0.9rem;
            
            margin: 0;
        }
        .order-confirmation-title i
        {
            color: var(--color-success);
            font-size: 3rem;
           
        }

        .support-tickets
        {
          padding-top: 10px;
        }
        .support-tickets table
        {
            width: 100%;
            border-collapse: collapse;
        }
        .support-tickets table thead
        {
            background-color: var(--mid);
            color: white;
        }
        .support-tickets table tbody tr
        {
            border-bottom: 1px solid black;
        }
        .support-tickets table tr th
        {
            padding: 10px;
            text-align: center;
            font-size: 1.1rem;
            font-weight: 600;
        }
        .support-tickets table tbody tr:hover
        {
            background-color: var(--light);
        }
        .support-tickets table tr td
        {
            text-align: left;
            padding: 4px;
            font-size: 0.95rem;
            font-weight: 400;
            vertical-align: center;
        }
        .support-tickets table tr td span{
          font-size: 1rem;
          font-weight: 500;
        }
        .support-tickets table tr td p{
          font-size: 0.9rem;
          font-weight: 400;
        }
        .support-tickets table tr td .status
        {
          border: 1px solid var(--mid);
          padding: 4px;
        }

        .custom_pro_info
        {
          display: flex;
          padding: 4px;
          gap: 10px;
          align-items: center;
        }
        .custom_pro_info img
        {
          width: 30%;
          height: 80px;
        }

        .hideshowinfo
        {

        }

        .blog-page{
        
        height: 100%;
        width: 100%;
        display: flex;
       
    }
    .blog-page-left{
        
         width: 60%;
         height: 100%;
        
    }
    .blog-page-right{
        
         width: 40%;
         height: 100%;
         padding: 8px;
        
    }
    .blog
    {
       font-family: var(--font-inter);
        position: relative;
        color: var(--text-dark);
        

    }
    .blog-info{
         padding: 8px;
         width: 100%;
         display: flex;
         flex-direction: column;
         gap: 5px;
    }
    .blog-image
    {
        height: 350px;
        width: 100%;
        padding: 4px 8px;
    }
     .blog-image img
     {
        height: 100%;
        width: 100%;
        border-radius: 8px;
     }
     .blog-date
     {
        /* position: absolute; */
        padding: 8px 32px;
        background-color: var(--base);
        width: fit-content;
        top: 0;
        left: 0;
     }
     .blog-info h4
     {
       
        width: 100%;
        
        font-weight: 600;
        line-height: 1.2;
     }
     .blog-info h6
     {
        text-align: end;
        width: 100%;
        font-size: 1.3rem;
     }
     .blog-info p
     {
        line-height: 1.3;
        width: 100%;
       margin-bottom: 10px;
        font-size: 1.2rem;
     }
     .blog-action
     {
         margin-top: 25px;
        padding: 8px 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 25px;
     }
     .blog-action a
     {
        padding: 8px 16px;
        font-size: 1.2rem;
        background-color: var(--dark);
        color: white;
        justify-items: end;
        border-radius: 4px;
     }
     .blog-list
     {
        display: flex;
        flex-direction: column;
        gap: 10px;
       
     }
     .blog-list .active
     {
        background-color: var(--base);
     }
     .blog-list-item
     {
        display: flex;
        gap: 5px;
        align-items: start;
        position: relative;
        padding: 8px;
        border-bottom: 2px solid var(--dark);
       
     }
     .blog-list-item img
     {
        width: 20%;
        height: 60px;
        border-radius: 4px;
     }
    .blog-list-item p
    {
        color: var(--text-dark);
       font-size: 1.1rem !important;
       font-weight: 500;
       
    }
     .blog-list-date
     {
         position: absolute;
        padding: 4px 8px;
        background-color: var(--dark);
        width: fit-content;
        top: -10%;
        left:  0;
        font-size: 1rem;
        color: white;
        display: none;
     }
     .blog-page-right h4
     {
        margin-bottom: 15px;
        font-size: 1.5rem;
        color: var(--text-dark);
     }
     .blog-list-action
     {
        position: absolute;
        right: 0;
        bottom: 0;
        padding: 4px 8px;
        background-color: var(--dark);
        width: fit-content;

     }
     .blog-dots
     {
       
        height: fit-content;
        display: flex;
        gap: 5px;
        align-items: center;
     }
     .blogs-dots-dot
     {
        
        background-color: var(--base);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        height: 40px;
        width: 40px;
        color: white;
        font-size: 1.2rem;
       
         
     }
     .dotactive
     {
        border: 4px solid var(--dark);
     }

      .contact-page-flex
              {
                display: flex;
                padding: 10px;
                flex-wrap: wrap;
                font-family: var(--font-inter);
              }   
      .contact-page-left
              {
                width: 60%;
              }
      .contact-page-left img
      {
        border-radius: 8px;
      }
      .contact-page-right
              {
                width: 40%;
                padding: 15px;
              }
      .contact-page-center
      {
        width: 100%;
        padding: 18px;
      }           
      .contact-info
      {
        padding: 8px;
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 20px;
       
      }
      .contact-info-item
      {
        width: 100%;
        border: 1px solid var(--mid);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content:center ;
        padding: 10px;
        border-radius: 8px;
        text-align: center;
        background-color: var(--lightest);
      }
      .contact-info-item i
      {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 1px solid var(--mid);
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 2rem;
        margin-bottom: 10px;
        color: var(--mid);
        background-color: var(--light);
        
      }
       .contact-info-item h4{
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 5px;
       }
        .contact-info-item span{
          font-size: 1.2rem;
          color: var(--text-dark);
          line-height: 1.6;
        }


        .box {
  opacity: 0;
  transform: translateY(20px); /* Default transform */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}


.list-policy
{
 
  list-style: upper-roman;
}
.list-policy ul{
  list-style: circle;
  padding-left: 15px;
  list-style-position: inside;
}
.list-policy p,
.list-policy li
{
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 5px;
}

.list-policy h2
{
  font-size: 1.2rem;
}
.list-policy address
{
  font-size: 1.2rem;
  font-weight: 500;
}

 .review-slider-item {
                position: absolute;
                width: 100%;
                top: 0;
                left: 0;
                opacity: 0;
                z-index: 0;
                transform: translateX(100%);
                transition: all 0.5s ease;
            }

            .review-slider-item.active {
                opacity: 1;
                z-index: 1;
                transform: translateX(0);
            }

            .review-slider-item.slide-out-left {
                transform: translateX(-100%);
                opacity: 0;
                z-index: 0;
            }

            .review-slider-item.slide-out-right {
                transform: translateX(100%);
                opacity: 0;
                z-index: 0;
            }

            .review-slider-container {
                position: relative;
                overflow: hidden;
                min-height: 400px; /* adjust as needed */
            }

            .review-slider-grid
                        {
                            width: 100%;
                            display: grid;
                            grid-template-columns: repeat(3,1fr);
                            padding: 40px;
                            height: 100%;
                            gap: 20px;
                        }
                        .review-slider-grid-item
                        {
                            
                            width: 100%;
                            height: 100%;
                        }
