/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f0e8;
  font-size: 16px;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

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

/* Header Navigation - Rhode Skin Style */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #f5f0e8;
  z-index: 1000;
  height: 110px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.main-navigation {
  height: 100%;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
}

@media (max-width: 1200px) {
  .nav-container {
    justify-content: space-between;
    padding: 0 20px;
  }
  
  .nav-menu {
    gap: 25px;
  }
  
  .nav-menu li a {
    font-size: 11px;
  }
  
  .nav-secondary {
    gap: 15px;
  }
}

.logo-link {
  display: block;
  transition: opacity 0.3s ease;
}

.logo-link:hover {
  opacity: 0.8;
  text-decoration: none;
}

.site-logo {
  height: 100px;
  width: auto;
  max-width: none;
  filter: none; /* Original logo color for light header */
  transition: opacity 0.3s ease;
}

/* Rhode-style centered navigation */
.nav-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 60px;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.site-branding {
  grid-column: 2;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.nav-left {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}

.nav-right {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-secondary {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-secondary a {
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.2px;
  transition: color 0.3s ease;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  line-height: 1.2;
}

.nav-secondary a:hover {
  color: #8B4513;
  text-decoration: none;
}

.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #8B4513;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
}

.nav-menu li a {
  font-weight: 400;
  color: #1a1a1a;
  font-size: 14px;
  padding: 12px 0;
  transition: color 0.3s ease;
  font-family: 'Inter', sans-serif;
  text-transform: none;
  letter-spacing: 0.3px;
  white-space: nowrap;
  line-height: 1.2;
}

.nav-menu li a:hover {
  color: #8B4513;
  text-decoration: none;
}

.nav-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-menu-toggle span {
  width: 25px;
  height: 2px;
  background: #333333;
  transition: all 0.3s ease;
}

/* Mobile Navigation - Rhode Style */
@media (max-width: 1024px) {
  .nav-container {
    grid-template-columns: auto 1fr auto;
    gap: 15px;
  }
  
  .nav-left, .nav-right {
    display: none;
  }
  
  .site-branding {
    grid-column: 2;
    justify-self: center;
  }
  
  .nav-menu-toggle {
    grid-column: 1;
    display: flex;
    z-index: 3;
  }
  
  .nav-secondary {
    grid-column: 3;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #f5f0e8;
    flex-direction: column;
    gap: 0;
    display: none;
    padding: 20px;
    border-top: 1px solid #e0d5c7;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  }
  
  .nav-secondary {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(51, 51, 51, 0.1);
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* Main Content */
.site-main {
  margin-top: 110px;
}

/* Hero Section - Exact Match */
.hero-section {
  position: relative;
  background: #f5f0e8;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 40px 0;
  overflow: hidden;
  isolation: isolate;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  min-height: 500px;
  will-change: transform, opacity;
}

.hero-text {
  max-width: 500px;
}

.hero-title {
  font-size: 54px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 40px;
  color: #333333;
  font-family: 'Inter', sans-serif;
}

.hero-accent {
  color: #8B4513;
  font-weight: 400;
}

.hero-button {
  display: inline-block;
  border: 2px solid #333333;
  color: #333333;
  padding: 15px 35px;
  font-weight: 400;
  font-size: 14px;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-button:hover {
  background: #333333;
  color: #f5f0e8;
  text-decoration: none;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
}

.hero-shape {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 350px;
  background: #8B4513;
  border-radius: 60% 40% 70% 30% / 40% 50% 60% 50%;
  opacity: 0.8;
  z-index: 1;
  will-change: opacity;
  pointer-events: none;
}

.hero-products {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  max-width: 450px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 44px;
  }
  
  .hero-visual {
    height: 400px;
  }
  
  .hero-shape {
    width: 300px;
    height: 250px;
  }
  
  .hero-image {
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-visual {
    height: 300px;
  }
  
  .hero-shape {
    width: 250px;
    height: 200px;
  }
  
  .hero-image {
    max-width: 280px;
  }
}

/* Product Introduction - Exact Match */
.product-intro {
  position: relative;
  padding: 80px 0;
  text-align: center;
  background: #f5f0e8;
  z-index: 2;
}

.section-title {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #000000;
  font-family: 'Inter', sans-serif;
}

.section-subtitle {
  font-size: 20px;
  font-weight: 300;
  color: #333333;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
  font-family: 'Inter', sans-serif;
}

.intro-images {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.intro-images img {
  max-width: 300px;
  height: auto;
}

.story-link {
  font-weight: 400;
  color: #000000;
  text-decoration: underline;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
}

/* Best Sellers Section - Exact Match */
.best-sellers {
  padding: 80px 0;
  background: #f5f0e8;
}

.best-sellers .section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  color: #333;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

/* Shop Collection Section */
.shop-collection {
  padding: 80px 0;
  background: #f8f5f1;
  text-align: center;
}

.shop-collection .section-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.shop-collection .section-description {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.shop-cta {
  margin: 40px 0;
}

.shop-collection-btn {
  display: inline-block;
  background: #8B4513;
  color: white;
  padding: 16px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.shop-collection-btn:hover {
  background: #6B3410;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

.section-link {
  text-align: center;
  margin-bottom: 30px;
}

.section-link a {
  font-weight: 400;
  color: #000000;
  text-decoration: underline;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
}

/* Product Tabs - Exact Match */
.product-tabs {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab {
  cursor: pointer;
  padding: 8px 0;
  font-weight: 400;
  color: #666666;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
}

.tab:hover,
.tab.active {
  color: #000000;
  border-bottom-color: #000000;
}

/* Products Grid - Exact Match */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.product-item {
  text-align: center;
  background: #f5f0e8;
  padding: 15px;
  transition: all 0.3s ease;
}

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

.product-item img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.product-title {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
  min-height: 40px;
  line-height: 1.3;
  font-family: 'Inter', sans-serif;
}

.product-title a {
  color: #000000;
  text-decoration: none;
}

.product-title a:hover {
  text-decoration: underline;
}

.price {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

.add-to-cart {
  display: inline-block;
  background: #000000;
  color: #ffffff;
  padding: 8px 16px;
  font-weight: 400;
  font-size: 14px;
  border-radius: 2px;
  transition: opacity 0.3s ease;
  text-decoration: none;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.add-to-cart:hover {
  opacity: 0.8;
  text-decoration: none;
}

.buy-now {
  display: block;
  font-size: 12px;
  color: #666666;
  margin-top: 5px;
  font-family: 'Inter', sans-serif;
}


/* Category Content */
.category-content {
  display: none;
}

.category-content.active {
  display: block;
}

/* Create Section */
.create-section {
  padding: 80px 0;
  text-align: center;
}

.lifestyle-images {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.lifestyle-images img {
  max-width: 400px;
  height: auto;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  text-align: center;
}

.feature-text {
  font-size: 24px;
  font-weight: 300;
  color: #333;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.feature-image {
  margin-top: 40px;
}

.feature-image img {
  max-width: 500px;
  height: auto;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  text-align: center;
}

.faq-image {
  margin-top: 40px;
}

.faq-image img {
  max-width: 600px;
  height: auto;
}

/* Discover Section */
.discover-section {
  padding: 80px 0;
  text-align: center;
}

/* New Products Section */
.new-products-section {
  padding: 80px 0;
  text-align: center;
}

.new-product-image img {
  max-width: 500px;
  height: auto;
  margin-bottom: 40px;
}

.new-product-text {
  font-size: 20px;
  font-weight: 300;
  color: #333;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Video Section */
.video-section {
  padding: 60px 0;
  text-align: center;
}

.video-title {
  font-size: 18px;
  margin-bottom: 20px;
  color: #666;
}

.video-placeholder img {
  max-width: 300px;
  height: auto;
  border-radius: 8px;
}

/* Powder Section */
.powder-section {
  padding: 80px 0;
  text-align: center;
}

.powder-image img {
  max-width: 500px;
  height: auto;
  margin-bottom: 40px;
}

.powder-text {
  font-size: 20px;
  font-weight: 300;
  color: #333;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Back to Top */
.back-to-top {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #f0f0f0;
}

.back-to-top a {
  color: #666;
  font-size: 14px;
  text-decoration: underline;
}

/* Language Footer - Exact Match */
.language-footer {
  background: #f5f5f5;
  padding: 40px 0;
  text-align: center;
}

.language-selector {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.lang-option {
  padding: 8px 12px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  color: #666666;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
  background: #ffffff;
}

.lang-option:hover,
.lang-option.active {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
  text-decoration: none;
}

/* Responsive Design - Exact Match */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .intro-images,
  .lifestyle-images {
    flex-direction: column;
    align-items: center;
  }
  
  .product-tabs {
    gap: 30px;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
  }
  
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }
  
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .product-tabs {
    gap: 20px;
  }
  
  .container {
    padding: 0 15px;
  }
}

/* Shopping Cart Section */
.cart-section {
  padding: 100px 0 60px;
  background: #f5f0e8;
  min-height: 600px;
}

.cart-section h2 {
  font-size: 36px;
  font-weight: 300;
  color: #333333;
  text-align: center;
  margin-bottom: 40px;
  font-family: 'Inter', sans-serif;
}

.cart-content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  align-items: start;
}

.cart-items {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 4px;
}

.cart-item-info h4 {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  margin: 0 0 5px 0;
}

.cart-item-price {
  font-size: 18px;
  font-weight: 600;
  color: #8B4513;
}

.cart-item-remove {
  background: #ff4444;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  transition: background 0.3s ease;
}

.cart-item-remove:hover {
  background: #cc3333;
}

.cart-summary {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 80px;
}

.cart-total {
  font-size: 24px;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
  padding: 20px 0;
  border-top: 2px solid #8B4513;
  border-bottom: 2px solid #8B4513;
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.clear-cart-btn, .checkout-btn {
  padding: 15px;
  border: none;
  border-radius: 25px;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.clear-cart-btn {
  background: transparent;
  color: #666;
  border: 2px solid #666;
}

.clear-cart-btn:hover {
  background: #666;
  color: white;
}

.checkout-btn {
  background: #8B4513;
  color: white;
  border: 2px solid #8B4513;
}

.checkout-btn:hover {
  background: #654321;
  border-color: #654321;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: #666;
  font-size: 18px;
}

.cart-empty-icon {
  font-size: 48px;
  margin-bottom: 20px;
  opacity: 0.5;
}

/* Responsive Cart */
@media (max-width: 1024px) {
  .cart-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cart-summary {
    position: static;
  }
}

@media (max-width: 768px) {
  .cart-item {
    grid-template-columns: 60px 1fr auto;
    gap: 15px;
  }
  
  .cart-item img {
    width: 60px;
    height: 60px;
  }
  
  .cart-item-info h4 {
    font-size: 14px;
  }
  
  .cart-actions {
    gap: 10px;
  }
}

/* Checkout Modal Styles */
.checkout-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 20000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.checkout-modal {
  background: white;
  padding: 40px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  position: relative;
}

.checkout-modal h3 {
  margin: 0 0 20px 0;
  font-family: 'Inter', sans-serif;
  color: #333;
  font-size: 24px;
  font-weight: 400;
}

.checkout-modal p {
  margin-bottom: 20px;
  color: #666;
  font-family: 'Inter', sans-serif;
}

.checkout-order-summary {
  margin-bottom: 30px;
  padding: 20px;
  background: #f5f0e8;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
}

.checkout-order-summary strong {
  color: #333;
  font-size: 18px;
}

.checkout-order-summary small {
  color: #666;
  display: block;
  margin-top: 5px;
}

.checkout-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.checkout-btn-cancel,
.checkout-btn-confirm {
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.checkout-btn-cancel {
  border: 2px solid #666;
  background: transparent;
  color: #666;
}

.checkout-btn-cancel:hover {
  background: #666;
  color: white;
}

.checkout-btn-confirm {
  background: #8B4513;
  color: white;
  border: none;
}

.checkout-btn-confirm:hover {
  background: #654321;
}

/* Shop Page Styles */
.shop-header {
  padding: 100px 0 60px 0;
  text-align: center;
  background: #f5f0e8;
}

.shop-title {
  font-size: 3rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.shop-subtitle {
  font-size: 1.1rem;
  color: #666;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* Product Categories */
.product-categories {
  padding: 40px 0;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.category-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.category-btn {
  background: transparent;
  border: 2px solid #8B4513;
  color: #8B4513;
  padding: 10px 20px;
  border-radius: 25px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-btn:hover,
.category-btn.active {
  background: #8B4513;
  color: #fff;
}

/* Products Grid */
.products-section {
  padding: 60px 0;
  background: #f5f0e8;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  padding: 10px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 20px;
  text-align: center;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
}

.product-rating {
  color: #ffa500;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 600;
  color: #8B4513;
  margin-bottom: 15px;
}

.add-to-cart-btn {
  background: #8B4513;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
}

.add-to-cart-btn:hover {
  background: #a0522d;
  transform: translateY(-2px);
}

/* Cart Modal */
.cart-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.cart-content {
  background: #fff;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid #e5e5e5;
}

.cart-header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #333;
}

.close-cart {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-items {
  padding: 20px 25px;
  min-height: 200px;
}

.empty-cart {
  text-align: center;
  color: #666;
  font-style: italic;
  padding: 40px 0;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item img {
  border-radius: 8px;
  object-fit: contain;
}

.cart-item-details {
  flex: 1;
}

.cart-item-details h4 {
  margin: 0 0 5px 0;
  font-size: 1rem;
  color: #333;
}

.cart-item-details p {
  margin: 0;
  color: #8B4513;
  font-weight: 600;
}

.cart-item-controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f5f5f5;
  border-radius: 20px;
  padding: 5px 10px;
}

.quantity-controls button {
  background: #8B4513;
  color: #fff;
  border: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-controls span {
  min-width: 20px;
  text-align: center;
  font-weight: 500;
}

.remove-item {
  background: #dc3545;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  cursor: pointer;
}

.cart-footer {
  padding: 20px 25px;
  border-top: 1px solid #e5e5e5;
  background: #f8f9fa;
}

.cart-total {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #333;
}

.cart-actions {
  display: flex;
  gap: 10px;
}

.clear-cart,
.checkout-btn {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.clear-cart {
  background: #6c757d;
  color: #fff;
}

.clear-cart:hover {
  background: #5a6268;
}

.checkout-btn {
  background: #8B4513;
  color: #fff;
}

.checkout-btn:hover {
  background: #a0522d;
}

/* Checkout Modal */
.checkout-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.checkout-content {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  width: 90%;
  max-width: 400px;
}

.checkout-content h2 {
  color: #4CAF50;
  margin-bottom: 15px;
}

.checkout-content p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.checkout-content button {
  background: #8B4513;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkout-content button:hover {
  background: #a0522d;
}

/* Responsive Design for Shop */
@media (max-width: 768px) {
  .shop-title {
    font-size: 2rem;
  }
  
  .category-filters {
    gap: 10px;
  }
  
  .category-btn {
    padding: 8px 15px;
    font-size: 12px;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .cart-actions {
    flex-direction: column;
  }
  
  .cart-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .cart-item-controls {
    flex-direction: row;
  }
}
/* Tips & Tricks Page - Exact JetSetSun Style */
.tips-section {
  padding: 100px 0 60px;
  background: #fff;
}

.tips-main-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  text-align: left;
}

.tips-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: #8B4513;
  margin-bottom: 40px;
  font-family: 'Inter', sans-serif;
  text-align: left;
}

.tips-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.tips-before h3,
.tips-after h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tips-before ul,
.tips-after ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tips-before li,
.tips-after li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
}

.tips-before li:before,
.tips-after li:before {
  content: "- ";
  position: absolute;
  left: 0;
  color: #333;
  font-weight: normal;
}

.instructions-section {
  margin-bottom: 40px;
}

.instructions-title {
  font-size: 1.2rem;
  font-weight: 500;
  color: #8B4513;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.instructions-list {
  padding-left: 20px;
  margin: 0;
}

.instructions-list li {
  padding: 6px 0;
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
}

.tips-cta {
  text-align: left;
  margin-top: 40px;
}

.tips-cta a {
  color: #8B4513;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  border-bottom: 1px solid #8B4513;
}

.tips-cta a:hover {
  opacity: 0.8;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .tips-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .tips-main-title {
    font-size: 1.3rem;
  }
  
  .tips-subtitle {
    font-size: 1.1rem;
  }
}

/* Story Page - Exact JetSetSun Style */
.story-section {
  padding: 100px 0 60px;
  background: #fff;
}

.story-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: #333;
  margin-bottom: 40px;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.story-intro {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.story-intro p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}

.story-images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 60px;
  align-items: start;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.story-image-large {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 4px;
}

.story-image-product {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 4px;
  align-self: center;
}

.story-content h2 {
  font-size: 2.2rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.story-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: #8B4513;
  margin-bottom: 40px;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.story-description {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.story-description p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}

.story-icons {
  text-align: center;
  margin: 60px 0;
}

.leaf-icon {
  width: 60px;
  height: 60px;
  opacity: 0.8;
}

.story-tagline {
  text-align: center;
  margin: 60px 0;
}

.story-tagline h4 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #8B4513;
  margin-bottom: 30px;
  font-family: 'Inter', sans-serif;
  font-style: italic;
}

.premium-tagline {
  font-size: 1.3rem;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
}

.story-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 80px 0;
  text-align: center;
}

.feature-badge h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #8B4513;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.story-essentials {
  margin-top: 100px;
  text-align: center;
}

.story-essentials h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #333;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.essentials-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: #8B4513;
  margin-bottom: 60px;
  font-family: 'Inter', sans-serif;
  font-style: italic;
}

.essentials-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.essentials-products .product-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.essentials-products .product-card:hover {
  transform: translateY(-5px);
}

.essentials-products .product-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.essentials-products .product-card h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 15px;
  font-family: 'Inter', sans-serif;
}

.essentials-products .product-price {
  font-size: 1.3rem;
  font-weight: 600;
  color: #8B4513;
  margin-bottom: 15px;
  font-family: 'Inter', sans-serif;
}

.essentials-products .product-rating {
  color: #FFD700;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.essentials-products .add-to-cart-btn {
  background: #8B4513;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.essentials-products .add-to-cart-btn:hover {
  background: #6B3410;
}

/* Shop Collection Button */
.story-shop-section {
  text-align: center;
  margin: 60px 0;
}

.shop-collection-tab {
  display: inline-block;
  background: #8B4513;
  border-radius: 50px;
  padding: 4px;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.shop-collection-btn {
  display: inline-block;
  background: #8B4513;
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid #8B4513;
}

.shop-collection-btn:hover {
  background: #654321;
  border-color: #654321;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
  text-decoration: none;
}

/* Mobile Responsiveness for Story */
@media (max-width: 768px) {
  .story-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 100%;
    padding: 0 20px;
  }
  
  .story-title {
    font-size: 2rem;
  }
  
  .story-intro p {
    font-size: 1.1rem;
    padding: 0 20px;
  }
  
  .story-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .essentials-products {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .premium-tagline {
    font-size: 1.1rem;
    padding: 0 20px;
  }
}

/* FAQ Page - Exact JetSetSun Style */
.faq-section {
  padding: 100px 0 60px;
  background: #fff;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: #333;
  margin-bottom: 40px;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.faq-intro {
  text-align: center;
  margin-bottom: 80px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.faq-intro h4 {
  font-size: 1.1rem;
  font-weight: 400;
  color: #555;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-style: italic;
}

.email-link {
  font-size: 1.2rem;
  font-weight: 600;
  color: #8B4513;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  letter-spacing: 1px;
}

.email-link:hover {
  opacity: 0.8;
}

.faq-section-group {
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-section-title {
  font-size: 2.2rem;
  font-weight: 300;
  color: #333;
  margin-bottom: 40px;
  font-family: 'Inter', sans-serif;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 30px 0;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #8B4513;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: #8B4513;
  min-width: 30px;
  text-align: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0;
}

.faq-item.active .faq-answer {
  padding-bottom: 30px;
}

.faq-answer p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Mobile Responsiveness for FAQ */
@media (max-width: 768px) {
  .faq-title {
    font-size: 2rem;
    padding: 0 20px;
  }
  
  .faq-intro {
    padding: 0 20px;
  }
  
  .faq-section-group {
    padding: 0 20px;
  }
  
  .faq-section-title {
    font-size: 1.8rem;
  }
  
  .faq-question {
    font-size: 1rem;
    padding: 25px 0;
  }
  
  .faq-answer p {
    font-size: 0.95rem;
  }
}

/* Product Page Styles */
.product-page {
  min-height: 100vh;
}

.product-header {
  background: #f5f0e8;
  padding: 20px 0;
}

.breadcrumb {
  font-size: 14px;
  color: #666;
}

.breadcrumb a {
  color: #8B4513;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb > span {
  color: #333;
  font-weight: 500;
}

.product-details {
  padding: 60px 0;
  background: #fff;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-page .product-images .main-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  max-width: 630px;
  object-fit: contain;
}

.product-page .product-info {
  padding: 20px 0;
}

.product-page .product-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.product-page .product-rating {
  margin-bottom: 20px;
}

.product-page .product-rating .stars {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 5px;
}

.product-page .product-rating .rating-text {
  font-size: 14px;
  color: #666;
  display: block;
}

.product-page .product-rating .reviews-link {
  color: #8B4513;
  text-decoration: none;
  font-size: 14px;
}

.product-page .product-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.product-page .product-badges .badge {
  background: #8B4513;
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
}

.product-page .product-price {
  margin-bottom: 30px;
}

.product-page .product-price .price {
  font-size: 2rem;
  font-weight: 600;
  color: #8B4513;
}

.product-page .product-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.product-page .quantity-selector {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-page .quantity-selector label {
  font-weight: 500;
  color: #333;
}

.product-page .quantity-selector input {
  width: 60px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-align: center;
}

.product-page .add-to-cart-btn,
.product-page .buy-now-btn {
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.product-page .add-to-cart-btn {
  background: #8B4513;
  color: white;
}

.product-page .add-to-cart-btn:hover {
  background: #a0522d;
  transform: translateY(-2px);
}

.product-page .buy-now-btn {
  background: #333;
  color: white;
}

.product-page .buy-now-btn:hover {
  background: #555;
  transform: translateY(-2px);
}

.product-page .shipping-info {
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #8B4513;
}

.product-page .shipping-info p {
  margin: 0;
  color: #333;
  font-size: 14px;
}

/* Product Tabs */
.product-page .product-tabs {
  padding: 60px 0;
  background: #f5f0e8;
}

.product-page .tabs-nav {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 1px solid #ddd;
}

.product-page .tab-btn {
  padding: 15px 25px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-page .tab-btn.active {
  color: #8B4513;
  border-bottom-color: #8B4513;
}

.product-page .tab-btn:hover {
  color: #8B4513;
}

.product-page .tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.product-page .tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.product-page .tab-content h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 500;
}

.product-page .tab-content h4 {
  font-size: 1.2rem;
  color: #8B4513;
  margin: 25px 0 15px 0;
  font-weight: 500;
}

.product-page .tab-content ul {
  list-style: none;
  padding: 0;
}

.product-page .tab-content ul li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  color: #333;
  line-height: 1.6;
}

.product-page .tab-content ul li:before {
  content: "•";
  color: #8B4513;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.product-page .tab-content ol li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #333;
}

/* Reviews */
.product-page .reviews-list {
  margin-top: 20px;
}

.product-page .review {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  background: white;
}

.product-page .review-rating {
  color: #ffc107;
  font-size: 16px;
  margin-bottom: 10px;
}

.product-page .review-author {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.product-page .review-author strong {
  color: #333;
}

.product-page .review-content p {
  color: #333;
  line-height: 1.6;
  margin: 0;
}

/* Tips Section */
.product-page .tips-section {
  padding: 60px 0;
  background: #fff;
}

.product-page .tips-header {
  text-align: center;
  margin-bottom: 40px;
}

.product-page .tips-header h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 400;
}

.product-page .tips-header h3 {
  font-size: 1.2rem;
  color: #8B4513;
  font-weight: 500;
}

.product-page .tips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.product-page .tip-category h3 {
  font-size: 1.5rem;
  color: #8B4513;
  margin-bottom: 20px;
  font-weight: 600;
}

.product-page .tip-category ul {
  list-style: none;
  padding: 0;
}

.product-page .tip-category ul li {
  padding: 10px 0;
  padding-left: 20px;
  position: relative;
  color: #333;
  line-height: 1.6;
}

.product-page .tip-category ul li:before {
  content: "•";
  color: #8B4513;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Related Products */
.product-page .related-products {
  padding: 60px 0;
  background: #f5f0e8;
}

.product-page .related-products h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 400;
}

/* Responsive Design for Product Pages */
@media (max-width: 768px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .product-title {
    font-size: 2rem;
  }
  
  .tips-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .tabs-nav {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .tab-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 15px;
  }
  
  .product-actions {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .product-title {
    font-size: 1.8rem;
  }
  
  .product-badges {
    flex-wrap: wrap;
  }
  
  .tabs-nav {
    flex-direction: column;
  }
  
  .tab-btn {
    text-align: left;
    border-bottom: 1px solid #eee;
    border-radius: 0;
  }
  
  .tab-btn.active {
    background: #f5f0e8;
    border-left: 4px solid #8B4513;
    border-bottom: 1px solid #eee;
  }
}
