/* Base Styles */
:root {
  --primary: #2575fc;
  --secondary: #6a11cb;
  --accent: #00c6fb;
  --dark: #2d3748;
  --light: #f8f9fa;
  --gray: #e2e8f0;
  --success: #48bb78;
  --warning: #ed8936;
  --danger: #f56565;
  --text-primary: #1a202c;
  --text-secondary: #4a5568;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "LexendDeca", Arial, sans-serif !important;
  color: var(--text-primary);
  line-height: 1.6;
  background-color: #fff;
}
@font-face {
  font-family: "MyCustomFont";
  src: url("fonts/public/frontend/font/LexendDeca-Regular.ttf")
    format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "MyCustomFont";
  src: url("fonts/public/frontend/font/LexendDeca-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "MyCustomFont";
  src: url("fonts/public/frontend/font/LexendDeca-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

/* Add more like this for ExtraBold, Medium, Thin, etc. */

body h1,
h2,
p,
a,
span {
  font-family: "LexendDeca", Arial, sans-serif !important;
}

.product-details ul.list-unstyled li {
  font-size: 13px !important;
  color: #333333 !important;
}

.container {
  max-width: 1360px !important;
  margin: 0 auto;
}

.product-card .product-details h4 {
  font-size: 22px !important;
  color: #333;
  font-weight: 600;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  /* border: 2px solid transparent; */
}

.product-sidebar span {
  color: #333 !important;
}
.text-success {
  font-size: 22px !important;
  color: #333 !important;
  font-weight: 600 !important;
}
ul.pagination a {
  font-weight: 600;
  color: #333333;
  font-size: 14px;
}

.text-success {
  font-weight: 600;
  color: #333 !important;
  font-size: 22px !important;
}
.btn-primary {
  background: £0D6EFD;
  color: white;
  border: none;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
button {
  padding: 12px 20px;
}

.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
  border: none;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  border: none;
}

.btn-lg {
  padding: 12px 28px;
  font-size: 1.1rem;
  border: none;
}

.btn-sm {
  padding: 10px 16px;
  border: none;
  /* font-size: 0.9rem; */
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

/* Header Styles */
.sign {
  background: none;
  color: #333333 !important;
  font-size: 16px;
}
nav.main-nav {
  background: #f9fafd;
}
nav.main-nav ul li a {
  color: #606060 !important;
  font-size: 14px;
  font-weight: 400;
}
nav.main-nav {
  display: flex;
  justify-content: center;
  padding: 9px 0px !important;
}
.main-header {
  background-color: white;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.sign {
  background: none !important;
  color: #333;
  font-size: 16px;
}
.header-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo img {
  height: 40px;
  width: auto;
}
.livePreviewBtn {
  float: inline-end;
  padding: 14px !important;
  width: 202px;
}

.main-nav .nav-list {
  display: flex;
  list-style: none;
  gap: 28px;
  /* padding: 8px 0px; */
  flex-wrap: wrap;
  padding: 0;
}

.nav-link {
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link:hover {
  color: var(--primary);
}

.search-container {
  position: relative;
  max-width: 800px;
  width: 100%;
  /* border-radius: 20px !important; */
}

.search-form input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #d8e2ef;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.search-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 117, 252, 0.2);
  outline: none;
}

.search-btn {
  position: absolute;
  right: 15px;
  top: 0px;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
}

.user-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.cart-icon {
  position: relative;
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
}
button:hover {
  transform: unset !important;
}
.auth-buttons {
  display: flex;
  gap: 10px;
}

/* Hero Section */

section.hero {
  background-image: url(https://allinonescripts.com/public/storage/hero-Section.png) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
}
.hero-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff !important;
}

.hero-subtitle {
  text-align: center;
  margin: 0 auto;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 30px;
  max-width: 325px;
}

.hero-cta {
  display: flex;
  gap: 15px;
}

.hero-image img {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
/* My Order History */
div#ordersTable_length {
  margin-bottom: 20px;
}
.form-select:focus {
  border-color: unset !important;
  outline: 0;
  box-shadow: unset !important;
}
.form-select-sm {
  width: 100px !important;
}
.form-select-sm {
  margin: 10px 0px;
}
.table-responsive {
  padding: 32px;
  box-shadow: 0px 0px 10px 0px #0000001c;
  border-radius: 6px;
  margin-bottom: 50px;
}
/* Categories Section */

.categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
}

section.hero {
  padding: 75px 0px;
}
.product-list-main {
  display: flex;
  justify-content: space-between;
}
.product-list-main-left {
  width: 30%;
}
.product-list-main-right {
  width: 70%;
}
.category-card {
  border-radius: 10px;
  padding: 10px 20px;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
div#product-list .product-card {
  display: flex;
  justify-content: space-between;
}
div#product-list .products-grid {
  display: grid;
  grid-template-columns: 1fr;
}
.category-card:hover {
  /* background: #fff; */
  /* color: #333; */
  transform: scale(1.1);
  box-shadow: 0 0 15px #bbd5f2;
}

/* .category-card:hover h3 {
    
    color: #333;
}
.category-card:hover p {
    color: #333;
} */
.category-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: 5px solid;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.category-card h3 {
  margin-bottom: 5px;
  font-size: 16px;
  color: #ffffff;
}
.item-count {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 0;
}

/* Products Section */
.featured-products {
  padding: 60px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.view-all {
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.product-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
}

.product-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--success);
  color: white;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
}

.product-image {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.quick-view {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  /* background: rgba(37, 117, 252, 0.9); */
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-align: center;
  padding: 10px;
  transition: bottom 0.3s ease;
  cursor: pointer;
}

.product-card:hover .quick-view {
  bottom: 0;
}

.product-title {
  font-size: 1.1rem;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-author {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.product-author a {
  color: var(--primary);
}

.product-meta {
  display: flex;
  /* margin-bottom: 8px; */
  align-items: center;
  gap: 10px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.stars {
  color: #fbbf24;
}
.section-header h2 {
  font-size: 24px !important;
}
ul.list-unstyled {
  padding-left: 15px;
}

.rating-count {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.sales {
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 3px;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.btn-light {
  background-color: white;
  color: var(--primary);
}

.btn-light:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.main-footer {
  background-color: var(--dark);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: white;
}

.newsletter-form {
  display: flex;
  margin-top: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 4px 0 0 4px;
}

.newsletter-form button {
  border-radius: 0 4px 4px 0;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: white;
}

/* Single Page Product */
.product-page {
  padding: 60px 50px;
}

.breadcrumbs {
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.breadcrumbs a {
  color: var(--primary);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.product-gallery img {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.thumbnail-grid img {
  border: 2px solid var(--gray);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.thumbnail-grid img:hover {
  border-color: var(--primary);
}

.product-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.price-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
}

.current-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.original-price {
  text-decoration: line-through;
  color: var(--text-secondary);
}

.discount-badge {
  background: var(--success);
  color: white;
  padding: 5px 12px;
  border-radius: 4px;
  font-weight: 600;
}

.product-actions {
  margin: 30px 0;
}

.product-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.product-information {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.card-title i {
  margin-right: 10px;
  color: var(--primary);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  background: var(--light);
  border-radius: 8px;
}

.addtocart {
  padding: 10px 20px !important;
  font-size: 14px !important;
  background: #007bff !important;
  border-radius: 4px !important;
}
.rating-badge,
.sales-badge {
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  color: var(--text-secondary);
}
.product-details {
  width: 44%;
}
.rating-badge i {
  color: #fbbf24;
  margin-right: 5px;
}
select#sortSelect {
  border: 1px solid #d8e2ef;
  /* padding: 10px !important; */
}
form#sortForm {
  width: 82%;
  margin: 15px auto;
}

.sales-badge i {
  margin-right: 5px;
  color: var(--primary);
}

.section-title {
  font-size: 2rem;

  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

/* Media Query for all devices */
@media (max-width: 1200px) {
  .hero .container {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 18px;
    height: 32em;
  }

  .main-nav .nav-list {
    padding: 0;
    gap: 0;
  }
  .hero-image img {
    display: none;
  }
}

@media (max-width: 992px) {
  .hero .container {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 18px;
    height: 32em;
  }
  .main-nav .nav-list {
    padding: 0;
    gap: 0;
  }
  .hero-image img {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .search-container.desktop {
    display: none;
  }
  .hero .container {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 18px;
    height: 32em;
  }
  .main-nav .nav-list {
    padding: 0;
    gap: 0;
  }
  .hero-image img {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero .container {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 18px;
    height: 32em;
  }
  .main-nav .nav-list {
    padding: 0;
    gap: 0;
  }
  .hero-image img {
    display: none;
  }
}

/* //product-page-22-08-2025// */
p.product-content-para {
  font-size: 18px;
  color: #666666;
  line-height: 36px;
  font-weight: 300;
}
.product-actions {
  text-align: left !important;
}

button#addToCartBtn {
  background: #000000 !important;
  padding: 17px;
  width: 100% !important;
  max-width: 430px;
}
span.original-price {
  color: red !important;
}
.product-content {
  margin-top: 30px;
}
h1.key_feature_heading {
  font-size: 24px;
  line-height: 26px;
  font-weight: 400;
}
li.list_items span {
  font-size: 14px;
  line-height: 26px;
  color: #333333;
}
.product-grid {
  grid-template-columns: 1fr 1fr;
}
.product-card {
  border: 1px SOLID #e3e3e3;
  border-radius: 0px;
}

/* //25-08-2025// */

li.list_items img {
  width: 100%;
  max-width: 17px !important;
}

ul.key_feature_list {
  padding: 0px !important;
}
li.list_items {
  list-style: none;
  padding-bottom: 14px;
}
p.product-content-para {
  font-size: 18px;
  color: #666666;
  line-height: 36px;
}
button#addToCartBtn {
  background: #000000 !important;
  padding: 15px !important;
  width: 100% !important;
  max-width: 320px !important ;
  text-align: center;
  border-radius: 6px;
}
.text-center {
  text-align: left !important;
}

.spec-item span {
  font-weight: 500;
  color: #333333 !important;
}

.swal2-popup.swal2-modal.swal2-icon-warning.swal2-show {
  border-radius: 25px;
}
div:where(.swal2-icon).swal2-warning {
  border-color: #000 !important;
  color: #000 !important;
}
h2#swal2-title {
  color: #333333 !important;
  font-weight: 600 !important;
  font-size: 24px;
  line-height: 29px;
  vertical-align: middle;
}
div#swal2-html-container {
  color: #333333 !important;
  font-family: Lexend Deca;
  font-weight: 300;
  font-size: 16px;
  line-height: 12px;
  text-align: center;
  vertical-align: middle;
}
button.swal2-cancel.swal2-styled {
  background: #dd3333 !important;
  border: 1px solid #980f0f !important;
}
li.list_items span {
  padding-left: 2px;
}
h1.key_feature_heading {
  margin: 0px !important;
  padding-bottom: 16px !important;
}
.prouct-img-content {
  border-right: 1px solid #efefef;
  padding-right: 30px;
}
.product-info-main {
  padding: 30px;
  border: 1px solid #e3e3e3;
  margin-bottom: 30px;
}
span.current-price {
  color: #333333 !important;
}
.product-actions {
  text-align: left !important;
  margin-bottom: 0px !important;
}

/* //FAQ// */

/* faq section start */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.ko-faq-section {
  padding: 40px 0;
}
.ko-faq-section h2 {
  text-align: center;
  font-size: 42px;
  line-height: 52px;
  margin-bottom: 10px;
  font-weight: 600 !important;
  text-transform: capitalize !important;
}
.ko-container {
  width: 100%;
  max-width: 1370px;
  margin: 0 auto;
  padding: 0 15px;
}
.ko-faq-section .ko-container > p {
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 30px;
}
.ko-accordion-item {
  background-color: #fff;
  border: 1px solid #dddd;
  padding: 0px 20px;
  margin-bottom: 20px;
}
.ko-accordion-item-header {
  padding: 20px 0;
  font-size: 20px;
  line-height: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
  font-size: 16px;
  line-height: 27px;
  color: #333;
  flex-direction: row-reverse;
}
.ko-accordion-item-header::after {
  content: "";
  display: block;
  width: 25px;
  height: 14px;
  background: url("https://allinonescripts.com//public/frontend/images/Vector.png");
  background-repeat: no-repeat;
  background-size: contain !important;
  transition: all 0.4s ease;
  background-position: center;
  margin-right: 12px;
}
.ko-accordion-item-header.active::after {
  content: "";
  transform: rotate(90deg);
}
.ko-accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}
.ko-accordion-item-body-content {
  padding-bottom: 20px;
}
.ko-faq-accordion {
  margin-bottom: 30px;
}
.ko-ask-qus h3 {
  font-size: 28px;
  line-height: 38px;
  margin-bottom: 10px;
}
.ko-ask-qus p {
  margin-bottom: 20px;
}
.ko-form-cotrl {
  margin-bottom: 20px;
}
.ko-faq-input-field {
  width: 100%;
  max-width: 520px;
  padding: 10px;
  outline: none;
  border: 1px solid #dfdfdf;
}
.ko-faq-input-field:focus {
  outline: none;
  border: 1px solid #aae0ff;
  box-shadow: 1px 1px 10px #aae0ff;
}
.ko-btn {
  border: 0;
  padding: 6px 12px;
  background: #000000;
  color: #ffffff;
  cursor: pointer;
}
.ko-accordion-item-left {
  width: 48%;
}
.ko-accordion-item-right {
  width: 48%;
}
.ko-faq-accordion {
  display: flex;
  justify-content: space-between;
}

/*cart Page*/
a.btn.btn-outline-secondary {
  color: #fff;
  padding: 10px;
  background: #6ec857 !important;
  border: none;
  font-size: 16px;
  color: #fff;
}
h1.section-title {
  margin-bottom: 12px !important;
}
.cart-content-wrapper {
  margin-top: 40px;
}
.category {
  border: 0px solid #3e8cfd !important;
  padding: 0px;
  box-shadow: 0px 0px 8px 0px #33333330 !important;
}
h1.section-title {
  font-size: 24px !important;
  line-height: 29px;
  font-weight: 600;
}
p.add-to-cart-subheading {
  font-size: 16px;
  line-height: 24px;
  color: #333333 !important;
  margin: 0px !important;
  padding-bottom: 50px !important;
}
h5.mb-1.product-name {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}
p.h5.text-primary.mb-2.product-price {
  font-size: 22px;
  line-height: 27px;
  font-weight: 600;
  color: #333333 !important;
}
h2.order-heading {
  font-size: 24px;
  line-height: 29px;
  font-weight: 600;
}
p.order-subheading {
  font-size: 16px;
  padding-top: 12px;
  line-height: 24px;
  color: #333333 !important;
  font-weight: 400;
}
.order-details span:first-child {
  font-size: 18px;
  color: #333333 !important;
}
.order-details span:last-child {
  font-size: 22px;
  color: #333333 !important;
  font-weight: 500;
}
.row.g-3.align-items-center.py-3 {
  margin-bottom: 30px;
  box-shadow: 0 0 5px 0 #2c3d4f1f;
}
.card {
  border: unset !important;
}
button.swal2-confirm.swal2-styled {
  background: #0d6efd !important;
}

/* 26-08-2025 */
.product-card {
  border: unset !important;
  border-radius: 0px;
}
.product-card {
  box-shadow: 0 2px 18px 0 #2c3d4f08 !important;
}
form#sortForm {
  margin: 0px !important;
}
a.btn.btn-light.btn-lg.get_started {
  font-size: 14px;
  line-height: 17px;
  background: transparent !important;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 60px;
  padding: 19px 66px;
}
p.join-millions {
  margin-bottom: 0px !important;
  padding-bottom: 50px;
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
}
h2.perfect-website {
  font-size: 32px;
  line-height: 57px;
  margin: 0px !important;
  font-weight: 500;
}
section.tempAndThemes {
  display: none;
}
form#sortForm {
  margin: 0px !important;
}

/* mobile-start */
@media (max-width: 768px) {
  .cart-item-img {
    width: 100% !important;
    height: unset !important;
    object-fit: cover !important;
  }
  .product-grid {
    grid-template-columns: 1fr !important;
  }

  h1.hero-title {
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
    text-align: left;
    width: 100%;
    max-width: 200px;
  }
  p.hero-subtitle {
    text-align: left !important;
  }
  .col-md-12 {
    width: 100%;
    justify-content: left !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
  }

  p.hero-subtitle {
    text-align: left !important;
    width: 100%;
    max-width: 219px;
    margin: 0px !important;
  }
  section.hero {
    padding: 40px 20px 350px 20px;
  }
  .categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
  }
  .category-icon {
    width: 72px !important;
    height: 72px !important;
  }
  .product-list-main {
    display: block !important;
    justify-content: space-between;
  }
  .section-header h2 {
    font-weight: 700;
  }
  .product-list-main-right {
    width: 100% !important;
  }
  div#product-list .product-card {
    display: block !important;
  }
  form#sortForm {
    width: 100%;
    margin: 15px auto;
  }

  .product-footer {
    display: block;
  }
  .addtocart {
    min-width: unset !important;
    width: max-content !important;
    max-width: unset !important;
  }
  .addtocart {
    padding: 14px 41px !important;
  }
  .pretext {
    gap: 11px;
  }
  .price {
    color: #333 !important;
    font-size: 22px;
    padding-bottom: 10px;
  }
  .product-meta strong {
    font-size: 22px;
  }
  .product-meta i {
    font-size: 21px !important;
  }
  .product-title {
    overflow: visible;
    text-overflow: unset !important;
  }
  .product-details {
    width: 100% !important;
  }

  .ko-faq-section .ko-container > p {
    text-align: left !important;
  }
  .ko-faq-accordion {
    display: block;
  }
  .ko-accordion-item-right {
    width: 100% !important;
  }
  .ko-accordion-item-left {
    width: 100% !important;
  }
  .cta-section {
    margin: 0px 0 0 0 !important;
  }
  h2.perfect-website {
    font-size: 22px;
  }
  p.join-millions {
    font-size: 14px;
  }
  .featured-products {
    padding: 20px 15px;
  }
  .user-actions {
    display: none !important;
  }
  .product-list-main-left {
    width: 100%;
  }
  .product-list-main-left form {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  /* 27-08-2025 */

  nav.main-nav.d-none.d-lg-block {
    display: none !important;
  }
  button#hamburgerBtn i {
    font-size: 26px !important;
  }
  button#hamburgerBtn {
    padding: 0px;
    border: none;
  }

  .container.d-flex.justify-content-between.align-items-center.py-2 {
    padding: 10px 20px !important;
  }
  header.main-header {
    padding: 0px !important;
  }
  section.hero .container {
    padding: 0px !important;
  }
  header.main-header {
    box-shadow: 0px 0px 5px 0px #d0c9c9;
  }
  .category-card {
    padding: 0px;
  }
  .categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
  }
  .product-list-main-left form#sortForm {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    padding: 10px 0px;
  }
  ul.list-unstyled.p-3 li.mb-2 a {
    font-size: 14px;
    line-height: 18px;
    color: #606060 !important;
    font-weight: 500;
  }
  li.mobile-buttons {
    display: flex;
  }
  button.btn.btn-primary.w-100.mb-2 {
    background: transparent !important;
    color: #333333 !important;
    font-weight: 500;
    padding: 0px !important;
    margin: 0px !important;
    text-align: left;
  }
  button.btn.btn-primary.w-100 {
    background: transparent !important;
    color: #333333 !important;
    font-weight: 500;
    padding: 0px !important;
    text-align: left;
  }
  li.mobile-buttons {
    display: flex;
    align-items: center !important;
    margin: 0px !important;
    padding: 0px 0px;
    width: 60%;
  }
  span.cart-count {
    font-size: 13px;
  }
  .cart-count {
    width: 22px;
    height: 22px;
  }
  ul.btns-list {
    padding: 20px 16px 20px 16px !important;
    margin: 0px !important;
  }
  ul.list-unstyled {
    border-top: 1px solid #d8e2ef;
  }
  ul.list-unstyled.p-3 li {
    margin-bottom: 18px !important;
  }
}

/* mobile-end*/

/* header 27-08-2025 */

span.cart-count {
  padding: 3px !important;
  background: #007bff !important;
}
.cart-count {
  width: 22px;
  height: 22px;
}
nav.main-nav {
  display: flex !important;
  justify-content: center;
  padding: 12px 0px !important;
  border-top: 1px solid #d8e2ef;
  border-bottom: 1px solid #d8e2ef;
}
header.main-header {
  padding: 15px 0px 0px 0px;
}

ul.nav-list {
  gap: 28px !important;
}
.auth-buttons button.btn.btn-primary.btn-sm {
  color: #333333 !important;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  background: transparent;
  padding: 10px 8px !important;
}
.footer-col h3 {
  color: #333333 !important;
  font-size: 18px;
  line-height: 19px;
  margin: 0px !important;
  padding-bottom: 23px;
}
.footer-col h3 ul li a {
  color: #606060 !important;
  font-size: 14px !important;
  font-weight: 400;
}
.footer-col a {
  color: #606060 !important;
}

.footer-col ul {
  padding: 0px !important;
}
.footer-col ul li a {
  text-decoration: none !important;
}
footer.main-footer {
  background: #fff !important;
}
.footer-col li {
  margin-bottom: 17px !important;
}

.footer-col h3::after {
  content: unset !important;
}

.footer-col.second-col {
  border-right: 1px solid #efefef;
}
.copyright {
  font-size: 16px;
  color: #c4c4c4;
  line-height: 30px;
  font-weight: 300;
}
.footer-bottom {
  justify-content: center;
  border-top: 1px solid #efefef;
}
.cta-section {
  background: linear-gradient(135deg, #0d6efd, #000000) !important;
}

button.addtocart {
  background: #0d6efd !important;
}

.section-title::after {
  content: unset !important;
}
a.view-all {
  color: #333333;
  text-decoration: none;
}
.section-header p {
  color: #333333 !important;
}

.footer-grid {
  padding-top: 50px;
}

button#userDropdown:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff !important;
}
.text-start .btn-primary {
  background-color: #007bff;
  color: white;
  font-size: 14px !important;
  padding: 11px 24px !important;
}
button.btn.btn-success.btn-sm.addtocart {
  background: #6ec857 !important;
  font-size: 14px !important;
  padding: 11px 25px !important;
}
.product-sidebar {
  flex: unset !important;
}
a.page-link {
  border: none !important;
}
span.page-link {
  border: none !important;
}
a.btn.btn-light.btn-lg.get_started:hover {
  background: #fff !important;
  color: #333 !important;
}
.text-start i {
  font-size: 20px;
}
.card.summary-card {
  background: #e9ecef;
  /* color: #fff !important; */
}

.message.you {
  background-color: #f3f3f6 !important;
  color: #333;
  font-size: 12px !important;
  width: fit-content !important;
}
.modal-header {
  border-bottom: 1px solid #efefef !important;

  padding: 34px 34px 14px !important;
}
.modal-header img {
  margin-right: 12px !important;
  width: 30px;
}
h5.modal-title {
  font-weight: 600;
  color: #333;
  font-family: Lexend Deca;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  vertical-align: middle;
  margin: 0 auto;
}
.first-create {
  font-family: Lexend Deca;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  vertical-align: middle;
  width: 56%;
  text-align: center;
  margin: 0 auto;
}
label,
.form-label {
  color: #333;
  margin-bottom: 8px;
  font-family: Lexend Deca;
  font-weight: 400 !important;
  font-size: 16px;
  line-height: 20px;
  /* text-align: center; */
  vertical-align: middle;
}
.chat-input textarea {
  resize: none;
  border: none;
  line-height: 1;
  padding: 0;
  margin: 0 !important;
}
.chat-input {
  padding: 14px;
  display: flex;
  background: #ffffff;
  border-radius: 20px;
  align-items: center;
  box-shadow: 0px 0px 10px 5px #33333324;
}
.send-massges {
  background: none !important   ;
  padding: 0 !important;
}
button.send-massges {
  padding: 0 !important;
}
.chat-input textarea {
  resize: none;
  align-items: center;
  display: flex;
  height: 24px !important;
}
/* 11-09-2025  Na*/
.product-related {
  display: flex;
  justify-content: space-between;
  box-shadow: 0px 1px 5px 0px #00000040;
}
.product-related-details {
  width: auto;
}
ul.key_feature_list .list_items img {
  width: 18px;
}

label.form-check-label {
  font-weight: 300 !important;
  font-size: 18px !important;
  line-height: 100% !important;
  vertical-align: middle !important;
  color: #333333 !important;
}

/*-------------------*/
/*.card-sub-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;   
  overflow: hidden;
  text-overflow: ellipsis;

  line-height: 1.4em;      
  max-height: calc(1.4em * 4);  
  width: 100%;
}
*/

.cart-item-img {
    width: 200px !important;
    height: 110px !important;
    object-fit: cover;
}

#message_content::placeholder {
    padding: 8px;
}

.card-sub-title {
  display: inline-block;
  max-width: 40ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*checkout */
@media (min-width: 320px) and (max-width: 767px) {
  .payment-intigraction {
    display: block !important;
  }
  .Order-summary-right {
    width: 100% !important;
  }
  .Order-summary-left {
    width: 100% !important;
  }
  .product-grid {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .button-view-pri {
    justify-content: space-between !important;
  }

  .button-view-pri {
    justify-content: space-between !important;
  }
  .product-related {
    display: block !important;
  }
  .footer-grid {
    padding-top: 50px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  button.btn.btn-primary.w-100.mb-2 {
    padding: 8px 16px !important;
  }
  li.mobile-buttons {
    width: 100% !important;
    height: auto !important;
    gap: 10px !important;
  }
  button.search-btn {
    right: 10px !important;
  }

  /*Sign-in*/

  h5.modal-title {
    font-size: 18px !important;
  }
  div#supportChatModal {
    width: 404px !important;
  }

}











