body {
  font-family: "Inter", sans-serif;
  color: #4A4A4A;
  background-color: #F8F4F2;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: #4A4A4A;
  transition: all 0.3s ease;
}
a:hover {
  color: #D8A2C4;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-primary {
  background-color: #D8A2C4;
  color: white;
}
.btn-primary:hover {
  background-color: rgb(200.9318181818, 126.0681818182, 173.2045454545);
  transform: translateY(-2px);
}
.btn-secondary {
  background-color: #A67C52;
  color: white;
}
.btn-secondary:hover {
  background-color: rgb(131.8629032258, 98.5, 65.1370967742);
  transform: translateY(-2px);
}
.btn-outline {
  background-color: transparent;
  border: 1px solid #D8A2C4;
  color: #D8A2C4;
}
.btn-outline:hover {
  background-color: #D8A2C4;
  color: white;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
header .top-bar .logo-area {
  display: flex;
  align-items: center;
}
header .top-bar .logo-area .logo img {
  width: 60px;
  height: 60px;
}
header .top-bar .logo-area .brand-name {
  margin-left: 10px;
}
header .top-bar .logo-area .brand-name h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: #4A4A4A;
}
header .top-bar .logo-area .brand-name span {
  font-size: 12px;
  color: #A67C52;
  letter-spacing: 2px;
}
header .top-bar .user-actions {
  display: flex;
  align-items: center;
}
header .top-bar .user-actions a {
  margin-left: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 13px;
}
header .top-bar .user-actions a i {
  font-size: 20px;
  margin-bottom: 5px;
}
header .top-bar .user-actions a .cart-count {
  position: relative;
}
header .top-bar .user-actions a .cart-count span {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #D8A2C4;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
header nav {
  border-top: 1px solid #f0f0f0;
}
header nav .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header nav .nav-container::before {
  content: none;
}
header nav .nav-container .main-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
header nav .nav-container .main-menu a {
  display: block;
  padding: 15px 20px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}
header nav .nav-container .main-menu a:hover {
  color: white;
}
header nav .nav-container .main-menu a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #D8A2C4;
  transition: height 0.3s ease;
  z-index: -1;
  border-radius: 5px 5px 0 0;
}
header nav .nav-container .main-menu a:hover::before {
  height: 100%;
}
header nav .nav-container .main-menu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  z-index: 100;
}
header nav .nav-container .main-menu .submenu a {
  padding: 10px 20px;
  text-transform: none;
  font-size: 13px;
}
header nav .nav-container .main-menu .submenu a:hover {
  background-color: #F8F4F2;
}
header nav .nav-container .main-menu:hover .submenu {
  display: block;
}

.search-bar {
  position: relative;
  width: 30%;
}
.search-bar input {
  width: 100%;
  padding: 10px 40px;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  font-size: 14px;
  outline: none;
}
.search-bar input:focus {
  border-color: #D8A2C4;
}
.search-bar i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.hero .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.hero .slide.active {
  display: block;
}
.hero .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .slide .slide-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  max-width: 500px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 40px;
  border-radius: 10px;
}
.hero .slide .slide-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  margin-bottom: 20px;
  color: #4A4A4A;
}
.hero .slide .slide-content p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #4A4A4A;
}
.hero .slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}
.hero .slider-nav .slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
  cursor: pointer;
}
.hero .slider-nav .slider-dot.active {
  background-color: #D8A2C4;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 60px 0;
}
.features .feature-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.features .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.features .feature-card .feature-icon i {
  font-size: 32px;
  color: #D8A2C4;
  margin-bottom: 20px;
}
.features .feature-card .feature-title {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  margin-bottom: 15px;
}
.features .feature-card .feature-desc {
  font-size: 14px;
  color: #666;
}

.categories {
  padding: 60px 0;
}
.categories .section-title {
  text-align: center;
  margin-bottom: 50px;
}
.categories .section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  margin-bottom: 15px;
}
.categories .section-title p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}
.categories .category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.categories .category-grid .category-card {
  position: relative;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
}
.categories .category-grid .category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.categories .category-grid .category-card .category-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 30px;
  color: white;
}
.categories .category-grid .category-card .category-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin-bottom: 10px;
}
.categories .category-grid .category-card .category-info p {
  font-size: 14px;
  margin-bottom: 15px;
}
.categories .category-grid .category-card .category-info a {
  color: white;
  text-decoration: underline;
  font-size: 14px;
}
.categories .category-grid .category-card:hover img {
  transform: scale(1.05);
}

.products-section {
  padding: 60px 0;
}
.products-section .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.products-section .section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
}
.products-section .section-header .view-all {
  color: #D8A2C4;
  font-size: 14px;
}
.products-section .section-header .view-all i {
  margin-left: 5px;
}
.products-section .products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.products-section .products-grid .product-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.products-section .products-grid .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.products-section .products-grid .product-card .product-image {
  position: relative;
  height: 250px;
}
.products-section .products-grid .product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.products-section .products-grid .product-card .product-image .product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #D8A2C4;
  color: white;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 50px;
}
.products-section .products-grid .product-card .product-image .quick-actions {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}
.products-section .products-grid .product-card .product-image .quick-actions button {
  background-color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.products-section .products-grid .product-card .product-image .quick-actions button:hover {
  background-color: #D8A2C4;
  color: white;
}
.products-section .products-grid .product-card:hover .quick-actions {
  bottom: 10px;
  opacity: 1;
}
.products-section .products-grid .product-card .product-info {
  padding: 20px;
}
.products-section .products-grid .product-card .product-info .product-category {
  font-size: 12px;
  color: #999;
  margin-bottom: 5px;
}
.products-section .products-grid .product-card .product-info .product-name {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  margin-bottom: 10px;
}
.products-section .products-grid .product-card .product-info .product-price {
  font-size: 18px;
  font-weight: 600;
  color: #D8A2C4;
}

.promo-banner {
  background-color: rgba(216, 162, 196, 0.1);
  padding: 80px 0;
  margin: 60px 0;
}
.promo-banner .promo-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.promo-banner .promo-content .promo-text {
  max-width: 500px;
}
.promo-banner .promo-content .promo-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  margin-bottom: 20px;
}
.promo-banner .promo-content .promo-text p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #666;
}
.promo-banner .promo-content .promo-text .promo-timer {
  display: flex;
  margin-bottom: 40px;
}
.promo-banner .promo-content .promo-text .promo-timer .timer-item {
  background-color: white;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.promo-banner .promo-content .promo-text .promo-timer .timer-item .time-value {
  font-size: 24px;
  font-weight: 600;
  color: #D8A2C4;
}
.promo-banner .promo-content .promo-text .promo-timer .timer-item .time-label {
  font-size: 12px;
  color: #666;
}
.promo-banner .promo-content .promo-image img {
  max-width: 500px;
  border-radius: 10px;
}

.testimonials {
  padding: 60px 0;
}
.testimonials .section-title {
  text-align: center;
  margin-bottom: 50px;
}
.testimonials .section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  margin-bottom: 15px;
}
.testimonials .section-title p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}
.testimonials .testimonial-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 30px;
}
.testimonials .testimonial-slider .testimonial-card {
  min-width: 350px;
  max-width: 350px;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  margin-right: 30px;
  scroll-snap-align: start;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.testimonials .testimonial-slider .testimonial-card .testimonial-rating {
  color: #FFD700;
  margin-bottom: 20px;
}
.testimonials .testimonial-slider .testimonial-card .testimonial-text {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}
.testimonials .testimonial-slider .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
}
.testimonials .testimonial-slider .testimonial-card .testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}
.testimonials .testimonial-slider .testimonial-card .testimonial-author .author-info h4 {
  margin: 0;
  font-family: "Playfair Display", serif;
}
.testimonials .testimonial-slider .testimonial-card .testimonial-author .author-info p {
  font-size: 12px;
  color: #999;
  margin: 0;
}

.product-detail {
  padding: 80px 0;
}
.product-detail .product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.product-detail .product-container .product-images .main-image {
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
}
.product-detail .product-container .product-images .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail .product-container .product-images .thumbnail-container {
  display: flex;
  margin-top: 20px;
}
.product-detail .product-container .product-images .thumbnail-container .thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 5px;
  overflow: hidden;
  margin-right: 15px;
  cursor: pointer;
  border: 2px solid transparent;
}
.product-detail .product-container .product-images .thumbnail-container .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail .product-container .product-images .thumbnail-container .thumbnail.active {
  border-color: #D8A2C4;
}
.product-detail .product-container .product-info .product-category {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}
.product-detail .product-container .product-info .product-title {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  margin-bottom: 15px;
}
.product-detail .product-container .product-info .product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.product-detail .product-container .product-info .product-rating .rating-stars {
  color: #FFD700;
  margin-right: 10px;
}
.product-detail .product-container .product-info .product-rating .rating-count {
  font-size: 14px;
  color: #999;
}
.product-detail .product-container .product-info .product-price {
  font-size: 28px;
  font-weight: 600;
  color: #D8A2C4;
  margin-bottom: 20px;
}
.product-detail .product-container .product-info .product-description {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}
.product-detail .product-container .product-info .product-details {
  margin-bottom: 30px;
}
.product-detail .product-container .product-info .product-details h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin-bottom: 15px;
}
.product-detail .product-container .product-info .product-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-detail .product-container .product-info .product-details ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.product-detail .product-container .product-info .product-details ul li i {
  color: #D8A2C4;
  margin-right: 10px;
}
.product-detail .product-container .product-info .product-variants {
  margin-bottom: 30px;
}
.product-detail .product-container .product-info .product-variants .variant {
  margin-bottom: 20px;
}
.product-detail .product-container .product-info .product-variants .variant h4 {
  font-size: 16px;
  margin-bottom: 10px;
}
.product-detail .product-container .product-info .product-variants .variant .variant-options {
  display: flex;
}
.product-detail .product-container .product-info .product-variants .variant .variant-options .option {
  padding: 8px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  margin-right: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-detail .product-container .product-info .product-variants .variant .variant-options .option:hover {
  border-color: #D8A2C4;
}
.product-detail .product-container .product-info .product-variants .variant .variant-options .option.active {
  border-color: #D8A2C4;
  background-color: rgba(216, 162, 196, 0.1);
}
.product-detail .product-container .product-info .quantity-selector {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.product-detail .product-container .product-info .quantity-selector h4 {
  font-size: 16px;
  margin-right: 15px;
}
.product-detail .product-container .product-info .quantity-selector .quantity-control {
  display: flex;
  align-items: center;
}
.product-detail .product-container .product-info .quantity-selector .quantity-control button {
  width: 40px;
  height: 40px;
  border: 1px solid #e0e0e0;
  background-color: white;
  cursor: pointer;
}
.product-detail .product-container .product-info .quantity-selector .quantity-control button:hover {
  background-color: #f0f0f0;
}
.product-detail .product-container .product-info .quantity-selector .quantity-control input {
  width: 60px;
  height: 40px;
  border: 1px solid #e0e0e0;
  border-left: none;
  border-right: none;
  text-align: center;
  font-size: 16px;
}
.product-detail .product-container .product-info .product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.product-detail .product-container .product-info .product-actions button {
  flex: 1;
}

.login-content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 100px);
  padding: 60px 0;
}
.login-content .auth-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.login-content .auth-container .auth-image {
  background-color: #D8A2C4;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}
.login-content .auth-container .auth-image h2 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  margin-bottom: 20px;
}
.login-content .auth-container .auth-image p {
  margin-bottom: 40px;
}
.login-content .auth-container .auth-image img {
  max-width: 250px;
  margin-bottom: 30px;
}
.login-content .auth-container .auth-form {
  padding: 60px;
}
.login-content .auth-container .auth-form .auth-header {
  text-align: center;
  margin-bottom: 40px;
}
.login-content .auth-container .auth-form .auth-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin-bottom: 10px;
}
.login-content .auth-container .auth-form .auth-header p {
  color: #666;
}
.login-content .auth-container .auth-form form .form-group {
  margin-bottom: 25px;
}
.login-content .auth-container .auth-form form .form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}
.login-content .auth-container .auth-form form .form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
}
.login-content .auth-container .auth-form form .form-group input:focus {
  outline: none;
  border-color: #D8A2C4;
}
.login-content .auth-container .auth-form form .forgot-password {
  text-align: right;
  margin-bottom: 25px;
}
.login-content .auth-container .auth-form form .forgot-password a {
  font-size: 14px;
  color: #D8A2C4;
}
.login-content .auth-container .auth-form form button {
  width: 100%;
  margin-bottom: 20px;
}
.login-content .auth-container .auth-form form .social-login {
  text-align: center;
}
.login-content .auth-container .auth-form form .social-login p {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}
.login-content .auth-container .auth-form form .social-login .social-buttons {
  display: flex;
  justify-content: center;
}
.login-content .auth-container .auth-form form .social-login .social-buttons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  color: #666;
}
.login-content .auth-container .auth-form form .social-login .social-buttons a:hover {
  background-color: #D8A2C4;
  color: white;
}
.login-content .auth-container .auth-form form .register-link {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
}
.login-content .auth-container .auth-form form .register-link a {
  color: #D8A2C4;
  font-weight: 500;
}

footer {
  background-color: #4A4A4A;
  color: white;
  padding: 16px 0;
}
footer .contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
footer .footer-content .footer-column h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin-bottom: 25px;
}
footer .footer-content .footer-column p {
  font-size: 14px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 25px;
}
footer .footer-content .footer-column .social-links {
  display: flex;
}
footer .footer-content .footer-column .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
footer .footer-content .footer-column .social-links a:hover {
  background-color: #D8A2C4;
}
footer .footer-content .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-content .footer-column ul li {
  margin-bottom: 15px;
}
footer .footer-content .footer-column ul li a {
  color: #ccc;
  font-size: 14px;
}
footer .footer-content .footer-column ul li a:hover {
  color: #D8A2C4;
}
footer .newsletter {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer .newsletter .newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .newsletter .newsletter-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin-bottom: 15px;
}
footer .newsletter .newsletter-content p {
  color: #ccc;
  max-width: 400px;
}
footer .newsletter .newsletter-content form {
  display: flex;
  width: 400px;
}
footer .newsletter .newsletter-content form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 50px 0 0 50px;
  font-size: 14px;
}
footer .newsletter .newsletter-content form button {
  border-radius: 0 50px 50px 0;
  padding: 12px 25px;
}
footer .copyright {
  margin-top: 60px;
  text-align: center;
  font-size: 14px;
  color: #ccc;
}

body.cart-page .page-title {
  background-color: #D8A2C4;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
body.cart-page .page-title h2 {
  font-size: 3em;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
body.cart-page .page-title p {
  font-size: 1.2em;
  opacity: 0.8;
}
body.cart-page .page-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}
body.cart-page .cart-content {
  padding: 0 20px;
}
body.cart-page .cart-content .container {
  max-width: 1200px;
  margin: 0 auto;
}
body.cart-page .cart-content .cart-container {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  padding: 40px;
}
body.cart-page .cart-content .cart-table {
  width: 100%;
  border-collapse: collapse;
}
body.cart-page .cart-content .cart-table th,
body.cart-page .cart-content .cart-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid #e0dbd7;
}
body.cart-page .cart-content .cart-table th {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
body.cart-page .cart-content .product-cell {
  display: flex;
  align-items: center;
}
body.cart-page .cart-content .product-cell .product-image {
  width: 100px;
  height: 100px;
  margin-right: 20px;
  overflow: hidden;
  border-radius: 5px;
}
body.cart-page .cart-content .product-cell .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.cart-page .cart-content .product-cell .product-info .product-name {
  font-size: 1.2em;
  font-weight: 600;
}
body.cart-page .cart-content .product-price {
  font-size: 1.2em;
  color: #B9D9EB;
}
body.cart-page .cart-content .quantity-selector {
  display: flex;
  align-items: center;
}
body.cart-page .cart-content .quantity-selector .qty-btn {
  border: 1px solid #e0dbd7;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}
body.cart-page .cart-content .quantity-selector .qty-btn:hover {
  background-color: #e0dbd7;
}
body.cart-page .cart-content .quantity-selector .qty-input {
  width: 50px;
  text-align: center;
  border: 1px solid #e0dbd7;
  padding: 5px;
  margin: 0 5px;
}
body.cart-page .cart-content .remove-btn {
  background-color: transparent;
  border: none;
  color: #555;
  cursor: pointer;
  font-size: 1.2em;
  transition: color 0.3s ease;
}
body.cart-page .cart-content .remove-btn:hover {
  color: #B9D9EB;
}
body.cart-page .cart-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
body.cart-page .cart-actions .btn-outline {
  background-color: transparent;
  border: 1px solid #D8A2C4;
  color: #D8A2C4;
}
body.cart-page .cart-actions .btn-outline:hover {
  background-color: #D8A2C4;
  color: white;
}
body.cart-page .cart-actions .checkout-btn {
  background-color: #B9D9EB;
  color: white;
}
body.cart-page .cart-actions .checkout-btn:hover {
  background-color: rgb(145.3333333333, 195.4666666667, 223.6666666667);
}

.luxury-beauty {
  font-family: "Playfair Display", serif;
  background-color: #f9f5f0;
  color: #333;
}
.luxury-beauty .luxury-header {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
  text-align: center;
}
.luxury-beauty .luxury-header .results-title {
  font-size: 28px;
  font-weight: 600;
  color: #555;
}
.luxury-beauty .luxury-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 40px;
}
.luxury-beauty .luxury-grid .luxury-product-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.luxury-beauty .luxury-grid .luxury-product-card:hover {
  transform: translateY(-5px);
}
.luxury-beauty .luxury-grid .luxury-product-card .product-image {
  padding: 20px;
  text-align: center;
}
.luxury-beauty .luxury-grid .luxury-product-card .product-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.luxury-beauty .luxury-grid .luxury-product-card .product-info {
  padding: 20px;
}
.luxury-beauty .luxury-grid .luxury-product-card .product-info .product-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.luxury-beauty .luxury-grid .luxury-product-card .product-info .product-price {
  font-size: 18px;
  font-weight: 600;
  color: #c09f77;
}
.luxury-beauty .luxury-grid .luxury-no-results {
  text-align: center;
  padding: 50px 0;
}
.luxury-beauty .luxury-grid .luxury-no-results i {
  font-size: 48px;
  color: #ccc;
  margin-bottom: 20px;
}
.luxury-beauty .luxury-grid .luxury-no-results h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.luxury-beauty .luxury-grid .luxury-no-results p {
  font-size: 16px;
  margin-bottom: 20px;
}
.luxury-beauty .luxury-grid .luxury-no-results .suggestions h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.luxury-beauty .luxury-grid .luxury-no-results .suggestions div {
  font-size: 16px;
  margin-bottom: 5px;
}
.luxury-beauty .luxury-pagination {
  text-align: center;
  padding: 20px 0;
}
.luxury-beauty .luxury-pagination span {
  display: inline-block;
}
.luxury-beauty .luxury-pagination span a {
  display: inline-block;
  padding: 10px 15px;
  margin: 0 5px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  color: #555;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.luxury-beauty .luxury-pagination span a:hover {
  background-color: #f0f0f0;
}
.luxury-beauty .luxury-pagination span a.active {
  background-color: #c09f77;
  color: #fff;
  border-color: #c09f77;
}

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