/* index.ejs style block 1 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    
    :root {
      --gold: #c8a96e;
      --gold-light: #e8d5b0;
      --dark: #1a1a2e;
      --dark-soft: #2d2d44;
      --text: #3d3d5c;
      --text-light: #8888aa;
      --bg: #f7f5f2;
      --card-bg: #ffffff;
      --shadow: 0 4px 24px rgba(0,0,0,0.06);
      --shadow-hover: 0 12px 40px rgba(0,0,0,0.12);
      --radius: 16px;
    }
    
    body {
      font-family: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--bg);
      color: var(--text);
      min-height: 100vh;
    }
    
    /* ===== HERO ===== */
    .hero {
      position: relative;
      background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 50%, #1a1a2e 100%);
      padding: 80px 24px 64px;
      text-align: center;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at 30% 50%, rgba(200,169,110,0.08) 0%, transparent 50%),
                  radial-gradient(circle at 70% 50%, rgba(200,169,110,0.05) 0%, transparent 50%);
      animation: heroGlow 12s ease-in-out infinite alternate;
    }
    @keyframes heroGlow {
      0% { transform: translate(0, 0) rotate(0deg); }
      100% { transform: translate(-2%, -1%) rotate(3deg); }
    }
    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 680px;
      margin: 0 auto;
    }
    .hero-brand {
      font-family: 'Playfair Display', serif;
      color: var(--gold);
      font-size: 13px;
      letter-spacing: 6px;
      text-transform: uppercase;
      margin-bottom: 16px;
      opacity: 0.8;
    }
    .hero-title {
      color: #fff;
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 900;
      letter-spacing: 4px;
      line-height: 1.2;
      margin-bottom: 12px;
      text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }
    .hero-sub {
      color: rgba(255,255,255,0.6);
      font-size: 15px;
      font-weight: 300;
      letter-spacing: 2px;
      margin-bottom: 40px;
    }
    
    /* ===== SEARCH ===== */
    .search-section {
      position: relative;
      z-index: 2;
      max-width: 560px;
      margin: -28px auto 0;
      padding: 0 20px;
    }
    .search-wrapper {
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.10);
      display: flex;
      align-items: center;
      padding: 4px 4px 4px 20px;
      transition: box-shadow 0.3s;
    }
    .search-wrapper:focus-within {
      box-shadow: 0 8px 40px rgba(200,169,110,0.20);
    }
    .search-wrapper .icon {
      color: var(--text-light);
      font-size: 18px;
      margin-right: 10px;
      flex-shrink: 0;
    }
    .search-wrapper input {
      flex: 1;
      border: none;
      outline: none;
      font-size: 15px;
      padding: 14px 0;
      font-family: inherit;
      color: var(--text);
      background: transparent;
    }
    .search-wrapper input::placeholder {
      color: #bbb;
    }
    .search-wrapper .clear-btn {
      display: none;
      background: none;
      border: none;
      color: #bbb;
      cursor: pointer;
      padding: 8px 12px;
      font-size: 16px;
    }
    .search-wrapper .clear-btn.visible {
      display: block;
    }
    .search-count {
      text-align: center;
      color: var(--text-light);
      font-size: 13px;
      margin-top: 16px;
      min-height: 20px;
    }
    
    /* ===== GRID ===== */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 36px 24px 80px;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      gap: 28px;
    }
    
    /* ===== CARD ===== */
    .card {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--card-bg);
      box-shadow: var(--shadow);
      transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  box-shadow 0.35s ease;
      cursor: pointer;
      text-decoration: none;
      display: block;
      color: inherit;
    }
    .card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
    }
    .card-image {
      position: relative;
      width: 100%;
      height: 220px;
      overflow: hidden;
      background: var(--dark-soft);
    }
    .card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .card:hover .card-image img {
      transform: scale(1.05);
    }
    .card-image .gradient {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 60%;
      background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
      pointer-events: none;
    }
    .card-image .badge-days {
      position: absolute;
      top: 16px;
      left: 16px;
      background: rgba(0,0,0,0.55);
      backdrop-filter: blur(8px);
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 20px;
      letter-spacing: 1px;
    }
    .card-image .brand-tag {
      position: absolute;
      top: 16px;
      right: 16px;
      background: rgba(200, 169, 110, 0.85);
      backdrop-filter: blur(8px);
      color: #fff;
      font-size: 10px;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 20px;
      letter-spacing: 2px;
    }
    .card-image .price-tag {
      position: absolute;
      bottom: 16px;
      right: 16px;
      color: #fff;
      font-size: 18px;
      font-weight: 700;
      text-shadow: 0 2px 8px rgba(0,0,0,0.4);
      letter-spacing: 1px;
    }
    .card-image .price-tag small {
      font-size: 13px;
      font-weight: 400;
      opacity: 0.8;
    }
    .card-body {
      padding: 20px 22px 22px;
    }
    .card-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 6px;
      line-height: 1.3;
    }
    .card-subtitle {
      font-size: 12px;
      color: var(--text-light);
      letter-spacing: 1px;
      margin-bottom: 12px;
      text-transform: uppercase;
    }
    .card-desc {
      font-size: 13.5px;
      line-height: 1.7;
      color: var(--text);
      margin-bottom: 14px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .card-tag {
      font-size: 11px;
      padding: 4px 12px;
      border-radius: 20px;
      background: rgba(200, 169, 110, 0.10);
      color: var(--gold);
      border: 1px solid rgba(200, 169, 110, 0.20);
      font-weight: 500;
    }
    .card-cta {
      display: inline-block;
      margin-top: 14px;
      font-size: 13px;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 1px;
      transition: gap 0.2s;
    }
    .card-cta::after {
      content: ' →';
      transition: margin-left 0.2s;
    }
    .card:hover .card-cta::after {
      margin-left: 4px;
    }
    
    /* ===== EMPTY STATE ===== */
    .empty-state {
      grid-column: 1 / -1;
      text-align: center;
      padding: 80px 20px;
      color: var(--text-light);
    }
    .empty-state .emoji {
      font-size: 48px;
      margin-bottom: 16px;
      display: block;
    }
    .empty-state h3 {
      font-size: 20px;
      color: var(--dark);
      margin-bottom: 8px;
    }
    .empty-state p {
      font-size: 14px;
      color: var(--text-light);
    }
    
    /* ===== LANG TOGGLE ===== */
    .lang-toggle {
      position: fixed;
      top: 16px;
      right: 16px;
      z-index: 1000;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(0,0,0,0.08);
      color: #333;
      font-size: 11px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      font-family: 'Inter', system-ui, sans-serif;
    }
    .lang-toggle:hover {
      background: #c8a96e;
      color: #fff;
      border-color: #c8a96e;
    }

    /* ===== FOOTER ===== */
    .footer {
      text-align: center;
      padding: 40px 24px;
      color: var(--text-light);
      font-size: 13px;
      border-top: 1px solid rgba(0,0,0,0.05);
      letter-spacing: 0.5px;
    }
    .footer strong {
      color: var(--dark);
    }
    
    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .hero { padding: 60px 20px 48px; }
      .grid { grid-template-columns: 1fr; gap: 20px; }
      .container { padding: 24px 16px 60px; }
      .card-image { height: 190px; }
    }
    @media (min-width: 769px) and (max-width: 1024px) {
      .grid { grid-template-columns: repeat(2, 1fr); }
    }
    
    /* ===== ANIMATION ===== */
    .card {
      opacity: 0;
      animation: fadeUp 0.5s ease forwards;
    }
    .card:nth-child(1) { animation-delay: 0.05s; }
    .card:nth-child(2) { animation-delay: 0.10s; }
    .card:nth-child(3) { animation-delay: 0.15s; }
    .card:nth-child(4) { animation-delay: 0.20s; }
    .card:nth-child(5) { animation-delay: 0.25s; }
    .card:nth-child(6) { animation-delay: 0.30s; }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

/* ===== NAV ===== */
.site-nav {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 500;
}
.site-nav a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.site-nav a:hover { color: #c8a96e; }

/* ===== FOOTER ===== */
.site-footer {
  background: #1a1a2e;
  color: rgba(255,255,255,0.6);
  padding: 40px 24px 30px;
  font-size: 13px;
}
.site-footer .footer-links {
  max-width: 900px;
  margin: 0 auto 24px;
  text-align: center;
  line-height: 2;
}
.site-footer .footer-links strong {
  color: #c8a96e;
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}
.site-footer .footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.2s;
}
.site-footer .footer-links a:hover { color: #c8a96e; }
.site-footer .footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
  font-size: 12px;
}
.site-footer .footer-bottom a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}
