/* ==================== Reset & Base ==================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input { outline: none; font-family: inherit; }

/* ==================== Container ==================== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* ==================== Header / Navigation ==================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: all 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 2px;
}
.logo span { color: #c9a96e; }

.nav { display: flex; gap: 2rem; }

.nav a {
  font-size: 0.9rem;
  color: #555;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #c9a96e;
  transition: width 0.3s;
}
.nav a:hover, .nav a.active { color: #1a1a1a; }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 1.2rem; }

.header-actions a {
  font-size: 0.9rem;
  color: #555;
  transition: color 0.3s;
}
.header-actions a:hover { color: #c9a96e; }

.cart-icon { position: relative; }
.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #c9a96e;
  color: #fff;
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #333;
  transition: all 0.3s;
}

/* ==================== Hero Banner ==================== */
.banner {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  background: #f5f0eb;
}

.banner-slides { display: flex; height: 100%; transition: transform 0.6s ease; }

.banner-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.banner-slide .slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.banner-slide .slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.banner-slide .slide-content h2 {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 4px;
  margin-bottom: 1rem;
}

.banner-slide .slide-content p {
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.banner-slide .slide-content .btn {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 2px;
  transition: all 0.3s;
}
.banner-slide .slide-content .btn:hover {
  background: #fff;
  color: #333;
}

.banner-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  pointer-events: none;
  z-index: 5;
}
.banner-arrows button {
  pointer-events: auto;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  transition: background 0.3s;
}
.banner-arrows button:hover { background: rgba(255,255,255,0.4); }

.banner-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.banner-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s;
}
.banner-dots span.active { background: #fff; transform: scale(1.2); }

/* ==================== Categories Section ==================== */
.section { padding: 80px 0; }
.section-title {
  text-align: center;
  margin-bottom: 4rem;
}
.section-title h2 {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 4px;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
}
.section-title p {
  font-size: 0.95rem;
  color: #999;
  letter-spacing: 2px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.category-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s;
}
.category-card:hover img { transform: scale(1.05); }

.category-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff;
}
.category-card .overlay h3 { font-size: 1.1rem; font-weight: 400; letter-spacing: 2px; }

/* ==================== Featured Products ==================== */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s;
}
.product-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.product-card .product-img {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #f5f5f5;
}
.product-card .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.product-card:hover .product-img img { transform: scale(1.05); }

.product-card .product-img .tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #c9a96e;
  color: #fff;
  padding: 4px 12px;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.product-card .product-info { padding: 16px; }
.product-card .product-info h4 {
  font-size: 0.95rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 0.4rem;
}
.product-card .product-info .desc {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 0.6rem;
}
.product-card .product-info .price {
  font-size: 1.1rem;
  color: #c9a96e;
  font-weight: 600;
}
.product-card .product-info .price .original {
  font-size: 0.8rem;
  color: #ccc;
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 400;
}

/* ==================== About / Brand Section ==================== */
.brand-section {
  background: #faf8f5;
  padding: 100px 0;
}

.brand-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.brand-text { flex: 1; }
.brand-text h2 {
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 4px;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}
.brand-text p {
  font-size: 0.95rem;
  color: #666;
  line-height: 2;
  margin-bottom: 1rem;
}
.brand-text .btn-outline {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 12px 36px;
  border: 1px solid #c9a96e;
  color: #c9a96e;
  font-size: 0.9rem;
  letter-spacing: 2px;
  transition: all 0.3s;
}
.brand-text .btn-outline:hover {
  background: #c9a96e;
  color: #fff;
}

.brand-image {
  flex: 1;
  position: relative;
}
.brand-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
}

/* ==================== News Section ==================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card { border-radius: 4px; overflow: hidden; transition: transform 0.3s; }
.news-card:hover { transform: translateY(-4px); }

.news-card .news-img { height: 240px; overflow: hidden; }
.news-card .news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.news-card:hover .news-img img { transform: scale(1.05); }

.news-card .news-info { padding: 20px; }
.news-card .news-info h3 {
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.news-card .news-info .date {
  font-size: 0.8rem;
  color: #bbb;
}

/* ==================== Footer ==================== */
.footer {
  background: #1a1a1a;
  color: #999;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.85rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: #c9a96e; }

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
}

/* ==================== Products Page ==================== */
.page-banner {
  height: 240px;
  background: #f5f0eb;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-banner h1 {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 6px;
  color: #1a1a1a;
}

.products-layout {
  display: flex;
  gap: 40px;
  padding: 40px 0;
}

.filter-sidebar {
  width: 220px;
  flex-shrink: 0;
}

.filter-sidebar h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #c9a96e;
}

.filter-group { margin-bottom: 1.5rem; }
.filter-group label {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.4rem;
  cursor: pointer;
  transition: color 0.3s;
  padding: 4px 0;
}
.filter-group label:hover { color: #c9a96e; }
.filter-group label input { margin-right: 8px; }

.price-range { margin-top: 0.5rem; }
.price-range input[type="range"] { width: 100%; }
.price-range .price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #999;
}

.products-main { flex: 1; }

.products-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}
.products-toolbar .count { font-size: 0.85rem; color: #999; }
.products-toolbar select {
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 2px;
  font-size: 0.85rem;
  color: #666;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 3rem;
}
.pagination button {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  background: #fff;
  color: #666;
  font-size: 0.85rem;
  border-radius: 2px;
  transition: all 0.3s;
}
.pagination button:hover, .pagination button.active {
  background: #c9a96e;
  color: #fff;
  border-color: #c9a96e;
}
.pagination button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* ==================== Product Detail Page ==================== */
.product-detail {
  display: flex;
  gap: 60px;
  padding: 60px 0;
}

.product-gallery { flex: 1; }

.product-gallery .main-image {
  width: 100%;
  height: 480px;
  background: #f5f5f5;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}
.product-gallery .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery .thumbnails { display: flex; gap: 12px; }
.product-gallery .thumbnails img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.product-gallery .thumbnails img:hover, .product-gallery .thumbnails img.active {
  opacity: 1;
  border-color: #c9a96e;
}

.product-info-detail { flex: 1; }

.product-info-detail .breadcrumb {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 1.5rem;
}
.product-info-detail .breadcrumb a { color: #666; }
.product-info-detail .breadcrumb a:hover { color: #c9a96e; }

.product-info-detail h1 {
  font-size: 1.6rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.product-info-detail .subtitle {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 1.5rem;
}

.product-info-detail .price-box {
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 1.5rem;
}
.product-info-detail .price-box .current {
  font-size: 2rem;
  color: #c9a96e;
  font-weight: 600;
}
.product-info-detail .price-box .original {
  font-size: 1rem;
  color: #ccc;
  text-decoration: line-through;
  margin-left: 12px;
}

.product-info-detail .specs { margin-bottom: 1.5rem; }
.product-info-detail .specs .spec-row {
  display: flex;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}
.product-info-detail .specs .spec-row .label { color: #999; min-width: 70px; }
.product-info-detail .specs .spec-row .value { color: #333; }

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.5rem;
}
.quantity-selector label { font-size: 0.9rem; color: #999; margin-right: 12px; }
.quantity-selector button {
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  background: #f5f5f5;
  font-size: 1rem;
}
.quantity-selector input {
  width: 56px;
  height: 36px;
  border: 1px solid #ddd;
  border-left: none;
  border-right: none;
  text-align: center;
  font-size: 0.9rem;
}

.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  background: #c9a96e;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 2px;
  border-radius: 2px;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-primary:hover { background: #b89452; }

.btn-outline-lg {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid #333;
  color: #333;
  font-size: 0.9rem;
  letter-spacing: 2px;
  border-radius: 2px;
  transition: all 0.3s;
  margin-left: 12px;
  cursor: pointer;
}
.btn-outline-lg:hover { background: #333; color: #fff; }

.product-tabs { margin-top: 60px; }
.product-tabs .tab-header {
  display: flex;
  border-bottom: 1px solid #eee;
  margin-bottom: 2rem;
}
.product-tabs .tab-header button {
  padding: 12px 24px;
  font-size: 0.9rem;
  color: #999;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.3s;
}
.product-tabs .tab-header button.active {
  color: #333;
  border-bottom-color: #c9a96e;
}

.product-tabs .tab-content { font-size: 0.9rem; color: #666; line-height: 2; }

/* ==================== Cart Page ==================== */
.cart-page { padding: 60px 0; }
.cart-page h1 {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 4px;
  margin-bottom: 2rem;
  text-align: center;
}

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  text-align: left;
  font-size: 0.85rem;
  font-weight: 500;
  color: #999;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}
.cart-table td { padding: 20px 0; border-bottom: 1px solid #eee; vertical-align: middle; }

.cart-product { display: flex; align-items: center; gap: 16px; }
.cart-product img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}
.cart-product h4 { font-size: 0.9rem; font-weight: 400; }

.cart-qty { display: flex; align-items: center; }
.cart-qty button {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  background: #f5f5f5;
}
.cart-qty input {
  width: 44px;
  height: 30px;
  border: 1px solid #ddd;
  border-left: none;
  border-right: none;
  text-align: center;
  font-size: 0.85rem;
}

.cart-remove { color: #ccc; font-size: 1.2rem; cursor: pointer; transition: color 0.3s; }
.cart-remove:hover { color: #e74c3c; }

.cart-summary {
  margin-top: 2rem;
  text-align: right;
  padding: 30px;
  background: #fafaf8;
  border-radius: 4px;
}
.cart-summary .total {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.cart-summary .total span { color: #c9a96e; font-size: 1.6rem; font-weight: 600; margin-left: 12px; }

.cart-empty {
  text-align: center;
  padding: 80px 0;
  color: #999;
}
.cart-empty .icon { font-size: 4rem; margin-bottom: 1rem; }
.cart-empty p { margin-bottom: 1.5rem; }

/* ==================== User Page ==================== */
.user-page { padding: 60px 0; }

.user-layout { display: flex; gap: 40px; }

.user-sidebar {
  width: 200px;
  flex-shrink: 0;
}
.user-sidebar ul li { margin-bottom: 4px; }
.user-sidebar ul li a {
  display: block;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: #666;
  border-radius: 4px;
  transition: all 0.3s;
}
.user-sidebar ul li a:hover, .user-sidebar ul li a.active {
  background: #f5f0eb;
  color: #1a1a1a;
}

/* Tab Panels */
.tab-panel h3 { font-size: 1.2rem; font-weight: 400; margin-bottom: 1.5rem; letter-spacing: 2px; color: #1a1a1a; }

/* Order Cards */
.order-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  margin-bottom: 16px;
  overflow: hidden;
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #fafaf8;
  border-bottom: 1px solid #eee;
}

.order-id { font-size: 0.85rem; color: #1a1a1a; font-weight: 500; }
.order-date { font-size: 0.8rem; color: #999; margin-left: 16px; }

.order-status { font-size: 0.78rem; padding: 4px 12px; border-radius: 20px; font-weight: 500; }
.order-status.status-confirmed { background: #e8f5e9; color: #2e7d32; }
.order-status.status-delivered { background: #e3f2fd; color: #1565c0; }
.order-status.status-cancelled { background: #fce4ec; color: #c62828; }

.order-body { padding: 16px 20px; }

.order-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
}
.order-item:last-child { border-bottom: none; }

.order-item-img {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
  background: #f5f5f5;
  flex-shrink: 0;
}
.order-item-img img { width: 100%; height: 100%; object-fit: cover; }

.order-item-info { display: flex; flex-direction: column; gap: 4px; }
.order-item-info strong { font-size: 0.88rem; font-weight: 500; color: #333; }
.order-item-info span { font-size: 0.8rem; color: #999; }

.order-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: #fafaf8;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
}

.order-footer strong { color: #c9a96e; }

.btn-outline-sm {
  padding: 6px 16px;
  border: 1px solid #ddd;
  background: #fff;
  color: #e74c3c;
  font-size: 0.78rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-outline-sm:hover { background: #e74c3c; color: #fff; border-color: #e74c3c; }

.order-address {
  padding: 10px 20px;
  font-size: 0.82rem;
  color: #999;
  background: #fff;
}
.order-address span { color: #666; font-weight: 500; }

.orders-empty { text-align: center; padding: 60px 0; color: #999; }
.orders-empty p:first-child { font-size: 1.1rem; margin-bottom: 8px; }
.orders-empty p:nth-child(2) { font-size: 0.85rem; margin-bottom: 16px; }

.user-main { flex: 1; }

.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.4rem;
}
.form-group input {
  width: 100%;
  max-width: 400px;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 2px;
  font-size: 0.9rem;
  transition: border-color 0.3s;
}
.form-group input:focus { border-color: #c9a96e; }

/* Auth Forms */
.auth-container {
  max-width: 420px;
  margin: 60px auto;
  padding: 40px;
  background: #fafaf8;
  border-radius: 4px;
}
.auth-container h2 {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 4px;
  margin-bottom: 2rem;
}
.auth-container .form-group input { max-width: 100%; }
.auth-container .btn-primary { width: 100%; text-align: center; }
.auth-container .switch {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #999;
}
.auth-container .switch a { color: #c9a96e; }

/* ==================== Toast ==================== */
.toast {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: 12px 32px;
  border-radius: 4px;
  font-size: 0.9rem;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.toast.show { opacity: 1; }

/* ==================== SVG Placeholder Images ==================== */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0ebe3;
  color: #c9a96e;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* ==================== Policy Pages ==================== */
.page-banner {
  position: relative;
  height: 280px;
  background: linear-gradient(135deg, #f5f0eb 0%, #ede4d8 50%, #f0e8da 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(201,169,110,0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(201,169,110,0.05) 0%, transparent 50%);
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c9a96e, transparent);
}
.page-banner > div {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: 8px;
  color: #1a1a1a;
}
.page-banner p {
  margin-top: 10px;
  color: #999;
  font-size: 0.85rem;
  letter-spacing: 3px;
}

.policy-section {
  padding: 60px 0;
  background: #fafaf8;
}

.policy-content {
  max-width: 860px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.1rem;
  font-weight: 400;
  color: #999;
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
}

.policy-block {
  background: #fff;
  border-radius: 6px;
  padding: 28px 32px;
  margin-bottom: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s, transform 0.3s;
}
.policy-block:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transform: translateY(-1px);
}

.policy-block h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  position: relative;
  padding-left: 16px;
}
.policy-block h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: #c9a96e;
  border-radius: 2px;
}

.policy-block p {
  font-size: 0.92rem;
  color: #666;
  line-height: 2;
  margin-bottom: 0.8rem;
}

.policy-block p:last-child {
  margin-bottom: 0;
}

.policy-block ul {
  margin: 0.6rem 0;
  padding: 0;
}

.policy-block ul li {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.9;
  padding-left: 22px;
  position: relative;
  margin-bottom: 0.4rem;
}
.policy-block ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 11px;
  width: 6px;
  height: 6px;
  background: #c9a96e;
  border-radius: 50%;
}

.policy-block ul li:last-child {
  margin-bottom: 0;
}

.policy-block ul li strong {
  color: #333;
}

.policy-contact-card {
  background: #fff;
  border-radius: 6px;
  padding: 32px;
  margin-top: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  border-left: 3px solid #c9a96e;
}

.policy-contact-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}

.policy-contact-card p {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

.policy-contact-card ul {
  margin: 0;
  padding: 0;
}

.policy-contact-card ul li {
  font-size: 0.92rem;
  color: #666;
  line-height: 2;
  padding-left: 24px;
  position: relative;
}
.policy-contact-card ul li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 10px;
  width: 4px;
  height: 12px;
  background: #c9a96e;
  border-radius: 2px;
}

.policy-contact-card ul li strong {
  color: #333;
  display: inline-block;
  min-width: 75px;
}

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: #c9a96e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(201,169,110,0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  pointer-events: none;
  z-index: 999;
  border: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: #b89452;
  transform: translateY(-2px);
}

/* ==================== Contact Page ==================== */
.contact-section {
  padding: 60px 0;
  background: #fafaf8;
}

.contact-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.contact-form-wrap {
  flex: 1;
  background: #fff;
  border-radius: 6px;
  padding: 36px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.contact-form-wrap h2 {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 4px;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.contact-form-wrap > p {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 2rem;
}

.contact-form .form-row {
  display: flex;
  gap: 20px;
}

.contact-form .form-group {
  margin-bottom: 1.2rem;
}

.contact-form .form-group.half {
  flex: 1;
}

.contact-form .form-group label {
  display: block;
  font-size: 0.82rem;
  color: #666;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #333;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #fafafa;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color: #c9a96e;
  box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
  background: #fff;
  outline: none;
}

.contact-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-primary {
  padding: 14px 44px;
  font-size: 0.9rem;
  letter-spacing: 2px;
  border-radius: 4px;
  margin-top: 0.5rem;
}

.contact-info-panel {
  width: 360px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  background: #fff;
  border-radius: 6px;
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s, transform 0.3s;
  border-left: 3px solid transparent;
}

.contact-info-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transform: translateY(-1px);
  border-left-color: #c9a96e;
}

.contact-info-card .contact-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  background: #f5f0eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.contact-info-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.7;
}

.contact-info-card p a {
  color: #c9a96e;
  transition: color 0.3s;
}

.contact-info-card p a:hover {
  color: #b89452;
}
