/* 全局样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #000000;
  background-color: #f9f9f9;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  padding-top: 120px;
}

/* 统一设置h2元素的字体颜色为黄色 */
h2 {
  color: #ffcc00 !important;
}

/* 导航栏 */
header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 100vw;
}

nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.8rem 2rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.search-container {
  position: relative;
  display: flex;
  align-items: center;
}

.search-box {
  display: flex;
  align-items: center;
  background-color: transparent;
  border-radius: 4px;
  overflow: visible;
  border: none;
}

.search-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  cursor: pointer;
  color: #333;
  transition: all 0.3s ease;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.search-icon-container:hover {
  background-color: rgba(107, 142, 35, 0.1);
  color: #6b8e23;
}

.search-icon {
  width: 20px;
  height: 20px;
}

.search-input {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 1rem;
  padding: 0.5rem 1rem;
  border: 1px solid #e0e0e0;
  background-color: #fff;
  outline: none;
  font-size: 0.9rem;
  width: 200px;
  color: #333;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.search-container.active .search-input {
  right: 40px;
  opacity: 1;
  visibility: visible;
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.5rem;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.search-history {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.5rem;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  max-height: 200px;
  overflow-y: auto;
  z-index: 999;
  display: none;
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.search-results.active {
  display: block;
}

.results-header {
  padding: 0.8rem 1rem;
  font-weight: bold;
  border-bottom: 1px solid #e0e0e0;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.results-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.result-item {
  display: flex;
  align-items: center;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
}

.result-item:hover {
  background-color: #f9f9f9;
}

.result-image {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 1rem;
}

.result-info {
  flex: 1;
}

.result-info h5 {
  margin: 0 0 0.2rem 0;
  font-size: 0.9rem;
  color: #333;
}

.result-info p {
  margin: 0;
  font-size: 0.8rem;
  color: #666;
}

.result-link {
  padding: 0.4rem 0.8rem;
  background-color: #6b8e23;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.8rem;
  transition: background-color 0.3s ease;
}

.result-link:hover {
  background-color: #5a771c;
}

.no-results {
  padding: 1rem;
  text-align: center;
  color: #666;
  margin: 0;
}

.search-history {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  max-height: 200px;
  overflow-y: auto;
  z-index: 999;
  display: none;
}

.search-history.active {
  display: block;
}

.history-header {
  padding: 0.8rem 1rem;
  font-weight: bold;
  border-bottom: 1px solid #e0e0e0;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.history-header h4 {
  margin: 0;
  font-size: 0.9rem;
}

.clear-history {
  background: none;
  border: none;
  color: #6b8e23;
  cursor: pointer;
  font-size: 0.8rem;
  padding: 0;
}

.clear-history:hover {
  text-decoration: underline;
}

.history-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.history-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 0.9rem;
  color: #666;
}

.history-item:hover {
  background-color: #f9f9f9;
  color: #333;
}

.remove-history {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.remove-history:hover {
  background-color: #f0f0f0;
  color: #333;
}

.no-history {
  padding: 1rem;
  text-align: center;
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}

.loading {
  padding: 1rem;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}

.loading::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #6b8e23;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 0.5rem;
}

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

@media (max-width: 768px) {
  .search-box {
    width: 100%;
  }
  
  .search-input {
    min-width: 0;
    flex: 1;
  }
  
  .search-results,
  .search-history {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    max-height: 60vh;
    border-radius: 0;
  }
}

.top-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0.8rem;
  position: relative;
  box-sizing: border-box;
  padding: 0;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo-text {
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.4;
  margin-top: 0.3rem;
  color: #ffcc00;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

@media (min-width: 769px) {
  .nav-actions {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

.logo-image {
  height: 90px;
  width: auto;
  max-width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.logo:hover .logo-image {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .logo-image {
    height: 80px;
  }
}

@media (max-width: 480px) {
  .logo-image {
    height: 60px;
  }
}

header {
  width: 100%;
  padding: 0;
}

nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .top-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .logo {
    order: -1;
  }
  
  .nav-actions {
    width: 100%;
    justify-content: center;
  }
  
  .logo-image {
    height: 60px;
  }
  
  .logo-text {
    font-size: 0.7rem;
    margin-top: 0.3rem;
    letter-spacing: 0.8px;
  }
  
  nav {
    padding: 0 1rem;
  }
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0.5rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 9999;
  width: 100%;
  max-width: 100%;
  justify-content: center;
  margin: 0 auto 0.8rem;
  box-sizing: border-box;
}

@media (max-width: 1400px) {
  .nav-links {
    max-width: 100%;
  }
}

.nav-links:hover {
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.nav-links::-webkit-scrollbar {
  display: none;
}

@media (max-width: 768px) {
  .nav-links {
    margin-right: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 1rem;
    width: 100%;
    max-width: 100%;
    overflow-x: visible;
    flex-direction: column;
    align-items: stretch;
  }
  
  .nav-links:hover {
    box-shadow: none;
  }
}

/* Dropdown menu styles */
.dropdown-menu-container {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  padding-right: 0.5rem;
}

.dropdown-icon {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.dropdown-toggle.active .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 9999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  margin-top: 5px;
}

.dropdown-menu.active {
  max-height: 400px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  margin-top: 5px;
}

.dropdown-header {
  padding: 1rem;
  font-weight: bold;
  color: #333;
  border-bottom: 1px solid #e0e0e0;
  background-color: #f9f9f9;
}

.dropdown-item {
  display: block;
  padding: 0.8rem 1rem;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}

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

.dropdown-item:hover {
  background-color: #f9f9f9;
  color: #6b8e23;
  padding-left: 1.2rem;
}

/* Christian submenu items */
.dropdown-item.christian-submenu {
  color: #666666;
  font-size: 14px;
  padding-left: 1.5rem;
}

.dropdown-item.christian-submenu:hover {
  color: #6b8e23;
  background-color: #f9f9f9;
  padding-left: 1.7rem;
}

/* Disabled menu item */
.dropdown-item.disabled {
  color: #000000;
  cursor: not-allowed;
  pointer-events: none;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Selected menu item */
.dropdown-item.selected {
  background-color: rgba(107, 142, 35, 0.1);
  color: #6b8e23;
  font-weight: 500;
}

/* Click feedback effect */
.dropdown-item:active {
  transform: scale(0.98);
  transition: transform 0.1s ease;
}

.dropdown-item:focus {
  outline: 2px solid #6b8e23;
  outline-offset: -2px;
  border-radius: 4px;
}

.dropdown-item.selected {
  background-color: rgba(107, 142, 35, 0.1);
  color: #6b8e23;
  font-weight: 500;
}

/* Mobile dropdown styles */
@media (max-width: 768px) {
  .dropdown-menu-container {
    width: 100%;
  }
  
  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.8rem;
    border-bottom: 1px solid #eee;
  }
  
  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    border-top: 1px solid #eee;
    border-radius: 0;
  }
  
  .dropdown-menu.active {
    transform: translateY(0);
    margin-top: 0;
  }
  
  .dropdown-item {
    padding: 0.8rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .dropdown-item:hover {
    padding-left: 1.5rem;
  }
}

.nav-button {
  background: none;
  border: none;
  color: #333333;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.6rem 1.2rem;
  font-family: inherit;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex-shrink: 1;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  position: relative;
}

.nav-button:hover {
  color: #6b8e23;
  background-color: rgba(107, 142, 35, 0.05);
  transform: translateY(-1px);
}

.nav-button:focus {
  outline: 2px solid #6b8e23;
  outline-offset: 2px;
  border-radius: 6px;
}

.nav-button.active {
  color: #6b8e23;
  font-weight: 600;
  background-color: rgba(107, 142, 35, 0.1);
  box-shadow: 0 1px 3px rgba(107, 142, 35, 0.2);
}

.nav-button:active {
  transform: translateY(0);
  transition: all 0.1s ease;
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
    overflow-x: visible;
  }
  
  .nav-button {
    text-align: center;
    padding: 0.8rem;
    border-bottom: 1px solid #eee;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    justify-content: center;
  }
}

.mobile-menu {
  display: none;
  width: 100%;
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
}

.nav-collapse {
  margin-left: 1rem;
}

.collapse-toggle {
  padding: 0.3rem 0.6rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transform: rotate(0deg);
}

.collapse-toggle:hover {
  background-color: #f5f5f5;
  transform: rotate(180deg);
}

.collapse-toggle.active {
  background-color: #6b8e23;
  border-color: #6b8e23;
  transform: rotate(180deg);
}

.collapse-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .collapse-icon {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 768px) {
  .nav-collapse {
    margin-left: 0;
    margin-top: 1rem;
  }
  
  .collapse-toggle {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
  }
}

.language-container {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .language-container {
    order: -1;
    width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
  }
}

/* Hero区域 */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  min-height: 46.67vh;
  background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url('https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=handcrafted%20beeswax%20candles%20arrangement%2C%20warm%20glowing%20flames%2C%20honeycomb%20patterns%2C%20natural%20wooden%20surface%2C%20sunlight%20streaming%20through%20window%2C%20heritage%20style%2C%20cozy%20atmosphere%2C%20warm%20earth%20tones&image_size=landscape_16_9');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-top: -120px;
  padding-top: calc(4rem + 120px);
}

.hero-content {
  flex: 1;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #000000;
    font-weight: 600;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #000000;
    line-height: 1.5;
  }

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #6b8e23;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(107, 142, 35, 0.3);
}

.btn:hover {
  background-color: #5a771c;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(107, 142, 35, 0.4);
}

.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* 产品分类 */
.product-categories {
  padding: 5rem 2rem 7rem;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

.product-categories h2 {
  font-size: 2.8rem;
  margin-bottom: 4.5rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

@media (max-width: 1200px) {
  .product-categories {
    padding: 3.5rem 2rem 5rem;
    max-width: 1200px;
  }
  
  .product-categories h2 {
    font-size: 2.2rem;
    margin-bottom: 3.5rem;
  }
}

@media (max-width: 768px) {
  .product-categories {
    padding: 3rem 1.5rem 4rem;
    max-width: 100%;
  }
  
  .product-categories h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 480px) {
  .product-categories {
    padding: 2rem 1rem 3rem;
  }
  
  .product-categories h2 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
  }
}

.h2-link {
  color: #000000;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.h2-link:hover {
  color: #000000;
  transform: none;
}

.h2-link::after {
  display: none;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

@media (max-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
}

@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.category-item {
  background: none;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.3s ease;
  text-align: center;
  margin-top: 0;
  padding-top: 0;
}

.category-item:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.category-item .image-link {
  display: block;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
  margin-top: 0;
  padding-top: 0;
}

.category-item .image-link:hover {
  transform: scale(1.03);
}

.category-item .image-link img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  max-height: 350px;
  transition: transform 0.3s ease, filter 0.3s ease;
  margin-top: 0;
  padding-top: 0;
}

.category-item .image-link:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.category-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  max-height: 380px;
  margin-top: 0;
  padding-top: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.category-item:hover img {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.category-item h3 {
  font-size: 1.3rem;
  margin: 2.5rem 0 0;
  color: #333333;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.category-item:hover h3 {
  color: #6b8e23;
}

@media (max-width: 1200px) {
  .category-item img {
    max-height: 320px;
  }
  
  .category-item h3 {
    font-size: 1.2rem;
    margin: 2rem 0 0;
  }
}

@media (max-width: 992px) {
  .category-item img {
    max-height: 280px;
  }
  
  .category-item h3 {
    font-size: 1.1rem;
    margin: 1.8rem 0 0;
  }
}

@media (max-width: 768px) {
  .category-item img {
    max-height: 250px;
  }
  
  .category-item h3 {
    font-size: 1rem;
    margin: 1.5rem 0 0;
  }
}

@media (max-width: 480px) {
  .category-item img {
    max-height: 220px;
  }
  
  .category-item h3 {
    font-size: 0.95rem;
    margin: 1.3rem 0 0;
  }
  
  .category-item .image-link:hover {
    transform: scale(1.02);
  }
  
  .category-item .image-link:hover img {
    transform: scale(1.03);
  }
}

.category-item .btn {
  display: none;
}

/* 品牌故事 */
.about-section {
  display: flex;
  align-items: center;
  padding: 7rem 2rem;
  background-color: #f5f5f5;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  gap: 4rem;
}

@media (max-width: 1200px) {
  .about-section {
    padding: 5rem 2rem;
    max-width: 1200px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 4rem 1.5rem;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  html, body {
    padding-top: 100px;
  }
  
  nav {
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 3rem 1rem;
  }
  
  html, body {
    padding-top: 90px;
  }
  
  nav {
    padding: 0.6rem 1rem;
  }
}

.about-content {
  flex: 1;
  padding-right: 2rem;
}

.about-content h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: #000000;
  font-weight: 500;
  line-height: 1.2;
}

.about-content p {
  margin-bottom: 1.5rem;
  color: #333333;
  line-height: 1.8;
  font-size: 1.1rem;
}

.about-content .btn {
  margin-top: 1rem;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* 产品特色 */
.features-section {
  padding: 7rem 2rem;
  text-align: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.features-section h2 {
  font-size: 2.8rem;
  margin-bottom: 4.5rem;
  color: #000000;
  font-weight: 500;
  line-height: 1.2;
}

@media (max-width: 1200px) {
  .features-section {
    padding: 6rem 2rem;
    max-width: 1200px;
  }
  
  .features-section h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 5rem 1.5rem;
    max-width: 100%;
  }
  
  .features-section h2 {
    font-size: 2.2rem;
    margin-bottom: 3.5rem;
  }
}

@media (max-width: 480px) {
  .features-section {
    padding: 4rem 1rem;
  }
  
  .features-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.feature-item {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.feature-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  margin-bottom: 0;
  max-height: 320px;
  transition: transform 0.3s ease;
}

.feature-item:hover img {
  transform: scale(1.03);
}

.feature-item h3 {
  font-size: 1.3rem;
  margin: 1.8rem 1.8rem 0.8rem;
  color: #333333;
  font-weight: 500;
  line-height: 1.3;
}

.feature-item p {
  color: #666666;
  line-height: 1.6;
  margin: 0 1.8rem 1.8rem;
  font-size: 1rem;
  flex-grow: 1;
}

.feature-item .read-more {
  display: inline-block;
  color: #6b8e23;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 1.8rem 1.8rem;
  font-size: 1rem;
  position: relative;
  padding-right: 1.2rem;
}

.feature-item .read-more::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 0;
  transition: transform 0.3s ease;
}

.feature-item .read-more:hover {
  color: #5a771c;
  text-decoration: none;
}

.feature-item .read-more:hover::after {
  transform: translateX(3px);
}

/* 客户评价 */
.testimonials {
  padding: 7rem 2rem;
  background-color: #f5f5f5;
  text-align: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.testimonials h2 {
  font-size: 2.8rem;
  margin-bottom: 4.5rem;
  color: #000000;
  font-weight: 500;
  line-height: 1.2;
}

@media (max-width: 1200px) {
  .testimonials {
    padding: 6rem 2rem;
    max-width: 1200px;
  }
  
  .testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 5rem 1.5rem;
    max-width: 100%;
  }
  
  .testimonials h2 {
    font-size: 2.2rem;
    margin-bottom: 3.5rem;
  }
}

@media (max-width: 480px) {
  .testimonials {
    padding: 4rem 1rem;
  }
  
  .testimonials h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}

/* 轮播样式 */
.testimonial-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-container:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.carousel-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  flex: 0 0 100%;
  padding: 3.5rem;
  text-align: center;
}

.testimonial-item {
  background-color: #fff;
  border-radius: 12px;
}

.testimonial-item p {
  margin-bottom: 2rem;
  color: #333333;
  line-height: 1.8;
  font-style: italic;
  font-size: 1.1rem;
}

.testimonial-item .author {
  font-weight: 600;
  color: #333333;
  font-style: normal;
  font-size: 1rem;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid #eee;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.carousel-button:hover {
  background-color: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev {
  left: 20px;
}

.carousel-button.next {
  right: 20px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2.5rem;
}

.carousel-indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #ddd;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.carousel-indicator.active {
  background-color: #6b8e23;
  transform: scale(1.2);
  box-shadow: 0 2px 8px rgba(107, 142, 35, 0.4);
}

.carousel-indicator:hover {
  background-color: #6b8e23;
  transform: scale(1.1);
  box-shadow: 0 2px 4px rgba(107, 142, 35, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
  .testimonial-carousel {
    max-width: 100%;
  }
  
  .carousel-slide {
    padding: 2.5rem;
  }
  
  .testimonial-item p {
    font-size: 1rem;
    margin-bottom: 1.8rem;
  }
  
  .carousel-button {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  
  .carousel-button.prev {
    left: 15px;
  }
  
  .carousel-button.next {
    right: 15px;
  }
  
  .carousel-indicators {
    margin-top: 2rem;
    gap: 8px;
  }
  
  .carousel-indicator {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 480px) {
  .carousel-slide {
    padding: 2rem;
  }
  
  .testimonial-item p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .carousel-button {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .carousel-button.prev {
    left: 10px;
  }
  
  .carousel-button.next {
    right: 10px;
  }
  
  .carousel-indicators {
    margin-top: 1.8rem;
    gap: 6px;
  }
  
  .carousel-indicator {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .carousel-slide {
    padding: 1.5rem;
  }
  
  .carousel-button {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
  
  .carousel-button.prev {
    left: 5px;
  }
  
  .carousel-button.next {
    right: 5px;
  }
  
  .carousel-indicators {
    margin-top: 1rem;
  }
}

/* 页脚 */
.footer {
  background-color: #f8f8f6;
  color: #333333;
  padding: 0;
  border-top: 1px solid #E0E0E0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
  box-sizing: border-box;
}

/* Adjust BEESWAX CANDLE INFO section */
.footer-content > .footer-section:nth-child(2) {
  margin-left: 0;
  max-width: 100%;
}

@media (max-width: 1200px) {
  .footer-content {
    max-width: 1200px;
    gap: 2.5rem;
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }
  
  /* Reset margin for mobile view */
  .footer-content > .footer-section:nth-child(2) {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 1.8rem 1rem;
    gap: 1.8rem;
  }
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section .logo {
  margin-bottom: 1.5rem;
  transform: translateX(0);
  align-items: flex-start;
}

.footer-section .logo-image {
  height: 80px;
  width: auto;
  max-width: 100%;
  transition: transform 0.3s ease;
}

.footer-section .logo:hover .logo-image {
  transform: scale(1.05);
}

.footer-section .contact-info {
  margin-top: 1.5rem;
  padding-top: 0;
  border-top: none;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #333333;
}

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

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: #666666;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-section ul li a:hover {
  color: #6b8e23;
}

.contact-info p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #333333;
}

.social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-icon {
  color: #333333;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.social-icon:hover {
  transform: translateY(-2px) scale(1.1);
  transition: all 0.3s ease;
  filter: brightness(1.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  border-radius: 50%;
}

.social-icon:active {
  transform: translateY(0) scale(0.95);
  transition: all 0.1s ease;
  filter: brightness(0.9);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.contact-info a:hover {
  color: #6b8e23;
  text-decoration: none;
}

.footer-section h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #333333;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #333333;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-section ul li a:hover {
  color: #6b8e23;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #E0E0E0;
  width: 100%;
  margin: 0 auto;
  font-size: 0.8rem;
  color: #333333;
}

/* 响应式设计 */
@media (max-width: 768px) {
  /* 导航栏 */
  nav {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .top-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
  
  .logo {
    order: -1;
    width: 100%;
    justify-content: center;
  }
  
  .nav-actions {
    width: 100%;
    justify-content: center;
    margin-top: 0;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-width: 100%;
    background-color: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: none;
    margin-right: 0;
    box-sizing: border-box;
  }

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

  .nav-button {
    margin: 0.5rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
  }

  .mobile-menu {
    display: block;
    width: 100%;
  }

  .menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    width: 100%;
    padding: 1rem;
  }

  /* Hero区域 */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 3.33rem 1rem;
    min-height: 40vh;
    background-attachment: scroll;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
  }

  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
  }

  /* 品牌故事 */
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  /* 产品分类和特色 */
  .product-categories h2,
  .features-section h2,
  .testimonials h2 {
    font-size: 2rem;
  }

  /* 产品详情 */
  .product-details {
    flex-direction: column;
    padding: 1rem;
  }

  /* 联系我们 */
  .contact-section {
    flex-direction: column;
    padding: 1rem;
  }

  /* 关于我们 */
  .about-story {
    flex-direction: column;
    padding: 1rem;
  }

  /* 产品筛选 */
  .filter-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  /* 页面标题 */
  .page-header {
    padding: 2rem 1rem;
  }

  /* 产品网格 */
  .products-grid {
    padding: 1rem;
  }
}

/* 页面标题 */
.page-header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=beeswax%20candles%20in%20elegant%20setting%20warm%20lighting&image_size=landscape_16_9');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 2rem;
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
}

.header-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
}

.header-content p {
  font-size: 1.2rem;
  margin: 0;
  opacity: 0.9;
}

/* 产品详情描述区 */
.product-description {
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
}

.description-content {
  flex: 1;
}

.description-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #333;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.description-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #666;
}

.key-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
  background-color: #f9f9f9;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.feature-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.feature-item p {
  font-size: 0.9rem;
  margin: 0;
  color: #666;
  line-height: 1.5;
}

.description-image {
  flex: 1;
}

.main-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* 产品规格参数表 */
.product-specifications {
  padding: 4rem 2rem;
  background-color: #f5f5f5;
  max-width: 1200px;
  margin: 0 auto;
}

.product-specifications h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #333;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.specs-table {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.specs-row {
  display: flex;
  border-bottom: 1px solid #f0f0f0;
}

.specs-header {
  background-color: #f9f9f9;
  font-weight: bold;
}

.specs-cell {
  padding: 1rem;
  flex: 1;
}

.specs-label {
  font-weight: 500;
  color: #333;
  background-color: #f9f9f9;
  flex: 0 0 200px;
}

.specs-cell ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0;
}

.specs-cell li {
  margin-bottom: 0.3rem;
  color: #666;
}



/* 为什么选择蜂蜡蜡烛专题模块 */
.why-beeswax {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  max-width: 1200px;
  margin: 0 auto;
}

.why-beeswax h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #333;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.section-intro {
  text-align: center;
  margin-bottom: 3rem;
  color: #666;
  font-size: 1.1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.comparison-item {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.comparison-image {
  height: 200px;
  overflow: hidden;
}

.comparison-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-content {
  padding: 1.5rem;
}

.comparison-content h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #333;
  text-align: center;
}

.comparison-table {
  width: 100%;
}

.comparison-row {
  display: flex;
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #f0f0f0;
}

.comparison-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.comparison-cell {
  flex: 1;
  font-size: 0.9rem;
}

.comparison-cell:first-child {
  font-weight: 500;
  color: #333;
}

.comparison-cell:last-child {
  color: #666;
}

.benefits-summary {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.benefits-summary h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #333;
  font-weight: 400;
}

.benefits-summary p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #666;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-summary ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-summary li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  text-align: left;
  color: #666;
  line-height: 1.5;
}

.benefits-summary li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #6b8e23;
  font-weight: bold;
}

/* 相关产品 */
.related-products {
  padding: 2rem 1rem;
}

/* 我们的工艺 */
.our-process {
  padding: 2rem 1rem;
}

/* 我们的价值观 */
.our-values {
  padding: 2rem 1rem;
}

/* 团队介绍 */
.our-team {
  padding: 2rem 1rem;
}

/* 地图 */
.map-section {
  padding: 2rem 1rem;
}

/* 产品标签页 */
.product-tabs {
  padding: 1rem;
}

/* 缩略图调整 */
.thumbnail-images img {
  width: 60px;
  height: 60px;
}

/* 产品操作按钮 */
.product-actions {
  flex-direction: column;
  align-items: stretch;
}

.quantity-selector {
  margin-bottom: 1rem;
}

.btn {
  width: 100%;
  text-align: center;
}

@media (max-width: 480px) {
  /* 全局调整 */
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
  }

  /* 各部分调整 */
  .product-categories,
  .about-section,
  .features-section,
  .testimonials {
    padding: 2rem 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* User Account Section */
.account-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.account-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.account-container h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--secondary-color, #333);
  font-size: 2rem;
}

.account-forms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

/* Form Styles */
.login-form,
.register-form {
  padding: 0 1rem;
}

.login-form h3,
.register-form h3 {
  margin-bottom: 2rem;
  color: var(--secondary-color, #333);
  font-size: 1.3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-color, #333);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 1rem;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="password"]:focus {
  outline: none;
  border-color: var(--accent-color, #f39c12);
  background-color: #fff;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
}

.verify-icon {
  width: 24px;
  height: 24px;
  margin-left: 0.5rem;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.submit-btn {
  background-color: var(--accent-color, #f39c12);
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background-color: #e67e22;
}

.forgot-password {
  color: var(--secondary-color, #333);
  text-decoration: none;
  font-size: 0.9rem;
  text-align: center;
}

.forgot-password:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .account-container {
    padding: 2rem;
  }
  
  .account-forms {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .account-section {
    padding: 2rem 1rem;
  }
  
  .account-container {
    padding: 1.5rem;
  }
  
  .account-forms {
    grid-template-columns: 1fr;
  }
  
  .login-form,
  .register-form {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .account-container h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .login-form h3,
  .register-form h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="password"] {
    padding: 0.6rem;
  }
  
  .submit-btn {
    padding: 0.6rem 1.2rem;
  }
}

/* Shipping & Delivery Section */
.shipping-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.shipping-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.shipping-header {
  text-align: center;
  margin-bottom: 3rem;
}

.shipping-header h2 {
  color: var(--secondary-color, #333);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.shipping-header p {
  color: var(--text-color, #666);
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

.shipping-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.shipping-info {
  padding: 0 1rem;
}

.shipping-info p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: var(--text-color, #333);
}

.shipping-info h3 {
  color: var(--secondary-color, #333);
  font-size: 1.3rem;
  margin: 2rem 0 1rem;
}

.shipping-info ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.shipping-info li {
  margin-bottom: 0.8rem;
  line-height: 1.5;
  color: var(--text-color, #333);
}

.contact-info {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
}

.contact-info p {
  margin-bottom: 0.8rem;
}

.contact-info a {
  color: var(--accent-color, #f39c12);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #e67e22;
  text-decoration: underline;
}

.shipping-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}

.shipping-photo {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .shipping-container {
    padding: 2rem;
  }
  
  .shipping-content {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .shipping-section {
    padding: 2rem 1rem;
  }
  
  .shipping-container {
    padding: 1.5rem;
  }
  
  .shipping-header h2 {
    font-size: 1.8rem;
  }
  
  .shipping-content {
    grid-template-columns: 1fr;
  }
  
  .shipping-info,
  .shipping-image {
    padding: 0;
  }
  
  .shipping-image {
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .shipping-header h2 {
    font-size: 1.5rem;
  }
  
  .shipping-header p {
    font-size: 1rem;
  }
  
  .shipping-info h3 {
    font-size: 1.1rem;
  }
  
  .shipping-info p,
  .shipping-info li {
    font-size: 0.9rem;
  }
}