<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 薤�蕁究�桁� */
body {
  background-color: #F8F3C8;
  font-family: 'Microsoft JhengHei', Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* 蕁狗����� */
header {
  background-color: #FFEB3B;
  padding: 10px 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo img {
  height: 50px;
}

.logo-text {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-left: 5px;
}

/* ��膣∽�� */
.search-bar {
  flex: 1;
  max-width: 400px;
  margin: 0 20px;
  position: relative;
}

.search-bar input {
  width: 100%;
  padding: 8px 12px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  outline: none;
}

.search-bar button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
}

/* ���傑��篏��� */
.header-actions {
  display: flex;
  align-items: center;
}

.header-actions a {
  color: #333;
  margin-left: 15px;
  font-size: 18px;
  text-decoration: none;
  position: relative;
}

.header-actions .cart-count {
  position: absolute;
  top: -5px;
  right: -8px;
  background-color: #e63c3c;
  color: white;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 蕁級�√��� */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* 筝肢���絎劫�� */
main {
  flex: 1;
}

/* ��膠糸��� - 篏�筝咲ゞ�������筝����� */
.category-nav {
  background-color: #FFEB3B;
  padding-bottom: 10px;
}

.category-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: space-between;
  max-width: 800px;
}

.category-list li {
  margin-right: 15px;
}

.category-list a {
  display: block;
  padding: 5px 0;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.category-list a:hover,
.category-list a.active {
  color: #333;
  font-weight: bold;
}

/* 篋у��絮�腓阪�� */
.product-showcase {
  margin-top: 20px;
}

/* 篋у��臀��� */
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

/* 篋у���∞�� */
.product-item {
  background: #FFFCE9;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

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

.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-image {

  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
}

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

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

.product-actions {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  transition: bottom 0.3s ease;
  background: rgba(255,255,255,0.9);
  padding: 8px 0;
}

.product-item:hover .product-actions {
  bottom: 0;
}

.product-actions button {
  background: #FFEB3B;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #333;
  transition: all 0.2s ease;
  padding: 0;
}

.product-actions button:hover {
  background: #e63c3c;
  color: white;
  transform: translateY(-3px);
}

.product-actions .add-to-cart {
  width: auto;
  border-radius: 20px;
  padding: 0 15px;
}

.product-actions .add-to-cart i {
  margin-right: 5px;
}

.product-name {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  height: 40px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: center;
  line-height: 1.4;
  font-weight: 500;
}

.product-price {
  font-size: 16px;
  color: #e63c3c;
  font-weight: bold;
  text-align: center;
  margin-top: 5px;
}

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

.current-price {
  color: #e63c3c;
}

/* 篋у��緇順� */
.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e63c3c;
  color: white;
  padding: 3px 8px;
  font-size: 12px;
  border-radius: 3px;
  z-index: 1;
}

.product-badge.new {
  background: #4CAF50;
}

.product-badge.hot {
  background: #FF9800;
}

/* ��膠紙��蘂� */
.category-title {
  font-size: 18px;
  margin: 30px 0 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #FFEB3B;
  position: relative;
  font-weight: 600;
}

.category-title:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 2px;
  background-color: #e63c3c;
}

/* ��莉醇�翫����� */
.load-more {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  background: none;
  border: none;
  color: #e63c3c;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 30px;
}

/* 罔���丞��絎劫�� - ���莅乗� */
.banner-container {
  width: 100%;
  margin-bottom: 20px;
  background-color: #fff;
  overflow: hidden;
}

/* 罔���丞�� */
.banner-image {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.banner-image img {
  width: 100%;
  display: block;
  max-height: 1200px;
  object-fit: cover;
}

/* ��莉順�倶�� */
.loading, .error, .no-products {
  padding: 20px;
  text-align: center;
  color: #666;
  grid-column: 1 / -1;
}

.error {
  color: #e63c3c;
}

/* 蕁笈�� */
footer {
  background-color: #FFEB3B;
  padding: 20px 0;
  margin-top: 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
}

.footer-section h3 {
  font-size: 16px;
  margin-bottom: 15px;
}

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

.footer-section li {
  margin-bottom: 8px;
}

.footer-section a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 15px;
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
  color: #666;
}

/* 腓鞘困紵�篏���貴���� */
.social-float {
  position: fixed;
  right: 20px;
  top: 70%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-btn:hover {
  transform: scale(1.1);
}

.social-btn i {
  font-size: 24px;
}

.social-facebook {
  background-color: #1877F2;
}

.social-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-messenger {
  background-color: #0099FF;
}

.social-tiktok {
  background-color: #000000;
}

.social-youtube {
  background-color: #FF0000;
}

.social-line {
  background-color: #06C755;
}

.back-to-top {
  background-color: #f5f5f5;
  color: #333;
}

/* ��綺�綣顒乗� */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .product-item {
    padding: 10px;
  }
  
  .product-image {
    height: 120px;
  }
  
  .product-name {
    font-size: 12px;
    height: 34px;
  }
  
  .search-bar {
    display: none;
  }
  
  .header-actions .search-icon {
    display: block !important;
  }
  
  .category-list {
    overflow-x: auto;
    white-space: nowrap;
  }
}</pre></body></html>