/*
Theme Name: Stylux Store
Theme URI: https://styluxstore.com
Author: Stylux
Description: 電子商務佈景主題範本骨架
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: stylux-store
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* ========================================
   CSS Variables / Design Tokens
   ======================================== */
:root {
  --color-primary: #333333;
  --color-accent: #B7A983;
  --color-text-primary: #111111;
  --color-text-secondary: #999999;
  --color-text-light: #888888;
  --color-white: #FFFFFF;
  --color-bg-light: #F9F9F9;
  --color-border: #D9D9D9;
  --font-primary: 'Noto Sans TC', sans-serif;
  --font-serif: 'Noto Serif TC', serif;
  --max-width: 1200px;
  --header-height: 76px;

  /* 迋斯生技 Figma 色系 */
  --color-wants-dark: #3A3F3B;
  --color-wants-cream: #FCFAF2;
  --color-wants-accent: #847D6B;
  --color-wants-gold: #FFE1A6;
  --color-footer-bg: #3A3F3B;
  --color-footer-title: #FFE1A6;

  /* 相容舊變數 */
  --color-brand-dark: #3A3F3B;
  --color-brand-red: #847D6B;
  --color-brand-orange: #877C55;
  --color-text-brown: #847D6B;
  --color-bg-warm: #FCFAF2;
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ========================================
   Header (通用骨架)
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-wants-dark);
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
}

@media (min-width: 769px) {
  .site-header {
    display: flex;
    width: 100%;
    height: 76px;
    padding: 16px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
}

.header-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  gap: 24px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-nav a,
.header-nav .menu-item a {
  font-family: 'Inter', 'Noto Sans TC', sans-serif;
  color: var(--color-wants-cream);
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease, opacity 0.3s ease;
  white-space: nowrap;
}

.header-nav a:hover,
.header-nav .menu-item a:hover {
  color: var(--color-wants-gold);
  opacity: 1;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo a {
  color: var(--color-wants-cream);
  font-size: 20px;
  font-weight: 700;
}

.header-logo img,
.header-logo__link img {
  height: 48px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-action-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--color-wants-cream);
  font-family: 'Inter', 'Noto Sans TC', sans-serif;
  font-size: 16px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.header-action-item:hover {
  color: var(--color-wants-gold);
  opacity: 1;
}

.header-cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.header-cart-count {
  position: absolute;
  top: -7px;
  right: -9px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--color-brand-orange);
  color: #fff;
  font-family: 'Inter', 'Noto Sans TC', sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
}

.header-cart-count:empty,
.header-cart-count.is-empty {
  display: none;
}

.header-mobile-cart .header-cart-icon {
  display: inline-flex;
}

.mobile-menu-toggle {
  display: none;
}

.header-mobile-tools {
  display: none;
}

/* ========================================
   Footer (通用骨架)
   ======================================== */
.site-footer {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), var(--color-footer-bg);
  color: var(--color-white);
  position: relative;
  padding-top: 48px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 100px 40px;
}

.footer-col-title {
  font-family: 'Georgia', 'Noto Sans TC', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-footer-title);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 9px;
}

.footer-col ul li,
.footer-col ul li a {
  font-family: 'Georgia', 'Noto Sans TC', serif;
  font-size: 14px;
  color: var(--color-white);
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--color-footer-title);
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 17px;
  align-items: center;
}

.footer-divider {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  height: 1px;
  background: rgba(255,255,255,0.3);
}

.footer-copyright {
  text-align: center;
  padding: 18px 0;
  background: transparent;
}

.footer-copyright p {
  font-family: 'Inter', 'Georgia', serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
}

/* ========================================
   Animations (通用)
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-stagger.animated > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.animate-stagger.animated > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.animate-stagger.animated > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.animate-stagger.animated > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.animate-stagger.animated > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

/* ========================================
   Responsive (通用骨架)
   ======================================== */
@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  .site-header {
    display: flex;
    width: 100%;
    max-width: 100vw;
    height: var(--header-height);
    padding: 0;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: var(--0001, #3A3F3B);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  }

  .header-inner {
    width: 100%;
    height: 100%;
    padding: 0 16px;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) 0;
    align-items: center;
    column-gap: 8px;
    row-gap: 0;
  }

  .header-logo {
    position: static;
    transform: none;
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    min-width: 0;
    max-width: 226px;
    z-index: 1;
  }

  .header-logo a,
  .header-logo .custom-logo-link {
    display: inline-flex;
  }

  .header-logo img {
    width: 96px !important;
    height: auto !important;
    max-width: 160px;
    max-height: 48px;
    object-fit: contain;
  }

  .header-action-item span {
    display: none;
  }

  .header-mobile-tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    z-index: 2;
  }

  .header-mobile-cart {
    display: flex;
    width: 32px;
    height: 32px;
    padding: 4px;
    align-items: center;
    justify-content: center;
  }

  .header-mobile-cart img {
    width: 22px;
    height: 22px;
    object-fit: contain;
  }

  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    min-width: 32px;
    min-height: 32px;
    padding: 7px 4px;
    z-index: 2;
  }

  .hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    flex: 0 0 2px;
    background-color: var(--color-wants-cream);
    transition: all 0.3s ease;
  }
  .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .header-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: -100vw;
    width: 100%;
    max-width: 100vw;
    height: calc(100vh - var(--header-height));
    background: var(--color-wants-dark);
    padding: 40px 20px;
    gap: 25px;
    transition: left 0.3s ease;
    z-index: 999;
    grid-column: 1 / -1;
    grid-row: 2;
    align-items: center;
    justify-content: flex-start;
    overflow-y: auto;
  }
  .header-nav.active {
    left: 0;
  }
  .header-nav a {
    color: var(--color-wants-cream);
    font-size: 18px;
  }

  .header-nav .header-action-item--member span {
    display: inline;
  }

  .header-nav .header-action-item--member img {
    display: none;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    width: calc(100% - 40px);
    max-width: 316px;
    gap: 0;
    margin: 0 auto;
    padding: 28px 0 20px clamp(56px, 16.6vw, 64px);
    text-align: left;
  }

  .footer-col:nth-child(2) {
    margin-top: 28px;
  }

  .footer-col:nth-child(3) {
    margin-top: 28px;
  }

  .site-footer {
    padding-top: 0;
    background: var(--color-footer-bg);
  }

  .footer-col-title {
    margin-bottom: 7px;
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    color: #ffe1a6;
  }

  .footer-col ul li {
    margin-bottom: 4px;
  }

  .footer-col ul li:last-child {
    margin-bottom: 0;
  }

  .footer-col ul li,
  .footer-col ul li a {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
    color: #fff;
  }

  .footer-divider {
    width: calc(100% - 74px);
    max-width: 516px;
    background: rgba(255, 255, 255, 0.85);
  }

  .footer-copyright {
    padding: 23px 20px 24px;
  }

  .footer-copyright p {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 12px;
    line-height: 1.35;
    color: #fff;
  }

  .footer-copyright a {
    display: block;
  }

  .footer-social {
    justify-content: center;
  }
}

/* ========================================
   行動版搜尋按鈕（Header 工具列）
   ======================================== */
.header-mobile-search {
  display: none; /* 桌面版隱藏 */
}

@media (max-width: 768px) {
  .header-mobile-search {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 4px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-wants-cream);
    flex-shrink: 0;
    transition: opacity 0.2s ease;
  }

  .header-mobile-search:hover {
    opacity: 0.75;
  }

  .header-mobile-search svg {
    display: block;
    width: 17px;
    height: 17px;
  }
}

/* ========================================
   行動版搜尋 Overlay
   ======================================== */
.mobile-search-overlay {
  display: none; /* 桌面版完全不顯示 */
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  z-index: 1100;
  background: var(--color-wants-dark);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.28s ease;
  box-shadow: 0 6px 24px rgba(0,0,0,0.28);
}

.mobile-search-overlay.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-search-overlay__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}

.mobile-search-overlay__form {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-search-overlay__input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 0 12px;
  height: 44px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.mobile-search-overlay__input-wrap:focus-within {
  border-color: var(--color-wants-gold);
  background: rgba(255,255,255,0.15);
}

.mobile-search-overlay__icon {
  flex-shrink: 0;
}

.mobile-search-overlay__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--color-wants-cream);
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 15px;
  font-weight: 400;
  height: 100%;
  min-width: 0;
}

.mobile-search-overlay__input::placeholder {
  color: rgba(252, 250, 242, 0.45);
}

.mobile-search-overlay__input::-webkit-search-cancel-button {
  display: none;
}

.mobile-search-overlay__clear {
  background: none;
  border: none;
  color: rgba(252, 250, 242, 0.5);
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  display: none;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.mobile-search-overlay__clear.is-visible {
  display: block;
}

.mobile-search-overlay__clear:hover {
  color: var(--color-wants-cream);
}

.mobile-search-overlay__submit {
  height: 44px;
  padding: 0 20px;
  background: var(--color-wants-accent);
  color: var(--color-wants-cream);
  border: none;
  border-radius: 8px;
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.15s ease;
  flex-shrink: 0;
}

.mobile-search-overlay__submit:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.mobile-search-overlay__close {
  background: none;
  border: none;
  color: rgba(252, 250, 242, 0.7);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.mobile-search-overlay__close:hover {
  color: var(--color-wants-cream);
}

@media (max-width: 768px) {
  .mobile-search-overlay {
    display: flex; /* 行動版才啟用 */
  }
}

/* ========================================
   搜尋結果頁（search.php）
   ======================================== */
.search-page {
  background: var(--color-wants-cream);
  min-height: calc(100vh - var(--header-height));
  padding-top: var(--header-height);
}

.search-page__header {
  background: var(--color-wants-dark);
  padding: 40px 20px;
  text-align: center;
}

.search-page__title {
  font-family: 'Georgia', 'Noto Sans TC', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-wants-cream);
  margin: 0 0 6px;
  line-height: 1.4;
}

.search-page__meta {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 13px;
  color: rgba(252, 250, 242, 0.6);
  margin: 0;
}

.search-page__query {
  color: var(--color-wants-gold);
}

.search-page__form-wrap {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.search-page__form {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 480px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.1);
}

.search-page__form-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--color-wants-cream);
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 15px;
  padding: 0 16px;
  height: 48px;
}

.search-page__form-input::placeholder {
  color: rgba(252, 250, 242, 0.45);
}

.search-page__form-btn {
  height: 48px;
  padding: 0 20px;
  background: var(--color-wants-accent);
  color: #fff;
  border: none;
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.search-page__form-btn:hover {
  opacity: 0.85;
}

.search-page__body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

/* 搜尋結果商品網格 */
.search-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .search-results-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .search-results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* 搜尋商品卡片（沿用 product-list 設計語彙） */
.search-card {
  background: #fff;
  border: 1px solid #E8E4DA;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.search-card:hover {
  box-shadow: 0 4px 20px rgba(58, 63, 59, 0.12);
  transform: translateY(-2px);
  opacity: 1;
}

.search-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-wants-cream);
}

.search-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.search-card:hover .search-card__img {
  transform: scale(1.04);
}

.search-card__body {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.search-card__cat {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 11px;
  color: var(--color-wants-accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.search-card__name {
  font-family: 'Georgia', 'Noto Sans TC', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-wants-dark);
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-card__price {
  font-family: 'Georgia', 'Noto Sans TC', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-wants-dark);
  margin-top: auto;
}

.search-card__price del {
  opacity: 0.5;
  font-size: 12px;
  font-weight: 400;
  margin-right: 4px;
  text-decoration: line-through;
}

/* 無結果狀態 */
.search-no-results {
  text-align: center;
  padding: 80px 20px;
}

.search-no-results__icon {
  margin: 0 auto 24px;
  width: 64px;
  height: 64px;
  opacity: 0.3;
}

.search-no-results__title {
  font-family: 'Georgia', 'Noto Sans TC', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-wants-dark);
  margin: 0 0 10px;
}

.search-no-results__desc {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 14px;
  color: #888;
  margin: 0;
  line-height: 1.6;
}


#about-main {
  background: var(--color-white);
  padding-bottom: 80px;
}

.about-section {
  padding: 60px 20px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.section-title {
  font-family: 'Georgia', 'Noto Sans TC', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--color-brand-dark);
}

.title-underline {
  width: 40px;
  height: 5px;
  background-color: var(--color-brand-red);
  border-radius: 3px;
}

/* Hero Section */
.about-hero {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background-color: var(--color-bg-warm);
  overflow: hidden;
}

.about-hero-container {
  max-width: var(--max-width);
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

.about-hero-content {
  max-width: 500px;
  text-align: left;
}

.hero-subtitle {
  font-family: 'Georgia', serif;
  font-size: 14px;
  color: #D84315;
  display: block;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.hero-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-brand-dark);
  margin-bottom: 25px;
}

.hero-text {
  font-size: 16px;
  color: var(--color-text-brown);
  line-height: 1.8;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.1;
  background-image: radial-gradient(circle at 30% 50%, var(--color-brand-orange) 0%, transparent 50%);
  pointer-events: none;
}

/* Our Persistence */
.persistence-grid {
  display: flex;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
}

.persistence-card {
  width: 213px;
  min-height: 324px;
  border-radius: 122.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.persistence-card:hover {
  transform: translateY(-10px);
}

.bg-peach {
  background-color: #FBE9E7;
}

.bg-cream {
  background-color: #FFF0D1;
}

.card-icon {
  color: var(--color-brand-dark);
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}

.card-title {
  font-family: 'Georgia', 'Noto Sans TC', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-brand-dark);
  margin-bottom: 20px;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-list li {
  font-size: 14px;
  color: var(--color-text-brown);
}

.card-list li.highlight {
  font-size: 12px;
  color: #888888;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 5px;
}

/* Stats Box */
.about-stats {
  padding: 40px 20px;
}

.stats-box {
  border: 1px solid var(--color-footer-bg);
  border-radius: 10px;
  padding: 30px 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 992px;
  margin: 0 auto;
}

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

.stat-number {
  font-family: 'Georgia', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-footer-bg);
  line-height: 1;
}

.stat-label {
  background-color: var(--color-footer-bg);
  color: var(--color-white);
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 100px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: var(--color-footer-bg);
  opacity: 0.5;
}

/* History Timeline */
.history-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  border-style: dashed;
  border-width: 0 0 0 2px;
  background: transparent;
  border-color: #C7806F;
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  padding-right: 50px;
  position: relative;
  margin-bottom: 50px;
}

.timeline-item.timeline-inverted {
  align-self: flex-end;
  justify-content: flex-start;
  margin-left: 50%;
  padding-right: 0;
  padding-left: 50px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-number {
  position: absolute;
  right: -27px;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background-color: var(--color-white);
  border: 1px solid #929292;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-footer-bg);
  z-index: 2;
}

.timeline-inverted .timeline-number {
  left: -27px;
  right: auto;
}

.timeline-content {
  background: var(--color-white);
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  max-width: 350px;
  text-align: right;
}

.timeline-inverted .timeline-content {
  text-align: left;
}

.timeline-year {
  font-family: 'Georgia', serif;
  font-size: 16px;
  color: var(--color-footer-bg);
  font-weight: bold;
  margin-bottom: 5px;
}

.timeline-title {
  font-size: 18px;
  color: var(--color-brand-dark);
  margin-bottom: 10px;
  font-weight: 700;
}

.timeline-text {
  font-size: 14px;
  color: var(--color-text-brown);
  line-height: 1.6;
}

/* Artisan Team */
.team-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
}

.member-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #EFEFEF;
  margin-bottom: 20px;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--color-footer-bg);
}

.placeholder-photo {
  position: relative;
}

.placeholder-photo::after {
  content: 'Photo';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #999;
}

.member-name {
  font-family: 'Georgia', 'Noto Sans TC', serif;
  font-size: 18px;
  color: var(--color-brand-dark);
  font-weight: 700;
  margin-bottom: 5px;
}

.member-role {
  font-size: 14px;
  color: var(--color-text-brown);
}

/* Responsive adjustments for About */
@media (max-width: 992px) {
  .persistence-grid {
    gap: 30px;
  }
  .stats-box {
    flex-direction: column;
    padding: 30px;
  }
  .stat-divider {
    width: 100%;
    height: 1px;
  }
  .timeline-line {
    left: 27px;
  }
  .timeline-item, .timeline-item.timeline-inverted {
    width: 100%;
    margin-left: 0;
    padding-left: 80px;
    padding-right: 0;
    justify-content: flex-start;
  }
  .timeline-number {
    left: 0;
    right: auto;
  }
  .timeline-content {
    text-align: left;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .about-hero-container {
    justify-content: center;
  }
  .about-hero-content {
    text-align: center;
  }
}

/* ========================================
   Events Page Styles
   ======================================== */
#events-main {
  background: var(--color-white);
  padding-bottom: 80px;
}

/* Events Hero Section */
.events-hero {
  position: relative;
  width: 100%;
  height: 480px;
  background-color: #FDF5F0;
  background-image: url('https://placehold.co/1920x480/FDF5F0/3E2723?text=Hero+Background');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.events-hero-container {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.events-hero-content {
  max-width: 450px;
  background: rgba(255, 255, 255, 0.6);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}

.events-hero-badge {
  display: inline-block;
  border: 1px solid var(--color-brand-red);
  color: var(--color-brand-red);
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 13px;
  margin-bottom: 20px;
}

.events-hero-title {
  font-family: 'Georgia', 'Noto Sans TC', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--color-brand-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.events-hero-desc {
  font-size: 18px;
  color: var(--color-text-brown);
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-brand-red);
  color: var(--color-white);
  padding: 12px 40px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background-color: #7A010A;
  transform: translateY(-2px);
  color: var(--color-white);
  opacity: 1;
}

/* Featured Events Section */
.events-section {
  padding: 60px 20px;
  position: relative;
}

.events-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background-image: radial-gradient(circle at 80% 50%, rgba(253, 245, 240, 0.8) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.events-container {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.event-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-image-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  color: var(--color-white);
  font-weight: 700;
  z-index: 2;
}

.badge-red { background-color: #97010C; }
.badge-yellow { background-color: #FBC02D; color: #3E2723; }
.badge-grey { background-color: #757575; }
.badge-green { background-color: #4CAF50; }
.badge-pink { background-color: #E91E63; }

.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-meta {
  font-size: 12px;
  color: #888888;
  margin-bottom: 8px;
}

.card-title {
  font-family: 'Georgia', 'Noto Sans TC', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-brand-dark);
  margin-bottom: 12px;
}

.card-desc {
  font-size: 14px;
  color: var(--color-text-brown);
  margin-bottom: 24px;
  flex-grow: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-footer-bg);
  color: var(--color-footer-bg);
  padding: 8px 24px;
  border-radius: 100px;
  font-size: 14px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.btn-outline:hover {
  background-color: var(--color-footer-bg);
  color: var(--color-white);
  opacity: 1;
}

.btn-solid-peach {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-footer-bg);
  color: var(--color-white);
  padding: 8px 24px;
  border-radius: 100px;
  font-size: 14px;
  transition: all 0.3s ease;
  align-self: flex-start;
  border: 1px solid var(--color-footer-bg);
}

.btn-solid-peach:hover {
  background-color: transparent;
  color: var(--color-footer-bg);
  opacity: 1;
}

/* Responsive adjustments for Events */
@media (max-width: 992px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .events-hero-title {
    font-size: 32px;
  }
  .events-grid {
    grid-template-columns: 1fr;
  }
  .events-hero-content {
    background: rgba(255, 255, 255, 0.85);
  }
}

/* ========================================
   QA Page Styles
   ======================================== */
#qa-main {
  background: var(--color-white);
  padding-bottom: 80px;
}

/* Container for QA */
.qa-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* QA Hero Section */
.qa-hero {
  position: relative;
  width: 100%;
  height: 280px;
  background-color: #FDF5F0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qa-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://placehold.co/1200x280/FDF5F0/3E2723?text=FAQ+Hero');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.qa-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 500px;
}

.qa-hero-title {
  font-family: 'Georgia', 'Noto Sans TC', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-brand-dark);
  margin-bottom: 10px;
}

.qa-hero-subtitle {
  font-size: 16px;
  color: var(--color-text-brown);
  margin-bottom: 20px;
}

.qa-search-box {
  width: 100%;
  background: var(--color-white);
  border: 1px solid #d7ccc8;
  border-radius: 30px;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  height: 45px;
}

.qa-search-box input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 14px;
  color: #888;
  background: transparent;
}

/* Categories Section */
.qa-categories-section {
  padding: 40px 0;
}

.qa-categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.qa-cat-btn {
  background: var(--color-white);
  border: 1px solid #d7ccc8;
  color: var(--color-brand-dark);
  padding: 10px 25px;
  border-radius: 100px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Georgia', 'Noto Sans TC', serif;
}

.qa-cat-btn:hover {
  border-color: #97010C;
  color: #97010C;
}

.qa-cat-btn.active {
  background-color: #97010C;
  color: var(--color-white);
  border-color: #97010C;
}

/* FAQ Accordion Section */
.qa-accordion-section {
  padding-bottom: 60px;
}

.qa-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.qa-item {
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
}

.qa-item[open] {
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.qa-question {
  padding: 20px 25px;
  font-family: 'Georgia', 'Noto Sans TC', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-brand-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none; /* Hide default arrow */
  transition: color 0.3s ease;
}

.qa-question::-webkit-details-marker {
  display: none; /* Hide default arrow in webkit */
}

.qa-item[open] .qa-question {
  color: #C7806F;
  border-bottom: 1px solid #f0f0f0;
}

.qa-answer {
  padding: 20px 25px;
  font-size: 14px;
  color: var(--color-text-brown);
  line-height: 1.6;
}

.qa-answer p {
  margin-bottom: 10px;
}

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

.qa-tel-info {
  margin-top: 15px;
  color: #888;
  font-size: 13px;
}

/* Contact Banner Section */
.qa-contact-section {
  padding-bottom: 60px;
}

.qa-contact-banner {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FDF5F0;
}

.qa-contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://placehold.co/1000x160/FDF5F0/3E2723?text=Contact+Banner');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.qa-contact-content {
  position: relative;
  z-index: 2;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  padding: 20px 40px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.qa-contact-title {
  font-family: 'Georgia', 'Noto Sans TC', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-brand-dark);
  margin-bottom: 5px;
}

.qa-contact-subtitle {
  font-size: 14px;
  color: var(--color-text-brown);
  margin-bottom: 15px;
}

.qa-contact-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.qa-btn-contact, .qa-btn-call {
  padding: 8px 30px;
  font-size: 14px;
  border-radius: 100px;
  height: 40px;
  line-height: 22px;
}

.qa-btn-contact {
  background-color: #97010C;
  color: #fff;
}
.qa-btn-contact:hover {
  background-color: #7A010A;
}

.qa-btn-call {
  border: 1px solid #97010C;
  color: #97010C;
}
.qa-btn-call:hover {
  background-color: #97010C;
  color: #fff;
}

/* Responsive QA */
@media (max-width: 768px) {
  .qa-categories {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 10px;
  }
  .qa-cat-btn {
    white-space: nowrap;
  }
  .qa-contact-banner {
    height: auto;
    padding: 30px 15px;
  }
  .qa-contact-content {
    width: 100%;
  }
  .qa-contact-actions {
    flex-direction: column;
    gap: 10px;
  }
}

/* ========================================
   Product List Page Styles
   ======================================== */
#product-list-main {
  background: var(--color-white);
  padding-bottom: 80px;
}

.products-breadcrumb {
  padding: 20px 0;
  font-size: 14px;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.products-breadcrumb a {
  color: var(--color-text-light);
}

.products-breadcrumb a:hover {
  color: var(--color-brand-red);
}

.products-hero {
  position: relative;
  width: 100%;
  height: 240px;
  background-color: var(--color-bg-warm);
  background-image: url('https://placehold.co/1920x240/FDF5F0/3E2723?text=Products+Banner');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.products-hero-content {
  text-align: center;
}

.products-hero-title {
  font-family: 'Georgia', 'Noto Sans TC', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--color-brand-dark);
  margin-bottom: 8px;
}

.products-hero-subtitle {
  font-size: 14px;
  color: var(--color-brand-red);
}

.products-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.products-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.products-categories {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.category-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  padding: 0 24px;
  border-radius: 60px;
  border: 1px solid #d7ccc8;
  font-size: 13px;
  color: var(--color-text-brown);
  background: var(--color-white);
  transition: all 0.3s ease;
}

.category-btn:hover {
  border-color: var(--color-brand-red);
  color: var(--color-brand-red);
}

.category-btn.active {
  background: var(--color-brand-red);
  color: var(--color-white);
  border-color: var(--color-brand-red);
}

.products-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-label {
  font-size: 13px;
  color: var(--color-text-light);
}

.sort-select {
  border: none;
  background: transparent;
  font-size: 13px;
  color: var(--color-text-brown);
  cursor: pointer;
  outline: none;
  font-family: inherit;
  appearance: none;
  padding-right: 15px;
}

.sort-select option {
  color: var(--color-brand-dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.product-card {
  background: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 15px;
}

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

.product-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 15px;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  z-index: 2;
  color: var(--color-white);
}

.badge-top {
  background-color: var(--color-brand-red);
}

.badge-new {
  background-color: #EAE0D5;
  color: var(--color-text-brown);
}

.badge-sale {
  background-color: #97010C;
}

.product-info {
  text-align: left;
}

.product-title {
  font-family: 'Georgia', 'Noto Sans TC', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-brand-dark);
  margin-bottom: 6px;
}

.product-desc {
  font-size: 14px;
  color: var(--color-text-brown);
  margin-bottom: 10px;
}

.product-price {
  font-family: 'Georgia', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-brand-red);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-current {
  color: var(--color-brand-red);
}

.price-original {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  font-weight: normal;
}

.products-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}

.page-num, .page-next {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  border: 1px solid #d7ccc8;
  color: var(--color-text-brown);
  font-size: 12px;
  font-weight: normal;
  transition: all 0.3s ease;
}

.page-num {
  width: 45px;
  height: 45px;
  font-family: 'Georgia', serif;
}

.page-next {
  padding: 0 22px;
  height: 45px;
  font-family: 'Georgia', serif;
}

.page-num.active, .page-num:hover, .page-next:hover {
  background: var(--color-brand-red);
  color: var(--color-white);
  border-color: var(--color-brand-red);
}

/* Responsive Products Grid */
@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .products-filter-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
       P r o d u c t   D e t a i l   P a g e   S t y l e s 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 # p r o d u c t - d e t a i l - m a i n   { 
     b a c k g r o u n d :   v a r ( - - c o l o r - w h i t e ) ; 
     p a d d i n g - b o t t o m :   8 0 p x ; 
 } 
 
 . p r o d u c t - d e t a i l - c o n t a i n e r   { 
     m a x - w i d t h :   v a r ( - - m a x - w i d t h ) ; 
     m a r g i n :   0   a u t o ; 
     p a d d i n g :   0   2 0 p x ; 
 } 
 
 . p r o d u c t - b r e a d c r u m b   { 
     f o n t - f a m i l y :   ' G e o r g i a ' ,   ' N o t o   S a n s   T C ' ,   s a n s - s e r i f ; 
     f o n t - s i z e :   1 4 p x ; 
     c o l o r :   v a r ( - - c o l o r - t e x t - l i g h t ) ; 
     m a r g i n - t o p :   3 0 p x ; 
     m a r g i n - b o t t o m :   4 0 p x ; 
     d i s p l a y :   f l e x ; 
     g a p :   8 p x ; 
     a l i g n - i t e m s :   c e n t e r ; 
 } 
 
 . p r o d u c t - b r e a d c r u m b   a   { 
     c o l o r :   v a r ( - - c o l o r - t e x t - l i g h t ) ; 
 } 
 
 . p r o d u c t - b r e a d c r u m b   s p a n   { 
     c o l o r :   v a r ( - - c o l o r - t e x t - b r o w n ) ; 
 } 
 
 / *   P r i m a r y   S e c t i o n   * / 
 . p r o d u c t - p r i m a r y   { 
     d i s p l a y :   f l e x ; 
     g a p :   6 0 p x ; 
     m a r g i n - b o t t o m :   8 0 p x ; 
 } 
 
 . p r o d u c t - g a l l e r y   { 
     f l e x :   1 ; 
 } 
 
 . m a i n - i m a g e - w r a p   { 
     w i d t h :   1 0 0 % ; 
     a s p e c t - r a t i o :   1 0   /   9 ; 
     b a c k g r o u n d - c o l o r :   # F B E 9 E 7 ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     m a r g i n - b o t t o m :   2 0 p x ; 
     o v e r f l o w :   h i d d e n ; 
 } 
 
 . m a i n - i m a g e - w r a p   i m g   { 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   1 0 0 % ; 
     o b j e c t - f i t :   c o v e r ; 
 } 
 
 . t h u m b n a i l - l i s t   { 
     d i s p l a y :   f l e x ; 
     g a p :   1 5 p x ; 
 } 
 
 . t h u m b n a i l - i t e m   { 
     w i d t h :   8 0 p x ; 
     h e i g h t :   8 0 p x ; 
     b a c k g r o u n d - c o l o r :   # F B E 9 E 7 ; 
     c u r s o r :   p o i n t e r ; 
     b o r d e r :   2 p x   s o l i d   t r a n s p a r e n t ; 
     t r a n s i t i o n :   b o r d e r - c o l o r   0 . 3 s ; 
 } 
 
 . t h u m b n a i l - i t e m . a c t i v e ,   . t h u m b n a i l - i t e m : h o v e r   { 
     b o r d e r - c o l o r :   v a r ( - - c o l o r - b r a n d - r e d ) ; 
 } 
 
 . t h u m b n a i l - i t e m   i m g   { 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   1 0 0 % ; 
     o b j e c t - f i t :   c o v e r ; 
 } 
 
 / *   P r o d u c t   I n f o   P a n e l   * / 
 . p r o d u c t - i n f o - p a n e l   { 
     f l e x :   1 ; 
     m a x - w i d t h :   4 8 0 p x ; 
 } 
 
 . p r o d u c t - i n f o - p a n e l   . p r o d u c t - b a d g e   { 
     d i s p l a y :   i n l i n e - b l o c k ; 
     p a d d i n g :   6 p x   1 2 p x ; 
     f o n t - s i z e :   1 2 p x ; 
     c o l o r :   v a r ( - - c o l o r - w h i t e ) ; 
     m a r g i n - b o t t o m :   1 5 p x ; 
 } 
 
 . p r o d u c t - i n f o - p a n e l   . p r o d u c t - t i t l e   { 
     f o n t - f a m i l y :   ' G e o r g i a ' ,   ' N o t o   S a n s   T C ' ,   s e r i f ; 
     f o n t - s i z e :   2 8 p x ; 
     f o n t - w e i g h t :   7 0 0 ; 
     c o l o r :   v a r ( - - c o l o r - b r a n d - d a r k ) ; 
     m a r g i n - b o t t o m :   1 0 p x ; 
 } 
 
 . p r o d u c t - r a t i n g   { 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     g a p :   1 0 p x ; 
     m a r g i n - b o t t o m :   2 0 p x ; 
 } 
 
 . p r o d u c t - r a t i n g   . s t a r s   { 
     c o l o r :   # F A D B 1 4 ; 
     f o n t - s i z e :   1 6 p x ; 
     l e t t e r - s p a c i n g :   2 p x ; 
 } 
 
 . p r o d u c t - r a t i n g   . r a t i n g - c o u n t   { 
     f o n t - s i z e :   1 4 p x ; 
     c o l o r :   v a r ( - - c o l o r - t e x t - l i g h t ) ; 
 } 
 
 . p r o d u c t - i n f o - p a n e l   . p r o d u c t - p r i c e   { 
     f o n t - f a m i l y :   ' G e o r g i a ' ,   s e r i f ; 
     f o n t - s i z e :   3 2 p x ; 
     f o n t - w e i g h t :   7 0 0 ; 
     c o l o r :   v a r ( - - c o l o r - f o o t e r - b g ) ; 
     m a r g i n - b o t t o m :   2 0 p x ; 
 } 
 
 . p r o d u c t - i n f o - p a n e l   . p r o d u c t - d e s c r i p t i o n   { 
     f o n t - s i z e :   1 4 p x ; 
     c o l o r :   v a r ( - - c o l o r - t e x t - b r o w n ) ; 
     l i n e - h e i g h t :   1 . 8 ; 
     m a r g i n - b o t t o m :   3 0 p x ; 
 } 
 
 . p r o d u c t - o p t i o n s   { 
     m a r g i n - b o t t o m :   3 0 p x ; 
 } 
 
 . o p t i o n - g r o u p   { 
     m a r g i n - b o t t o m :   2 0 p x ; 
 } 
 
 . o p t i o n - l a b e l   { 
     f o n t - f a m i l y :   ' G e o r g i a ' ,   ' N o t o   S a n s   T C ' ,   s e r i f ; 
     f o n t - w e i g h t :   7 0 0 ; 
     f o n t - s i z e :   1 4 p x ; 
     c o l o r :   v a r ( - - c o l o r - b r a n d - d a r k ) ; 
     d i s p l a y :   b l o c k ; 
     m a r g i n - b o t t o m :   1 0 p x ; 
 } 
 
 . f l a v o r - o p t i o n s   { 
     d i s p l a y :   f l e x ; 
     g a p :   1 5 p x ; 
 } 
 
 . f l a v o r - r a d i o   { 
     c u r s o r :   p o i n t e r ; 
     p o s i t i o n :   r e l a t i v e ; 
 } 
 
 . f l a v o r - r a d i o   i n p u t   { 
     p o s i t i o n :   a b s o l u t e ; 
     o p a c i t y :   0 ; 
     c u r s o r :   p o i n t e r ; 
 } 
 
 . f l a v o r - b t n   { 
     d i s p l a y :   i n l i n e - b l o c k ; 
     p a d d i n g :   8 p x   2 0 p x ; 
     b o r d e r :   1 p x   s o l i d   v a r ( - - c o l o r - b o r d e r ) ; 
     b o r d e r - r a d i u s :   3 0 p x ; 
     f o n t - s i z e :   1 3 p x ; 
     c o l o r :   v a r ( - - c o l o r - t e x t - b r o w n ) ; 
     t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . f l a v o r - r a d i o   i n p u t : c h e c k e d   ~   . f l a v o r - b t n   { 
     b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - b r a n d - r e d ) ; 
     c o l o r :   v a r ( - - c o l o r - w h i t e ) ; 
     b o r d e r - c o l o r :   v a r ( - - c o l o r - b r a n d - r e d ) ; 
 } 
 
 . q u a n t i t y - s e l e c t o r   { 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     b o r d e r :   1 p x   s o l i d   v a r ( - - c o l o r - b o r d e r ) ; 
     b o r d e r - r a d i u s :   3 0 p x ; 
     w i d t h :   1 2 0 p x ; 
     h e i g h t :   4 0 p x ; 
     o v e r f l o w :   h i d d e n ; 
 } 
 
 . q t y - b t n   { 
     w i d t h :   3 5 p x ; 
     h e i g h t :   1 0 0 % ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     f o n t - s i z e :   1 8 p x ; 
     c o l o r :   v a r ( - - c o l o r - t e x t - b r o w n ) ; 
     b a c k g r o u n d :   t r a n s p a r e n t ; 
 } 
 
 . q t y - b t n : h o v e r   { 
     b a c k g r o u n d :   # f 5 f 5 f 5 ; 
 } 
 
 . q t y - i n p u t   { 
     f l e x :   1 ; 
     t e x t - a l i g n :   c e n t e r ; 
     b o r d e r :   n o n e ; 
     f o n t - s i z e :   1 6 p x ; 
     c o l o r :   v a r ( - - c o l o r - t e x t - b r o w n ) ; 
     - m o z - a p p e a r a n c e :   t e x t f i e l d ; 
 } 
 
 . q t y - i n p u t : : - w e b k i t - o u t e r - s p i n - b u t t o n , 
 . q t y - i n p u t : : - w e b k i t - i n n e r - s p i n - b u t t o n   { 
     - w e b k i t - a p p e a r a n c e :   n o n e ; 
     m a r g i n :   0 ; 
 } 
 
 . p r o d u c t - a c t i o n s   { 
     d i s p l a y :   f l e x ; 
     g a p :   1 5 p x ; 
     m a r g i n - b o t t o m :   2 5 p x ; 
 } 
 
 . b t n - a d d - t o - c a r t   { 
     f l e x :   1 ; 
     b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - b r a n d - r e d ) ; 
     c o l o r :   v a r ( - - c o l o r - w h i t e ) ; 
     b o r d e r :   n o n e ; 
     f o n t - f a m i l y :   ' G e o r g i a ' ,   ' N o t o   S a n s   T C ' ,   s e r i f ; 
     f o n t - w e i g h t :   7 0 0 ; 
     f o n t - s i z e :   1 8 p x ; 
     h e i g h t :   5 0 p x ; 
     b o r d e r - r a d i u s :   5 p x ; 
     t r a n s i t i o n :   o p a c i t y   0 . 3 s ; 
 } 
 
 . b t n - a d d - t o - c a r t : h o v e r   { 
     o p a c i t y :   0 . 9 ; 
 } 
 
 . b t n - w i s h l i s t   { 
     b a c k g r o u n d :   t r a n s p a r e n t ; 
     b o r d e r :   1 p x   s o l i d   v a r ( - - c o l o r - b r a n d - r e d ) ; 
     c o l o r :   v a r ( - - c o l o r - b r a n d - r e d ) ; 
     f o n t - s i z e :   1 6 p x ; 
     p a d d i n g :   0   2 0 p x ; 
     b o r d e r - r a d i u s :   5 p x ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     t r a n s i t i o n :   a l l   0 . 3 s ; 
 } 
 
 . b t n - w i s h l i s t : h o v e r   { 
     b a c k g r o u n d :   v a r ( - - c o l o r - b r a n d - r e d ) ; 
     c o l o r :   v a r ( - - c o l o r - w h i t e ) ; 
 } 
 
 . p r o d u c t - d e l i v e r y - i n f o   { 
     f o n t - s i z e :   1 2 p x ; 
     c o l o r :   v a r ( - - c o l o r - t e x t - l i g h t ) ; 
     p a d d i n g - t o p :   1 5 p x ; 
     b o r d e r - t o p :   1 p x   s o l i d   # e e e ; 
 } 
 
 / *   S e c o n d a r y   D e t a i l s   ( T a b s )   * / 
 . p r o d u c t - s e c o n d a r y   { 
     m a r g i n - b o t t o m :   8 0 p x ; 
 } 
 
 . p r o d u c t - t a b s   { 
     d i s p l a y :   f l e x ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     g a p :   5 0 p x ; 
     m a r g i n - b o t t o m :   4 0 p x ; 
     b o r d e r - b o t t o m :   1 p x   s o l i d   # e e e ; 
 } 
 
 . t a b - b t n   { 
     p a d d i n g :   1 5 p x   0 ; 
     f o n t - s i z e :   1 4 p x ; 
     c o l o r :   v a r ( - - c o l o r - t e x t - b r o w n ) ; 
     p o s i t i o n :   r e l a t i v e ; 
     t r a n s i t i o n :   c o l o r   0 . 3 s ; 
 } 
 
 . t a b - b t n . a c t i v e   { 
     c o l o r :   v a r ( - - c o l o r - b r a n d - d a r k ) ; 
     f o n t - w e i g h t :   7 0 0 ; 
 } 
 
 . t a b - b t n . a c t i v e : : a f t e r   { 
     c o n t e n t :   ' ' ; 
     p o s i t i o n :   a b s o l u t e ; 
     b o t t o m :   - 1 p x ; 
     l e f t :   0 ; 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   2 p x ; 
     b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - b r a n d - r e d ) ; 
 } 
 
 . t a b - c o n t e n t   { 
     d i s p l a y :   n o n e ; 
     m a x - w i d t h :   8 0 0 p x ; 
     m a r g i n :   0   a u t o ; 
 } 
 
 . t a b - c o n t e n t . a c t i v e   { 
     d i s p l a y :   b l o c k ; 
     a n i m a t i o n :   f a d e I n   0 . 5 s   e a s e ; 
 } 
 
 . f e a t u r e s - g r i d   { 
     d i s p l a y :   f l e x ; 
     g a p :   6 0 p x ; 
 } 
 
 . f e a t u r e - c o l   { 
     f l e x :   1 ; 
 } 
 
 . f e a t u r e - t i t l e   { 
     f o n t - f a m i l y :   ' G e o r g i a ' ,   ' N o t o   S a n s   T C ' ,   s e r i f ; 
     f o n t - s i z e :   1 6 p x ; 
     f o n t - w e i g h t :   7 0 0 ; 
     c o l o r :   v a r ( - - c o l o r - b r a n d - d a r k ) ; 
     m a r g i n - b o t t o m :   1 5 p x ; 
 } 
 
 . f e a t u r e - l i s t   { 
     l i s t - s t y l e :   i n s i d e   d i s c ; 
     c o l o r :   v a r ( - - c o l o r - t e x t - b r o w n ) ; 
     f o n t - s i z e :   1 4 p x ; 
     l i n e - h e i g h t :   2 ; 
 } 
 
 . f e a t u r e - l i s t   l i   { 
     m a r g i n - b o t t o m :   5 p x ; 
 } 
 
 / *   C u s t o m e r   R e v i e w s   * / 
 . p r o d u c t - r e v i e w s   { 
     m a x - w i d t h :   8 0 0 p x ; 
     m a r g i n :   0   a u t o ; 
 } 
 
 . r e v i e w s - l i s t   { 
     d i s p l a y :   f l e x ; 
     f l e x - d i r e c t i o n :   c o l u m n ; 
     g a p :   2 0 p x ; 
 } 
 
 . r e v i e w - c a r d   { 
     b o r d e r :   1 p x   s o l i d   # e e e ; 
     p a d d i n g :   3 0 p x ; 
     b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - w h i t e ) ; 
     b o r d e r - r a d i u s :   5 p x ; 
 } 
 
 . r e v i e w - s t a r s   { 
     c o l o r :   # F A D B 1 4 ; 
     f o n t - s i z e :   1 4 p x ; 
     m a r g i n - b o t t o m :   1 0 p x ; 
     l e t t e r - s p a c i n g :   2 p x ; 
 } 
 
 . r e v i e w - t i t l e   { 
     f o n t - f a m i l y :   ' G e o r g i a ' ,   ' N o t o   S a n s   T C ' ,   s e r i f ; 
     f o n t - s i z e :   1 4 p x ; 
     f o n t - w e i g h t :   7 0 0 ; 
     c o l o r :   v a r ( - - c o l o r - b r a n d - d a r k ) ; 
     m a r g i n - b o t t o m :   5 p x ; 
 } 
 
 . r e v i e w - t e x t   { 
     f o n t - s i z e :   1 3 p x ; 
     c o l o r :   v a r ( - - c o l o r - t e x t - b r o w n ) ; 
     m a r g i n - b o t t o m :   1 5 p x ; 
 } 
 
 . r e v i e w - m e t a   { 
     f o n t - s i z e :   1 2 p x ; 
     c o l o r :   # 9 9 9 ; 
 } 
 
 / *   R e s p o n s i v e   P r o d u c t   D e t a i l s   * / 
 @ m e d i a   ( m a x - w i d t h :   9 9 2 p x )   { 
     . p r o d u c t - p r i m a r y   { 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   4 0 p x ; 
     } 
     . p r o d u c t - i n f o - p a n e l   { 
         m a x - w i d t h :   1 0 0 % ; 
     } 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
     . f e a t u r e s - g r i d   { 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   3 0 p x ; 
     } 
     . p r o d u c t - t a b s   { 
         g a p :   2 0 p x ; 
     } 
 } 
 
 
 
