/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
  color: #465e59;
  overflow-x: hidden;
  font-weight: 300;
  letter-spacing: 0.01em;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
}

/* Large Desktop Enhancements */
@media (min-width: 1200px) {
  .container {
      max-width: 1600px;
      padding: 0 80px;
  }
}

@media (min-width: 1440px) {
  .container {
      max-width: 1800px;
      padding: 0 100px;
  }
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  padding: 5px 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 300;
  color: #465e59;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
}

.nav {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  text-decoration: none;
  color: #465e59;
  font-weight: 300;
  transition: color 0.3s ease;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-link:hover {
  color: #666;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.1rem;
  cursor: pointer;
}

.nav-icons i {
  color: #465e59;
  font-weight: 900 !important;
  transition: color 0.3s ease;
  font-size: 1.1rem;
  display: inline-block !important;
  visibility: visible !important;
  font-family: "Font Awesome 5 Free" !important;
}

.nav-icons i:hover {
  color: #666;
}

.cart-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #465e59;
  color: white;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
  cursor: pointer;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transform: translateY(150px);
  opacity: 0;
}

.cart-icon.show-initial {
  transform: translateY(0);
  opacity: 1;
}

.cart-icon::before {
  content: "\f290";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.store-icon::before {
  content: "\f54e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

@media (max-width: 768px) {
  .header {
      padding: 3px 0;
  }
  
  .nav-wrapper {
      padding: 0.3rem 0;
  }
  
  .cart-icon {
      width: 56px;
      height: 56px;
      bottom: 16px;
      right: 16px;
      padding: 12px;
      font-size: 1.1rem;
  }
  
  .cart-count {
      top: -6px;
      right: -6px;
      font-size: 0.6rem;
      width: 18px;
      height: 18px;
  }
}

.cart-icon.hidden {
  transform: translateY(100px);
  opacity: 0;
}

.cart-icon:hover {
  transform: scale(1.05);
  background: #333;
}

.store-icon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #465e59;
  color: white;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
  cursor: pointer;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  transform: translateY(150px);
  opacity: 0;
}

.store-icon.show-initial {
  transform: translateY(0);
  opacity: 1;
}

.store-icon:hover {
  transform: scale(1.05);
  background: #333;
}

.store-icon.hidden {
  transform: translateY(100px);
  opacity: 0;
}

/* Store Modal */
.store-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 10000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  backdrop-filter: blur(0px);
}

.store-modal.show {
  background: rgba(0, 0, 0, 0.8);
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(5px);
}

.store-modal-content {
  background: white;
  border-radius: 16px 16px 0 0;
  width: 100%;
  max-width: 1200px;
  height: 90vh;
  overflow: hidden;
  position: relative;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.store-modal.show .store-modal-content {
  transform: translateY(0);
}

.store-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid #eee;
  background: #f8f9fa;
  position: relative;
  height: 80px;
}

.store-search-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  z-index: 1003;
}

.store-search-input {
  width: 100%;
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 0.9rem;
  outline: none;
  font-weight: 300;
  background: white;
  transition: border-color 0.3s ease;
}

.store-search-input:focus {
  border-color: #465e59;
}

.store-search-input::placeholder {
  color: #999;
  font-weight: 300;
}

.store-search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #eee;
  border-top: none;
  border-radius: 0 0 8px 8px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1004;
  display: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.store-search-result-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.store-search-result-item:hover {
  background: #f8f9fa;
}

.store-search-result-item:last-child {
  border-bottom: none;
}

.store-search-result-image {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
}

.store-search-result-info {
  flex: 1;
}

.store-search-result-name {
  font-weight: 400;
  margin-bottom: 0.2rem;
  color: #465e59;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.store-search-result-price {
  color: #465e59;
  font-weight: 300;
  font-size: 0.8rem;
}

.store-search-no-results {
  text-align: center;
  padding: 1rem;
  color: #666;
  font-size: 0.8rem;
  font-weight: 300;
}

.store-logo {
      position: absolute;
      top: 1.2rem;
      left: 1rem;
      z-index: 1002;
  }

.store-modal-close {
  background: rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  z-index: 1002;
}

.store-modal-close:hover {
  background: rgba(0, 0, 0, 0.2);
}

.store-categories {
  display: flex;
  gap: 1rem;
  margin-left: auto;
  margin-right: 3rem;
  margin-top: 1rem;
}

.store-category-btn {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.store-category-btn.active,
.store-category-btn:hover {
  background: #465e59;
  color: white;
  border-color: #465e59;
}

.store-modal-body {
  padding: 2rem;
  height: calc(90vh - 100px);
  overflow-y: auto;
}

.store-products-grid {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 1rem 0 2rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #465e59 transparent;
}

.store-products-grid::-webkit-scrollbar {
  height: 6px;
}

.store-products-grid::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.1);
  border-radius: 10px;
}

.store-products-grid::-webkit-scrollbar-thumb {
  background: #465e59;
  border-radius: 10px;
}

.store-products-grid::-webkit-scrollbar-thumb:hover {
  background: #333;
}

.store-product-card {
  background: white;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.05);
  width: 220px;
  flex-shrink: 0;
}

.store-product-card:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.1);
}

.store-product-image-container {
  position: relative;
}

.store-product-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
  cursor: pointer;
}

.store-product-info {
  padding: 1.5rem;
  background: #fafafa;
}

.store-product-name {
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  color: #465e59;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.4;
  font-family: 'EB Garamond', serif;
}

.store-product-description {
  color: #666;
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  height: calc(1.3em * 2);
}

.store-product-price {
  font-size: 0.9rem;
  font-weight: 300;
  color: #465e59;
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

.store-product-buttons {
  display: flex;
  gap: 0.5rem;
}

.store-product-colors {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.store-product-colors .color-swatch {
  width: 16px;
  height: 16px;
  border-radius: 0;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.store-product-colors .color-swatch.active {
  border-color: #465e59;
  transform: scale(1.1);
  box-shadow: 0 0 0 1px #465e59;
}

.store-product-colors .color-swatch:hover {
  border-color: #666;
}

.store-size-options {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.store-size-options .size-option-inline {
  padding: 4px 8px;
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 0.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 20px;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.store-size-options .size-option-inline:hover,
.store-size-options .size-option-inline.active {
  border-color: #465e59;
  background: #465e59;
  color: white;
}

.store-add-to-cart {
  flex: 1;
  padding: 12px 16px;
  background: #465e59;
  color: white;
  border: 1px solid #465e59;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.store-add-to-cart:hover {
  background: #f8f9fa;
  color: #465e59;
  transform: translateY(-1px);
}

.store-view-product {
  flex: 1;
  padding: 12px 16px;
  background: transparent;
  color: #465e59;
  border: 1px solid #465e59;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.store-view-product:hover {
  background: #465e59;
  color: white;
  transform: translateY(-1px);
}

/* Mobile responsiveness for store modal */
@media (max-width: 768px) {
  .store-modal {
      padding: 0;
      align-items: flex-end;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      height: 100dvh;
  }
  
  .mobile-card .store-product-colors {
      justify-content: flex-start;
      margin-bottom: 0.3rem;
  }
  
  .mobile-card .store-product-colors .color-swatch {
      width: 14px;
      height: 14px;
      border: 2px solid #ddd;
  }
  
  .mobile-card .store-product-colors .color-swatch.active {
      border-color: #465e59;
      box-shadow: 0 0 0 1px #465e59;
  }
  
  .mobile-card .store-size-options {
      justify-content: flex-start;
      margin-bottom: 0.3rem;
  }
  
  .mobile-card .store-size-options .size-option-inline {
      padding: 1px 4px;
      font-size: 0.55rem;
      min-width: 18px;
  }
  
  .store-modal-content {
      width: 100vw;
      height: 100vh;
      height: 100dvh;
      border-radius: 0;
      max-width: none;
      max-height: none;
  }
  
  .store-modal-header {
      padding: 1rem;
      flex-direction: column;
      gap: 1rem;
      align-items: stretch;
      position: relative;
      height: 120px;
      justify-content: flex-start;
  }
  
  .store-logo {
      position: absolute;
      top: 1.2rem;
      left: 1rem;
      z-index: 1002;
  }
  
  .store-logo img {
      height: 23px !important;
      width: auto !important;
  }
  
  .store-modal-close {
      position: absolute;
      top: 1.2rem;
      right: 1rem;
      z-index: 1002;
      width: 25px !important;
      height: 25px !important;
      font-size: 0.9rem !important;
  }
  
  .store-categories {
      width: 100%;
      justify-content: flex-start;
      flex-wrap: wrap;
      margin-top: 3rem;
      margin-left: 0;
      margin-right: 0;
      position: relative;
      z-index: 1001;
      order: 2;
  }
  
  .store-search-container {
      position: absolute;
      top: 1.2rem;
      left: 50%;
      transform: translateX(-50%);
      width: 150px;
      z-index: 1003;
  }
  
  .store-category-btn {
      font-size: 0.8rem;
      padding: 6px 12px;
  }
  
  .store-products-grid {
      gap: 0.8rem !important;
  }
  
  .store-modal-body {
      padding: 1rem;
      padding-top: 1rem;
      padding-bottom: 2rem;
      height: calc(100dvh - 120px);
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
  }
  
  .store-product-card {
      display: block !important;
      cursor: pointer !important;
  }
  
  .store-product-image {
      width: 100% !important;
      height: 200px !important;
      object-fit: cover !important;
  }
  
  .store-product-info {
      padding: 0.8rem !important;
  }
  
  .store-product-name {
      font-size: 0.9rem !important;
      margin-bottom: 0.3rem !important;
  }
  
  .store-product-description {
      font-size: 0.7rem !important;
      margin-bottom: 0.5rem !important;
      -webkit-line-clamp: 2 !important;
      height: calc(1.2em * 2) !important;
  }
  
  .store-product-price {
      font-size: 0.8rem !important;
      margin-bottom: 0.5rem !important;
  }
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ab8b7e;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.7rem;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  line-height: 1;
}

.cart-count.show {
  display: flex;
}

/* Search Bar */
.search-bar {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.search-bar.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.search-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.search-container input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #465e59;
  border-radius: 0;
  font-size: 1rem;
  outline: none;
  font-weight: 300;
  width: 100%;
  max-width: none;
}

.search-container input:focus {
  border-color: #666;
}

.close-search {
  padding: 8px;
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.close-search:hover {
  color: #333;
}

#search-icon {
  cursor: pointer;
  transition: color 0.3s ease;
  font-size: 1.1rem !important;
  display: inline-block !important;
  color: #465e59 !important;
  visibility: visible !important;
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
}

#search-icon:before {
  content: "\f002" !important;
}

#search-icon::before {
  content: "\f002";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

#profile-icon::before {
  content: "\f007";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

#search-icon:hover {
  color: #666;
}

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  position: relative;
}

.dropdown-toggle::after {
  content: '▼';
  font-size: 0.6rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
  font-weight: 300;
}

.nav-dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #eee;
  border-radius: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 200px;
  padding: 1rem 0;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #465e59;
  text-decoration: none;
  font-weight: 300;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dropdown-link:hover {
  background: #f8f9fa;
  color: #666;
  padding-left: 2rem;
}

/* Responsive navigation */
@media (max-width: 768px) {
  .nav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: white;
      flex-direction: column;
      padding: 100px 2rem 2rem;
      z-index: 2000;
      overflow-y: auto;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
      -webkit-overflow-scrolling: touch;
  }
  
  .nav.active {
      display: flex;
  }
  
  .nav-dropdown {
      width: 100%;
      margin-bottom: 1rem;
  }
  
  .nav-link {
      font-size: 1.2rem;
      font-weight: 300;
      padding: 1rem 0;
      border-bottom: 1px solid #f0f0f0;
      color: #465e59;
  }
  
  .dropdown-menu {
      position: static;
      opacity: 1;
      visibility: visible;
      transform: none;
      box-shadow: none;
      border: none;
      padding: 0.5rem 0 0 1rem;
      background: #f8f9fa;
      border-radius: 0;
      margin-top: 0.5rem;
  }
  
  .dropdown-link {
      padding: 0.75rem 0;
      font-size: 1rem;
      color: #666;
      border-bottom: 1px solid #e0e0e0;
  }
  
  .dropdown-link:hover {
      color: #465e59;
      background: transparent;
      padding-left: 0;
  }
  
  .dropdown-toggle::after {
      display: none;
  }
  
  .mobile-menu-toggle {
      z-index: 2001;
      position: relative;
  }
  
  .mobile-menu-toggle i {
      transition: transform 0.3s ease;
  }
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
      display: block;
  }
}

/* About Page Styles */
.back-button {
  position: fixed;
  top: 2rem;
  left: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(70, 94, 89, 0.9);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.back-button:hover {
  background: rgba(70, 94, 89, 1);
  transform: scale(1.1);
}

.about-page {
  padding-top: 2rem;
}

.about-hero {
  margin-bottom: 4rem;
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 2rem;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 300;
  color: #465e59;
  margin-bottom: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'EB Garamond', serif;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 1rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-section {
  margin-bottom: 4rem;
}

.section-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 2rem;
}

.section-content h2 {
  font-size: 2rem;
  font-weight: 300;
  color: #465e59;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'EB Garamond', serif;
}

.section-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 1rem;
}

/* Responsive About Page */
@media (max-width: 768px) {
  .back-button {
      top: 1rem;
      left: 1rem;
      width: 40px;
      height: 40px;
  }
  
  .hero-text h1 {
      font-size: 2.5rem;
  }
  
  .hero-image,
  .section-image {
      height: 250px;
  }
  
  .section-content h2 {
      font-size: 1.5rem;
  }
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 0;
  background: #231f20;
  overflow: hidden;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
}

@media (max-width: 768px) {
  .hero {
      background: transparent;
  }
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  max-width: 800px;
  width: 100%;
  padding: 0 4rem;
}

.hero-title {
  font-size: 5rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #ffffff;
  text-shadow: none;
  letter-spacing: 0.05em;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 3rem;
  line-height: 1.8;
  text-shadow: none;
  letter-spacing: 0.1em;
  font-weight: 300;
  text-transform: uppercase;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-image img {
   width: auto;
   height: 100%;
   object-fit: cover;
   border-radius: 0;
   box-shadow: none;
   filter: brightness(0.7) contrast(1.1);
}

.hero-image {
   position: absolute;
   top: 0;
   left: 0;
   width: 100vw;
   height: 100vh;
   overflow: hidden;
   z-index: 0;
}



.desktop-slide:nth-child(1) {
   animation-delay: 0s;
   z-index: 1;
}

.desktop-slide:nth-child(2) {
   animation-delay: 3s;
   z-index: 1;
}

@keyframes desktopSlideShow {
   0% { opacity: 1; }
   16% { opacity: 1; }
   20% { opacity: 0; }
   96% { opacity: 0; }
   100% { opacity: 1; }
}

.hero-image > img:first-of-type {
   display: none;
}

.desktop-slider img {
   display: block !important;
}

@media (max-width: 768px) {
  .desktop-slider {
      display: none;
  }
}

@media (min-width: 769px) {
  .mobile-slider {
      display: none !important;
  }
}

.mobile-slider {
  display: none;
}

@media (max-width: 768px) {
  .mobile-slider {
      display: block !important;
      width: 100%;
      height: 600px;
      position: relative;
      overflow: hidden;
      border-radius: 20px;
  }
}

/* Buttons */
.btn {
  padding: 16px 32px;
  border: none;
  border-radius: 0;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.9rem;
  border: 1px solid transparent;
}

.btn-primary {
  background: #465e59;
  color: white;
  border: 1px solid #465e59;
}

.btn-primary:hover {
  background: #f8f9fa;
  color: #465e59;
  border-color: #465e59;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: #465e59;
  border: 1px solid #465e59;
}

.btn-secondary:hover {
  background: #465e59;
  color: white;
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
}

/* Sections */
.bestsellers {
  padding: 120px 0;
  background: #ffffff;
}

.new-arrivals {
  padding: 120px 0;
  background: #ffffff;
}

@media (min-width: 1200px) {
  .bestsellers, .new-arrivals {
      padding: 160px 0;
  }
}

@media (max-width: 768px) {
  .bestsellers, .new-arrivals {
      padding: 0px 10px 0px 10px;
      display: block !important;
      visibility: visible !important;
  }
  
  .bestsellers .container,
  .new-arrivals .container {
      display: block !important;
      visibility: visible !important;
  }
  
  .section-header {
      display: flex !important;
      visibility: visible !important;
      margin-bottom: 2rem !important;
  }
  
  .section-header h2 {
      display: block !important;
      visibility: visible !important;
      font-size: 2rem !important;
  }
  
 .category-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 0;
    white-space: nowrap;
    flex-wrap: nowrap;
    position: relative;
    scroll-behavior: smooth;
}

.category-filters::-webkit-scrollbar {
    display: none;
}

.category-filters .filter-btn {
    flex-shrink: 0;
    white-space: nowrap;
    min-width: 120px;
    text-align: center;
}

.category-filters .filter-btn {
    flex-shrink: 0;
    white-space: nowrap;
}
  
  .filter-btn {
      display: inline-block !important;
      visibility: visible !important;
  }
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 300;
  color: #465e59;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
}

@media (min-width: 1200px) {
  .section-header h2 {
      font-size: 4rem;
      margin-bottom: 4rem;
  }
}

@media (min-width: 1440px) {
  .section-header h2 {
      font-size: 5rem;
  }
}

.category-filters {
  display: flex;
  gap: 1rem;
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: auto;
  scrollbar-color: #465e59 #f0f0f0;
  padding: 0.5rem 0;
  scroll-behavior: smooth;
  animation: none !important;
  transform: none !important;
  max-width: 100%;
  white-space: nowrap;
}

.category-filters::-webkit-scrollbar {
  height: 8px;
  display: block;
}

.category-filters::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 4px;
}

.category-filters::-webkit-scrollbar-thumb {
  background: #465e59;
  border-radius: 4px;
}

.category-filters::-webkit-scrollbar-thumb:hover {
  background: #333;
}

.category-filters.has-overflow {
  position: relative;
}

.category-filters.has-overflow::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  padding: 0 1rem;
  pointer-events: none;
  color: #666;
  font-size: 1.2rem;
}

.filter-btn {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: fit-content;
  display: inline-block;
}

.filter-btn {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.filter-btn.active,
.filter-btn:hover {
  background: #465e59;
  color: white;
  border-color: #465e59;
}

/* Products Grid */
.products-grid {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 1rem 0 2rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #465e59 transparent;
}

.products-grid::-webkit-scrollbar {
  height: 8px;
}

.products-grid::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.1);
  border-radius: 10px;
}

.products-grid::-webkit-scrollbar-thumb {
  background: #465e59;
  border-radius: 10px;
}

.products-grid::-webkit-scrollbar-thumb:hover {
  background: #333;
}

@media (max-width: 768px) {
  .products-grid {
      gap: 1rem;
      padding: 1rem 0;
      scrollbar-width: none;
  }
  
  .products-grid::-webkit-scrollbar {
      display: none;
  }
}

@media (min-width: 1200px) {
  .products-grid {
      gap: 3rem;
      padding: 1rem 0 2rem;
  }
  
  .hero-title {
      font-size: 7rem;
  }
  
  .hero-subtitle {
      font-size: 1.3rem;
      margin-bottom: 4rem;
  }
}

@media (min-width: 1440px) {
  .products-grid {
      gap: 4rem;
      padding: 1rem 0 2rem;
  }
  
  .hero-title {
      font-size: 8rem;
  }
}

.product-card {
  background: white;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.05);
  width: 320px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .product-card {
      width: 180px;
      flex-shrink: 0;
  }
}

.product-card:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.1);
}

.product-image-container {
  position: relative;
}

.product-image {
      width: 100%;
      height: 448px;
      object-fit: cover;
      cursor: pointer;
      transition: transform 0.6s ease;
  }
  
  @media (max-width: 768px) {
      .product-image {
          height: 252px !important;
      }
  }

.product-info {
  padding: 2rem 1.5rem;
  background: #fafafa;
}

.product-name {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  color: #465e59;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.4;
  font-family: Arial, Helvetica, sans-serif;
}

.product-description {
  color: #666 !important;
  font-size: 0.8rem !important;
  margin-bottom: 1rem !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  line-height: 1.4 !important;
  height: calc(1.4em * 2) !important;
}

.product-price {
  font-size: 0.9rem !important;
  font-weight: 300 !important;
  color: #465e59 !important;
  margin-bottom: 1rem !important;
  letter-spacing: 0.05em !important;
}

@media (max-width: 768px) {
  .product-name {
      font-size: 0.75rem !important;
      margin-bottom: 0.3rem !important;
  }
  
  .product-description {
      font-size: 0.7rem !important;
      line-height: 1.2 !important;
      height: calc(1.2em * 2) !important;
      margin-bottom: 0.5rem !important;
  }
  
  .product-price {
      font-size: 0.8rem !important;
      margin-bottom: 0.5rem !important;
  }
  
  .product-card {
      padding: 0;
      margin: 0;
  }
  
  .product-info {
      padding: 0.6rem !important;
  }
  
  .product-colors {
      display: flex;
      gap: 0.2rem;
      margin-bottom: 0.3rem;
      flex-wrap: wrap;
  }
  
  .product-colors .color-swatch {
      width: 12px;
      height: 12px;
      border: 1px solid #ddd;
      flex-shrink: 0;
  }
  
  .product-colors .color-swatch.active {
      border-color: #465e59;
      box-shadow: 0 0 0 1px #465e59;
  }
  
  .size-options-inline {
      justify-content: flex-start;
      margin-bottom: 0.3rem;
  }
  
  .size-option-inline {
      padding: 1px 4px;
      font-size: 0.55rem;
      min-width: 18px;
  }
  
  .product-buttons {
      display: flex !important;
      flex-direction: column !important;
      gap: 0.5rem !important;
      margin-top: 0.5rem !important;
  }
  
  .view-product {
      padding: 12px !important;
      font-size: 0.8rem !important;
      width: 100% !important;
      order: 1 !important;
      border-radius: 0 !important;
      font-weight: 300 !important;
  }
  
  .add-to-cart {
      padding: 12px !important;
      font-size: 0.8rem !important;
      width: 100% !important;
      order: 2 !important;
      border-radius: 0 !important;
      font-weight: 300 !important;
  }
}

.product-colors {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.color-swatch {
  width: 20px;
  height: 20px;
  border-radius: 0;
  border: 1px solid #ddd;
  cursor: pointer;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.product-sizes {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.product-colors-selector,
.product-sizes-selector {
  margin-bottom: 0.8rem;
}

.color-label,
.size-label {
  font-size: 0.8rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
  color: #465e59;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.size-options-inline {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.size-option-inline {
  padding: 4px 8px;
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 30px;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.size-option-inline:hover,
.size-option-inline.active {
  border-color: #465e59;
  background: #465e59;
  color: white;
}

.color-swatch {
  cursor: pointer;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
  position: relative;
}

.color-swatch.active {
  border-color: #465e59;
  transform: scale(1.1);
  box-shadow: 0 0 0 1px #465e59;
}

.color-swatch:hover {
  border-color: #999;
}

.cart-item-size,
.cart-item-color {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.2rem;
}

.color-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #ddd;
  vertical-align: middle;
  margin-left: 0.3rem;
}

.light-color {
  border-color: #999 !important;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}

.light-color.active {
  border-color: #465e59 !important;
  box-shadow: 0 0 0 2px #465e59, inset 0 0 0 1px rgba(0,0,0,0.1);
}

.light-color:hover {
  border-color: #666 !important;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
}

.stars {
  color: #ffc107;
}

.product-buttons {
  display: flex;
  gap: 0.5rem;
}

.add-to-cart {
  flex: 1;
  padding: 12px 16px;
  background: #465e59;
  color: white;
  border: 1px solid #465e59;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.add-to-cart:hover {
  background: #f8f9fa;
  color: #465e59;
  transform: translateY(-1px);
}

.view-product {
  flex: 1;
  padding: 12px 16px;
  background: transparent;
  color: #465e59;
  border: 1px solid #465e59;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.view-product:hover {
  background: #465e59;
  color: white;
  transform: translateY(-1px);
}

/* Tree Planting Section */
.tree-planting {
  padding: 120px 0;
  background: #f8f9fa;
}

.tree-content {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.tree-text {
  flex: 1;
}

.tree-text h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #465e59;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  font-family: Arial, Helvetica, sans-serif;
}

.tree-text p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.7;
  font-weight: 300;
}

.tree-image {
  flex: 1;
}

.tree-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 0;
}

/* Stars of the Season */
.stars-season {
  padding: 120px 20px;
  background: linear-gradient(rgba(70, 94, 89, 0.8), rgba(70, 94, 89, 0.8)),
              url('https://images.unsplash.com/photo-1469334031218-e382a71b716b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.stars-content h2 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  font-family: Arial, Helvetica, sans-serif;
}

.stars-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.stars-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.stars-buttons .btn {
  flex: 1;
  min-width: 0;
}

.stars-season .btn-primary {
  background: rgba(255, 255, 255, 0.9);
  color: #465e59;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.stars-season .btn-primary:hover {
  background: white;
  color: #465e59;
  transform: translateY(-1px);
}

.stars-season .btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.stars-season .btn-secondary:hover {
  background: white;
  color: #465e59;
  transform: translateY(-1px);
}

/* Newsletter */
.newsletter {
  padding: 100px 0;
  background: #465e59;
  text-align: center;
  color: white;
}

.newsletter h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  font-family: Arial, Helvetica, sans-serif;
}

.newsletter p {
  color: #cccccc;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  font-weight: 300;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid #666;
  border-radius: 0;
  font-size: 1rem;
  background: transparent;
  color: white;
  font-weight: 300;
}

.newsletter-form input::placeholder {
  color: #999;
}

.newsletter-form button {
  padding: 16px 32px;
  background: transparent;
  color: white;
  border: 1px solid white;
  border-radius: 0;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: white;
  color: #465e59;
}

/* Footer */
.footer {
  background: #465e59;
  color: white;
  padding: 80px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #ffffff;
  letter-spacing: 0.05em;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 300;
  font-size: 0.9rem;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  border-top: 1px solid #333;
}

.payment-methods {
  display: flex;
  gap: 1.5rem;
  font-size: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.payment-methods i {
  color: #ccc;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.payment-methods i:hover {
  color: white;
}

.payment-methods img {
  height: 1.5rem;
  width: auto;
  margin: 0 0.5rem;
  transition: opacity 0.3s ease;
}

.payment-methods img:hover {
  opacity: 0.8;
}

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: white;
  z-index: 2000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid #eee;
}

.cart-header h3 {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #465e59;
  font-family: Arial, Helvetica, sans-serif;
}

.close-cart {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
}

.close-cart:hover {
  color: #465e59;
}

.cart-items {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 0;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 400;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #465e59;
  font-family: Arial, Helvetica, sans-serif;
}

.cart-item-price {
  color: #465e59;
  font-weight: 300;
  font-size: 0.9rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.quantity-btn {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  border-radius: 0;
  font-weight: 300;
  transition: all 0.3s ease;
}

.quantity-btn:hover {
  border-color: #465e59;
  background: #465e59;
  color: white;
}

.cart-footer {
  padding: 2rem;
  border-top: 1px solid #eee;
}

.cart-total {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #465e59;
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #465e59;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
      padding: 0 20px;
      max-width: 100%;
      overflow-x: hidden;
  }
  
  .header {
      padding: 0;
  }
  
  .nav-wrapper {
      padding: 0.1rem 0;
  }
  
  .nav {
      display: none;
  }
  
  .hero {
      padding: 70px 20px 0;
      min-height: 80vh;
      flex-direction: column;
      position: relative;
      align-items: center;
      overflow-x: hidden;
  }
  
  .hero-content {
      display: none;
  }
  
  .mobile-slider .hero-content-mobile {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 15;
      width: 90%;
      text-align: center;
      color: white;
  }
  
  .hero-image {
      width: 100%;
      position: relative;
      top: auto;
      left: auto;
      transform: none;
      order: 1;
      overflow: visible;
      border-radius: 20px;
      display: flex;
      justify-content: center;
  }
  
  .hero-image img {
      display: none;
  }
  
  .mobile-slider {
      display: block !important;
      width: 350px !important;
      height: 600px !important;
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      margin: 0 auto;
  }
  
  .mobile-slider::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.3);
      z-index: 5;
      border-radius: 20px;
  }
  
 .mobile-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  animation: slideRightToLeft 6s infinite;
  opacity: 0;
  background-size: cover;
  background-position: center;
}

.mobile-slide:nth-child(1) {
  background-image: url('https://images.unsplash.com/photo-1469334031218-e382a71b716b?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.mobile-slide:nth-child(2) {
  background-image: url('https://images.unsplash.com/photo-1445205170230-053b83016050?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.mobile-slide img {
  display: none !important;
}
  
  .mobile-slide:nth-child(1) {
      animation-delay: 0s;
      z-index: 2;
  }
  
  .mobile-slide:nth-child(2) {
      animation-delay: 3s;
      z-index: 1;
  }
  
  .hero-title {
      font-size: 2rem;
      color: #ffffff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      line-height: 1.2;
      text-align: center;
  }
  
  .hero-subtitle {
      color: #ffffff;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }
  
  .hero-buttons-mobile-container {
      display: none;
  }
  
  .hero-buttons-mobile-container .btn {
      flex: 1;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      padding: 0 8px;
      margin: 0;
      box-sizing: border-box;
      white-space: nowrap;
      min-width: 0;
      border-radius: 0;
      font-weight: 300;
  }
  
  .hero-buttons .btn-primary {
      background: rgba(255, 255, 255, 0.2);
      color: white;
      border: 1px solid white;
  }
  
  .hero-buttons .btn-primary:hover {
      background: white;
      color: #465e59;
      border-color: white;
  }
  
  .hero-buttons .btn-secondary {
      background: transparent;
      color: white;
      border: 1px solid white;
  }
  
  .hero-buttons .btn-secondary:hover {
      background: white;
      color: #465e59;
  }

  @keyframes slideRightToLeft {
      0% { opacity: 1; transform: translateX(0); }
      45% { opacity: 1; transform: translateX(0); }
      50% { opacity: 0; transform: translateX(-100%); }
      95% { opacity: 0; transform: translateX(100%); }
      100% { opacity: 1; transform: translateX(0); }
  }
  
  .section-header {
      flex-direction: column;
      gap: 1rem;
  }
  
  .bestsellers {
      margin-top: -215px !important;
      padding-top: 20px !important;
      position: relative !important;
      z-index: 100 !important;
      background: white !important;
      padding-left: 1rem !important;
      padding-right: 1rem !important;
      overflow-x: hidden !important;
  }
  
  .tree-content {
      flex-direction: column;
      gap: 2rem;
  }
  
  .stars-buttons {
      flex-direction: row;
      align-items: center;
  }
  
  .newsletter-form {
      flex-direction: column;
      gap: 1rem;
      padding: 0 1rem;
  }
  
  .newsletter-form input {
      padding: 16px 20px;
      font-size: 16px;
      border-radius: 0;
  }
  
  .newsletter-form button {
      padding: 16px 20px;
      font-size: 16px;
      border-radius: 0;
      font-weight: 300;
  }
  
  .footer-bottom {
      flex-direction: column;
      gap: 1.5rem;
      text-align: center;
      padding-top: 2rem;
  }
  
  .footer-content {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      text-align: center;
  }
  
  .footer-section {
      margin-bottom: 1rem;
  }
  
  .payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
  }

  .payment-methods i {
      font-size: 1.2rem;
      margin: 0 0.5rem;
  }

  .payment-methods img {
      height: 1.2rem !important;
      width: auto !important;
      margin: 0 0.5rem !important;
  }
  
  .cart-sidebar {
      width: 100%;
      right: -100%;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.product-card {
  animation: fadeInUp 0.6s ease forwards;
}

/* Product Detail Page */
.product-detail {
  padding: 120px 0 80px;
}

.product-detail-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  margin-bottom: 6rem;
}

.product-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 0;
  cursor: zoom-in;
}

.thumbnail-images {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
}

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 0;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.thumbnail.active {
  border-color: #465e59;
}

.product-details h1 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #465e59;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'EB Garamond', serif;
}

.product-price {
  font-size: 2rem;
  font-weight: 300;
  color: #465e59;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.product-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 2rem;
  font-weight: 300;
}

.size-selector {
  margin-bottom: 2rem;
}

.size-selector h3 {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #465e59;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'EB Garamond', serif;
}

.size-options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.size-option {
  padding: 12px 20px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.size-option:hover,
.size-option.active {
  border-color: #465e59;
  background: #465e59;
  color: white;
}

.color-selector {
  margin-bottom: 2rem;
}

.color-selector h3 {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #465e59;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'EB Garamond', serif;
}

.color-options {
      flex-wrap: wrap;
      gap: 0.5rem;
      max-width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
  }
  
  .color-option {
      flex-shrink: 0;
  }

.color-option {
  width: 25px;
  height: 25px;
  border-radius: 0;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.color-option.active {
  border-color: #465e59;
  transform: scale(1.1);
  box-shadow: 0 0 0 1px #465e59;
}

.color-option:hover {
  border-color: #999;
}

.quantity-selector {
  margin-bottom: 2rem;
}

.quantity-selector h3 {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #465e59;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'EB Garamond', serif;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quantity-input {
  width: 80px;
  padding: 12px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 300;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.action-buttons .btn {
  flex: 1;
  padding: 16px 32px;
  font-size: 1rem;
}

.product-info-tabs {
  margin-top: 6rem;
}

.tab-buttons {
  display: flex;
  border-bottom: 1px solid #eee;
  margin-bottom: 3rem;
}

.tab-button {
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 300;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #666;
  font-family: 'EB Garamond', serif;
}

.tab-button.active {
  color: #465e59;
  border-bottom-color: #465e59;
}

.tab-content {
  display: none;
  padding: 2rem 0;
}

.tab-content.active {
  display: block;
}

.related-products {
  padding: 120px 0;
  background: #f8f9fa;
}

.related-products h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 300;
  color: #465e59;
  margin-bottom: 4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'EB Garamond', serif;
}

/* Product Modal */
.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(0px);
  padding: 20px;
  box-sizing: border-box;
}

.product-modal.show {
  background: rgba(0, 0, 0, 0.8);
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(5px);
}

.product-modal-content {
  background: white;
  border-radius: 0;
  max-width: 1000px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-modal.show .product-modal-content {
  transform: translateX(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 10001;
  transition: background 0.3s ease;
}

.modal-close i {
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  display: inline-block !important;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.2);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem;
}

.product-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 0;
}

.thumbnail-images {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
}

.thumbnail {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 0;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
  flex-shrink: 0;
}

.thumbnail.active {
  border-color: #465e59;
}

.product-details h1 {
  font-size: 2rem;
  font-weight: 300;
  color: #465e59;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'EB Garamond', serif;
}

.modal-product-price {
  font-size: 1.5rem;
  font-weight: 300;
  color: #465e59;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.modal-product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.modal-product-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 2rem;
  font-weight: 300;
}

.size-selector {
  margin-bottom: 1.5rem;
}

.size-selector h3 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  color: #465e59;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'EB Garamond', serif;
}

.size-options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
}

.size-option {
  padding: 10px 16px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.size-option:hover,
.size-option.active {
  border-color: #465e59;
  background: #465e59;
  color: white;
}

.color-selector {
  margin-bottom: 1.5rem;
}

.color-selector h3 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  color: #465e59;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'EB Garamond', serif;
}

.color-options {
  display: flex;
  gap: 0.5rem;
}

.color-option {
  width: 25px;
  height: 25px;
  border-radius: 0;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.color-option.active {
  border-color: #465e59;
  transform: scale(1.1);
}

.quantity-selector {
  margin-bottom: 2rem;
}

.quantity-selector h3 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  color: #465e59;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'EB Garamond', serif;
}

.modal-quantity-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quantity-input {
  width: 60px;
  padding: 8px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 300;
}

.action-buttons {
  display: flex;
  gap: 1rem;
}

.action-buttons .btn {
  flex: 1;
  padding: 16px 24px;
  font-size: 1rem;
}

.product-tabs {
  border-top: 1px solid #eee;
  padding: 3rem;
}

.tab-buttons {
  display: flex;
  border-bottom: 1px solid #eee;
  margin-bottom: 2rem;
}

.tab-button {
  padding: 1rem 2rem;
  background: none;
  border: none;
  font-size: 0.9rem;
  font-weight: 300;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #666;
  font-family: 'EB Garamond', serif;
}

.tab-button.active {
  color: #465e59;
  border-bottom-color: #465e59;
}

.tab-content {
  display: none;
  padding: 1rem 0;
}

.tab-content.active {
  display: block;
}

.tab-content h4 {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #465e59;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'EB Garamond', serif;
}

.tab-content ul {
  list-style-position: inside;
  color: #666;
}

.tab-content li {
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.tab-content p {
  font-weight: 300;
  line-height: 1.7;
  color: #666;
}

/* Mobile responsiveness for modal */
@media (max-width: 768px) {
  .product-modal {
      padding: 0;
      align-items: flex-start;
      overflow-x: hidden;
  }
  
  .product-modal-content {
      width: 100vw;
      max-width: 100vw;
      height: 100vh;
      max-height: 100vh;
      margin: 0;
      border-radius: 0;
      padding-top: 60px;
      padding-bottom: 60px;
      overflow-x: hidden;
      overflow-y: auto;
      box-sizing: border-box;
      -webkit-overflow-scrolling: touch;
  }
  
  .product-detail-grid {
      grid-template-columns: 1fr;
      padding: 1rem;
      gap: 1.5rem;
      padding-top: 0;
      width: 100%;
      overflow-x: hidden;
      box-sizing: border-box;
      max-width: 100vw;
  }
  
  .main-image {
      height: 300px;
      width: 100%;
      max-width: 100%;
  }
  
  .product-details h1 {
      font-size: 1.5rem;
      word-wrap: break-word;
      overflow-wrap: break-word;
      max-width: 100%;
      line-height: 1.3;
  }
  
  .product-details {
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      padding: 0;
  }
  
  .modal-product-price {
      font-size: 1.3rem;
  }
  
  .action-buttons {
      flex-direction: column;
      gap: 0.8rem;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      padding: 0;
  }
  
  .tab-buttons {
      display: flex;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      gap: 0;
      border-bottom: 1px solid #eee;
      margin-bottom: 2rem;
      scrollbar-width: none;
      -ms-overflow-style: none;
  }
  
  .tab-buttons::-webkit-scrollbar {
      display: none;
  }
  
  .tab-button {
      padding: 1rem 1.5rem;
      font-size: 0.8rem;
      flex-shrink: 0;
      min-width: 120px;
      white-space: nowrap;
      text-align: center;
      border-right: 1px solid #eee;
  }
  
  .tab-button:last-child {
      border-right: none;
  }
  
  .thumbnail-images {
      justify-content: flex-start;
      overflow-x: auto;
      width: 100%;
  }
  
  .modal-close {
      top: 15px;
      right: 15px;
      width: 35px;
      height: 35px;
      position: fixed;
      z-index: 10002;
  }
  
  .product-tabs {
      padding: 1.5rem 1rem;
      width: 100%;
      overflow-x: hidden;
  }
  
  .color-options {
      max-width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      display: flex;
      gap: 0.5rem;
      padding-bottom: 0.5rem;
      margin-bottom: 1rem;
  }
  
  .color-option {
      flex-shrink: 0;
      min-width: 25px;
      width: 25px;
      height: 25px;
  }
}

/* Accessibility */
.btn:focus,
.nav-link:focus,
input:focus {
  outline: 2px solid #465e59;
  outline-offset: 2px;
}

/* Loader Styles */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #465e59;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-container {
  text-align: center;
}

.loader-logo {
  width: 120px;
  height: auto;
  animation: logoBreathe 2s ease-in-out infinite;
  margin-bottom: 40px;
  filter: brightness(0) invert(1);
}

.loader-bar {
  width: 240px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0;
  overflow: hidden;
  margin: 0 auto;
}

.loader-progress {
  height: 100%;
  background: white;
  border-radius: 0;
  animation: loadProgress 2s ease-in-out infinite;
}

@keyframes logoBreathe {
  0%, 100% { 
      transform: scale(1);
      opacity: 0.8;
  }
  50% { 
      transform: scale(1.1);
      opacity: 1;
  }
}

@keyframes loadProgress {
  0% {
      width: 0%;
      transform: translateX(-100%);
  }
  50% {
      width: 100%;
      transform: translateX(0%);
  }
  100% {
      width: 100%;
      transform: translateX(100%);
  }
}

/* Skeleton Loading Styles */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
  0% {
      background-position: 200% 0;
  }
  100% {
      background-position: -200% 0;
  }
}

.skeleton-card {
  background: white;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.skeleton-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

.skeleton-content {
  padding: 2rem 1.5rem;
  background: #fafafa;
}

.skeleton-title {
  height: 24px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 0;
  margin-bottom: 0.8rem;
  width: 80%;
}

.skeleton-description {
  height: 16px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 0;
  margin-bottom: 1rem;
  width: 60%;
}

.skeleton-price {
  height: 20px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 0;
  margin-bottom: 1rem;
  width: 40%;
}

.skeleton-colors {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.skeleton-color {
  width: 20px;
  height: 20px;
  border-radius: 0;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

.skeleton-rating {
  height: 16px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 0;
  margin-bottom: 1rem;
  width: 50%;
}

.skeleton-buttons {
  display: flex;
  gap: 0.5rem;
}

.skeleton-button {
  flex: 1;
  height: 48px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 0;
}

.skeleton-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.skeleton-section-title {
  height: 48px;
  width: 300px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 0;
}

.skeleton-filters {
  display: flex;
  gap: 1rem;
}

.skeleton-filter {
  height: 36px;
  width: 100px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 0;
}

/* Tree Modal */
.tree-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 10000;
  display: none;
}

.tree-modal.show {
  display: block;
}

.tree-modal-content {
  width: 100%;
  height: 100%;
  position: relative;
}

.tree-modal-back {
  position: fixed;
  top: 2rem;
  left: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(70, 94, 89, 0.9);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.tree-modal-back:hover {
  background: rgba(70, 94, 89, 1);
  transform: scale(1.1);
}

/* Print Styles */
@media print {
  .header,
  .cart-sidebar,
  .cart-overlay,
  .loader-overlay {
      display: none;
  }
}

/* Hide scrollbars but keep functionality */
* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  display: none;
}

.product-modal-content::-webkit-scrollbar {
  display: none;
}

.cart-items::-webkit-scrollbar {
  display: none;
}

.thumbnail-images::-webkit-scrollbar {
  display: none;
}

/* Image viewer styles */
.main-image-container {
  position: relative;
  cursor: pointer;
}

.image-counter {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 2px 4px;
  border-radius: 0;
  font-size: 0.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.image-viewer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.image-viewer.show {
  opacity: 1;
  visibility: visible;
}

.image-viewer-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-viewer img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.image-viewer-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: white;
  z-index: 10001;
  transition: background 0.3s ease;
}

.image-viewer-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.image-viewer-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  color: white;
  transition: background 0.3s ease;
}

.image-viewer-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.image-viewer-prev {
  left: 30px;
}

.image-viewer-next {
  right: 30px;
}

.image-viewer-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 0;
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* Auth Modal */
.auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(0px);
  padding: 20px;
  box-sizing: border-box;
}

.auth-modal.show {
  background: rgba(0, 0, 0, 0.8);
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(5px);
}

.auth-modal-content {
  background: white;
  border-radius: 0;
  max-width: 480px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(-50px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.auth-modal.show .auth-modal-content {
  transform: translateY(0);
}

.auth-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 10001;
  transition: background 0.3s ease;
}

.auth-modal-close:hover {
  background: rgba(0, 0, 0, 0.2);
}

.auth-form {
  padding: 4rem 3rem 3rem;
}

.auth-form.hidden {
  display: none;
}

.auth-form h2 {
  font-size: 2rem;
  font-weight: 300;
  color: #465e59;
  margin-bottom: 0.5rem;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'EB Garamond', serif;
}

.auth-form > p {
  color: #666;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 300;
}

.form-group {
  margin-bottom: 2rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-group input {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  outline: none;
  font-weight: 300;
  background: #fafafa;
}

.form-group input:focus {
  border-color: #465e59;
  background: white;
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 400;
  color: #465e59;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid rgba(70, 94, 89, 0.1);
  border-radius: 0;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  background: #fafafa;
  font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #465e59;
  background: white;
  transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
  transition: color 0.3s ease;
  font-weight: 300;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
  color: #bbb;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row .form-group {
  flex: 1;
}

@media (max-width: 768px) {
  .form-group {
      margin-bottom: 1.5rem;
  }
  
  .form-group input,
  .form-group textarea {
      padding: 18px 20px;
      font-size: 16px;
      border-radius: 0;
      -webkit-appearance: none;
      -webkit-border-radius: 0;
  }
  
  .form-row {
      flex-direction: column;
      gap: 1rem;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
      outline: none;
      -webkit-tap-highlight-color: rgba(0,0,0,0);
  }
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.9rem;
  color: #666;
  font-weight: 300;
}

.checkbox-label input {
  margin-right: 0.5rem;
  width: auto;
}

.forgot-password {
  color: #465e59;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.forgot-password:hover {
  color: #666;
}

.auth-divider {
  position: relative;
  text-align: center;
  margin: 3rem 0;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #eee;
}

.auth-divider span {
  background: white;
  color: #666;
  padding: 0 1rem;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.social-login {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 16px 20px;
  border: 1px solid #ddd;
  background: white;
  color: #465e59;
  border-radius: 0;
  font-weight: 300;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-social:hover {
  border-color: #465e59;
  background: #fafafa;
}

.btn-google:hover {
  border-color: #db4437;
  color: #db4437;
}

.btn-facebook:hover {
  border-color: #4267B2;
  color: #4267B2;
}

.auth-switch {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  font-weight: 300;
}

.auth-switch a {
  color: #465e59;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
  letter-spacing: 0.05em;
}

.auth-switch a:hover {
  color: #666;
}

/* Mobile responsiveness for auth modal */
@media (max-width: 768px) {
  .auth-modal {
      padding: 0;
      align-items: flex-start;
  }
  
  .auth-modal-content {
      width: 100%;
      max-height: 100vh;
      margin: 0;
      border-radius: 0;
      padding-top: 60px;
  }
  
  .auth-form {
      padding: 2rem 1.5rem 1.5rem;
  }
  
  .form-row {
      flex-direction: column;
      gap: 1rem;
  }
  
  .form-options {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
  }
  
  .auth-modal-close {
      top: 15px;
      right: 15px;
      width: 35px;
      height: 35px;
      position: fixed;
      z-index: 10002;
  }
}

/* Mobile specific store modal styles */
.mobile-card {
  background: white !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  box-shadow: none !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.mobile-card .store-product-image {
      width: 100% !important;
      height: 200px !important;
      object-fit: cover !important;
  }
  
  .store-product-card {
      width: 140px !important;
      flex-shrink: 0 !important;
  }

.mobile-card .store-product-info {
  padding: 0.8rem !important;
  background: #fafafa !important;
}

.mobile-card .store-product-name {
  font-size: 0.9rem !important;
  margin-bottom: 0.3rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
}

.mobile-card .store-product-description {
  font-size: 0.7rem !important;
  margin-bottom: 0.5rem !important;
  -webkit-line-clamp: 2 !important;
  height: calc(1.2em * 2) !important;
}

.mobile-card .store-product-price {
  font-size: 0.8rem !important;
  margin-bottom: 0.5rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.05em !important;
}

.mobile-buttons {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.3rem !important;
}

.mobile-btn {
  padding: 8px !important;
  font-size: 0.7rem !important;
  width: 100% !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  font-weight: 300 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

@media (max-width: 768px) {
  .store-products-grid {
      grid-template-columns: 1fr 1fr !important;
      gap: 0.8rem !important;
  }
}

/* Store Cart Icon */
.store-cart-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #465e59;
  color: white;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 10002;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
  cursor: pointer;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transform: translateY(150px);
  opacity: 0;
}

.store-cart-icon.show-initial {
  transform: translateY(0);
  opacity: 1;
}

.store-cart-icon::before {
  content: "\f290";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.store-cart-icon:hover {
  background: #333;
  transform: scale(1.05);
}

.store-cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ab8b7e;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.7rem;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  line-height: 1;
}

.store-cart-count.show {
  display: flex;
}

/* Store Cart Sidebar */
.store-cart-sidebar {
  position: absolute;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: white;
  z-index: 10005;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.store-cart-sidebar.open {
  right: -20px;
}

.store-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #eee;
  background: #f8f9fa;
}

.store-cart-header h3 {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #465e59;
  font-family: 'EB Garamond', serif;
}

.close-store-cart {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
}

.close-store-cart:hover {
  color: #465e59;
}

.store-cart-items {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
}

.store-cart-item {
  display: flex;
  gap: 0.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
}

.store-cart-item-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 0;
}

.store-cart-item-info {
  flex: 1;
}

.store-cart-item-name {
  font-weight: 400;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #465e59;
  font-family: 'EB Garamond', serif;
}

.store-cart-item-price {
  color: #465e59;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.store-cart-item-size,
.store-cart-item-color {
  font-size: 0.7rem;
  color: #666;
  margin-bottom: 0.2rem;
  font-weight: 300;
}

.store-cart-item-color .color-dot {
  width: 10px;
  height: 10px;
  border-radius: 0;
  border: 1px solid #ddd;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.2rem;
}

.store-quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.store-quantity-btn {
  width: 25px;
  height: 25px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 300;
  transition: all 0.3s ease;
}

.store-quantity-btn:hover {
  border-color: #465e59;
  background: #465e59;
  color: white;
}

.store-cart-footer {
  padding: 1rem;
  border-top: 1px solid #eee;
}

.store-cart-total {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #465e59;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .store-cart-icon {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 45px;
      height: 45px;
      padding: 10px;
      font-size: 1rem;
  }
  
  .store-cart-count {
      top: -6px;
      right: -6px;
      font-size: 0.6rem;
      width: 18px;
      height: 18px;
  }
  
  .cart-count {
      top: -6px;
      right: -6px;
      font-size: 0.6rem;
      width: 18px;
      height: 18px;
  }
  
  .store-cart-sidebar {
      width: 250px;
      right: -250px;
  }
  
  .store-cart-sidebar.open {
      right: -10px;
  }
}

.store-modal.show {
  background: rgba(0, 0, 0, 0.8);
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
  .store-modal.show {
      background: white;
  }
}

/* Out of Stock and Pre-order Styles */
.no-sizes {
  padding: 10px 16px;
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 0;
  color: #666;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 300;
}

.stock-status,
.store-stock-status,
.modal-stock-status {
  text-align: center;
  padding: 0.5rem;
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 400;
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.out-of-stock {
  background: #fff2f2;
  color: #ab8b7e;
  border: 1px solid #fadbd8;
}

.pre-order-btn,
.store-pre-order {
  background: #f39c12 !important;
  color: white !important;
  border: 1px solid #f39c12 !important;
  flex: 1;
  padding: 12px 16px;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.pre-order-btn:hover,
.store-pre-order:hover {
  background: #fef9e7 !important;
  color: #f39c12 !important;
  transform: translateY(-1px);
}

.btn-warning {
  background: #f39c12;
  color: white;
  border: 1px solid #f39c12;
}

.btn-warning:hover {
  background: #fef9e7;
  color: #f39c12;
  border-color: #f39c12;
}

.store-stock-status {
  font-size: 0.7rem;
  padding: 0.3rem;
  margin-top: 0.3rem;
}

.modal-stock-status {
  margin-top: 1rem;
  padding: 0.8rem;
  font-size: 0.9rem;
}

/* Mobile pre-order button styles */
.mobile-btn.store-pre-order {
  background: #f39c12 !important;
  color: white !important;
  border: 1px solid #f39c12 !important;
}

.mobile-btn.store-pre-order:hover {
  background: #fef9e7 !important;
  color: #f39c12 !important;
}

/* Pre-order cart item styles */
.pre-order-item {
  border-left: 4px solid #f39c12;
  background: #fef9e7;
}

.pre-order-note {
  background: #f39c12;
  color: white;
  padding: 0.3rem 0.5rem;
  border-radius: 0;
  font-size: 0.7rem;
  margin-top: 0.3rem;
  display: inline-block;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Checkout Modal */
.checkout-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(0px);
  padding: 0;
}

.checkout-modal.show {
  background: rgba(0, 0, 0, 0.9);
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(10px);
}

.checkout-modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 0;
  max-width: 520px;
  width: 95%;
  max-height: 85vh;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(100px) scale(0.9);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .checkout-modal {
      padding: 0;
      align-items: flex-end;
  }
  
  .checkout-modal-content {
      width: 100%;
      max-width: 100%;
      height: 92vh;
      max-height: 92vh;
      border-radius: 0;
      margin: 0;
      transform: translateY(100%);
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      background: #ffffff;
      box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
  }
  
  .checkout-modal.show .checkout-modal-content {
      transform: translateY(0);
  }
}

.checkout-content-wrapper {
  display: block;
  padding: 3rem;
  overflow-y: auto;
  flex: 1;
}

@media (max-width: 768px) {
  .checkout-content-wrapper {
      padding: 1.5rem 1.5rem 6rem;
      padding-top: 7rem;
  }
}

.checkout-modal.show .checkout-modal-content {
  transform: translateY(0) scale(1);
}

.checkout-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  z-index: 10001;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #666;
}

.checkout-modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
  color: #465e59;
}

.checkout-step {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.checkout-step.hidden {
  display: none !important;
}

.checkout-step h2 {
  color: #465e59;
  margin-bottom: 2.5rem;
  font-size: 1.75rem;
  font-weight: 300;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'EB Garamond', serif;
}

@media (max-width: 768px) {
  .checkout-step h2 {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      text-align: center;
  }
}

.payment-options {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(70, 94, 89, 0.1);
  border-radius: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
  font-weight: 300;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.payment-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.payment-option:hover::before {
  left: 100%;
}

.payment-option:hover {
  border-color: #465e59;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(70, 94, 89, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}

.payment-option:active {
  transform: translateY(0);
  box-shadow: 0 4px 20px rgba(70, 94, 89, 0.1);
}

.payment-option i {
  font-size: 1.5rem;
  color: #465e59;
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  display: inline-block !important;
}

.order-summary {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  border-radius: 0;
  margin-bottom: 2rem;
  border: 1px solid rgba(70, 94, 89, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.order-summary.hidden {
  display: none !important;
}

@media (max-width: 768px) {
  .order-summary {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      padding: 1.5rem;
      border-radius: 0;
      margin-bottom: 1.5rem;
      border: 1px solid rgba(70, 94, 89, 0.1);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  }
  
  .order-summary h3 {
      font-size: 1.1rem;
      margin-bottom: 1rem;
      text-align: center;
      font-weight: 300;
      color: #465e59;
      letter-spacing: 0.05em;
      text-transform: uppercase;
  }
}

.order-summary h3 {
  color: #465e59;
  margin-bottom: 1.5rem;
  font-weight: 300;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'EB Garamond', serif;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.checkout-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(2px);
}

.checkout-preorder-note {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  color: white;
  padding: 0.3rem 0.6rem;
  border-radius: 0;
  font-size: 0.7rem;
  font-weight: 300;
  margin-top: 0.3rem;
  box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.order-total {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(70, 94, 89, 0.2);
  font-size: 1.3rem;
  text-align: center;
  font-weight: 300;
  color: #465e59;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.checkout-continue-btn {
  width: 100%;
  position: relative;
  z-index: 101;
}

/* Order Received Modal */
.order-received-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(0px);
  padding: 20px;
  box-sizing: border-box;
}

.order-received-modal.show {
  background: rgba(0, 0, 0, 0.8);
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(5px);
}

.order-received-content {
  background: white;
  border-radius: 0;
  padding: 4rem 3rem;
  text-align: center;
  max-width: 560px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.order-received-modal.show .order-received-content {
  transform: scale(1);
}

@media (max-width: 768px) {
  .order-received-modal {
      padding: 0;
      align-items: flex-start;
      justify-content: center;
  }
  
  .order-received-content {
      width: 100%;
      max-width: 100%;
      height: 100vh;
      max-height: 100vh;
      border-radius: 0;
      padding: 80px 20px 30px;
      margin: 0;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      transform: translateY(100%);
  }
  
  .order-received-modal.show .order-received-content {
      transform: translateY(0);
  }
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #28a745;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 2rem;
  animation: successPulse 0.6s ease;
}

@keyframes successPulse {
  0% { transform: scale(0); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.order-received-content h2 {
  color: #465e59;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'EB Garamond', serif;
}

.order-received-content p {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  font-weight: 300;
}

.order-info {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 0;
  margin-bottom: 2rem;
  text-align: left;
}

.order-info p {
  margin-bottom: 0.8rem;
  color: #465e59;
  font-weight: 300;
}

.order-items-list {
  margin: 1rem 0;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 0;
}

.order-items-list h4 {
  margin-bottom: 1rem;
  color: #465e59;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'EB Garamond', serif;
}

.order-item-detail {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #eee;
}

.order-item-detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.btn-primary {
  padding: 20px 32px;
  font-size: 1rem;
  font-weight: 300;
  border-radius: 0;
  background: #465e59;
  border: 1px solid #465e59;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.btn-primary::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;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: #f8f9fa;
  color: #465e59;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  padding: 20px 32px;
  font-size: 1rem;
  font-weight: 300;
  border-radius: 0;
  background: transparent;
  border: 1px solid #465e59;
  color: #465e59;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.btn-secondary:hover {
  background: #465e59;
  color: white;
  transform: translateY(-1px);
}

/* Profile Modal */
.profile-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(0px);
  padding: 20px;
  box-sizing: border-box;
}

.profile-modal.show {
  background: rgba(0, 0, 0, 0.8);
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(5px);
}

.profile-modal-content {
  background: white;
  border-radius: 0;
  max-width: 800px;
  width: 95%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  transform: translateY(-50px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.profile-modal.show .profile-modal-content {
  transform: translateY(0);
}

.profile-modal-header {
  background: linear-gradient(135deg, #465e59 0%, #2c5530 100%);
  color: white;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.profile-modal-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: white;
  transition: background 0.3s ease;
}

.profile-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.profile-modal-header h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'EB Garamond', serif;
}

.profile-modal-body {
  flex: 1;
  display: flex;
  overflow: hidden;
}

.profile-sections {
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
}

.profile-section {
  display: none;
}

.profile-section.active {
  display: block;
}

.profile-avatar {
  text-align: center;
  margin-bottom: 2rem;
}

.avatar-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #465e59 0%, #2c5530 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 3rem;
  color: white;
}

.profile-details {
  text-align: center;
  margin-bottom: 2rem;
}

.profile-details h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #465e59;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'EB Garamond', serif;
}

.profile-details p {
  color: #666;
  font-size: 1rem;
  font-weight: 300;
}

.profile-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: #465e59;
  font-family: 'EB Garamond', serif;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 300;
}

.profile-navigation {
  background: #f8f9fa;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 200px;
  border-left: 1px solid #eee;
}

.profile-nav-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  color: #666;
  text-align: left;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.profile-nav-btn:hover,
.profile-nav-btn.active {
  background: #465e59;
  color: white;
  transform: translateX(5px);
}

.profile-nav-btn.logout-btn:hover {
  background: #e74c3c;
}

.profile-nav-btn i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* Orders Section */
.order-item {
  background: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 0;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.order-item:hover {
  transform: translateX(5px);
  border-color: #465e59;
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.order-id {
  font-weight: 600;
  color: #465e59;
  font-size: 1.1rem;
  font-family: 'EB Garamond', serif;
}

.order-status {
  padding: 0.3rem 0.8rem;
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-pending {
  background: #fff3cd;
  color: #856404;
}

.status-processing {
  background: #d1ecf1;
  color: #0c5460;
}

.status-completed {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-shipped {
    background: #cce5ff;
    color: #004085;
    border: 1px solid #99ccff;
}

.status-delivered {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-customer-received-product {
            background: #28a745;
            color: white;
            border: 1px solid #28a745;
        }

.status-customer-received-product {
    background: #28a745;
    color: white;
    border: 1px solid #28a745;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.order-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: #666;
  font-size: 0.9rem;
}

.order-total {
  font-weight: 600;
  color: #465e59;
  font-size: 1.1rem;
}

.order-items {
  border-top: 1px solid #ddd;
  padding-top: 1rem;
}

.order-item-detail {
  padding: 0.3rem 0;
  color: #666;
  font-size: 0.9rem;
}

.no-orders {
  text-align: center;
  padding: 3rem;
  color: #666;
}

.no-orders i {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #ddd;
}

.no-orders p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Change Password Form */
#change-password-section .form-group {
  margin-bottom: 1.5rem;
}

#change-password-section label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 400;
  color: #465e59;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#change-password-section input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  outline: none;
  font-weight: 300;
}

#change-password-section input:focus {
  border-color: #465e59;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .profile-modal {
      padding: 0;
      align-items: flex-start;
  }
  
  .profile-modal-content {
      width: 100%;
      max-width: 100%;
      height: 100vh;
      max-height: 100vh;
      border-radius: 0;
  }
  
  .profile-modal-header {
      padding: 2rem 1rem;
  }
  
  .profile-modal-close {
      top: 1rem;
      left: 1rem;
  }
  
  .profile-modal-body {
      flex-direction: column;
  }
  
  .profile-navigation {
      order: -1;
      flex-direction: row;
      overflow-x: auto;
      min-width: auto;
      border-left: none;
      border-bottom: 1px solid #eee;
  }
  
  .profile-nav-btn {
      flex-direction: column;
      gap: 0.5rem;
      padding: 1rem;
      min-width: 80px;
      text-align: center;
  }
  
  .profile-nav-btn span {
      font-size: 0.7rem;
  }
  
  .profile-stats {
      gap: 2rem;
  }
  
  .profile-sections {
      padding: 1rem;
  }
  
  .order-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
  }
  
  .order-details {
      flex-direction: column;
      gap: 0.3rem;
  }
}

/* Profile Menu (Legacy - keep for backward compatibility) */
.profile-menu {
  position: fixed;
  background: white;
  border-radius: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  display: none;
  min-width: 220px;
  border: 1px solid #eee;
}

.profile-menu-content {
  padding: 1.5rem;
}

.profile-logo {
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}

.profile-welcome {
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}

.profile-welcome h3 {
  margin: 0;
  color: #465e59;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'EB Garamond', serif;
}

.mobile-only {
  display: none;
}

.profile-info {
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
  margin-bottom: 1rem;
}

.profile-info h4 {
  margin: 0 0 0.5rem 0;
  color: #465e59;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'EB Garamond', serif;
}

.profile-info p {
  margin: 0;
  color: #666;
  font-size: 0.8rem;
  font-weight: 300;
}

.profile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.profile-actions button {
  padding: 0.8rem 1.2rem;
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-align: left;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.profile-actions button:hover {
  background: #f8f9fa;
  border-color: #465e59;
  color: #465e59;
}

.profile-actions button:last-child {
  color: #ab8b7e;
  border-color: #ab8b7e;
}

.profile-actions button:last-child:hover {
  background: #ab8b7e;
  color: white;
}

@media (max-width: 768px) {
  .mobile-only {
      display: block;
  }
  
  .profile-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      border-radius: 0;
      max-width: none;
      min-width: none;
  }
  
  .profile-menu-content {
      padding: 3rem 2rem;
      height: 100%;
      display: flex;
      flex-direction: column;
  }
  
  .profile-actions {
      margin-top: auto;
      gap: 1.5rem;
  }
  
  .profile-actions button {
      padding: 1.2rem;
      font-size: 1rem;
      text-align: center;
      border-radius: 0;
  }
  
  .payment-methods {
      flex-direction: column !important;
      align-items: center !important;
  }
  
  .payment-text {
      margin-right: 0 !important;
      margin-bottom: 0.5rem !important;
  }
  
  .payment-icons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
  }
}

/* Mobile responsiveness for checkout */
@media (max-width: 768px) {
  .checkout-modal-close {
      position: fixed;
      top: 1.5rem;
      right: 1.5rem;
      z-index: 10002;
      background: rgba(0, 0, 0, 0.1);
      color: #666;
      width: 40px;
      height: 40px;
      font-size: 1rem;
      border-radius: 0;
      border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .checkout-modal-close:hover {
      background: rgba(0, 0, 0, 0.2);
      color: #465e59;
      transform: scale(1.05);
  }
  
  .payment-option {
      padding: 1.5rem;
      font-size: 1rem;
      border-radius: 0;
      margin-bottom: 0.5rem;
  }
  
  .payment-option:active {
      transform: scale(0.98);
  }
  
  .btn-primary {
      padding: 20px 32px;
      font-size: 1.1rem;
      font-weight: 300;
      border-radius: 0;
      width: 100%;
      position: sticky;
      bottom: 1.5rem;
      margin-top: 2rem;
      z-index: 10;
  }
  
  .btn-primary:active {
      transform: scale(0.98);
  }
  
  .checkout-content-wrapper {
      padding-bottom: 8rem;
  }
}

/* Card input formatting */
#card-number {
  letter-spacing: 2px;
  font-family: 'Courier New', monospace;
  font-weight: 300;
  font-size: 1.1rem;
}

#card-expiry {
  letter-spacing: 1px;
  font-family: 'Courier New', monospace;
  font-weight: 300;
}

#card-cvv {
  letter-spacing: 1px;
  font-family: 'Courier New', monospace;
  font-weight: 300;
}

/* Card form enhancements */
.credit-card-form {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  border-radius: 0;
  margin-bottom: 2rem;
  border: 1px solid rgba(70, 94, 89, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.card-icons {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.card-icon {
  width: 50px;
  height: 30px;
  background: #fff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 0.8rem;
  color: #666;
  border: 1px solid #eee;
  font-weight: 300;
}

.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(40, 167, 69, 0.1);
  border-radius: 0;
  border: 1px solid rgba(40, 167, 69, 0.2);
  font-size: 0.85rem;
  color: #28a745;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.security-badge i {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .credit-card-form {
      padding: 1.5rem;
      margin-bottom: 1.5rem;
  }
  
  .card-icons {
      flex-wrap: wrap;
      gap: 1rem;
  }
  
  .card-icon {
      width: 55px;
      height: 32px;
  }
}

/* Search Results Dropdown */
.search-results-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #eee;
    border-top: none;
    max-height: 400px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-result-item:hover {
    background: #f8f9fa;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 0;
}

.search-result-info {
    flex: 1;
}

.search-result-name {
    font-weight: 400;
    margin-bottom: 0.3rem;
    color: #465e59;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.search-result-price {
    color: #465e59;
    font-weight: 300;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.search-result-category {
    color: #666;
    font-size: 0.8rem;
    text-transform: capitalize;
    font-weight: 300;
}

.search-no-results {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Mobile responsiveness for search results */
@media (max-width: 768px) {
    .search-container {
        padding: 0 20px;
    }
    
    .search-results-container {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        bottom: auto;
        max-height: 50vh;
        border: 1px solid #eee;
        border-top: none;
        z-index: 10000;
    }
    
    .search-result-item {
        padding: 1.2rem;
    }
    
    .search-result-image {
        width: 50px;
        height: 50px;
    }
    
    .search-result-name {
        font-size: 0.85rem;
    }
    
    .search-result-price {
        font-size: 0.85rem;
    }
}

* {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

button, input, textarea, select {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}