@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

/* ==================== BASE STYLES ==================== */
body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 28px;
  color: #4a4a4a;
  font-size: 14px;
  background-color: #fafafa;
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  transition: 0.3s all ease;
  color: #1a1a1a;
  text-decoration: none;
}

a:hover {
  color: #000000;
  text-decoration: none;
}

a.more {
  font-weight: 600;
  transition: 0.3s all ease;
}

a.more:hover {
  transform: translateX(5px);
}

/* ==================== NAVIGATION ==================== */
.custom-navbar {
  background: #ffffff !important;
  padding-top: 15px;
  padding-bottom: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1000;
}

@media (min-width: 768px) {
  .custom-navbar {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.custom-navbar .navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  letter-spacing: -1px;
}

@media (min-width: 768px) {
  .custom-navbar .navbar-brand {
    font-size: 32px;
  }
}

.custom-navbar .navbar-brand > span {
  opacity: 0.3;
}

.custom-navbar .navbar-toggler {
  border-color: transparent;
  padding: 8px;
}

.custom-navbar .navbar-toggler:active,
.custom-navbar .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.custom-navbar .navbar-collapse {
  margin-top: 15px;
}

@media (min-width: 992px) {
  .custom-navbar .navbar-collapse {
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  .custom-navbar .custom-navbar-nav li {
    margin-left: 15px;
    margin-right: 15px;
  }
}

.custom-navbar .custom-navbar-nav li {
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .custom-navbar .custom-navbar-nav li {
    margin-bottom: 0;
  }
}

.custom-navbar .custom-navbar-nav li a {
  font-weight: 500;
  color: #4a4a4a !important;
  opacity: 0.7;
  transition: 0.3s all ease;
  position: relative;
  display: block;
  padding: 8px 0;
}

@media (min-width: 768px) {
  .custom-navbar .custom-navbar-nav li a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 8px;
    right: 8px;
    background: #000000;
    height: 2px;
    opacity: 1;
    visibility: visible;
    width: 0;
    transition: 0.3s all ease;
  }
}

.custom-navbar .custom-navbar-nav li a:hover {
  opacity: 1;
  color: #000000 !important;
}

.custom-navbar .custom-navbar-nav li a:hover:before {
  width: calc(100% - 16px);
}

.custom-navbar .custom-navbar-nav li.active a {
  opacity: 1;
  color: #000000 !important;
}

.custom-navbar .custom-navbar-nav li.active a:before {
  width: calc(100% - 16px);
}

.custom-navbar .custom-navbar-cta {
  margin-left: 0 !important;
  flex-direction: row;
  margin-top: 15px;
}

@media (min-width: 768px) {
  .custom-navbar .custom-navbar-cta {
    margin-left: 40px !important;
    margin-top: 0;
  }
}

.custom-navbar .custom-navbar-cta li {
  margin-left: 0;
  margin-right: 0;
}

.custom-navbar .custom-navbar-cta li:first-child {
  margin-right: 20px;
}

.custom-navbar .custom-navbar-cta li a img {
  transition: 0.3s all ease;
  filter: grayscale(100%) brightness(0);
  opacity: 0.6;
  width: 24px;
  height: 24px;
}

.custom-navbar .custom-navbar-cta li a:hover img {
  opacity: 1;
  transform: scale(1.1);
}

/* ==================== HERO SECTION ==================== */
.hero {
  background: #ffffff;
  padding: 2rem 0 2rem 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .hero {
    padding: calc(4rem - 30px) 0 4rem 0;
  }
}

@media (min-width: 992px) {
  .hero {
    padding: calc(8rem - 30px) 0 8rem 0;
  }
}

.hero .intro-excerpt {
  position: relative;
  z-index: 4;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .hero .intro-excerpt {
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {
  .hero .intro-excerpt {
    max-width: 450px;
  }
}

.hero h1 {
  font-weight: 800;
  color: #000000;
  margin-bottom: 20px;
  letter-spacing: -1px;
  font-size: 32px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 42px;
    letter-spacing: -2px;
    margin-bottom: 30px;
  }
}

@media (min-width: 1400px) {
  .hero h1 {
    font-size: 54px;
  }
}

.hero p {
  color: #6a6a6a;
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 14px;
}

@media (min-width: 768px) {
  .hero p {
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 16px;
  }
}

.hero .hero-img-wrap {
  position: relative;
  text-align: center;
}

.hero .hero-img-wrap img {
  position: relative;
  top: 0;
  right: 0;
  z-index: 2;
  max-width: 100%;
  width: 100%;
  left: 0;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.12));
  transition: 0.3s all ease;
}

@media (min-width: 768px) {
  .hero .hero-img-wrap img {
    max-width: 500px;
    left: -50px;
  }
}

@media (min-width: 992px) {
  .hero .hero-img-wrap img {
    max-width: 780px;
    left: 0;
    top: -80px;
    position: absolute;
    right: -50px;
  }
}

@media (min-width: 1200px) {
  .hero .hero-img-wrap img {
    right: -100px;
  }
}

.hero .hero-img-wrap img:hover {
  transform: translateY(-10px);
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.18));
}

@media (max-width: 991px) {
  .hero .hero-img-wrap img:hover {
    transform: translateY(-5px);
  }
}

.hero .hero-img-wrap:after {
  display: none;
}

/* ==================== BUTTONS ==================== */
.btn {
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 8px;
  color: #ffffff;
  background: #000000;
  border-color: #000000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: 0.3s all ease;
  letter-spacing: 0.5px;
  font-size: 14px;
  display: inline-block;
}

@media (min-width: 768px) {
  .btn {
    padding: 14px 35px;
    font-size: 15px;
  }
}

.btn:hover {
  color: #ffffff;
  background: #1a1a1a;
  border-color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.btn:active,
.btn:focus {
  outline: none !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
}

.btn.btn-primary {
  background: #2a2a2a;
  border-color: #2a2a2a;
}

.btn.btn-primary:hover {
  background: #000000;
  border-color: #000000;
}

.btn.btn-secondary {
  color: #000000;
  background: #ffffff;
  border-color: #e0e0e0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-left: 10px;
}

@media (max-width: 575px) {
  .btn.btn-secondary {
    margin-left: 0;
    margin-top: 10px;
  }
}

.btn.btn-secondary:hover {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}

.btn.btn-white-outline {
  background: transparent;
  border-width: 2px;
  border-color: #e0e0e0;
  color: #000000;
  box-shadow: none;
}

.btn.btn-white-outline:hover {
  border-color: #000000;
  color: #000000;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ==================== SECTIONS ==================== */
.section-title {
  color: #000000;
  font-weight: 700;
  letter-spacing: -1px;
  font-size: 28px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 36px;
    margin-bottom: 30px;
  }
}

.untree_co-section {
  padding: 3.5rem 0;
}

@media (min-width: 768px) {
  .untree_co-section {
    padding: 5rem 0;
  }
}

@media (min-width: 992px) {
  .untree_co-section {
    padding: 7rem 0;
  }
}

/* ==================== PRODUCT SECTION ==================== */
.product-section {
  padding: 3.5rem 0;
  background: #fafafa;
}

@media (min-width: 768px) {
  .product-section {
    padding: 5rem 0;
  }
}

@media (min-width: 992px) {
  .product-section {
    padding: 7rem 0;
  }
}

.product-section .product-item {
  text-align: center;
  text-decoration: none;
  display: block;
  position: relative;
  padding-bottom: 30px;
  cursor: pointer;
  transition: 0.3s all ease;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .product-section .product-item {
    padding-bottom: 50px;
    margin-bottom: 0;
  }
}

.product-section .product-item .product-thumbnail {
  margin-bottom: 20px;
  position: relative;
  top: 0;
  transition: 0.4s all ease;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.08));
}

@media (min-width: 768px) {
  .product-section .product-item .product-thumbnail {
    margin-bottom: 30px;
  }
}

.product-section .product-item .product-thumbnail img {
  max-width: 100%;
  height: auto;
}

.product-section .product-item h3 {
  font-weight: 600;
  font-size: 15px;
  color: #000000;
  text-decoration: none;
  transition: 0.3s all ease;
}

@media (min-width: 768px) {
  .product-section .product-item h3 {
    font-size: 16px;
  }
}

.product-section .product-item strong {
  font-weight: 700 !important;
  font-size: 16px !important;
  color: #2a2a2a;
  text-decoration: none;
  transition: 0.3s all ease;
}

@media (min-width: 768px) {
  .product-section .product-item strong {
    font-size: 18px !important;
  }
}

.product-section .product-item .icon-cross {
  position: absolute;
  width: 40px;
  height: 40px;
  display: inline-block;
  background: #000000;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: -20px;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s all ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .product-section .product-item .icon-cross {
    width: 45px;
    height: 45px;
    margin-bottom: -22.5px;
  }
}

.product-section .product-item .icon-cross img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
}

.product-section .product-item:before {
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  content: "";
  background: #ffffff;
  height: 0%;
  z-index: -1;
  border-radius: 12px;
  transition: 0.4s all ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.product-section .product-item:hover {
  transform: translateY(-5px);
}

.product-section .product-item:hover .product-thumbnail {
  top: -20px;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.12));
}

@media (min-width: 768px) {
  .product-section .product-item:hover .product-thumbnail {
    top: -30px;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.15));
  }
}

.product-section .product-item:hover .icon-cross {
  bottom: 0;
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1.05);
}

.product-section .product-item:hover:before {
  height: 75%;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
  .product-section .product-item:hover:before {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
}

.product-section .product-item:hover h3 {
  color: #000000;
}

.product-section .product-item:hover strong {
  color: #000000;
}

/* ==================== WHY CHOOSE SECTION ==================== */
.why-choose-section {
  padding: 3.5rem 0;
  background: #ffffff;
}

@media (min-width: 768px) {
  .why-choose-section {
    padding: 5rem 0;
  }
}

@media (min-width: 992px) {
  .why-choose-section {
    padding: 7rem 0;
  }
}

.why-choose-section .img-wrap {
  position: relative;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .why-choose-section .img-wrap {
    margin-bottom: 0;
  }
}

.why-choose-section .img-wrap:before {
  display: none;
}

.why-choose-section .img-wrap img {
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  transition: 0.3s all ease;
  max-width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .why-choose-section .img-wrap img {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  }
}

.why-choose-section .img-wrap:hover img {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) {
  .why-choose-section .img-wrap:hover img {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
  }
}

/* ==================== FEATURE ==================== */
.feature {
  margin-bottom: 20px;
  padding: 20px;
  background: #fafafa;
  border-radius: 12px;
  transition: 0.3s all ease;
}

@media (min-width: 768px) {
  .feature {
    margin-bottom: 30px;
    padding: 25px;
  }
}

.feature:hover {
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

@media (min-width: 768px) {
  .feature:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
  }
}

.feature .icon {
  display: inline-block;
  position: relative;
  margin-bottom: 15px;
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s all ease;
}

@media (min-width: 768px) {
  .feature .icon {
    margin-bottom: 20px;
    width: 50px;
    height: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  }
}

.feature .icon img {
  max-width: 24px;
  height: auto;
}

.feature:hover .icon {
  background: #000000;
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) {
  .feature:hover .icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
}

.feature:hover .icon img {
  filter: brightness(0) invert(1);
}

.feature .icon:before {
  display: none;
}

.feature h3 {
  font-size: 15px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .feature h3 {
    font-size: 16px;
  }
}

.feature p {
  font-size: 13px;
  line-height: 20px;
  color: #6a6a6a;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .feature p {
    font-size: 14px;
    line-height: 22px;
  }
}

/* ==================== WE HELP SECTION ==================== */
.we-help-section {
  padding: 3.5rem 0;
  background: #fafafa;
}

@media (min-width: 768px) {
  .we-help-section {
    padding: 5rem 0;
  }
}

@media (min-width: 992px) {
  .we-help-section {
    padding: 7rem 0;
  }
}

.we-help-section .imgs-grid {
  display: block;
  position: relative;
}

@media (min-width: 768px) {
  .we-help-section .imgs-grid {
    display: grid;
    grid-template-columns: repeat(27, 1fr);
  }
}

.we-help-section .imgs-grid:before {
  display: none;
}

.we-help-section .imgs-grid .grid {
  position: relative;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .we-help-section .imgs-grid .grid {
    margin-bottom: 0;
  }
}

.we-help-section .imgs-grid .grid img {
  border-radius: 12px;
  max-width: 100%;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: 0.3s all ease;
}

@media (min-width: 768px) {
  .we-help-section .imgs-grid .grid img {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
}

.we-help-section .imgs-grid .grid:hover img {
  transform: scale(1.01);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) {
  .we-help-section .imgs-grid .grid:hover img {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  }
}

.we-help-section .imgs-grid .grid.grid-1 {
  grid-column: auto;
  grid-row: auto;
}

@media (min-width: 768px) {
  .we-help-section .imgs-grid .grid.grid-1 {
    grid-column: 1 / span 18;
    grid-row: 1 / span 27;
  }
}

.we-help-section .imgs-grid .grid.grid-2 {
  grid-column: auto;
  grid-row: auto;
  padding-left: 0;
}

@media (min-width: 768px) {
  .we-help-section .imgs-grid .grid.grid-2 {
    grid-column: 19 / span 27;
    grid-row: 1 / span 5;
    padding-left: 20px;
  }
}

.we-help-section .imgs-grid .grid.grid-3 {
  grid-column: auto;
  grid-row: auto;
  padding-top: 0;
}

@media (min-width: 768px) {
  .we-help-section .imgs-grid .grid.grid-3 {
    grid-column: 14 / span 16;
    grid-row: 6 / span 27;
    padding-top: 20px;
  }
}

/* ==================== CUSTOM LIST ==================== */
.custom-list {
  width: 100%;
}

.custom-list li {
  display: block;
  width: 100%;
  margin-bottom: 12px;
  line-height: 1.5;
  position: relative;
  padding-left: 25px;
  color: #4a4a4a;
}

@media (min-width: 768px) {
  .custom-list li {
    display: inline-block;
    width: calc(50% - 20px);
  }
}

.custom-list li:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000000;
  position: absolute;
  left: 0;
  top: 10px;
}

/* ==================== POPULAR PRODUCT ==================== */
.popular-product {
  padding: 0 0 3.5rem 0;
  background: #ffffff;
}

@media (min-width: 768px) {
  .popular-product {
    padding: 0 0 5rem 0;
  }
}

@media (min-width: 992px) {
  .popular-product {
    padding: 0 0 7rem 0;
  }
}

.popular-product .product-item-sm {
  padding: 20px;
  background: #fafafa;
  border-radius: 12px;
  transition: 0.3s all ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 576px) {
  .popular-product .product-item-sm {
    flex-direction: row;
    padding: 25px;
  }
}

.popular-product .product-item-sm:hover {
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

@media (min-width: 768px) {
  .popular-product .product-item-sm:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
  }
}

.popular-product .product-item-sm h3 {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .popular-product .product-item-sm h3 {
    font-size: 16px;
  }
}

.popular-product .product-item-sm a {
  text-decoration: none;
  color: #000000;
  transition: 0.3s all ease;
}

.popular-product .product-item-sm a:hover {
  color: #4a4a4a;
}

.popular-product .product-item-sm p {
  line-height: 1.5;
  margin-bottom: 10px;
  font-size: 13px;
  color: #6a6a6a;
}

@media (min-width: 768px) {
  .popular-product .product-item-sm p {
    line-height: 1.6;
    font-size: 14px;
  }
}

.popular-product .product-item-sm .thumbnail {
  margin-right: 0;
  margin-bottom: 15px;
  flex: 0 0 100px;
  position: relative;
  align-self: center;
}

@media (min-width: 576px) {
  .popular-product .product-item-sm .thumbnail {
    margin-right: 20px;
    margin-bottom: 0;
    flex: 0 0 120px;
  }
}

.popular-product .product-item-sm .thumbnail img {
  max-width: 100%;
  height: auto;
}

.popular-product .product-item-sm .thumbnail:before {
  content: "";
  position: absolute;
  border-radius: 12px;
  background: #ffffff;
  width: 85px;
  height: 85px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s all ease;
}

@media (min-width: 576px) {
  .popular-product .product-item-sm .thumbnail:before {
    width: 98px;
    height: 98px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  }
}

.popular-product .product-item-sm:hover .thumbnail:before {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .popular-product .product-item-sm:hover .thumbnail:before {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  }
}

.popular-product .product-item-sm .thumbnail img {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

@media (min-width: 768px) {
  .popular-product .product-item-sm .thumbnail img {
    filter: drop-shadow
    (0 5px 15px rgba(0, 0, 0, 0.1));
  }
}

/* ==================== TESTIMONIAL SECTION ==================== */
.testimonial-section {
  padding: 2rem 0 3.5rem 0;
  background: #fafafa;
}

@media (min-width: 768px) {
  .testimonial-section {
    padding: 3rem 0 5rem 0;
  }
}

@media (min-width: 992px) {
  .testimonial-section {
    padding: 3rem 0 7rem 0;
  }
}

.testimonial-slider-wrap {
  position: relative;
}

.testimonial-slider-wrap .tns-inner {
  padding-top: 20px;
}

@media (min-width: 768px) {
  .testimonial-slider-wrap .tns-inner {
    padding-top: 30px;
  }
}

.testimonial-slider-wrap .item .testimonial-block {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s all ease;
  margin: 0 10px;
}

@media (min-width: 768px) {
  .testimonial-slider-wrap .item .testimonial-block {
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin: 0 15px;
  }
}

.testimonial-slider-wrap .item .testimonial-block:hover {
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

@media (min-width: 768px) {
  .testimonial-slider-wrap .item .testimonial-block:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
  }
}

.testimonial-slider-wrap .item .testimonial-block blockquote {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .testimonial-slider-wrap .item .testimonial-block blockquote {
    line-height: 1.8;
    font-size: 16px;
  }
}

@media (min-width: 992px) {
  .testimonial-slider-wrap .item .testimonial-block blockquote {
    line-height: 32px;
    font-size: 18px;
  }
}

.testimonial-slider-wrap .item .testimonial-block .author-info .author-pic {
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .testimonial-slider-wrap .item .testimonial-block .author-info .author-pic {
    margin-bottom: 20px;
  }
}

.testimonial-slider-wrap .item .testimonial-block .author-info .author-pic img {
  max-width: 80px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
  .testimonial-slider-wrap .item .testimonial-block .author-info .author-pic img {
    max-width: 80px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
}

.testimonial-slider-wrap .item .testimonial-block .author-info h3 {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .testimonial-slider-wrap .item .testimonial-block .author-info h3 {
    font-size: 16px;
  }
}

.testimonial-slider-wrap #testimonial-nav {
  position: absolute;
  top: 50%;
  z-index: 99;
  width: 100%;
  display: none;
}

@media (min-width: 768px) {
  .testimonial-slider-wrap #testimonial-nav {
    display: block;
  }
}

.testimonial-slider-wrap #testimonial-nav > span {
  cursor: pointer;
  position: absolute;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  transition: 0.3s all ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-size: 18px;
}

@media (min-width: 992px) {
  .testimonial-slider-wrap #testimonial-nav > span {
    width: 50px;
    height: 50px;
    line-height: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
}

.testimonial-slider-wrap #testimonial-nav > span:hover {
  background: #000000;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

@media (min-width: 992px) {
  .testimonial-slider-wrap #testimonial-nav > span:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
  }
}

.testimonial-slider-wrap #testimonial-nav .prev {
  left: -10px;
}

@media (min-width: 768px) {
  .testimonial-slider-wrap #testimonial-nav .prev {
    left: -10px;
  }
}

.testimonial-slider-wrap #testimonial-nav .next {
  right: -10px;
}

@media (min-width: 768px) {
  .testimonial-slider-wrap #testimonial-nav .next {
    right: 0;
  }
}

.testimonial-slider-wrap .tns-nav {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .testimonial-slider-wrap .tns-nav {
    bottom: -50px;
  }
}

.testimonial-slider-wrap .tns-nav button {
  background: none;
  border: none;
  display: inline-block;
  position: relative;
  width: 0 !important;
  height: 7px !important;
  margin: 2px;
}

.testimonial-slider-wrap .tns-nav button:active,
.testimonial-slider-wrap .tns-nav button:focus,
.testimonial-slider-wrap .tns-nav button:hover {
  outline: none;
  box-shadow: none;
  background: none;
}

.testimonial-slider-wrap .tns-nav button:before {
  display: block;
  width: 7px;
  height: 7px;
  left: 0;
  top: 0;
  position: absolute;
  content: "";
  border-radius: 50%;
  transition: 0.3s all ease;
  background-color: #d0d0d0;
}

@media (min-width: 768px) {
  .testimonial-slider-wrap .tns-nav button:before {
    width: 8px;
    height: 8px;
  }
}

.testimonial-slider-wrap .tns-nav button:hover:before,
.testimonial-slider-wrap .tns-nav button.tns-nav-active:before {
  background-color: #000000;
}

/* ==================== BLOG SECTION ==================== */
.blog-section {
  padding: 3.5rem 0 6rem 0;
  background: #ffffff;
}

@media (min-width: 768px) {
  .blog-section {
    padding: 5rem 0 8rem 0;
  }
}

@media (min-width: 992px) {
  .blog-section {
    padding: 7rem 0 12rem 0;
  }
}

.blog-section .post-entry {
  transition: 0.3s all ease;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .blog-section .post-entry {
    margin-bottom: 0;
  }
}

.blog-section .post-entry:hover {
  transform: translateY(-5px);
}

@media (min-width: 768px) {
  .blog-section .post-entry:hover {
    transform: translateY(-10px);
  }
}

.blog-section .post-entry a {
  text-decoration: none;
}

.blog-section .post-entry .post-thumbnail {
  display: block;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
  .blog-section .post-entry .post-thumbnail {
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
}

.blog-section .post-entry .post-thumbnail img {
  border-radius: 12px;
  transition: 0.4s all ease;
  width: 100%;
  height: auto;
}

.blog-section .post-entry .post-content-entry {
  padding-left: 10px;
  padding-right: 10px;
}

@media (min-width: 768px) {
  .blog-section .post-entry .post-content-entry {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.blog-section .post-entry .post-content-entry h3 {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 700;
  color: #000000;
  transition: 0.3s all ease;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .blog-section .post-entry .post-content-entry h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.blog-section .post-entry .post-content-entry .meta {
  font-size: 12px;
  color: #6a6a6a;
}

@media (min-width: 768px) {
  .blog-section .post-entry .post-content-entry .meta {
    font-size: 13px;
  }
}

.blog-section .post-entry .post-content-entry .meta a {
  font-weight: 600;
  color: #2a2a2a;
}

.blog-section .post-entry:hover .post-thumbnail {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) {
  .blog-section .post-entry:hover .post-thumbnail {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }
}

.blog-section .post-entry:hover .post-thumbnail img {
  transform: scale(1.05);
}

.blog-section .post-entry:hover .post-content-entry h3 {
  color: #000000;
}

/* ==================== BEFORE FOOTER ==================== */
.before-footer-section {
  padding: 3.5rem 0 6rem 0 !important;
}

@media (min-width: 768px) {
  .before-footer-section {
    padding: 5rem 0 8rem 0 !important;
  }
}

@media (min-width: 992px) {
  .before-footer-section {
    padding: 7rem 0 12rem 0 !important;
  }
}

/* ==================== FOOTER SECTION ==================== */
.footer-section {
  padding: 50px 0;
  background: #ffffff;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .footer-section {
    padding: 60px 0;
  }
}

@media (min-width: 992px) {
  .footer-section {
    padding: 80px 0;
  }
}

.footer-section .relative {
  position: relative;
}

.footer-section a {
  text-decoration: none;
  color: #4a4a4a;
  transition: 0.3s all ease;
}

.footer-section a:hover {
  color: #000000;
}

.footer-section .subscription-form {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  margin-top: 40px;
  padding: 25px;
  background: #fafafa;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .footer-section .subscription-form {
    margin-top: 60px;
    margin-bottom: 40px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
}

@media (min-width: 992px) {
  .footer-section .subscription-form {
    margin-top: 0;
    margin-bottom: 80px;
  }
}

.footer-section .subscription-form h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .footer-section .subscription-form h3 {
    font-size: 20px;
  }
}

.footer-section .subscription-form .form-control {
  height: 45px;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 14px;
}

@media (min-width: 768px) {
  .footer-section .subscription-form .form-control {
    height: 50px;
  }
}

.footer-section .subscription-form .form-control:active,
.footer-section .subscription-form .form-control:focus {
  outline: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-color: #000000;
}

.footer-section .subscription-form .form-control::placeholder {
  font-size: 13px;
  color: #a0a0a0;
}

@media (min-width: 768px) {
  .footer-section .subscription-form .form-control::placeholder {
    font-size: 14px;
  }
}

.footer-section .subscription-form .btn {
  border-radius: 8px !important;
}

.footer-section .sofa-img {
  position: relative;
  top: 0;
  z-index: 1;
  right: 0;
  text-align: center;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .footer-section .sofa-img {
    position: absolute;
    top: -200px;
    margin-bottom: 0;
    text-align: right;
  }
}

.footer-section .sofa-img img {
  max-width: 100%;
  width: 280px;
  filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.08));
}

@media (min-width: 768px) {
  .footer-section .sofa-img img {
    width: 320px;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.1));
  }
}

@media (min-width: 992px) {
  .footer-section .sofa-img img {
    max-width: 380px;
    width: auto;
  }
}

.footer-section .links-wrap {
  margin-top: 30px;
}

@media (min-width: 768px) {
  .footer-section .links-wrap {
    margin-top: 40px;
  }
}

@media (min-width: 992px) {
  .footer-section .links-wrap {
    margin-top: 54px;
  }
}

.footer-section .links-wrap ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

@media (min-width: 768px) {
  .footer-section .links-wrap ul li {
    margin-bottom: 10px;
  }
}

.footer-section .footer-logo-wrap .footer-logo {
  font-size: 26px;
  font-weight: 700;
  text-decoration: none;
  color: #000000;
  letter-spacing: -1px;
}

@media (min-width: 768px) {
  .footer-section .footer-logo-wrap .footer-logo {
    font-size: 32px;
  }
}

.footer-section .custom-social li {
  margin: 2px;
  display: inline-block;
}

.footer-section .custom-social li a {
  width: 38px;
  height: 38px;
  text-align: center;
  line-height: 38px;
  display: inline-block;
  background: #fafafa;
  color: #2a2a2a;
  border-radius: 50%;
  transition: 0.3s all ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  font-size: 16px;
}

@media (min-width: 768px) {
  .footer-section .custom-social li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

.footer-section .custom-social li a:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) {
  .footer-section .custom-social li a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  }
}

.footer-section .border-top {
  border-color: #e8e8e8;
}

.footer-section .border-top.copyright {
  font-size: 13px !important;
  color: #6a6a6a;
}

@media (min-width: 768px) {
  .footer-section .border-top.copyright {
    font-size: 14px !important;
  }
}

/* ==================== FORM CONTROLS ==================== */
.form-control {
  height: 45px;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

@media (min-width: 768px) {
  .form-control {
    height: 50px;
  }
}

.form-control:active,
.form-control:focus {
  outline: none;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
  border-color: #FFD500;
}

.form-control::placeholder {
  font-size: 13px;
}

@media (min-width: 768px) {
  .form-control::placeholder {
    font-size: 14px;
  }
}

textarea {
  height: auto !important;
}

/* ==================== SERVICE ==================== */
.service {
  line-height: 1.5;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .service {
    margin-bottom: 0;
  }
}

.service .service-icon {
  border-radius: 10px;
  flex: 0 0 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background: #2a2a2a;
  margin-right: 15px;
  color: #ffffff;
  font-size: 20px;
}

@media (min-width: 768px) {
  .service .service-icon {
    flex: 0 0 50px;
    height: 50px;
    line-height: 50px;
    margin-right: 20px;
  }
}

/* ==================== CART/TABLE ==================== */
.site-blocks-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.site-blocks-table table {
  min-width: 600px;
}

.site-blocks-table .product-thumbnail {
  width: 120px;
}

@media (min-width: 768px) {
  .site-blocks-table .product-thumbnail {
    width: 150px;
  }
}

@media (min-width: 992px) {
  .site-blocks-table .product-thumbnail {
    width: 200px;
  }
}

.site-blocks-table .btn {
  padding: 2px 10px;
  background: none !important;
  color: #000000;
  border: none;
  height: auto !important;
}

.site-blocks-table thead th {
  padding: 20px 15px;
  text-align: center;
  border-width: 0 !important;
  vertical-align: middle;
  color: rgba(0, 0, 0, 0.8);
  font-size: 15px;
}

@media (min-width: 768px) {
  .site-blocks-table thead th {
    padding: 25px 20px;
    font-size: 16px;
  }
}

@media (min-width: 992px) {
  .site-blocks-table thead th {
    padding: 30px;
    font-size: 18px;
  }
}

.site-blocks-table td {
  padding: 15px 10px;
  text-align: center;
  vertical-align: middle;
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
}

@media (min-width: 768px) {
  .site-blocks-table td {
    padding: 20px 15px;
  }
}

@media (min-width: 992px) {
  .site-blocks-table td {
    padding: 20px;
  }
}

.site-blocks-table tbody tr:first-child td {
  border-top: 1px solid #2a2a2a !important;
}

.site-block-order-table th {
  border-top: none !important;
  border-bottom-width: 1px !important;
}

.site-block-order-table td,
.site-block-order-table th {
  color: #000000;
}

/* ==================== UTILITIES ==================== */
.text-primary {
  color: #FFD500 !important;
}

.couponcode-wrap input {
  border-radius: 10px !important;
}

.thankyou-icon {
  position: relative;
  color: #FFD500;
  font-size: 60px;
}

@media (min-width: 768px) {
  .thankyou-icon {
    font-size: 80px;
  }
}

.thankyou-icon:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 213, 0, 0.2);
}

@media (min-width: 768px) {
  .thankyou-icon:before {
    width: 50px;
    height: 50px;
  }
}

/* ==================== RESPONSIVE CONTAINER ADJUSTMENTS ==================== */
@media (max-width: 575px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ==================== ROW/COL SPACING ==================== */
@media (max-width: 767px) {
  .row > [class*='col-'] {
    margin-bottom: 30px;
  }
  
  .row > [class*='col-']:last-child {
    margin-bottom: 0;
  }
}

/* ==================== CART NOTIFICATION ==================== */
.cart-notification {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: #000000;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transition: 0.4s all ease;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 14px;
}

@media (min-width: 768px) {
  .cart-notification {
    padding: 18px 35px;
    font-size: 15px;
  }
}

.cart-notification.show {
  top: 30px;
}

.cart-notification .notification-icon {
  width: 24px;
  height: 24px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 14px;
}

/* ==================== CART SIDEBAR ==================== */
.cart-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all ease;
}

.cart-sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: #ffffff;
  z-index: 9999;
  transition: 0.4s all ease;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .cart-sidebar {
    max-width: 480px;
  }
}

.cart-sidebar.active {
  right: 0;
}

/* Cart Header */
.cart-sidebar-header {
  padding: 25px;
  background: #fafafa;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .cart-sidebar-header {
    padding: 30px;
  }
}

.cart-sidebar-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (min-width: 768px) {
  .cart-sidebar-header h3 {
    font-size: 24px;
  }
}

.cart-count-badge {
  background: #000000;
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
}

.cart-close-btn {
  background: #000000;
  color: #ffffff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s all ease;
  font-size: 20px;
  line-height: 1;
}

@media (min-width: 768px) {
  .cart-close-btn {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}

.cart-close-btn:hover {
  background: #2a2a2a;
  transform: rotate(90deg);
}

/* Cart Items List */
.cart-sidebar-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

@media (min-width: 768px) {
  .cart-sidebar-items {
    padding: 25px;
  }
}

.cart-empty-message {
  text-align: center;
  padding: 60px 20px;
  color: #6a6a6a;
}

.cart-empty-message i {
  font-size: 60px;
  color: #d0d0d0;
  margin-bottom: 20px;
  display: block;
}

@media (min-width: 768px) {
  .cart-empty-message i {
    font-size: 80px;
  }
}

.cart-empty-message p {
  font-size: 16px;
  margin: 0;
}

.cart-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: #fafafa;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: 0.3s all ease;
}

@media (min-width: 768px) {
  .cart-item {
    gap: 20px;
    padding: 25px;
  }
}

.cart-item:hover {
  background: #f5f5f5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cart-item-image {
  flex: 0 0 80px;
  height: 80px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .cart-item-image {
    flex: 0 0 100px;
    height: 100px;
  }
}

.cart-item-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-item-name {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .cart-item-name {
    font-size: 16px;
  }
}

.cart-item-price {
  font-size: 16px;
  font-weight: 700;
  color: #2a2a2a;
  margin: 0;
}

@media (min-width: 768px) {
  .cart-item-price {
    font-size: 18px;
  }
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border-radius: 8px;
  padding: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cart-qty-btn {
  width: 30px;
  height: 30px;
  border: none;
  background: #000000;
  color: #ffffff;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s all ease;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-qty-btn:hover {
  background: #2a2a2a;
  transform: scale(1.05);
}

.cart-qty-btn:active {
  transform: scale(0.95);
}

.cart-qty-value {
  min-width: 30px;
  text-align: center;
  font-weight: 600;
  color: #000000;
  font-size: 14px;
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: #ff4444;
  cursor: pointer;
  font-size: 20px;
  padding: 5px;
  transition: 0.3s all ease;
  margin-left: auto;
}

.cart-item-remove:hover {
  color: #cc0000;
  transform: scale(1.1);
}

/* Cart Footer */
.cart-sidebar-footer {
  padding: 25px;
  background: #fafafa;
  border-top: 1px solid #e8e8e8;
}

@media (min-width: 768px) {
  .cart-sidebar-footer {
    padding: 30px;
  }
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e0e0e0;
}

.cart-total-label {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}

@media (min-width: 768px) {
  .cart-total-label {
    font-size: 20px;
  }
}

.cart-total-value {
  font-size: 24px;
  font-weight: 800;
  color: #000000;
}

@media (min-width: 768px) {
  .cart-total-value {
    font-size: 28px;
  }
}

.cart-checkout-btn {
  width: 100%;
  padding: 16px 25px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s all ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (min-width: 768px) {
  .cart-checkout-btn {
    padding: 18px 30px;
    font-size: 17px;
  }
}

.cart-checkout-btn:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.cart-checkout-btn:active {
  transform: translateY(0);
}

/* Cart Icon Badge */
.cart-icon-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #000000;
  color: #ffffff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.custom-navbar-cta li {
  position: relative;
}

/* Scrollbar Styling */
.cart-sidebar-items::-webkit-scrollbar {
  width: 6px;
}

.cart-sidebar-items::-webkit-scrollbar-track {
  background: #f5f5f5;
}

.cart-sidebar-items::-webkit-scrollbar-thumb {
  background: #d0d0d0;
  border-radius: 3px;
}

.cart-sidebar-items::-webkit-scrollbar-thumb:hover {
  background: #b0b0b0;
}

/* ==================== CHECKOUT PAGE STYLES ==================== */
.checkout-cart-items {
  background: #fafafa;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .checkout-cart-items {
    padding: 30px;
  }
}

.checkout-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .checkout-item {
    gap: 20px;
    padding: 25px;
  }
}

.checkout-item-image {
  flex: 0 0 60px;
  height: 60px;
  background: #fafafa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

@media (min-width: 768px) {
  .checkout-item-image {
    flex: 0 0 80px;
    height: 80px;
  }
}

.checkout-item-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.checkout-item-info {
  flex: 1;
}

.checkout-item-name {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 5px;
}

@media (min-width: 768px) {
  .checkout-item-name {
    font-size: 16px;
  }
}

.checkout-item-quantity {
  font-size: 13px;
  color: #6a6a6a;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .checkout-item-quantity {
    font-size: 14px;
  }
}

.checkout-item-price {
  font-size: 16px;
  font-weight: 700;
  color: #2a2a2a;
}

@media (min-width: 768px) {
  .checkout-item-price {
    font-size: 18px;
  }
}
/* ==================== AUTH SECTION ==================== */
.auth-section {
  padding: 80px 0;
  background: #fafafa;
  min-height: calc(100vh - 400px);
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .auth-section {
    padding: 100px 0;
  }
}

.auth-container {
  max-width: 480px;
  margin: 0 auto;
}

.auth-form-wrapper {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-form {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
  .auth-form {
    padding: 50px 40px;
  }
}

.auth-header {
  text-align: center;
  margin-bottom: 35px;
}

.auth-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

@media (min-width: 768px) {
  .auth-header h2 {
    font-size: 32px;
  }
}

.auth-header p {
  font-size: 14px;
  color: #6a6a6a;
  margin: 0;
}

/* Form Groups */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: #000000;
  margin-bottom: 8px;
}

.form-group .form-control {
  width: 100%;
  height: 50px;
  padding: 12px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.3s all ease;
  background: #ffffff;
}

.form-group .form-control:focus {
  border-color: #000000;
  outline: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group .form-control::placeholder {
  color: #a0a0a0;
}

.form-text {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #6a6a6a;
}

/* Password Input */
.password-input-wrapper {
  position: relative;
}

.password-input-wrapper .form-control {
  padding-right: 50px;
}

.password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #6a6a6a;
  cursor: pointer;
  padding: 5px;
  transition: 0.3s all ease;
}

.password-toggle:hover {
  color: #000000;
}

.password-toggle i {
  font-size: 16px;
}

/* Form Options */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #4a4a4a;
  cursor: pointer;
  margin: 0;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  cursor: pointer;
}

.checkbox-label a {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.forgot-password {
  font-size: 14px;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s all ease;
}

.forgot-password:hover {
  color: #2a2a2a;
  text-decoration: underline;
}

/* Buttons */
.btn-block {
  width: 100%;
  padding: 14px 25px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}

.btn-primary:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
}

/* Divider */
.auth-divider {
  position: relative;
  text-align: center;
  margin: 30px 0;
}

.auth-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e0e0e0;
}

.auth-divider span {
  position: relative;
  background: #ffffff;
  padding: 0 15px;
  color: #6a6a6a;
  font-size: 13px;
  font-weight: 600;
}

/* Social Login */
.social-login {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.btn-social {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  color: #2a2a2a;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s all ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-social:hover {
  background: #fafafa;
  border-color: #d0d0d0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-social i {
  font-size: 18px;
}

.btn-google {
  color: #DB4437;
}

.btn-facebook {
  color: #4267B2;
}

/* Auth Switch */
.auth-switch {
  text-align: center;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #e8e8e8;
}

.auth-switch p {
  margin: 0;
  font-size: 14px;
  color: #6a6a6a;
}

.auth-switch a {
  color: #000000;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s all ease;
}

.auth-switch a:hover {
  text-decoration: underline;
}

/* ==================== USER DROPDOWN ==================== */
.user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: 0.3s all ease;
  z-index: 1000;
}

.user-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 15px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
}

/* Logged Out State */
.user-dropdown-guest {
  padding: 20px;
}

.user-dropdown-guest h4 {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.user-dropdown-guest p {
  font-size: 13px;
  color: #6a6a6a;
  margin-bottom: 15px;
  line-height: 1.5;
}

.user-dropdown-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-dropdown {
  width: 100%;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: 0.3s all ease;
  border: 1px solid transparent;
}

.btn-dropdown-primary {
  background: #000000;
  color: #ffffff;
}

.btn-dropdown-primary:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-dropdown-outline {
  background: transparent;
  color: #000000;
  border-color: #e0e0e0;
}

.btn-dropdown-outline:hover {
  background: #fafafa;
  border-color: #d0d0d0;
}

/* Logged In State */
.user-dropdown-profile {
  padding: 15px;
  border-bottom: 1px solid #e8e8e8;
}

.user-profile-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.user-details {
  flex: 1;
  min-width: 0;
}

.user-name {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-email {
  font-size: 12px;
  color: #6a6a6a;
  margin: 2px 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-dropdown-menu {
  padding: 8px 0;
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: #2a2a2a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s all ease;
  cursor: pointer;
}

.user-dropdown-item:hover {
  background: #fafafa;
  color: #000000;
}

.user-dropdown-item i {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.user-dropdown-divider {
  height: 1px;
  background: #e8e8e8;
  margin: 8px 0;
}

.user-dropdown-item.logout {
  color: #ff4444;
}

.user-dropdown-item.logout:hover {
  background: #fff5f5;
  color: #cc0000;
}

/* Position wrapper for nav item */
.custom-navbar-cta li {
  position: relative;
}

/* Alert Messages */
.auth-alert {
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-alert-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #4caf50;
}

.auth-alert-error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #f44336;
}

.auth-alert i {
  margin-right: 8px;
}

/* Loading State */
.btn-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}

.btn-loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 575px) {
  .auth-form {
    padding: 30px 20px;
  }

  .auth-header h2 {
    font-size: 24px;
  }

  .form-options {
    flex-direction: column;
    align-items: flex-start;
  }

  .user-dropdown {
    right: -10px;
    min-width: 250px;
  }
}