:root {
  --primary-brown: #6B4423;
  --secondary-brown: #8B5A3C;
  --accent-gold: #C9A961;
  --light-wood: #D4A574;
  --cream: #FAF6F2;
  --dark-text: #2C1810;
  --light-gray: #F8F5F1;
  --white: #FFFFFF;
  --shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-text);
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, var(--primary-brown), var(--secondary-brown));
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
}

.announcement-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.contact-item i {
  color: var(--accent-gold);
  font-size: 12px;
}

.promo-info {
  display: flex;
  align-items: center;
  text-align: center;
}

.promo-info i {
  margin-right: 8px;
  color: var(--accent-gold);
  animation: flash 2s infinite;
}

@keyframes flash {

  0%,
  50% {
    opacity: 1;
  }

  25% {
    opacity: 0.5;
  }
}

/* Mobile responsive announcement bar */
@media (max-width: 768px) {
  .announcement-bar {
    font-size: 12px;
    padding: 10px 0;
  }

  .announcement-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .contact-info {
    gap: 15px;
    justify-content: center;
  }

  .contact-item {
    font-size: 11px;
  }

  .promo-info {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .contact-info {
    flex-direction: column;
    gap: 8px;
  }
}

/* Header */
header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-brown) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand:hover {
  color: var(--accent-gold) !important;
}

.nav-link {
  color: var(--dark-text) !important;
  font-weight: 500;
  margin: 0 15px;
  position: relative;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--accent-gold) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background-color: var(--accent-gold);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--dark-text);
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.icon-btn:hover {
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent-gold);
  color: var(--white);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.search-container {
  width: 90%;
  max-width: 600px;
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(-50px);
  transition: all 0.3s ease;
}

.search-overlay.active .search-container {
  transform: translateY(0);
}

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

.search-header h3 {
  color: var(--dark-text);
  margin: 0;
}

.search-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--dark-text);
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.search-form {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 20px 60px 20px 25px;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  font-size: 18px;
  background: var(--light-gray);
  transition: var(--transition);
}

.search-input:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: var(--white);
}

.search-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-gold);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
}

.search-btn:hover {
  background: var(--primary-brown);
}

.search-suggestions {
  margin-top: 20px;
}

.search-suggestions h6 {
  color: var(--dark-text);
  margin-bottom: 15px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.suggestion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.suggestion-tag {
  background: var(--light-gray);
  color: var(--dark-text);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.suggestion-tag:hover {
  background: var(--accent-gold);
  color: var(--white);
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.carousel-item {
  height: 500px;
  position: relative;
}

.carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
}

.carousel-content h1 {
  font-size: 56px;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease;
}

.carousel-content p {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 300;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.btn-primary-custom {
  background: var(--accent-gold);
  color: var(--white);
  border: none;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.btn-primary-custom:hover {
  background: var(--primary-brown);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  color: var(--white);
}

/* Carousel Sections */
.carousel-section {
  padding: 80px 0;
  position: relative;
}

.sales-section {
  background: linear-gradient(135deg, var(--cream) 0%, var(--light-gray) 100%);
  margin-top: -50px;
  z-index: 10;
  border-radius: 30px 30px 0 0;
}

.new-arrivals {
  background: var(--light-gray);
}

.best-sellers {
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 42px;
  color: var(--dark-text);
  margin-bottom: 15px;
}

.section-header p {
  color: #666;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* Swiper Customization */
.swiper-wrapper {
  height: auto !important;
}

.product-swiper {
  padding: 20px 0 60px;
  overflow: visible;
}

.swiper-slide {
  height: auto;
}

.swiper-pagination {
  bottom: 20px !important;
}

.swiper-pagination-bullet {
  background: var(--accent-gold);
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--accent-gold) !important;
  background: var(--white);
  border-radius: 50%;
  width: 50px !important;
  height: 50px !important;
  margin-top: -25px !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--accent-gold);
  color: var(--white) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px !important;
}

/* Sale/Product Cards */
.sale-item,
.product-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  height: 100%;
}

.sale-item:hover,
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.sale-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #FF4444 !important;
  color: var(--white);
  padding: 8px 15px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  z-index: 2;
}

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

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img,
.sale-item:hover .product-image img {
  transform: scale(1.1);
}

.product-actions {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-actions,
.sale-item:hover .product-actions {
  opacity: 1;
}

.action-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
  background: var(--accent-gold);
  color: var(--white);
  transform: scale(1.1);
}

.product-info,
.sale-content {
  padding: 25px;
}

.product-info h4,
.sale-content h5 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--dark-text);
  min-height: 50px;
  display: flex;
  align-items: center;
}

/* VAT Pricing */
.price-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.price-inc-vat {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-gold);
}

.price-exc-vat {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.price-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.original-price {
  color: #999;
  text-decoration: line-through;
  font-size: 16px;
}

.sale-price {
  color: var(--accent-gold) !Important;
  font-size: 22px;
  font-weight: 700;
}

/* Categories Section */
.categories-section {
  padding: 80px 0;
  background: var(--white);
}

.category-card {
  position: relative;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.category-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 30px;
  color: var(--white);
}

.category-overlay h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.category-overlay p {
  font-size: 16px;
  opacity: 0.9;
}

/* Features Section */
.features-section {
  padding: 60px 0;
  background: var(--primary-brown);
  color: var(--white);
}

.feature-box {
  text-align: center;
  padding: 30px;
}

.feature-icon {
  font-size: 48px;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.feature-box h4 {
  font-size: 22px;
  margin-bottom: 15px;
}

.feature-box p {
  font-size: 15px;
  opacity: 0.9;
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 80px 0;
  background: var(--primary-brown);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1515394537519-81034f8241cd?w=1920&h=1080&fit=crop&q=80') center center / cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.why-choose-content {
  position: relative;
  z-index: 2;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-choose-header h2 {
  font-size: 42px;
  color: var(--white);
  margin-bottom: 15px;
}

.why-choose-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(139, 90, 60, 0.1));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-gold);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-gold), var(--light-wood));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 36px;
  color: var(--primary-brown);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--light-wood), var(--accent-gold));
}

.service-content h3 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
}

.service-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.service-badge {
  background: var(--accent-gold);
  color: var(--primary-brown);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  transition: var(--transition);
}

.service-card:hover .service-badge {
  background: var(--white);
  transform: scale(1.05);
}

/* Additional Service Cards for Better Layout */
.additional-services {
  margin-top: 40px;
}

.mini-service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.mini-service-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.mini-service-icon {
  font-size: 32px;
  color: var(--accent-gold);
  margin-bottom: 15px;
  display: block;
}

.mini-service-card h4 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
}

.mini-service-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
}

/* Stats Section */
.stats-section {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
  text-align: center;
  margin-bottom: 30px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-gold);
  display: block;
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin-top: 8px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .why-choose-section {
    padding: 60px 0;
  }

  .why-choose-header h2 {
    font-size: 32px;
  }

  .service-card {
    padding: 30px 25px;
    margin-bottom: 25px;
  }

  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }

  .service-content h3 {
    font-size: 22px;
  }

  .mini-service-card {
    margin-bottom: 20px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stats-section {
    margin-top: 40px;
    padding-top: 40px;
  }
}

@media (max-width: 576px) {
  .service-card {
    padding: 25px 20px;
  }

  .mini-service-card {
    padding: 20px 15px;
  }
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1515394537519-81034f8241cd?w=1920&h=1080&fit=crop&q=80') center center / cover no-repeat;
  opacity: 0.03;
  z-index: 1;
}

.contact-content {
  position: relative;
  z-index: 2;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h2 {
  font-size: 42px;
  color: var(--dark-text);
  margin-bottom: 15px;
}

.contact-header p {
  color: #666;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-wrapper {
  background: var(--white);
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact-map {
  height: 100%;
  position: relative;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 25px 0 0 25px;
}

.contact-form-container {
  padding: 50px 40px;
  background: var(--white);
  /* height: 500px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-form-header h3 {
  font-size: 28px;
  color: var(--dark-text);
  margin-bottom: 10px;
}

.contact-form-header p {
  color: #666;
  font-size: 16px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-control-modern {
  width: 100%;
  padding: 8px 25px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 16px;
  background: var(--light-gray);
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.form-control-modern:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form-control-modern::placeholder {
  color: #999;
  font-weight: 400;
}

textarea.form-control-modern {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
  color: var(--white);
  border: none;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 15px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  background: linear-gradient(135deg, var(--accent-gold), var(--primary-brown));
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

/* Success Alert */
.success-alert {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  padding: 15px 25px;
  border-radius: 15px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideInDown 0.5s ease;
}

.success-alert i {
  font-size: 20px;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-header h2 {
    font-size: 32px;
  }

  .contact-wrapper {
    border-radius: 20px;
  }

  .contact-map {
    height: 300px;
  }

  .contact-map iframe {
    border-radius: 20px 20px 0 0;
  }

  .contact-form-container {
    padding: 40px 25px;
    height: auto;
  }

  .contact-form-header h3 {
    font-size: 24px;
  }

  .form-control-modern {
    padding: 15px 20px;
    font-size: 15px;
  }

  .submit-btn {
    padding: 16px 30px;
    font-size: 15px;
  }

  .contact-info-cards {
    margin-top: 40px;
  }

  .contact-info-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .contact-form-container {
    padding: 30px 20px;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}


/* Footer */
footer {
  background: var(--dark-text);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  margin-bottom: 40px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.footer-links h5 {
  color: var(--accent-gold);
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--accent-gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: #999;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .carousel-content h1 {
    font-size: 36px;
  }

  .carousel-content p {
    font-size: 16px;
  }

  .hero-carousel,
  .carousel-item {
    height: 400px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .category-card {
    height: 250px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .navbar-brand {
    font-size: 22px;
  }

  .search-container {
    padding: 30px 20px;
  }

  .search-input {
    font-size: 16px;
    padding: 15px 50px 15px 20px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
}

/* Loading Screen Styles */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--light-gray) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loading-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
  padding: 40px;
}

.loading-logo {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-brown);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.loading-logo i {
  font-size: 36px;
  color: var(--accent-gold);
  animation: treeGrow 2s ease-in-out infinite;
}

@keyframes treeGrow {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.loading-spinner {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  position: relative;
}

.spinner-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(1) {
  border-top-color: var(--primary-brown);
  animation-delay: 0s;
}

.spinner-ring:nth-child(2) {
  border-right-color: var(--accent-gold);
  animation-delay: 0.3s;
  width: 70px;
  height: 70px;
  top: 5px;
  left: 5px;
}

.spinner-ring:nth-child(3) {
  border-bottom-color: var(--secondary-brown);
  animation-delay: 0.6s;
  width: 60px;
  height: 60px;
  top: 10px;
  left: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading-text {
  color: var(--dark-text);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  opacity: 0;
  animation: fadeInText 0.8s ease 0.5s forwards;
}

.loading-subtext {
  color: #666;
  font-size: 14px;
  font-weight: 300;
  opacity: 0;
  animation: fadeInText 0.8s ease 1s forwards;
}

@keyframes fadeInText {
  to {
    opacity: 1;
  }
}

.loading-progress {
  width: 200px;
  height: 4px;
  background: rgba(107, 68, 35, 0.1);
  border-radius: 2px;
  margin: 25px auto 0;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-brown), var(--accent-gold), var(--secondary-brown));
  border-radius: 2px;
  width: 0%;
  animation: loadProgress 2s ease-in-out infinite;
}

@keyframes loadProgress {
  0% {
    width: 0%;
  }

  50% {
    width: 70%;
  }

  100% {
    width: 100%;
  }
}

.wood-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 50%;
  opacity: 0.6;
  animation: float 3s ease-in-out infinite;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  left: 20%;
  animation-delay: 0.5s;
}

.particle:nth-child(3) {
  left: 30%;
  animation-delay: 1s;
}

.particle:nth-child(4) {
  left: 40%;
  animation-delay: 1.5s;
}

.particle:nth-child(5) {
  left: 50%;
  animation-delay: 2s;
}

.particle:nth-child(6) {
  left: 60%;
  animation-delay: 2.5s;
}

.particle:nth-child(7) {
  left: 70%;
  animation-delay: 3s;
}

.particle:nth-child(8) {
  left: 80%;
  animation-delay: 3.5s;
}

.particle:nth-child(9) {
  left: 90%;
  animation-delay: 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.6;
  }

  50% {
    transform: translateY(50vh) rotate(180deg);
    opacity: 1;
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .loading-logo {
    font-size: 24px;
  }

  .loading-logo i {
    font-size: 28px;
  }

  .loading-spinner {
    width: 60px;
    height: 60px;
  }

  .spinner-ring:nth-child(2) {
    width: 50px;
    height: 50px;
    top: 5px;
    left: 5px;
  }

  .spinner-ring:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 10px;
    left: 10px;
  }

  .loading-text {
    font-size: 16px;
  }

  .loading-progress {
    width: 150px;
  }
}