@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;600;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #262626;
  background-color: #FFFFFF;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  transition: all 0.3s ease ease;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  transition: all 0.3s ease ease;
}

.header {
  background-color: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease ease;
}
.header.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header .header-top {
  height: 54px;
}
.header .header-top .container-fluid {
  height: 100%;
  max-width: 1920px;
  padding: 0 60px;
  margin: 0 auto;
}
.header .header-top .container-fluid .row {
  height: 100%;
}
.header .header-left {
  height: 56px;
  justify-content: flex-start;
  padding-left: 0;
}
.header .header-logo {
  width: 200px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease ease;
}
.header .header-logo:hover {
  transform: scale(1.05);
}
.header .header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header .header-right {
  height: 40px;
  justify-content: flex-end;
  padding-right: 0;
}
.header .navbar {
  padding: 0;
}
.header .nav-item {
  position: relative;
}
.header .nav-item.active .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background-color: #262626;
}
.header .nav-link {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.5px;
  text-align: center;
  color: #262626;
  padding: 20px 16px;
  text-transform: capitalize;
  position: relative;
  transition: color 0.3s ease ease;
}
.header .nav-link::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 16px;
  right: 16px;
  width: auto;
  height: 2px;
  background-color: #000000;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease ease;
}
.header .nav-link:hover {
  color: #000000;
}
.header .nav-link:hover::before {
  transform: scaleX(1);
}
.header .nav-link.sale {
  color: #D0021B;
}
.header .nav-link.sale:hover {
  color: rgb(157.4857142857, 1.5142857143, 20.4428571429);
}
.header .btn-icon {
  background: transparent;
  border: none;
  padding: 12px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease ease;
}
.header .btn-icon i {
  font-size: 18px;
  color: #262626;
  transition: all 0.3s ease ease;
}
.header .btn-icon:hover {
  transform: scale(1.1);
}
.header .btn-icon:hover i {
  color: #000000;
}
.header .btn-icon:active {
  transform: scale(0.95);
}
.header .language-switcher {
  position: relative;
}
.header .btn-language {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid #DDDBDC;
  padding: 8px 12px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease ease;
}
.header .btn-language i {
  font-size: 14px;
  color: #262626;
  transition: all 0.3s ease ease;
}
.header .btn-language i.fa-chevron-down {
  font-size: 10px;
}
.header .btn-language .current-lang {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #262626;
  transition: color 0.3s ease ease;
}
.header .btn-language:hover {
  border-color: #000000;
  background: rgba(0, 0, 0, 0.05);
}
.header .btn-language:hover i, .header .btn-language:hover .current-lang {
  color: #000000;
}
.header .btn-language.active .fa-chevron-down {
  transform: rotate(180deg);
}
.header .language-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease ease;
  z-index: 1000;
  overflow: hidden;
}
.header .language-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .language-dropdown .language-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  text-decoration: none;
  color: #262626;
  transition: all 0.3s ease ease;
}
.header .language-dropdown .language-option .lang-flag {
  font-size: 20px;
}
.header .language-dropdown .language-option .lang-name {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.header .language-dropdown .language-option:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #000000;
}
.header .language-dropdown .language-option.active {
  background: rgba(0, 0, 0, 0.1);
  color: #000000;
  font-weight: 600;
}
.header .header-bottom .navbar-nav {
  gap: 0;
}
.header .navbar-toggler {
  color: #262626;
  padding: 0;
}
.header .navbar-toggler i {
  color: #262626;
  transition: color 0.3s ease ease;
}
.header .navbar-toggler:hover i {
  color: #000000;
}
.header .navbar-toggler:focus {
  box-shadow: none;
}

.offcanvas.offcanvas-start {
  width: 300px;
}
.offcanvas .offcanvas-header {
  padding: 20px;
}
.offcanvas .offcanvas-header .offcanvas-title {
  font-family: "Playfair Display SC", serif;
  font-size: 24px;
  color: #000000;
}
.offcanvas .offcanvas-header .btn-close:focus {
  box-shadow: none;
}

.mobile-nav-list .mobile-nav-header {
  padding: 15px 20px 10px;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #737373;
}
.mobile-nav-list .mobile-nav-divider {
  height: 1px;
  background-color: #DDDBDC;
  margin: 10px 0;
}
.mobile-nav-list .mobile-nav-item {
  border-bottom: 1px solid rgba(221, 219, 220, 0.5);
}
.mobile-nav-list .mobile-nav-item:last-child {
  border-bottom: none;
}
.mobile-nav-list .mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #262626;
  text-decoration: none;
  transition: all 0.3s ease ease;
}
.mobile-nav-list .mobile-nav-link i {
  color: #737373;
  width: 20px;
  transition: color 0.3s ease ease;
}
.mobile-nav-list .mobile-nav-link:hover {
  background-color: rgba(221, 219, 220, 0.3);
  color: #000000;
}
.mobile-nav-list .mobile-nav-link:hover i {
  color: #000000;
}
.mobile-nav-list .mobile-nav-link.active {
  background-color: rgba(0, 0, 0, 0.05);
  color: #000000;
  font-weight: 500;
  border-left: 3px solid #000000;
}
.mobile-nav-list .mobile-nav-link.active i {
  color: #000000;
}
.mobile-nav-list .mobile-nav-link.sale {
  color: #D0021B;
}
.mobile-nav-list .mobile-nav-link.sale:hover {
  background-color: rgba(208, 2, 27, 0.05);
  color: rgb(157.4857142857, 1.5142857143, 20.4428571429);
}

.footer {
  background-color: #FFFFFF;
  padding: 60px 0 30px;
  border-top: 1px solid #DDDBDC;
}
.footer .container-fluid {
  padding-left: 80px;
  padding-right: 80px;
}
@media (max-width: 1200px) {
  .footer .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.footer .footer-main {
  padding-bottom: 40px;
}
.footer .footer-main .footer-brand {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin: 0 0 10px 0;
  transition: color 0.3s ease ease;
}
.footer .footer-main .footer-brand:hover {
  color: #262626;
}
.footer .footer-main .footer-tagline {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #737373;
  margin: 0 0 20px 0;
}
.footer .footer-main .footer-contact {
  margin-top: 20px;
}
.footer .footer-main .footer-contact .footer-address,
.footer .footer-main .footer-contact .footer-mobile {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #484848;
  margin: 0 0 12px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}
.footer .footer-main .footer-contact .footer-address i,
.footer .footer-main .footer-contact .footer-mobile i {
  color: #000000;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer .footer-main .footer-contact .footer-address span,
.footer .footer-main .footer-contact .footer-address a,
.footer .footer-main .footer-contact .footer-mobile span,
.footer .footer-main .footer-contact .footer-mobile a {
  color: #484848;
  text-decoration: none;
  transition: color 0.3s ease ease;
}
.footer .footer-main .footer-contact .footer-address a:hover,
.footer .footer-main .footer-contact .footer-mobile a:hover {
  color: #000000;
}
.footer .footer-main .footer-contact .footer-mobile {
  margin-bottom: 0;
}
.footer .footer-main .footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer .footer-main .footer-nav .footer-link {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #484848;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease ease;
}
.footer .footer-main .footer-nav .footer-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #000000;
  transition: width 0.3s ease ease;
}
.footer .footer-main .footer-nav .footer-link:hover {
  color: #000000;
}
.footer .footer-main .footer-nav .footer-link:hover::after {
  width: 100%;
}
.footer .footer-main .footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .footer-main .footer-social .social-heading {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #484848;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer .footer-main .footer-social .social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer .footer-main .footer-social .social-icons .social-icon {
  width: 42px;
  height: 42px;
  border: 2px solid #DDDBDC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #484848;
  text-decoration: none;
  transition: all 0.3s ease ease;
}
.footer .footer-main .footer-social .social-icons .social-icon:hover {
  background-color: #000000;
  border-color: #000000;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.footer .footer-main .footer-social .social-icons .social-icon i {
  font-size: 16px;
}
.footer .footer-separator {
  width: 100%;
  height: 1px;
  background-color: #DDDBDC;
  margin: 0;
}
.footer .footer-bottom {
  padding-top: 30px;
}
.footer .footer-bottom .footer-copyright {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #8A8A8A;
  margin: 0;
}
.footer .footer-bottom .footer-links {
  display: flex;
  gap: 25px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.footer .footer-bottom .footer-links .footer-link-item {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #8A8A8A;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease ease;
}
.footer .footer-bottom .footer-links .footer-link-item::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: width 0.3s ease ease;
}
.footer .footer-bottom .footer-links .footer-link-item:hover {
  color: #000000;
}
.footer .footer-bottom .footer-links .footer-link-item:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 0 25px;
  }
  .footer .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer .footer-main {
    text-align: center;
    padding-bottom: 35px;
  }
  .footer .footer-main .footer-brand {
    text-align: center !important;
    font-size: 28px;
    margin-bottom: 8px;
  }
  .footer .footer-main .footer-tagline {
    margin-bottom: 20px;
  }
  .footer .footer-main .footer-contact {
    margin-top: 15px;
    margin-bottom: 30px;
  }
  .footer .footer-main .footer-contact .footer-address,
  .footer .footer-main .footer-contact .footer-mobile {
    justify-content: center;
    text-align: center;
    font-size: 13px;
  }
  .footer .footer-main .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
  }
  .footer .footer-main .footer-social .social-heading {
    margin-bottom: 15px;
  }
  .footer .footer-main .footer-social .social-icons {
    justify-content: center;
  }
  .footer .footer-bottom {
    padding-top: 25px;
    text-align: center;
  }
  .footer .footer-bottom .footer-copyright {
    margin-bottom: 15px;
    font-size: 13px;
  }
  .footer .footer-bottom .footer-links {
    justify-content: center;
    gap: 18px;
  }
  .footer .footer-bottom .footer-links .footer-link-item {
    font-size: 13px;
  }
}
.product-card {
  transition: transform 0.3s ease ease;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card:hover .product-image {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.product-card:hover .product-name {
  color: #000000;
}
.product-card .product-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
  transition: all 0.3s ease ease;
}
.product-card .product-info {
  margin-top: 12px;
  padding: 0 4px;
}
.product-card .product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}
.product-card .product-name {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: #262626;
  margin-bottom: 1.2em;
  flex: 1;
  transition: color 0.3s ease ease;
}
.product-card .product-price {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-left: 12px;
  white-space: nowrap;
}
.product-card .product-color {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #737373;
  margin: 0;
}

.section-header {
  text-align: center;
}
.section-header .section-title {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 12px;
}
.section-header .section-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #000000;
  max-width: 700px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.3s ease ease;
}
.feature-item:hover {
  transform: translateY(-5px);
}
.feature-item:hover .feature-icon i {
  transform: scale(1.1);
  color: #000000;
}
.feature-item .feature-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-item .feature-icon i {
  font-size: 40px;
  color: #262626;
  transition: all 0.3s ease ease;
}
.feature-item .feature-text {
  flex: 1;
}
.feature-item .feature-text .feature-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: #484848;
  margin: 0 0 6px;
}
.feature-item .feature-text .feature-description {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #484848;
  margin: 0;
}

.cart-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background-color: #D0021B;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  padding: 0;
  border-radius: 50%;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 2px 8px rgba(208, 2, 27, 0.4);
  transition: all 0.3s ease ease;
  line-height: 1;
}
.cart-badge:empty {
  display: none;
}

.btn-cart {
  position: relative;
}
.btn-cart:hover .cart-badge {
  transform: scale(1.1);
}

.btn {
  transition: all 0.3s ease ease;
  cursor: pointer;
  border: none;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease;
  transition: height 0.6s ease;
}
.btn:active {
  transform: scale(0.98);
}

.btn-white {
  background-color: #FFFFFF;
  color: #262626;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 10%;
  text-align: center;
  padding: 12px 20px;
  width: 240px;
  transition: all 0.3s ease ease;
}
@media (max-width: 768px) {
  .btn-white {
    width: 180px;
    font-size: 12px;
    padding: 10px 15px;
  }
}
.btn-white:hover {
  background-color: #000000;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-subscribe {
  width: 100%;
  max-width: 207px;
  height: 56px;
  background-color: #000000;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 20px 35px 0px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease ease;
}
@media (max-width: 768px) {
  .btn-subscribe {
    height: 48px;
    font-size: 14px;
  }
}
.btn-subscribe:hover {
  background-color: rgb(25.5, 25.5, 25.5);
  transform: translateY(-3px);
  color: #FFFFFF;
}
.btn-subscribe:active {
  transform: translateY(-1px);
}

.carousel-btn {
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease ease;
  border-radius: 50%;
}
.carousel-btn i {
  font-size: 24px;
  color: #262626;
  transition: color 0.3s ease ease;
}
.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
  transform: scale(1.1);
}
.carousel-btn:hover i {
  color: #000000;
}
.carousel-btn:active {
  transform: scale(0.95);
}
.carousel-btn[href] {
  text-decoration: none;
  display: inline-block;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
}
.cart-sidebar.active {
  pointer-events: all;
}
.cart-sidebar.active .cart-overlay {
  opacity: 1;
  visibility: visible;
}
.cart-sidebar.active .cart-content {
  transform: translateX(0);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease ease;
  backdrop-filter: blur(2px);
}

.cart-content {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background: #FFFFFF;
  transform: translateX(100%);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s ease ease;
  display: flex;
  flex-direction: column;
  overflow: auto;
}
@media (max-width: 768px) {
  .cart-content {
    max-width: 100%;
  }
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  border-bottom: 2px solid #DDDBDC;
  background: linear-gradient(135deg, #f9f9f9 0%, #FFFFFF 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .cart-header {
    padding: 20px;
  }
}

.cart-title {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart-title i {
  font-size: 22px;
}
@media (max-width: 768px) {
  .cart-title {
    font-size: 20px;
  }
}

.cart-count-header {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #737373;
}

.btn-close-cart {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid #DDDBDC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease ease;
}
.btn-close-cart i {
  font-size: 18px;
  color: #262626;
  transition: color 0.3s ease ease;
}
.btn-close-cart:hover {
  background: #D0021B;
  border-color: #D0021B;
  transform: rotate(90deg);
}
.btn-close-cart:hover i {
  color: #FFFFFF;
}
.btn-close-cart:active {
  transform: rotate(90deg) scale(0.9);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 0;
  min-height: 22rem;
  /* Custom Scrollbar */
}
.cart-items::-webkit-scrollbar {
  width: 8px;
}
.cart-items::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.cart-items::-webkit-scrollbar-thumb {
  background: #737373;
  border-radius: 10px;
}
.cart-items::-webkit-scrollbar-thumb:hover {
  background: #262626;
}
@media (max-width: 768px) {
  .cart-items {
    min-height: auto;
    max-height: 15rem;
  }
}

.empty-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 30px;
  text-align: center;
  height: 100%;
}
.empty-cart i {
  font-size: 80px;
  color: #DDDBDC;
  margin-bottom: 25px;
  animation: float 3s ease-in-out infinite;
}
.empty-cart h4 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
}
.empty-cart p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #737373;
  margin-bottom: 30px;
}
.empty-cart .btn-shop-now {
  background: linear-gradient(135deg, #000000 0%, #262626 100%);
  color: #FFFFFF;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.empty-cart .btn-shop-now:hover {
  background: linear-gradient(135deg, #262626 0%, #000000 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.cart-items-list {
  padding: 20px 0;
}
.cart-items-list:empty + .empty-cart {
  display: flex;
}

.cart-item {
  display: flex;
  gap: 12px;
  padding: 15px 20px;
  border-bottom: 1px solid #DDDBDC;
  transition: all 0.3s ease ease;
  animation: slideInRight 0.3s ease;
}
@media (max-width: 768px) {
  .cart-item {
    padding: 12px 15px;
    gap: 10px;
  }
}
.cart-item:hover {
  background: rgba(221, 219, 220, 0.2);
}
.cart-item.removing {
  animation: slideOutRight 0.3s ease forwards;
}

.cart-item-image {
  width: 70px;
  height: 90px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease ease;
}
.cart-item-image:hover img {
  transform: scale(1.05);
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.cart-item-name {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}

.cart-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: #737373;
}
.cart-item-meta span:not(:last-child)::after {
  content: "•";
  margin-left: 8px;
  color: #DDDBDC;
}

.cart-item-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.cart-item-price .item-price {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
}
.cart-item-price .item-original-price {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #979797;
  text-decoration: line-through;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  gap: 10px;
}

.cart-quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid #DDDBDC;
  border-radius: 4px;
  overflow: hidden;
  background: #FFFFFF;
}
.cart-quantity button {
  width: 28px;
  height: 28px;
  background: #FFFFFF;
  border: none;
  color: #262626;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.3s ease ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cart-quantity button:hover {
  background: #000000;
  color: #FFFFFF;
}
.cart-quantity button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cart-quantity button:disabled:hover {
  background: #FFFFFF;
  color: #262626;
}
.cart-quantity .cart-qty-value {
  min-width: 32px;
  padding: 0 5px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #000000;
  border-left: 1px solid #DDDBDC;
  border-right: 1px solid #DDDBDC;
  line-height: 28px;
}

.btn-remove-item {
  background: transparent;
  border: none;
  color: #D0021B;
  cursor: pointer;
  padding: 4px 6px;
  transition: all 0.3s ease ease;
  flex-shrink: 0;
}
.btn-remove-item i {
  font-size: 14px;
}
.btn-remove-item:hover {
  transform: scale(1.15);
  color: rgb(157.4857142857, 1.5142857143, 20.4428571429);
}

.cart-footer {
  border-top: 2px solid #DDDBDC;
  background: linear-gradient(180deg, #FFFFFF 0%, #f9f9f9 100%);
  padding: 20px 20px 25px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .cart-footer {
    padding: 18px 15px 20px;
  }
}

.cart-summary {
  margin-bottom: 18px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #262626;
  padding: 8px 0;
}
.summary-row.total-row {
  border-top: 2px solid #DDDBDC;
  margin-top: 8px;
  padding-top: 12px;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
}
.summary-row.total-row .total-amount {
  color: #D0021B;
  font-size: 20px;
}

.subtotal-amount,
.shipping-amount {
  font-weight: 600;
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}
.cart-actions .btn {
  width: 100%;
  padding: 12px 18px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cart-actions .btn i {
  font-size: 14px;
}
.cart-actions .btn-view-cart {
  background: transparent;
  color: #000000;
  border: 2px solid #000000;
  text-decoration: none;
}
.cart-actions .btn-view-cart:hover {
  background: #000000;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.cart-actions .btn-checkout {
  background: linear-gradient(135deg, #28a745 0%, #20833a 100%);
  color: #FFFFFF;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}
.cart-actions .btn-checkout:hover {
  background: linear-gradient(135deg, #20833a 0%, #28a745 100%);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(40, 167, 69, 0.4);
}

.cart-promo {
  text-align: center;
  padding: 12px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 8px;
}
.cart-promo p {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: #262626;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 1.3;
}
.cart-promo p i {
  color: #28a745;
  font-size: 14px;
  flex-shrink: 0;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
    height: 0;
    padding: 0;
    margin: 0;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
body.cart-open {
  overflow: hidden;
}

.hero-section {
  width: 100%;
}
.hero-section .hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.promo-section {
  padding: 40px 0;
  position: relative;
  z-index: 2;
}
.promo-section .container-fluid {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 768px) {
  .promo-section .container-fluid {
    padding: 0;
    overflow: hidden;
  }
}
.promo-section .row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.promo-section .row::-webkit-scrollbar {
  display: none;
}
@media (min-width: 769px) {
  .promo-section .row {
    gap: 12px;
    padding-bottom: 10px;
  }
  .promo-section [class*=col-] {
    flex: 0 0 calc(33.333% - 8px);
    max-width: calc(33.333% - 8px);
    scroll-snap-align: start;
    padding: 0 !important;
  }
}
@media (max-width: 768px) {
  .promo-section .row {
    margin: 0 !important;
    gap: 0 !important;
  }
  .promo-section [class*=col-] {
    flex: 0 0 100vw !important;
    max-width: 100vw !important;
    min-width: 100vw !important;
    width: 100vw !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 0 20px !important;
  }
}
.promo-section .promo-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 23px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease ease;
}
@media (max-width: 768px) {
  .promo-section .promo-card {
    height: 320px;
    gap: 15px;
  }
}
.promo-section .promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  transition: background 0.3s ease ease;
}
.promo-section .promo-card:hover {
  transform: scale(1.02);
}
@media (max-width: 768px) {
  .promo-section .promo-card:hover {
    transform: none;
  }
}
.promo-section .promo-card:hover::before {
  background: rgba(0, 0, 0, 0.1);
}
.promo-section .promo-card .promo-title {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .promo-section .promo-card .promo-title {
    font-size: 28px;
  }
}

.promo-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.promo-indicators .indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #DDDBDC;
  cursor: pointer;
  transition: all 0.3s ease ease;
}
.promo-indicators .indicator:hover {
  background-color: #737373;
  transform: scale(1.2);
}
.promo-indicators .indicator.active {
  background-color: #000000;
  width: 24px;
  border-radius: 4px;
}

.new-arrivals-carousel {
  padding: 90px 0;
  background: #FFFFFF;
}
@media (max-width: 768px) {
  .new-arrivals-carousel {
    padding: 50px 0;
  }
}
.new-arrivals-carousel .container-fluid {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 768px) {
  .new-arrivals-carousel .container-fluid {
    padding: 0 20px;
  }
}
.new-arrivals-carousel .section-header {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .new-arrivals-carousel .section-header {
    margin-bottom: 30px;
  }
}
.new-arrivals-carousel .section-header .section-title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .new-arrivals-carousel .section-header .section-title {
    font-size: 26px;
    margin-bottom: 10px;
  }
}
.new-arrivals-carousel .section-header .section-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #737373;
}
@media (max-width: 768px) {
  .new-arrivals-carousel .section-header .section-subtitle {
    font-size: 14px;
  }
}

.new-arrivals-carousel-wrapper {
  position: relative;
  padding: 0 70px;
}
@media (max-width: 768px) {
  .new-arrivals-carousel-wrapper {
    padding: 0 40px;
  }
}

.new-arrivals-slider {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.new-arrivals-slider::-webkit-scrollbar {
  display: none;
}
.new-arrivals-slider .row {
  margin: 0;
}
.new-arrivals-slider .col-auto {
  width: 320px;
  scroll-snap-align: start;
  padding: 0 8px;
}
.new-arrivals-slider .product-card {
  height: 100%;
  margin: 0;
  width: 100%;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #FFFFFF;
  border: 2px solid #DDDBDC;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .carousel-btn {
    width: 36px;
    height: 36px;
  }
}
.carousel-btn i {
  font-size: 18px;
  color: #000000;
  transition: color 0.3s ease ease;
}
@media (max-width: 768px) {
  .carousel-btn i {
    font-size: 14px;
  }
}
.carousel-btn:hover {
  background: #000000;
  border-color: #000000;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.carousel-btn:hover i {
  color: #FFFFFF;
}
.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}
.carousel-btn.carousel-btn-left {
  left: 0;
}
.carousel-btn.carousel-btn-right {
  right: 0;
}

.btn-view-all {
  padding: 16px 40px;
  background: transparent;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease ease;
}
@media (max-width: 768px) {
  .btn-view-all {
    padding: 12px 28px;
    font-size: 13px;
    margin-top: 20px;
  }
}
.btn-view-all:hover {
  background: #000000;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}
.btn-view-all i {
  font-size: 16px;
}
@media (max-width: 768px) {
  .btn-view-all i {
    font-size: 14px;
  }
}

.everlane-section {
  padding: 80px 0;
  position: relative;
}
@media (max-width: 768px) {
  .everlane-section {
    padding: 50px 0;
  }
}
.everlane-section .container-fluid {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 768px) {
  .everlane-section .container-fluid {
    padding: 0 20px;
  }
}
.everlane-section .section-header {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .everlane-section .section-header {
    margin-bottom: 30px;
  }
}
.everlane-section .section-header .section-title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .everlane-section .section-header .section-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
.everlane-section .section-header .section-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #000000;
}
@media (max-width: 768px) {
  .everlane-section .section-header .section-subtitle {
    font-size: 14px;
  }
}
.everlane-section .product-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .everlane-section .product-carousel {
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .everlane-section .product-carousel::-webkit-scrollbar {
    display: none;
  }
  .everlane-section .product-carousel .carousel-btn {
    display: none;
  }
}
.everlane-section .product-carousel .carousel-btn {
  position: relative;
  transform: none;
  flex-shrink: 0;
}
.everlane-section .product-carousel .carousel-btn:active {
  transform: scale(0.95);
}
.everlane-section .products-wrapper {
  flex: 1;
  overflow: hidden;
}
@media (max-width: 768px) {
  .everlane-section .products-wrapper {
    overflow: visible;
  }
}
.everlane-section .product-card {
  transition: transform 0.3s ease ease;
  cursor: pointer;
}
.everlane-section .product-card:hover {
  transform: translateY(-5px);
}
.everlane-section .product-card:hover .product-image {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.everlane-section .product-card:hover .product-name {
  color: #000000;
}
.everlane-section .product-card .product-image {
  height: 420px;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: all 0.3s ease ease;
}
@media (max-width: 768px) {
  .everlane-section .product-card .product-image {
    height: auto;
    max-height: 280px;
  }
}
.everlane-section .product-card .product-info {
  margin-top: 12px;
  padding: 0 4px;
}
@media (max-width: 768px) {
  .everlane-section .product-card .product-info {
    margin-top: 8px;
  }
}
.everlane-section .product-card .product-name {
  font-family: "Playfair Display", serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #262626;
  margin: 0 0 8px 0;
  transition: color 0.3s ease ease;
}
@media (max-width: 768px) {
  .everlane-section .product-card .product-name {
    font-size: 12px;
    margin-bottom: 6px;
  }
}
.everlane-section .product-card .product-price {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-left: 8px;
}
@media (max-width: 768px) {
  .everlane-section .product-card .product-price {
    font-size: 14px;
    margin-left: 0;
  }
}
.everlane-section .product-card .product-color {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #737373;
  margin: 6px 0 0;
}
@media (max-width: 768px) {
  .everlane-section .product-card .product-color {
    font-size: 11px;
    margin-top: 4px;
  }
}
.everlane-section .product-card-small {
  width: 120px;
}
@media (max-width: 768px) {
  .everlane-section .product-card-small {
    width: 100px;
  }
}
.everlane-section .carousel-indicators {
  position: relative;
  z-index: 1;
}
.everlane-section .carousel-indicators .indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #DDDBDC;
  cursor: pointer;
  transition: all 0.3s ease ease;
}
.everlane-section .carousel-indicators .indicator:hover {
  background-color: #737373;
  transform: scale(1.3);
}
.everlane-section .carousel-indicators .indicator.active {
  background-color: #000000;
  transform: scale(1.2);
}

.about-section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }
}
.about-section .container-fluid {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 768px) {
  .about-section .container-fluid {
    padding: 0 20px;
  }
}
.about-section .about-title {
  font-family: "Poppins", sans-serif;
  font-size: 52px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .about-section .about-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
.about-section .about-content .row {
  align-items: center;
}
@media (max-width: 768px) {
  .about-section .about-image {
    margin-bottom: 30px;
  }
}
.about-section .about-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  transition: transform 0.3s ease ease;
}
@media (max-width: 768px) {
  .about-section .about-image img {
    max-width: 100%;
  }
}
.about-section .about-image img:hover {
  transform: scale(1.02);
}
.about-section .about-text {
  padding-left: 20px;
}
@media (max-width: 768px) {
  .about-section .about-text {
    padding-left: 0;
  }
}
.about-section .about-text .about-description {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .about-section .about-text .about-description {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
  }
}
.about-section .about-text .about-stats {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .about-section .about-text .about-stats {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

.instagram-section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .instagram-section {
    padding: 50px 0;
  }
}
.instagram-section .container-fluid {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 768px) {
  .instagram-section .container-fluid {
    padding: 0 20px;
  }
}
.instagram-section .section-header {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .instagram-section .section-header {
    margin-bottom: 30px;
  }
}
.instagram-section .section-title {
  font-family: "Poppins", sans-serif;
  font-size: 44px;
  font-weight: 500;
  color: #484848;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .instagram-section .section-title {
    font-size: 26px;
    margin-bottom: 15px;
  }
}
.instagram-section .section-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #8A8A8A;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .instagram-section .section-subtitle {
    font-size: 14px;
    max-width: 100%;
  }
}
.instagram-section .gallery-image {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease ease;
}
.instagram-section .gallery-image:hover {
  transform: scale(1.01);
}

.newsletter-section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .newsletter-section {
    padding: 50px 0;
  }
}
.newsletter-section .container-fluid {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 768px) {
  .newsletter-section .container-fluid {
    padding: 0 20px;
  }
}
.newsletter-section .newsletter-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  transition: transform 0.3s ease ease;
}
@media (max-width: 768px) {
  .newsletter-section .newsletter-image {
    display: none;
  }
}
.newsletter-section .newsletter-image:hover {
  transform: scale(1.02);
}
.newsletter-section .newsletter-center {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .newsletter-section .newsletter-center {
    padding: 0;
  }
}
.newsletter-section .newsletter-center .newsletter-title {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  color: #484848;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .newsletter-section .newsletter-center .newsletter-title {
    font-size: 26px;
    margin-bottom: 15px;
  }
}
.newsletter-section .newsletter-center .newsletter-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  color: #8A8A8A;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .newsletter-section .newsletter-center .newsletter-subtitle {
    font-size: 14px;
    margin-bottom: 25px;
  }
}
.newsletter-section .newsletter-center .newsletter-form {
  position: relative;
}
.newsletter-section .newsletter-center .newsletter-input {
  width: 100%;
  height: 86px;
  padding: 28px 30px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.182;
  color: #8A8A8A;
  border: none;
  border-radius: 8px;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.01), 0px 13px 7px rgba(0, 0, 0, 0.02), 0px 33px 13px rgba(0, 0, 0, 0.02), 0px 63px 25px rgba(0, 0, 0, 0.02), 0px 106px 47px rgba(0, 0, 0, 0.03), 0px 163px 80px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease ease;
}
@media (max-width: 768px) {
  .newsletter-section .newsletter-center .newsletter-input {
    height: 54px;
    padding: 15px 18px;
    font-size: 15px;
  }
}
.newsletter-section .newsletter-center .newsletter-input::placeholder {
  color: #8A8A8A;
}
@media (max-width: 768px) {
  .newsletter-section .newsletter-center .newsletter-input::placeholder {
    font-size: 14px;
  }
}
.newsletter-section .newsletter-center .newsletter-input:focus {
  outline: none;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.02), 0px 20px 10px rgba(0, 0, 0, 0.03), 0px 40px 15px rgba(0, 0, 0, 0.03), 0px 70px 30px rgba(0, 0, 0, 0.04), 0px 120px 50px rgba(0, 0, 0, 0.05), 0px 180px 90px rgba(0, 0, 0, 0.06);
}

.features-section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .features-section {
    padding: 50px 0;
  }
}
.features-section .container {
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 768px) {
  .features-section .container {
    padding: 0 20px;
  }
}
.features-section .features-container {
  background-color: #F9F9F9;
  padding: 60px 80px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .features-section .features-container {
    padding: 30px 20px;
  }
}
.features-section .feature-item {
  transition: transform 0.3s ease ease;
}
@media (max-width: 768px) {
  .features-section .feature-item {
    margin-bottom: 25px;
  }
  .features-section .feature-item:last-child {
    margin-bottom: 0;
  }
}
.features-section .feature-item:hover {
  transform: translateY(-5px);
}
.features-section .feature-item:hover .feature-icon i {
  transform: scale(1.1);
  color: #000000;
}
.features-section .feature-icon i {
  font-size: 40px;
  color: #262626;
  transition: all 0.3s ease ease;
}
@media (max-width: 768px) {
  .features-section .feature-icon i {
    font-size: 32px;
  }
}
.features-section .feature-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #484848;
}
@media (max-width: 768px) {
  .features-section .feature-title {
    font-size: 16px;
  }
}
.features-section .feature-description {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #484848;
}
@media (max-width: 768px) {
  .features-section .feature-description {
    font-size: 13px;
  }
}

.shop-section {
  padding: 60px 0 90px;
  background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
  min-height: 100vh;
}
.shop-section .container-fluid {
  max-width: 1920px;
  padding: 0 60px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .shop-section .container-fluid {
    padding: 0 20px;
  }
}

@media (max-width: 991px) {
  .shop-sidebar {
    margin-bottom: 40px;
  }
}

.sidebar-content {
  position: sticky;
  top: 100px;
  background: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease ease;
}
.sidebar-content:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .sidebar-content {
    position: relative;
    top: 0;
  }
}

.product-count {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #DDDBDC;
}
.product-count h5 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin: 0;
  animation: fadeInDown 0.6s ease;
}

.filter-section {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #DDDBDC;
}
.filter-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: 20px;
  transition: all 0.3s ease ease;
}
.filter-header:hover .filter-title {
  color: #000000;
}
.filter-header i {
  font-size: 12px;
  color: #737373;
  transition: transform 0.3s ease ease;
}
.filter-header[aria-expanded=false] i {
  transform: rotate(180deg);
}

.filter-title {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #262626;
  margin: 0;
  transition: color 0.3s ease ease;
}

.filter-content {
  animation: slideDown 0.4s ease;
}

.filter-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  transition: all 0.3s ease ease;
}
.filter-item:hover {
  padding-left: 8px;
}
.filter-item:hover .form-check-label {
  color: #000000;
}
.filter-item .form-check-input {
  width: 18px;
  height: 18px;
  border: 2px solid #737373;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease ease;
}
.filter-item .form-check-input:checked {
  background-color: #000000;
  border-color: #000000;
  animation: checkBounce 0.3s ease;
}
.filter-item .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}
.filter-item .form-check-label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #262626;
  cursor: pointer;
  transition: color 0.3s ease ease;
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 15px;
}

.color-item {
  position: relative;
}

.color-checkbox {
  display: none;
}
.color-checkbox:checked + .color-swatch {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.color-checkbox:checked + .color-swatch .color-check {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.color-swatch {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease ease;
}
.color-swatch:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.color-swatch .color-check {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease ease;
}
.color-swatch .color-check i {
  line-height: 1;
}

.size-category .size-label {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #262626;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.size-item {
  position: relative;
}

.size-checkbox {
  display: none;
}
.size-checkbox:checked + .size-button {
  background-color: #000000;
  color: #FFFFFF;
  border-color: #000000;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.size-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 5px;
  border: 2px solid #DDDBDC;
  border-radius: 4px;
  background: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #262626;
  cursor: pointer;
  transition: all 0.3s ease ease;
}
.size-button:hover {
  border-color: #000000;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-view-more {
  background: transparent;
  border: none;
  color: #737373;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  padding: 8px 0;
  cursor: pointer;
  transition: color 0.3s ease ease;
}
.btn-view-more:hover {
  color: #000000;
}
.btn-view-more:hover i {
  transform: translateY(2px);
}
.btn-view-more i {
  font-size: 10px;
  margin-left: 5px;
  transition: transform 0.3s ease ease;
}

.filter-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.btn-apply-filters {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #28a745 0%, #20833a 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease ease;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}
.btn-apply-filters:hover {
  background: linear-gradient(135deg, #20833a 0%, #28a745 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(40, 167, 69, 0.4);
}
.btn-apply-filters:active {
  transform: translateY(0);
}
.btn-apply-filters i {
  margin-right: 8px;
}

.btn-clear-filters {
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  color: #262626;
  border: 2px solid #DDDBDC;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease ease;
}
.btn-clear-filters:hover {
  background: linear-gradient(135deg, #000000 0%, #262626 100%);
  color: #FFFFFF;
  border-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: white;
}
.btn-clear-filters:active {
  transform: translateY(0);
}
.btn-clear-filters i {
  margin-right: 8px;
}

.filter-search {
  margin-bottom: 25px;
  position: relative;
}
.filter-search .search-input {
  width: 100%;
  padding: 12px 45px 12px 15px;
  border: 2px solid #DDDBDC;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #262626;
  transition: all 0.3s ease ease;
}
.filter-search .search-input:focus {
  outline: none;
  border-color: #000000;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}
.filter-search .search-input::placeholder {
  color: #737373;
}
.filter-search .search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #737373;
  pointer-events: none;
  transition: color 0.3s ease ease;
}
.filter-search:focus-within .search-icon {
  color: #000000;
}

.shop-content {
  animation: fadeIn 0.6s ease;
}

.shop-header {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid #DDDBDC;
}

.shop-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  animation: fadeInLeft 0.8s ease;
}
@media (max-width: 768px) {
  .shop-title {
    font-size: 36px;
  }
}

.shop-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #737373;
  margin: 5px 0 0;
  animation: fadeInLeft 0.8s ease 0.2s backwards;
}

.shop-controls {
  animation: fadeInRight 0.8s ease 0.2s backwards;
}
.shop-controls .sort-select {
  min-width: 200px;
  padding: 10px 15px;
  border: 2px solid #DDDBDC;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #262626;
  cursor: pointer;
  transition: all 0.3s ease ease;
}
.shop-controls .sort-select:focus {
  border-color: #000000;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}
.shop-controls .sort-select:hover {
  border-color: #000000;
}

.products-grid {
  margin-bottom: 60px;
}

.product-card {
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card .product-link {
  text-decoration: none;
  color: inherit;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.product-card:hover .product-overlay {
  opacity: 1;
  visibility: visible;
}
.product-card:hover .product-image {
  transform: scale(1.05);
}
.product-card:hover .btn-wishlist {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #D0021B;
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  animation: bounceIn 0.6s ease;
}

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

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease ease;
  z-index: 1;
}
.product-overlay .btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  border: none;
  transition: all 0.3s ease ease;
  animation: slideInUp 0.5s ease;
}
.product-overlay .btn.btn-quick-view {
  background: #FFFFFF;
  color: #000000;
}
.product-overlay .btn.btn-quick-view:hover {
  background: #000000;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.product-overlay .btn.btn-add-to-cart {
  background: #000000;
  color: #FFFFFF;
  animation-delay: 0.1s;
}
.product-overlay .btn.btn-add-to-cart:hover {
  background: #FFFFFF;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.btn-wishlist {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease ease;
  opacity: 0;
  transform: translateY(-10px) scale(0.8);
}
.btn-wishlist i {
  font-size: 18px;
  color: #000000;
  transition: all 0.3s ease ease;
}
.btn-wishlist:hover {
  background: #D0021B;
  box-shadow: 0 6px 20px rgba(208, 2, 27, 0.4);
}
.btn-wishlist:hover i {
  color: #FFFFFF;
  transform: scale(1.2);
}
.btn-wishlist:active {
  transform: translateY(0) scale(0.95);
}

.product-details {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-info {
  margin-bottom: 15px;
}

.product-name {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease ease;
}
.product-name:hover {
  color: #262626;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-price .price-original {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #979797;
  text-decoration: line-through;
}
.product-price .price-sale {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}

.product-meta {
  margin-top: auto;
}

.product-category {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: #737373;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-colors {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.color-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease ease;
}
.color-dot:hover {
  transform: scale(1.3);
}

.product-materials {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.material-tag {
  display: inline-block;
  padding: 4px 10px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #262626;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease ease;
}
.material-tag:hover {
  background: linear-gradient(135deg, #000000 0%, #262626 100%);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.shop-pagination {
  margin-top: 60px;
}
.shop-pagination .pagination {
  gap: 10px;
}
.shop-pagination .pagination .page-item.active .page-link {
  color: #FFFFFF;
}
.shop-pagination .pagination .page-link {
  border: 2px solid #DDDBDC;
  color: #262626;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.3s ease ease;
}
.shop-pagination .pagination .page-link:hover {
  background: #000000;
  border-color: #000000;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.shop-pagination .pagination .page-link i {
  font-size: 12px;
}
.shop-pagination .pagination .page-item.active .page-link {
  background: #000000;
  border-color: #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.shop-pagination .pagination .page-item.disabled .page-link {
  opacity: 0.5;
  cursor: not-allowed;
}
.shop-pagination .pagination .page-item.disabled .page-link:hover {
  background: transparent;
  border-color: #DDDBDC;
  color: #262626;
  transform: none;
  box-shadow: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 1000px;
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes checkBounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
@keyframes checkPop {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
@media (max-width: 1400px) {
  .products-grid .row .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
@media (max-width: 1200px) {
  .color-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .size-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .shop-section {
    padding: 40px 0 60px;
  }
  .shop-title {
    font-size: 36px;
  }
  .shop-sidebar {
    margin-bottom: 40px;
  }
  .products-grid .row .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 768px) {
  .shop-section .container-fluid {
    padding: 0 20px;
  }
  .mobile-filter-toggle {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    margin-bottom: 16px;
    border-radius: 999px;
    border: 2px solid #DDDBDC;
    background: #FFFFFF;
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease ease;
  }
  .mobile-filter-toggle i {
    font-size: 16px;
  }
  .mobile-filter-toggle:active {
    transform: scale(0.99);
  }
  .shop-sidebar {
    display: none;
    margin-bottom: 20px;
  }
  .shop-sidebar.is-open {
    display: block;
  }
  .sidebar-content {
    padding: 20px;
  }
  .shop-header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 20px;
  }
  .shop-controls .sort-select {
    width: 100%;
  }
  .products-grid .row .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .color-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .size-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .shop-pagination .pagination {
    flex-wrap: wrap;
    gap: 5px;
  }
  .shop-pagination .pagination .page-link {
    padding: 8px 12px;
    font-size: 13px;
  }
}
.breadcrumb-section {
  padding: 30px 0 20px;
  background: #FFFFFF;
  border-bottom: 1px solid #DDDBDC;
}
.breadcrumb-section .container-fluid {
  max-width: 1920px;
  padding: 0 60px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .breadcrumb-section .container-fluid {
    padding: 0 20px;
  }
}
.breadcrumb-section .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}
.breadcrumb-section .breadcrumb .breadcrumb-item {
  color: #737373;
}
.breadcrumb-section .breadcrumb .breadcrumb-item a {
  color: #262626;
  text-decoration: none;
  transition: color 0.3s ease ease;
}
.breadcrumb-section .breadcrumb .breadcrumb-item a:hover {
  color: #000000;
}
.breadcrumb-section .breadcrumb .breadcrumb-item.active {
  color: #000000;
  font-weight: 500;
}
.breadcrumb-section .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #737373;
  font-size: 16px;
}

.product-details-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
}
.product-details-section .container-fluid {
  max-width: 1920px;
  padding: 0 60px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .product-details-section .container-fluid {
    padding: 0 20px;
  }
}

.product-images-wrapper {
  position: sticky;
  top: 100px;
}
@media (max-width: 991px) {
  .product-images-wrapper {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }
}

.main-image-container {
  position: relative;
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}
.main-image-container .discount-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #D0021B;
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  z-index: 2;
  animation: bounceIn 0.6s ease;
}
.main-image-container .btn-wishlist-detail {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #FFFFFF;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease ease;
}
.main-image-container .btn-wishlist-detail i {
  font-size: 22px;
  color: #000000;
  transition: all 0.3s ease ease;
}
.main-image-container .btn-wishlist-detail:hover {
  background: #D0021B;
  transform: scale(1.1);
}
.main-image-container .btn-wishlist-detail:hover i {
  color: #FFFFFF;
}
.main-image-container .btn-wishlist-detail.active {
  background: #D0021B;
}
.main-image-container .btn-wishlist-detail.active i {
  color: #FFFFFF;
}

.main-image-wrapper {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: zoom-in;
}
.main-image-wrapper .main-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease ease;
}
.main-image-wrapper .zoom-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s ease ease;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
}
.main-image-wrapper .zoom-overlay i {
  font-size: 16px;
}
.main-image-wrapper:hover .main-product-image {
  transform: scale(1.05);
}
.main-image-wrapper:hover .zoom-overlay {
  opacity: 1;
}

.thumbnail-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
@media (max-width: 768px) {
  .thumbnail-gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}

.thumbnail-item {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease ease;
}
.thumbnail-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.thumbnail-item:hover img {
  transform: scale(1.1);
}
.thumbnail-item.active {
  border-color: #000000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.product-info-wrapper {
  animation: fadeInUp 0.6s ease;
}

.product-header {
  margin-bottom: 30px;
}

.product-category-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  color: #000000;
  padding: 6px 16px;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  animation: slideInDown 0.5s ease;
}

.product-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInLeft 0.6s ease 0.1s backwards;
}
@media (max-width: 768px) {
  .product-title {
    font-size: 32px;
  }
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  animation: fadeInLeft 0.6s ease 0.2s backwards;
}
.product-rating .stars {
  display: flex;
  gap: 4px;
}
.product-rating .stars i {
  color: #FFA500;
  font-size: 18px;
}
.product-rating .rating-text {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
}
.product-rating .review-count {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #737373;
}

.product-price-section {
  padding: 20px 0;
  border-top: 2px solid #DDDBDC;
  border-bottom: 2px solid #DDDBDC;
  margin-bottom: 20px;
  animation: fadeInLeft 0.6s ease 0.3s backwards;
}
.product-price-section .price-group {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.product-price-section .original-price {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  color: #979797;
  text-decoration: line-through;
}
.product-price-section .sale-price {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #000000;
}
.product-price-section .save-amount {
  background: linear-gradient(135deg, #28a745 0%, #20833a 100%);
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.stock-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 25px;
  animation: fadeInLeft 0.6s ease 0.4s backwards;
}
.stock-status i {
  font-size: 18px;
}
.stock-status.in-stock {
  color: #28a745;
}
.stock-status.out-of-stock {
  color: #D0021B;
}

.product-description {
  margin-bottom: 30px;
  animation: fadeInUp 0.6s ease 0.5s backwards;
}
.product-description p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #262626;
}

.product-materials-section {
  margin-bottom: 35px;
  animation: fadeInUp 0.6s ease 0.6s backwards;
}
.product-materials-section h6 {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-materials-section .materials-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-materials-section .material-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  padding: 6px 12px;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease ease;
}
.product-materials-section .material-badge:hover {
  background: linear-gradient(135deg, #000000 0%, #262626 100%);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.product-options {
  margin-bottom: 35px;
}

.option-group {
  margin-bottom: 30px;
  animation: fadeInUp 0.6s ease;
}
.option-group .option-label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
}
.option-group .option-label .selected-value {
  color: #262626;
  font-weight: 400;
}

.color-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.color-option {
  position: relative;
}
.color-option input[type=radio] {
  display: none;
}
.color-option input[type=radio]:checked + .color-swatch-detail {
  border-color: #000000;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.color-option input[type=radio]:checked + .color-swatch-detail .check-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.color-option .color-swatch-detail {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.color-option .color-swatch-detail:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.color-option .color-swatch-detail .check-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: #FFFFFF;
  font-size: 18px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.3s ease ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.size-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  gap: 10px;
  margin-bottom: 15px;
}

.size-option {
  position: relative;
}
.size-option input[type=radio] {
  display: none;
}
.size-option input[type=radio]:checked + .size-button-detail {
  background: #000000;
  color: #FFFFFF;
  border-color: #000000;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.size-option .size-button-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 8px;
  border: 2px solid #DDDBDC;
  border-radius: 8px;
  background: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #262626;
  cursor: pointer;
  transition: all 0.3s ease ease;
}
.size-option .size-button-detail:hover {
  border-color: #000000;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-size-guide {
  background: transparent;
  border: none;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 0;
  transition: all 0.3s ease ease;
}
.btn-size-guide:hover {
  text-decoration: underline;
  color: #262626;
}
.btn-size-guide:hover i {
  transform: rotate(15deg);
}
.btn-size-guide i {
  margin-right: 6px;
  transition: transform 0.3s ease ease;
}

.quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 2px solid #DDDBDC;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.quantity-selector .qty-btn {
  width: 45px;
  height: 50px;
  background: #FFFFFF;
  border: none;
  color: #262626;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease ease;
}
.quantity-selector .qty-btn:hover {
  background: #000000;
  color: #FFFFFF;
}
.quantity-selector .qty-btn:active {
  transform: scale(0.95);
}
.quantity-selector .qty-input {
  width: 80px;
  height: 50px;
  border: none;
  border-left: 2px solid #DDDBDC;
  border-right: 2px solid #DDDBDC;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
}
.quantity-selector .qty-input:focus {
  outline: none;
}
.quantity-selector .qty-input {
  /* Remove spinner */
}
.quantity-selector .qty-input::-webkit-inner-spin-button, .quantity-selector .qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 35px;
  animation: fadeInUp 0.8s ease;
}
@media (max-width: 768px) {
  .product-actions {
    flex-direction: column;
  }
}
.product-actions .btn {
  flex: 1;
  padding: 16px 30px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.product-actions .btn i {
  font-size: 18px;
}
.product-actions .btn-add-to-cart-detail {
  background: linear-gradient(135deg, #000000 0%, #262626 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.product-actions .btn-add-to-cart-detail:hover {
  background: linear-gradient(135deg, #262626 0%, #000000 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}
.product-actions .btn-add-to-cart-detail:active {
  transform: translateY(-1px);
}
.product-actions .btn-buy-now {
  background: linear-gradient(135deg, #28a745 0%, #20833a 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}
.product-actions .btn-buy-now:hover {
  background: linear-gradient(135deg, #20833a 0%, #28a745 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(40, 167, 69, 0.4);
}
.product-actions .btn-buy-now:active {
  transform: translateY(-1px);
}

.product-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 5px 0;
  border-top: 1px solid #DDDBDC;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}
.product-meta .meta-item {
  display: flex;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}
.product-meta .meta-item .meta-label {
  font-weight: 600;
  color: #262626;
  min-width: 80px;
}
.product-meta .meta-item .meta-value {
  color: #737373;
}

.product-share {
  display: flex;
  align-items: center;
  gap: 15px;
  animation: fadeInUp 0.8s ease 0.3s backwards;
}
.product-share .share-label {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #000000;
}
.product-share .share-buttons {
  display: flex;
  gap: 10px;
}
.product-share .share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.product-share .share-btn.facebook {
  background: #1877F2;
}
.product-share .share-btn.facebook:hover {
  background: rgb(11.4549180328, 95.1639344262, 203.5450819672);
  transform: translateY(-3px);
}
.product-share .share-btn.twitter {
  background: #1DA1F2;
}
.product-share .share-btn.twitter:hover {
  background: rgb(11.9665271967, 133.4728033473, 208.0334728033);
  transform: translateY(-3px);
}
.product-share .share-btn.pinterest {
  background: #E60023;
}
.product-share .share-btn.pinterest:hover {
  background: rgb(179, 0, 27.2391304348);
  transform: translateY(-3px);
}
.product-share .share-btn.whatsapp {
  background: #25D366;
}
.product-share .share-btn.whatsapp:hover {
  background: rgb(29.3911290323, 167.6088709677, 81.0241935484);
  transform: translateY(-3px);
}

.product-tabs-section {
  padding: 80px 0;
  background: #FFFFFF;
}
.product-tabs-section .container-fluid {
  max-width: 1920px;
  padding: 0 60px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .product-tabs-section .container-fluid {
    padding: 0 20px;
  }
}

.product-tabs {
  border: none;
  border-bottom: 2px solid #DDDBDC;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-tabs .nav-item .nav-link {
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: #737373;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 25px;
  transition: all 0.3s ease ease;
}
.product-tabs .nav-item .nav-link i {
  margin-right: 8px;
}
.product-tabs .nav-item .nav-link:hover {
  color: #000000;
  border-bottom-color: #DDDBDC;
}
.product-tabs .nav-item .nav-link.active {
  color: #000000;
  border-bottom-color: #000000;
  font-weight: 600;
}

.product-tab-content .tab-content-wrapper {
  padding: 30px 0;
}
.product-tab-content .tab-content-wrapper h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 25px;
}
.product-tab-content .tab-content-wrapper p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #262626;
  margin-bottom: 20px;
}
.product-tab-content .tab-content-wrapper .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-tab-content .tab-content-wrapper .features-list li {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #262626;
  padding: 12px 0;
  border-bottom: 1px solid #DDDBDC;
  transition: all 0.3s ease ease;
}
.product-tab-content .tab-content-wrapper .features-list li:hover {
  padding-left: 10px;
  color: #000000;
}
.product-tab-content .tab-content-wrapper .features-list li i {
  color: #28a745;
  margin-right: 12px;
  font-size: 16px;
}
.product-tab-content .tab-content-wrapper .specifications-table {
  width: 100%;
  border-collapse: collapse;
}
.product-tab-content .tab-content-wrapper .specifications-table tr {
  border-bottom: 1px solid #DDDBDC;
}
.product-tab-content .tab-content-wrapper .specifications-table tr:hover {
  background: rgba(221, 219, 220, 0.3);
}
.product-tab-content .tab-content-wrapper .specifications-table td {
  padding: 15px 20px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
}
.product-tab-content .tab-content-wrapper .specifications-table td.spec-label {
  font-weight: 600;
  color: #000000;
  width: 30%;
}
.product-tab-content .tab-content-wrapper .specifications-table td.spec-value {
  color: #262626;
}

.review-summary {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  margin-bottom: 30px;
  padding: 30px;
  background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
  border-radius: 10px;
}
@media (max-width: 768px) {
  .review-summary {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.review-summary .summary-score {
  text-align: center;
}
.review-summary .summary-score .score-number {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  font-weight: 700;
  color: #000000;
  line-height: 1;
}
.review-summary .summary-score .score-stars {
  margin: 10px 0;
}
.review-summary .summary-score .score-stars i {
  color: #FFA500;
  font-size: 20px;
}
.review-summary .summary-score .score-text {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #737373;
}
.review-summary .rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-summary .rating-row {
  display: flex;
  align-items: center;
  gap: 15px;
}
.review-summary .rating-row .rating-label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #262626;
  min-width: 50px;
}
.review-summary .rating-row .rating-label i {
  color: #FFA500;
  font-size: 12px;
}
.review-summary .rating-row .rating-bar {
  flex: 1;
  height: 8px;
  background: #DDDBDC;
  border-radius: 10px;
  overflow: hidden;
}
.review-summary .rating-row .rating-fill {
  height: 100%;
  background: linear-gradient(90deg, #FFA500 0%, #FF8C00 100%);
  transition: width 0.3s ease ease;
}
.review-summary .rating-row .rating-percent {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #737373;
  min-width: 45px;
  text-align: right;
}

.btn-write-review {
  background: linear-gradient(135deg, #000000 0%, #262626 100%);
  color: #FFFFFF;
  padding: 12px 30px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  border: none;
  transition: all 0.3s ease ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.btn-write-review:hover {
  background: linear-gradient(135deg, #262626 0%, #000000 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.btn-write-review i {
  margin-right: 8px;
}

.related-products-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
}
.related-products-section .container-fluid {
  max-width: 1920px;
  padding: 0 60px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .related-products-section .container-fluid {
    padding: 0 20px;
  }
}
.related-products-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.related-products-section .section-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .related-products-section .section-title {
    font-size: 32px;
  }
}
.related-products-section .section-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #737373;
}

.related-product-card {
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease ease;
}
.related-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.related-product-card:hover .quick-actions {
  opacity: 1;
  visibility: visible;
}
.related-product-card:hover img {
  transform: scale(1.08);
}
.related-product-card .related-product-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.related-product-card .related-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease ease;
}
.related-product-card .related-product-image .quick-actions {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease ease;
}
.related-product-card .related-product-image .quick-actions .btn-quick-action {
  width: 45px;
  height: 45px;
  background: #FFFFFF;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease ease;
}
.related-product-card .related-product-image .quick-actions .btn-quick-action i {
  color: #000000;
  font-size: 16px;
}
.related-product-card .related-product-image .quick-actions .btn-quick-action:hover {
  background: #000000;
  transform: scale(1.15);
}
.related-product-card .related-product-image .quick-actions .btn-quick-action:hover i {
  color: #FFFFFF;
}
.related-product-card .related-product-info {
  padding: 20px;
}
.related-product-card .related-product-info h4 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
}
.related-product-card .related-product-info .price-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.related-product-card .related-product-info .price-group .original-price {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #979797;
  text-decoration: line-through;
}
.related-product-card .related-product-info .price-group .sale-price {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
}

.size-guide-table {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}
.size-guide-table thead {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}
.size-guide-table thead th {
  font-weight: 600;
  color: #000000;
  padding: 15px;
  text-align: center;
}
.size-guide-table tbody tr {
  transition: background 0.3s ease ease;
}
.size-guide-table tbody tr:hover {
  background: rgba(221, 219, 220, 0.2);
}
.size-guide-table tbody tr td {
  padding: 12px 15px;
  text-align: center;
  color: #262626;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.cart-page-section,
.checkout-page-section,
.order-complete-section {
  padding: 60px 0 100px;
  background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
  min-height: 100vh;
}
.cart-page-section .container-fluid,
.checkout-page-section .container-fluid,
.order-complete-section .container-fluid {
  max-width: 1400px;
  padding: 0 60px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cart-page-section .container-fluid,
  .checkout-page-section .container-fluid,
  .order-complete-section .container-fluid {
    padding: 0 20px;
  }
}

.page-title-section {
  text-align: center;
  margin-bottom: 40px;
}

.page-title {
  font-family: "Playfair Display", serif;
  font-size: 54px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  animation: fadeInDown 0.8s ease;
}
@media (max-width: 768px) {
  .page-title {
    font-size: 42px;
  }
}

.checkout-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .checkout-progress {
    max-width: 100%;
  }
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
}
.progress-step .step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #DDDBDC;
  color: #737373;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease ease;
}
@media (max-width: 768px) {
  .progress-step .step-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
.progress-step .step-label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #737373;
  text-align: center;
  white-space: nowrap;
  transition: color 0.3s ease ease;
}
@media (max-width: 768px) {
  .progress-step .step-label {
    font-size: 12px;
    white-space: normal;
    max-width: 80px;
  }
}
.progress-step.active .step-number {
  background: #000000;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
}
.progress-step.active .step-label {
  color: #000000;
  font-weight: 600;
}
.progress-step.completed .step-number {
  background: #28a745;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}
.progress-step.completed .step-label {
  color: #28a745;
  font-weight: 500;
}

.progress-line {
  flex: 1;
  height: 2px;
  background: #DDDBDC;
  margin: 0 15px;
  max-width: 100px;
  transition: background 0.3s ease ease;
}
@media (max-width: 768px) {
  .progress-line {
    margin: 0 10px;
    max-width: 50px;
  }
}
.progress-line.completed {
  background: #28a745;
}

.cart-table-wrapper {
  background: #FFFFFF;
  border-radius: 10px;
  overflow: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table thead {
  background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
}
.cart-table thead th {
  padding: 20px 25px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .cart-table thead th {
    padding: 15px 10px;
    font-size: 12px;
  }
}
.cart-table tbody .cart-row {
  border-bottom: 1px solid #DDDBDC;
  transition: background 0.3s ease ease;
}
.cart-table tbody .cart-row:hover {
  background: rgba(221, 219, 220, 0.2);
}
.cart-table tbody .cart-row:last-child {
  border-bottom: none;
}
.cart-table tbody td {
  padding: 25px;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .cart-table tbody td {
    padding: 15px 10px;
  }
}

.product-info-cart {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 768px) {
  .product-info-cart {
    gap: 15px;
    width: 190px;
  }
}

.product-image-cart {
  width: 80px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.product-image-cart img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .product-image-cart {
    width: 60px;
    height: 75px;
  }
}

.product-details-cart {
  flex: 1;
}
@media (max-width: 768px) {
  .product-details-cart {
    width: 100%;
  }
}

.product-name-cart {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 8px 0;
}
@media (max-width: 768px) {
  .product-name-cart {
    font-size: 14px;
  }
}

.product-meta-cart {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #737373;
  margin: 0 0 10px 0;
}
@media (max-width: 768px) {
  .product-meta-cart {
    font-size: 12px;
  }
}

.btn-remove-cart {
  background: transparent;
  border: none;
  color: #D0021B;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease ease;
}
.btn-remove-cart:hover {
  color: rgb(157.4857142857, 1.5142857143, 20.4428571429);
  text-decoration: underline;
}
.btn-remove-cart i {
  margin-right: 5px;
}

.quantity-control-cart {
  display: inline-flex;
  align-items: center;
  border: 2px solid #DDDBDC;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.qty-btn-cart {
  width: 35px;
  height: 40px;
  background: #FFFFFF;
  border: none;
  color: #262626;
  cursor: pointer;
  transition: all 0.3s ease ease;
}
.qty-btn-cart:hover {
  background: #000000;
  color: #FFFFFF;
}
.qty-btn-cart i {
  font-size: 12px;
}

.qty-input-cart {
  width: 50px;
  height: 40px;
  border: none;
  border-left: 2px solid #DDDBDC;
  border-right: 2px solid #DDDBDC;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #000000;
}
.qty-input-cart:focus {
  outline: none;
}
.qty-input-cart {
  /* Remove spinner */
}
.qty-input-cart::-webkit-inner-spin-button, .qty-input-cart::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.price-cell,
.subtotal-cell {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
}
@media (max-width: 768px) {
  .price-cell,
  .subtotal-cell {
    font-size: 14px;
  }
}

.cart-summary-box {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 100px;
}
@media (max-width: 991px) {
  .cart-summary-box {
    position: relative;
    top: 0;
  }
}
@media (max-width: 768px) {
  .cart-summary-box {
    padding: 20px;
  }
}

.summary-title {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 25px 0;
  padding-bottom: 20px;
  border-bottom: 2px solid #DDDBDC;
}

.shipping-options {
  margin-bottom: 25px;
}

.shipping-option {
  margin-bottom: 15px;
}
.shipping-option input[type=radio] {
  display: none;
}
.shipping-option input[type=radio]:checked + label {
  border-color: #000000;
  background: rgba(0, 0, 0, 0.05);
}
.shipping-option input[type=radio]:checked + label .shipping-name {
  color: #000000;
  font-weight: 600;
}
.shipping-option label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border: 2px solid #DDDBDC;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease ease;
}
.shipping-option label:hover {
  border-color: #000000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.shipping-option .shipping-name {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #262626;
  transition: all 0.3s ease ease;
}
.shipping-option .shipping-price {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
}

.summary-totals {
  padding: 20px 0;
  border-top: 1px solid #DDDBDC;
  border-bottom: 2px solid #DDDBDC;
  margin-bottom: 25px;
}

.summary-row-cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #262626;
  margin-bottom: 12px;
}
.summary-row-cart:last-child {
  margin-bottom: 0;
}
.summary-row-cart .amount {
  font-weight: 600;
  color: #000000;
}
.summary-row-cart.total-row-cart {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #DDDBDC;
}
.summary-row-cart.total-row-cart .total-amount-cart {
  font-size: 28px;
  color: #D0021B;
}

.btn-checkout-page {
  width: 100%;
  padding: 16px 30px;
  background: linear-gradient(135deg, #000000 0%, #262626 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.btn-checkout-page:hover {
  background: linear-gradient(135deg, #262626 0%, #000000 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
  color: #FFFFFF;
}
.btn-checkout-page i {
  font-size: 18px;
}

.coupon-section {
  max-width: 550px;
  margin: 50px 0 0;
  padding: 35px;
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.coupon-section h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 8px 0;
}
.coupon-section p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #737373;
  margin: 0 0 20px 0;
}

.coupon-input-group {
  display: flex;
  gap: 12px;
}
@media (max-width: 768px) {
  .coupon-input-group {
    flex-direction: column;
  }
}

.input-with-icon {
  flex: 1;
  position: relative;
}
.input-with-icon i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #737373;
  font-size: 18px;
}

.coupon-input {
  width: 100%;
  padding: 14px 20px 14px 50px;
  border: 2px solid #DDDBDC;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  transition: all 0.3s ease ease;
}
.coupon-input:focus {
  outline: none;
  border-color: #000000;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}

.btn-apply-coupon {
  padding: 14px 35px;
  background: #000000;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease ease;
  white-space: nowrap;
}
.btn-apply-coupon:hover {
  background: #262626;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.checkout-form .form-section {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  animation: fadeInUp 0.6s ease;
}
@media (max-width: 768px) {
  .checkout-form .form-section {
    padding: 20px;
  }
}
.checkout-form .form-section-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 25px 0;
  padding-bottom: 20px;
  border-bottom: 2px solid #DDDBDC;
}
.checkout-form .form-label {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #262626;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: block;
}
.checkout-form .form-control-checkout {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #DDDBDC;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #000000;
  transition: all 0.3s ease ease;
}
.checkout-form .form-control-checkout:focus {
  outline: none;
  border-color: #000000;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.05);
}
.checkout-form .form-control-checkout::placeholder {
  color: #737373;
}
.checkout-form select.form-control-checkout {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px 12px;
  padding-right: 40px;
}
.checkout-form .form-check-custom {
  margin-top: 10px;
}
.checkout-form .form-check-input-custom {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  cursor: pointer;
  vertical-align: middle;
}
.checkout-form .form-check-label-custom {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #262626;
  cursor: pointer;
  vertical-align: middle;
}

.payment-option {
  margin-bottom: 15px;
}
.payment-option input[type=radio] {
  display: none;
}
.payment-option input[type=radio]:checked + .payment-label {
  border-color: #000000;
  background: rgba(0, 0, 0, 0.05);
}
.payment-option input[type=radio]:checked + .payment-label .payment-name {
  color: #000000;
  font-weight: 600;
}
.payment-option input[type=radio]:checked + .payment-label i {
  color: #000000;
}
.payment-option .payment-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border: 2px solid #DDDBDC;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease ease;
}
.payment-option .payment-label:hover {
  border-color: #000000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.payment-option .payment-label .payment-name {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #262626;
  transition: all 0.3s ease ease;
}
.payment-option .payment-label i {
  font-size: 20px;
  color: #737373;
  transition: color 0.3s ease ease;
}

.payment-details {
  padding: 20px;
  background: rgba(221, 219, 220, 0.2);
  border-radius: 8px;
  margin: -10px 0 10px 0;
  animation: slideDown 0.3s ease;
}

.btn-place-order {
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(135deg, #000000 0%, #262626 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-top: 30px;
}
.btn-place-order:hover {
  background: linear-gradient(135deg, #262626 0%, #000000 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}
.btn-place-order i {
  font-size: 18px;
}

.order-summary-box {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 100px;
}
@media (max-width: 991px) {
  .order-summary-box {
    position: relative;
    top: 0;
  }
}
@media (max-width: 768px) {
  .order-summary-box {
    padding: 20px;
  }
}

.order-items-list {
  max-height: 350px;
  overflow-y: auto;
  margin-bottom: 20px;
  /* Custom Scrollbar */
}
.order-items-list::-webkit-scrollbar {
  width: 6px;
}
.order-items-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.order-items-list::-webkit-scrollbar-thumb {
  background: #737373;
  border-radius: 10px;
}
.order-items-list::-webkit-scrollbar-thumb:hover {
  background: #262626;
}

.order-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #DDDBDC;
}
.order-item:first-child {
  padding-top: 0;
}
.order-item:last-child {
  border-bottom: none;
}

.order-item-image {
  position: relative;
  width: 70px;
  height: 85px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.order-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.order-item-image .item-quantity-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: #000000;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.order-item-details {
  flex: 1;
  min-width: 0;
}
.order-item-details h5 {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 5px 0;
}
.order-item-details p {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: #737373;
  margin: 0;
}

.order-item-price {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  flex-shrink: 0;
}

.coupon-input-summary {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.btn-apply-small {
  padding: 12px 24px;
  background: #000000;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease ease;
}
.btn-apply-small:hover {
  background: #262626;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.applied-coupon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 8px;
  margin-bottom: 20px;
}
.applied-coupon .coupon-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #000000;
  font-weight: 500;
}
.applied-coupon .coupon-info i {
  color: #0ea5e9;
  font-size: 16px;
}
.applied-coupon .coupon-discount {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #28a745;
}
.applied-coupon .coupon-discount span {
  color: #D0021B;
  font-size: 12px;
  font-weight: 400;
  margin-left: 8px;
  cursor: pointer;
  transition: color 0.3s ease ease;
}
.applied-coupon .coupon-discount span:hover {
  color: rgb(157.4857142857, 1.5142857143, 20.4428571429);
  text-decoration: underline;
}

.summary-totals-checkout {
  padding: 20px 0 0;
}

.summary-row-checkout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #262626;
  margin-bottom: 12px;
}
.summary-row-checkout:last-child {
  margin-bottom: 0;
}
.summary-row-checkout .amount {
  font-weight: 600;
  color: #000000;
}
.summary-row-checkout.total-row-checkout {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  padding-top: 15px;
  margin-top: 15px;
  border-top: 2px solid #DDDBDC;
}
.summary-row-checkout.total-row-checkout .amount {
  font-size: 24px;
  color: #D0021B;
}

.order-complete-section .container-fluid {
  max-width: 900px;
}

.success-container {
  max-width: 650px;
  margin: 40px auto 0;
}

.success-card {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 60px 50px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}
@media (max-width: 768px) {
  .success-card {
    padding: 40px 25px;
  }
}

.thank-you-message {
  margin-bottom: 40px;
}
.thank-you-message h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 15px 0;
  animation: bounceIn 0.8s ease;
}
@media (max-width: 768px) {
  .thank-you-message h2 {
    font-size: 32px;
  }
}
.thank-you-message h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #262626;
  margin: 0;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}
@media (max-width: 768px) {
  .thank-you-message h3 {
    font-size: 18px;
  }
}

.order-items-preview {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.item-preview {
  position: relative;
  width: 120px;
  height: 140px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .item-preview {
    width: 100px;
    height: 120px;
  }
}
.item-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-preview .quantity-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: #000000;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.order-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .order-details-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.detail-item {
  text-align: left;
  padding: 15px 20px;
  background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
  border-radius: 8px;
}
.detail-item .detail-label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #737373;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}
.detail-item .detail-value {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
}

.order-actions .btn-purchase-history {
  padding: 16px 40px;
  background: #000000;
  color: #FFFFFF;
  border: none;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.order-actions .btn-purchase-history:hover {
  background: #262626;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
  color: #FFFFFF;
}
.order-actions .btn-purchase-history i {
  font-size: 18px;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
    max-height: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    max-height: 500px;
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.featured-products-section {
  padding: 60px 0 100px;
  background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
  min-height: 100vh;
}
.featured-products-section .container-fluid {
  max-width: 1400px;
  padding: 0 60px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .featured-products-section .container-fluid {
    padding: 0 20px;
  }
}

.featured-header {
  margin-bottom: 60px;
  animation: fadeInDown 0.8s ease;
}
@media (max-width: 768px) {
  .featured-header {
    margin-bottom: 40px;
  }
}

.featured-title {
  font-family: "Playfair Display", serif;
  font-size: 54px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 8px 0;
}
@media (max-width: 768px) {
  .featured-title {
    font-size: 42px;
  }
}

.featured-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #737373;
  margin: 0;
}

.featured-products-grid {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .featured-products-grid {
    margin-bottom: 40px;
  }
}

.featured-product-card {
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.featured-product-card .product-link {
  text-decoration: none;
  color: inherit;
}
.featured-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.featured-product-card:hover .product-overlay {
  opacity: 1;
  visibility: visible;
}
.featured-product-card:hover .featured-product-image img {
  transform: scale(1.05);
}
.featured-product-card:hover .btn-wishlist {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.featured-product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}
.featured-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease ease;
}
.featured-product-image .new-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #000000;
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  animation: bounceIn 0.6s ease;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease ease;
  z-index: 1;
}
.product-overlay .btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  border: none;
  transition: all 0.3s ease ease;
  animation: slideInUp 0.5s ease;
}
.product-overlay .btn.btn-quick-view {
  background: #FFFFFF;
  color: #000000;
}
.product-overlay .btn.btn-quick-view:hover {
  background: #000000;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.product-overlay .btn.btn-add-to-cart {
  background: #000000;
  color: #FFFFFF;
  animation-delay: 0.1s;
}
.product-overlay .btn.btn-add-to-cart:hover {
  background: #FFFFFF;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.btn-wishlist {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease ease;
  opacity: 0;
  transform: translateY(-10px) scale(0.8);
}
.btn-wishlist i {
  font-size: 18px;
  color: #000000;
  transition: all 0.3s ease ease;
}
.btn-wishlist:hover {
  background: #D0021B;
  box-shadow: 0 6px 20px rgba(208, 2, 27, 0.4);
}
.btn-wishlist:hover i {
  color: #FFFFFF;
  transform: scale(1.2);
}
.btn-wishlist:active {
  transform: translateY(0) scale(0.95);
}

.featured-product-details {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-rating-featured {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}
.product-rating-featured i {
  font-size: 14px;
  color: #FFA500;
}

.product-name-featured {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 12px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
  line-height: 1.5;
  transition: color 0.3s ease ease;
}
.product-name-featured a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease ease;
}
.product-name-featured a:hover {
  color: #262626;
}

.product-price-featured {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.product-price-featured .current-price {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}
.product-price-featured .original-price {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #979797;
  text-decoration: line-through;
}

.product-description-featured {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #262626;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.show-more-container {
  text-align: center;
  margin-top: 40px;
}

.btn-show-more {
  padding: 16px 60px;
  background: transparent;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease ease;
}
.btn-show-more:hover {
  background: #000000;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}
.btn-show-more:active {
  transform: translateY(-1px);
}
.btn-show-more:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-show-more:disabled:hover {
  background: transparent;
  color: #000000;
  transform: none;
  box-shadow: none;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@media (max-width: 991px) {
  .featured-products-grid .row .col-lg-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 768px) {
  .featured-products-grid .row .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.about-hero-section {
  position: relative;
  min-height: 400px;
  background: url("../assets/images/about/f8bc96ce636d53768effffff17689b5554c87856.jpg") center/cover no-repeat;
}
.about-hero-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.about-hero-section .hero-content {
  position: relative;
  padding: 120px 0;
}
.about-hero-section .hero-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 400;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .about-hero-section .hero-title {
    font-size: 2rem;
  }
}
.about-hero-section .hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: #FFFFFF;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .about-hero-section .hero-subtitle {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .about-hero-section {
    min-height: 300px;
  }
  .about-hero-section .hero-content {
    padding: 80px 0;
  }
}

.transparency-section {
  padding: 90px 0;
  background: #FFFFFF;
}
.transparency-section .section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 40px;
}
.transparency-section .section-text {
  font-size: 0.95rem;
  line-height: 2;
  color: #000000;
}

.ethical-section {
  padding: 90px 0;
  background: #f5f5f5;
}
.ethical-section .ethical-image {
  height: 600px;
  object-fit: cover;
}
.ethical-section .ethical-content {
  padding: 60px;
}
.ethical-section .section-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #737373;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.ethical-section .content-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 40px;
}
.ethical-section .content-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #262626;
  margin-bottom: 30px;
}
.ethical-section .content-text:last-child {
  margin-bottom: 0;
}

.black-siren-section img {
  display: block;
}

.quality-section {
  padding: 90px 0;
  background: #FFFFFF;
}
.quality-section .quality-image {
  height: 600px;
  object-fit: cover;
}
.quality-section .quality-content {
  padding: 60px;
}

.emerald-section img {
  display: block;
}

@media (max-width: 768px) {
  .ethical-section .ethical-image,
  .ethical-section .quality-image,
  .quality-section .ethical-image,
  .quality-section .quality-image {
    height: 400px;
  }
  .ethical-section .ethical-content,
  .ethical-section .quality-content,
  .quality-section .ethical-content,
  .quality-section .quality-content {
    padding: 40px;
  }
  .ethical-section .content-title,
  .quality-section .content-title {
    font-size: 2rem;
  }
}
.contact-hero-section {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
.contact-hero-section .contact-hero-title {
  font-family: "Playfair Display", serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .contact-hero-section .contact-hero-title {
    font-size: 40px;
  }
}
.contact-hero-section .contact-hero-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #737373;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-content-section {
  padding: 40px 0 80px;
}
.contact-content-section .contact-form-wrapper {
  background-color: #FFFFFF;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .contact-content-section .contact-form-wrapper {
    padding: 30px 20px;
  }
}
.contact-content-section .contact-form-wrapper .form-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  color: #000000;
  margin-bottom: 30px;
}
.contact-content-section .contact-form-wrapper .form-group {
  margin-bottom: 0;
}
.contact-content-section .contact-form-wrapper .form-group .form-label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #262626;
  margin-bottom: 10px;
  display: block;
}
.contact-content-section .contact-form-wrapper .form-group .form-label .required {
  color: #D0021B;
}
.contact-content-section .contact-form-wrapper .form-group .form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #DDDBDC;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #262626;
  transition: border-color 0.3s ease ease;
}
.contact-content-section .contact-form-wrapper .form-group .form-control:focus {
  outline: none;
  border-color: #262626;
}
.contact-content-section .contact-form-wrapper .form-group .form-control::placeholder {
  color: #8A8A8A;
}
.contact-content-section .contact-form-wrapper .form-group textarea.form-control {
  resize: vertical;
  min-height: 150px;
}
.contact-content-section .contact-form-wrapper .form-group select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px 12px;
  appearance: none;
}
.contact-content-section .contact-form-wrapper .btn-submit {
  padding: 16px 40px;
  background-color: #000000;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.contact-content-section .contact-form-wrapper .btn-submit:hover {
  background-color: #262626;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.contact-content-section .contact-form-wrapper .btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.contact-content-section .contact-info-wrapper .info-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  color: #000000;
  margin-bottom: 15px;
}
.contact-content-section .contact-info-wrapper .info-description {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #737373;
  margin-bottom: 40px;
}
.contact-content-section .contact-info-wrapper .contact-info-list .info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}
.contact-content-section .contact-info-wrapper .contact-info-list .info-item:last-child {
  margin-bottom: 0;
}
.contact-content-section .contact-info-wrapper .contact-info-list .info-item .info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #000000;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-content-section .contact-info-wrapper .contact-info-list .info-item .info-icon i {
  font-size: 20px;
}
.contact-content-section .contact-info-wrapper .contact-info-list .info-item .info-content {
  flex: 1;
}
.contact-content-section .contact-info-wrapper .contact-info-list .info-item .info-content .info-label {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
  margin-top: 5px;
}
.contact-content-section .contact-info-wrapper .contact-info-list .info-item .info-content .info-text {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #737373;
  margin: 0;
}
.contact-content-section .contact-info-wrapper .contact-info-list .info-item .info-content .info-text a {
  color: #737373;
  text-decoration: none;
  transition: color 0.3s ease ease;
}
.contact-content-section .contact-info-wrapper .contact-info-list .info-item .info-content .info-text a:hover {
  color: #000000;
}
.contact-content-section .contact-info-wrapper .contact-info-list .info-item .info-content .info-text .info-hours {
  font-size: 13px;
  color: #8A8A8A;
}
.contact-content-section .contact-info-wrapper .contact-social {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 2px solid #DDDBDC;
}
.contact-content-section .contact-info-wrapper .contact-social .social-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 20px;
}
.contact-content-section .contact-info-wrapper .contact-social .social-links {
  display: flex;
  gap: 15px;
}
.contact-content-section .contact-info-wrapper .contact-social .social-links .social-link {
  width: 45px;
  height: 45px;
  border: 2px solid #DDDBDC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #262626;
  text-decoration: none;
  transition: all 0.3s ease ease;
}
.contact-content-section .contact-info-wrapper .contact-social .social-links .social-link:hover {
  background-color: #000000;
  border-color: #000000;
  color: #FFFFFF;
  transform: translateY(-3px);
}
.contact-content-section .contact-info-wrapper .contact-social .social-links .social-link i {
  font-size: 18px;
}

.contact-map-section {
  margin-top: 80px;
}
.contact-map-section .map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: 0;
}
@media (max-width: 768px) {
  .contact-map-section .map-wrapper iframe {
    height: 350px;
  }
}

.static-page-section {
  padding: 100px 0;
  background-color: #FFFFFF;
}
.static-page-section .static-page-header {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 30px;
  border-bottom: 2px solid #DDDBDC;
}
.static-page-section .static-page-header .static-page-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .static-page-section .static-page-header .static-page-title {
    font-size: 36px;
  }
}
.static-page-section .static-page-header .static-page-meta {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #737373;
  margin: 0;
}
.static-page-section .static-page-content .content-block {
  margin-bottom: 40px;
}
.static-page-section .static-page-content .content-block:last-child {
  margin-bottom: 0;
}
.static-page-section .static-page-content .content-block h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  color: #262626;
  margin-bottom: 20px;
  margin-top: 0;
}
@media (max-width: 768px) {
  .static-page-section .static-page-content .content-block h2 {
    font-size: 26px;
  }
}
.static-page-section .static-page-content .content-block h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: #262626;
  margin-bottom: 15px;
  margin-top: 30px;
}
.static-page-section .static-page-content .content-block p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #737373;
  margin-bottom: 20px;
}
.static-page-section .static-page-content .content-block p:last-child {
  margin-bottom: 0;
}
.static-page-section .static-page-content .content-block ul, .static-page-section .static-page-content .content-block ol {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #737373;
  padding-left: 25px;
  margin-bottom: 20px;
}
.static-page-section .static-page-content .content-block ul li, .static-page-section .static-page-content .content-block ol li {
  margin-bottom: 12px;
}
.static-page-section .static-page-content .content-block ul li:last-child, .static-page-section .static-page-content .content-block ol li:last-child {
  margin-bottom: 0;
}
.static-page-section .static-page-content .content-block ul li strong, .static-page-section .static-page-content .content-block ol li strong {
  color: #262626;
  font-weight: 600;
}
.static-page-section .static-page-content .content-block ul.contact-list {
  list-style: none;
  padding-left: 0;
}
.static-page-section .static-page-content .content-block ul.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.static-page-section .static-page-content .content-block ul.contact-list li i {
  color: #262626;
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.error-404-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.error-404-section .error-content .error-number {
  font-family: "Playfair Display", serif;
  font-size: 180px;
  font-weight: 700;
  line-height: 1;
  color: #DDDBDC;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .error-404-section .error-content .error-number {
    font-size: 120px;
  }
}
.error-404-section .error-content .error-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .error-404-section .error-content .error-title {
    font-size: 36px;
  }
}
.error-404-section .error-content .error-message {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #737373;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.error-404-section .error-content .error-search {
  margin-bottom: 40px;
}
.error-404-section .error-content .error-search .search-suggestion {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #262626;
  margin-bottom: 20px;
}
.error-404-section .error-content .error-search .search-form {
  max-width: 500px;
  margin: 0 auto;
}
.error-404-section .error-content .error-search .search-form .search-input-group {
  display: flex;
  gap: 10px;
}
.error-404-section .error-content .error-search .search-form .search-input-group .search-input {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid #DDDBDC;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  transition: border-color 0.3s ease ease;
}
.error-404-section .error-content .error-search .search-form .search-input-group .search-input:focus {
  outline: none;
  border-color: #262626;
}
.error-404-section .error-content .error-search .search-form .search-input-group .search-btn {
  padding: 15px 30px;
  background-color: #000000;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease ease;
}
.error-404-section .error-content .error-search .search-form .search-input-group .search-btn:hover {
  background-color: #262626;
}
.error-404-section .error-content .error-search .search-form .search-input-group .search-btn i {
  font-size: 18px;
}
.error-404-section .error-content .error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.error-404-section .error-content .error-actions .btn {
  padding: 15px 35px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.error-404-section .error-content .error-actions .btn.btn-primary {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}
.error-404-section .error-content .error-actions .btn.btn-primary:hover {
  background-color: #262626;
  border-color: #262626;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.error-404-section .error-content .error-actions .btn.btn-outline {
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
}
.error-404-section .error-content .error-actions .btn.btn-outline:hover {
  background-color: #000000;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.error-404-section .error-content .error-links .links-title {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #262626;
  margin-bottom: 20px;
}
.error-404-section .error-content .error-links .popular-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.error-404-section .error-content .error-links .popular-links .popular-link {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #737373;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 4px;
  transition: all 0.3s ease ease;
}
.error-404-section .error-content .error-links .popular-links .popular-link:hover {
  color: #000000;
  background-color: rgba(0, 0, 0, 0.03);
}
.error-404-section .error-content .error-links .popular-links .popular-link i {
  font-size: 16px;
}

@media (max-width: 1600px) {
  .features-section .container {
    padding: 50px 200px;
  }
}
@media (max-width: 1400px) {
  .about-section .about-image img {
    width: 600px;
    height: 525px;
  }
  .about-section .about-text {
    max-width: 600px;
  }
  .about-section .about-text .about-description {
    font-size: 20px;
  }
  .footer {
    padding: 60px 100px 23px;
  }
}
@media (max-width: 1200px) {
  .header .header-left {
    width: auto;
  }
  .header .header-logo {
    width: 150px;
  }
  .promo-section {
    padding: 0 20px;
  }
  .promo-section .promo-card {
    height: 450px;
  }
  .promo-section .promo-card .promo-title {
    font-size: 32px;
  }
  .about-section .about-content {
    flex-direction: column;
    gap: 40px;
  }
  .newsletter-section .newsletter-content {
    flex-direction: column;
  }
  .newsletter-section .newsletter-content .newsletter-image {
    width: 100%;
    max-width: 400px;
    height: auto;
  }
  .features-section .container {
    padding: 40px 60px;
  }
}
@media (max-width: 768px) {
  .header .header-top {
    height: auto;
    padding: 10px;
  }
  .header .header-left,
  .header .header-right {
    width: auto;
  }
  .header .navbar-nav {
    flex-direction: column !important;
  }
  .promo-section .row {
    flex-direction: column;
  }
  .promo-section .col-md-4 {
    width: 100%;
  }
  .everlane-section .carousel-btn {
    display: none;
  }
  .everlane-section .products-wrapper .row {
    flex-wrap: wrap;
  }
  .about-section .about-title {
    font-size: 32px;
  }
  .about-section .about-image img {
    width: 100%;
    height: auto;
  }
  .instagram-section .section-header .section-title,
  .newsletter-section .newsletter-center .newsletter-title {
    font-size: 32px;
  }
  .features-section .container {
    padding: 30px 20px;
  }
  .features-section .row {
    flex-direction: column;
    gap: 30px;
  }
  .footer {
    padding: 40px 20px 23px;
  }
  .footer .footer-content {
    height: auto;
  }
  .footer .footer-content .footer-brand {
    position: static;
    margin-bottom: 20px;
    text-align: center;
  }
  .footer .footer-content .footer-nav {
    position: static;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .footer .footer-content .footer-bottom {
    position: static;
    transform: none;
    margin-top: 20px;
  }
}
html {
  overflow-x: hidden;
}

[dir=rtl] body,
[dir=rtl] p, [dir=rtl] span, [dir=rtl] div, [dir=rtl] a, [dir=rtl] button,
[dir=rtl] input, [dir=rtl] textarea, [dir=rtl] select,
[dir=rtl] label, [dir=rtl] td, [dir=rtl] th {
  font-family: "Tajawal", "Poppins", sans-serif !important;
}
[dir=rtl] h1, [dir=rtl] h2, [dir=rtl] h3, [dir=rtl] h4, [dir=rtl] h5, [dir=rtl] h6,
[dir=rtl] .hero-title,
[dir=rtl] .section-title,
[dir=rtl] .product-name,
[dir=rtl] .promo-title,
[dir=rtl] .about-title,
[dir=rtl] .footer-brand {
  font-family: "Tajawal", serif !important;
}
[dir=rtl] i, [dir=rtl] .fa, [dir=rtl] .fas, [dir=rtl] .far, [dir=rtl] .fal, [dir=rtl] .fab, [dir=rtl] .fa-solid, [dir=rtl] .fa-regular, [dir=rtl] .fa-brands {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}
[dir=rtl] select {
  padding-right: 2.5rem !important; /* reserve space for the arrow on the right */
  padding-left: 1rem !important;
}
[dir=rtl] .navbar-nav {
  flex-direction: row-reverse;
}
[dir=rtl] .nav-link::before {
  left: auto;
  right: 16px;
}
[dir=rtl] .language-dropdown {
  left: auto;
  right: 0;
}
[dir=rtl] .offcanvas-start {
  left: auto !important;
  right: 0 !important;
}
[dir=rtl] .mobile-nav-link i {
  margin-right: 0;
  margin-left: 12px;
}
[dir=rtl] .mobile-nav-link.active {
  border-left: none;
  border-right: 3px solid #000000;
}
[dir=rtl] .modal .modal-header {
  text-align: right;
}
[dir=rtl] .modal .modal-header .modal-title {
  margin-right: 0;
  margin-left: auto;
}
[dir=rtl] .modal .modal-header .btn-close {
  margin-right: auto;
  margin-left: 0;
}
[dir=rtl] .modal .modal-body {
  text-align: right;
}
[dir=rtl] .modal .modal-body .input-group .form-control {
  text-align: right;
  border-radius: 0 8px 8px 0 !important;
}
[dir=rtl] .modal .modal-body .input-group .btn {
  border-radius: 8px 0 0 8px !important;
}
[dir=rtl] .btn i.me-2 {
  margin-right: 0 !important;
  margin-left: 0.5rem !important;
}
[dir=rtl] .btn i.me-3 {
  margin-right: 0 !important;
  margin-left: 1rem !important;
}
[dir=rtl] .btn-close {
  float: left;
}
[dir=rtl] .cart-sidebar {
  left: 0;
  right: auto;
}
[dir=rtl] .cart-content {
  left: 0;
  right: auto;
  transform: translateX(-100%);
}
[dir=rtl] .cart-content.show {
  transform: translateX(0);
}
[dir=rtl] .cart-sidebar.active .cart-content {
  transform: translateX(0);
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.2);
}
[dir=rtl] .cart-overlay.active {
  left: 0;
  right: 0;
}
[dir=rtl] .cart-header .cart-title i {
  margin-right: 0;
  margin-left: 12px;
}
[dir=rtl] .cart-item .cart-item-image {
  margin-right: 0;
  margin-left: 20px;
}
[dir=rtl] .cart-badge {
  right: auto;
  left: -8px;
}
[dir=rtl] .btn-close-cart {
  right: auto;
  left: 30px;
}
[dir=rtl] .cart-item-info {
  text-align: right;
}
[dir=rtl] .cart-item-actions .btn-remove i {
  margin: 0;
}
[dir=rtl] .promo-section .promo-card {
  text-align: center;
}
[dir=rtl] .carousel-btn-left {
  left: auto;
  right: 0;
  transform: translateY(-50%) scaleX(-1);
}
[dir=rtl] .carousel-btn-right {
  right: auto;
  left: 0;
  transform: translateY(-50%) scaleX(-1);
}
[dir=rtl] .product-card .product-header {
  flex-direction: row-reverse;
}
[dir=rtl] .product-card .product-price {
  margin-left: 0;
  margin-right: 12px;
}
[dir=rtl] .about-section .about-text {
  padding-left: 0;
  padding-right: 20px;
}
@media (max-width: 768px) {
  [dir=rtl] .about-section .about-text {
    padding-right: 0;
  }
}
[dir=rtl] .newsletter-center {
  padding: 0 30px;
}
@media (max-width: 768px) {
  [dir=rtl] .newsletter-center {
    padding: 0;
  }
}
[dir=rtl] .feature-item {
  flex-direction: row-reverse;
}
[dir=rtl] .feature-item .feature-icon {
  margin-right: 0;
  margin-left: 15px;
}
[dir=rtl] .footer .footer-brand {
  text-align: right;
}
[dir=rtl] .footer .footer-nav {
  justify-content: flex-start;
}
[dir=rtl] .footer .footer-contact .footer-address,
[dir=rtl] .footer .footer-contact .footer-mobile {
  text-align: right;
}
[dir=rtl] .footer .footer-contact .footer-address i,
[dir=rtl] .footer .footer-contact .footer-mobile i {
  margin-top: 2px;
}
@media (max-width: 768px) {
  [dir=rtl] .footer .footer-links {
    justify-content: center;
  }
}
[dir=rtl] .footer .footer-bottom .footer-copyright {
  text-align: right;
}
@media (max-width: 768px) {
  [dir=rtl] .footer .footer-bottom .footer-copyright {
    text-align: center;
  }
}
[dir=rtl] .shop-sidebar {
  border-right: none;
  border-left: 1px solid #DDDBDC;
}
[dir=rtl] .filter-header i {
  margin-left: 0;
  margin-right: auto;
}
[dir=rtl] .filter-item .form-check-label {
  margin-right: 0;
  margin-left: 12px;
}
[dir=rtl] .product-badge {
  left: auto;
  right: 15px;
}
[dir=rtl] .btn-wishlist {
  right: auto;
  left: 15px;
}
[dir=rtl] .product-details-section .product-gallery .thumbnail-gallery {
  margin-right: 0;
  margin-left: 20px;
}
@media (max-width: 768px) {
  [dir=rtl] .product-details-section .product-gallery .thumbnail-gallery {
    margin-left: 0;
  }
}
[dir=rtl] .product-details-section .product-meta .meta-item {
  flex-direction: row-reverse;
}
[dir=rtl] .product-details-section .product-meta .meta-item .meta-icon {
  margin-right: 0;
  margin-left: 15px;
}
[dir=rtl] .product-details-section .breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 0;
  padding-right: 0.5rem;
}
[dir=rtl] .product-details-section .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  float: right;
  padding-right: 0;
  padding-left: 0.5rem;
  content: "/";
}
[dir=rtl] .color-options .qty-minus,
[dir=rtl] .quantity-selector .qty-minus {
  border-radius: 0 4px 4px 0;
}
[dir=rtl] .color-options .qty-plus,
[dir=rtl] .quantity-selector .qty-plus {
  border-radius: 4px 0 0 4px;
}
[dir=rtl] .share-buttons .share-btn {
  margin-right: 0;
  margin-left: 10px;
}
[dir=rtl] .cart-page .form-label,
[dir=rtl] .checkout-section .form-label {
  text-align: right;
}
[dir=rtl] .cart-page .form-check,
[dir=rtl] .checkout-section .form-check {
  padding-left: 0;
  padding-right: 1.5rem;
}
[dir=rtl] .cart-page .form-check .form-check-input,
[dir=rtl] .checkout-section .form-check .form-check-input {
  float: right;
  margin-left: 0;
  margin-right: -1.5rem;
}
[dir=rtl] .order-summary .summary-item {
  justify-content: space-between;
}
[dir=rtl] .order-summary .summary-item .item-label {
  text-align: right;
}
[dir=rtl] .order-summary .summary-item .item-value {
  text-align: left;
}
[dir=rtl] .contact-info-list .info-item .info-icon {
  margin-right: 0;
  margin-left: 20px;
}
[dir=rtl] .static-page-content ul, [dir=rtl] .static-page-content ol {
  padding-left: 0;
  padding-right: 25px;
}
[dir=rtl] .static-page-content ul.contact-list {
  padding-right: 0;
}
[dir=rtl] .static-page-content ul.contact-list li {
  flex-direction: row-reverse;
}
[dir=rtl] .static-page-content ul.contact-list li i {
  margin-right: 0;
  margin-left: 12px;
}
[dir=rtl] .error-404-section .error-actions {
  flex-direction: row-reverse;
}
[dir=rtl] .error-404-section .popular-links {
  flex-direction: row-reverse;
}
[dir=rtl] .text-left {
  text-align: right !important;
}
[dir=rtl] .text-right {
  text-align: left !important;
}
[dir=rtl] .me-1, [dir=rtl] .me-2, [dir=rtl] .me-3, [dir=rtl] .me-4, [dir=rtl] .me-5 {
  margin-right: 0 !important;
}
[dir=rtl] .me-1 {
  margin-left: 0.25rem !important;
}
[dir=rtl] .me-2 {
  margin-left: 0.5rem !important;
}
[dir=rtl] .me-3 {
  margin-left: 1rem !important;
}
[dir=rtl] .me-4 {
  margin-left: 1.5rem !important;
}
[dir=rtl] .me-5 {
  margin-left: 3rem !important;
}
[dir=rtl] .ms-1, [dir=rtl] .ms-2, [dir=rtl] .ms-3, [dir=rtl] .ms-4, [dir=rtl] .ms-5 {
  margin-left: 0 !important;
}
[dir=rtl] .ms-1 {
  margin-right: 0.25rem !important;
}
[dir=rtl] .ms-2 {
  margin-right: 0.5rem !important;
}
[dir=rtl] .ms-3 {
  margin-right: 1rem !important;
}
[dir=rtl] .ms-4 {
  margin-right: 1.5rem !important;
}
[dir=rtl] .ms-5 {
  margin-right: 3rem !important;
}
[dir=rtl] .ps-1, [dir=rtl] .ps-2, [dir=rtl] .ps-3, [dir=rtl] .ps-4, [dir=rtl] .ps-5 {
  padding-left: 0 !important;
}
[dir=rtl] .ps-1 {
  padding-right: 0.25rem !important;
}
[dir=rtl] .ps-2 {
  padding-right: 0.5rem !important;
}
[dir=rtl] .ps-3 {
  padding-right: 1rem !important;
}
[dir=rtl] .ps-4 {
  padding-right: 1.5rem !important;
}
[dir=rtl] .ps-5 {
  padding-right: 3rem !important;
}
[dir=rtl] .pe-1, [dir=rtl] .pe-2, [dir=rtl] .pe-3, [dir=rtl] .pe-4, [dir=rtl] .pe-5 {
  padding-right: 0 !important;
}
[dir=rtl] .pe-1 {
  padding-left: 0.25rem !important;
}
[dir=rtl] .pe-2 {
  padding-left: 0.5rem !important;
}
[dir=rtl] .pe-3 {
  padding-left: 1rem !important;
}
[dir=rtl] .pe-4 {
  padding-left: 1.5rem !important;
}
[dir=rtl] .pe-5 {
  padding-left: 3rem !important;
}
[dir=rtl] .float-start {
  float: right !important;
}
[dir=rtl] .float-end {
  float: left !important;
}
[dir=rtl] .offcanvas-start {
  transform: translateX(100%);
}
[dir=rtl] .offcanvas-start.show {
  transform: translateX(0);
}
[dir=rtl] [data-aos=fade-left].aos-animate {
  transform: translateX(0);
}
[dir=rtl] [data-aos=fade-right].aos-animate {
  transform: translateX(0);
}
[dir=rtl] .btn-apply-filters i, [dir=rtl] .btn-clear-filters i {
  margin-left: 8px;
  margin-right: 0;
}
[dir=rtl] .breadcrumb-item + .breadcrumb-item::before {
  float: right;
  padding-left: var(--bs-breadcrumb-item-padding-x);
}

@media (max-width: 768px) {
  [dir=rtl] .footer .footer-nav,
  [dir=rtl] .footer .footer-links {
    justify-content: center;
  }
}

/*# sourceMappingURL=style.css.map */
