/* ============================================
   比佳索物 - 茶叶比价平台 v6.0
   优化版：视觉升级 + 信任感 + 更好的信息层次
   ============================================ */

/* ===== 基础重置 & 全局 ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-200: #bbf7d0;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --green-800: #166534;
    --green-900: #14532d;
    --amber: #f59e0b;
    --taobao: #ff5000;
    --pdd: #e02e24;
    --douyin: #000000;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-green: 0 4px 20px rgba(22,163,74,0.15);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background: linear-gradient(180deg, #fafdf9 0%, #f4faef 40%, #edf5ea 100%);
    background-attachment: fixed;
    color: #1a2e1a;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 8% 0%, rgba(34,197,94,0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 92% 5%, rgba(22,163,74,0.05) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 100%, rgba(34,197,94,0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ===== 顶部导航 ===== */
.header {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(34,197,94,0.12);
    padding: 14px 0;
    box-shadow: 0 1px 20px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo-icon {
    font-size: 0;
    width: 44px;
    height: 44px;
    background-image: url('logo.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(22,163,74,0.25);
    border: 2px solid rgba(34,197,94,0.25);
    flex-shrink: 0;
}

.logo h1 {
    font-size: 21px;
    font-weight: 700;
    color: var(--green-800);
    letter-spacing: 1.5px;
}

.nav {
    display: flex;
    gap: 4px;
}

.nav a {
    color: #5a7a5a;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 25px;
    transition: all 0.25s ease;
    font-weight: 500;
}

.nav a:hover {
    color: var(--green-700);
    background: rgba(34,197,94,0.08);
}

.nav a.active {
    color: #fff;
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    box-shadow: 0 2px 10px rgba(22,163,74,0.3);
}

.admin-link {
    background: rgba(245,158,11,0.08) !important;
    border: 1px solid rgba(245,158,11,0.25) !important;
    color: #a16207 !important;
    font-size: 13px !important;
}
.admin-link:hover { color: #854d0e !important; background: rgba(245,158,11,0.15) !important; }

/* ===== 搜索区域 — Hero ===== */
@keyframes hero-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.03); }
}
@keyframes mist-float {
    0%, 100% { transform: translateX(-3%); opacity: 0.45; }
    50% { transform: translateX(3%); opacity: 0.65; }
}

.search-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 70px 0 60px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.search-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('tea-bg.jpg');
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    animation: hero-zoom 20s ease-in-out infinite alternate;
    z-index: 0;
}

.search-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5,25,10,0.55) 0%,
        rgba(8,32,15,0.45) 30%,
        rgba(20,60,30,0.28) 60%,
        rgba(220,245,220,0.95) 100%
    );
    z-index: 1;
}

/* 云雾效果 */
.search-section .container::before {
    content: '';
    position: absolute;
    top: 35%;
    left: -10%;
    width: 55%;
    height: 16%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.16) 0%, transparent 70%);
    filter: blur(20px);
    animation: mist-float 22s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

.search-section .container::after {
    content: '';
    position: absolute;
    top: 30%;
    right: -5%;
    width: 40%;
    height: 12%;
    background: radial-gradient(ellipse, rgba(200,240,200,0.13) 0%, transparent 70%);
    filter: blur(24px);
    animation: mist-float 26s ease-in-out infinite reverse;
    z-index: 2;
    pointer-events: none;
}

.search-section .container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-content { margin-bottom: 28px; }

.hero-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    backdrop-filter: blur(8px);
    margin-bottom: 18px;
}

.search-section h2 {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 3px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.88);
    font-weight: 400;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
    margin-bottom: 0;
}

/* 搜索框 */
.search-box {
    display: flex;
    max-width: 620px;
    margin: 0 auto 18px;
    background: rgba(255,255,255,0.22);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 60px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
}
.search-box:hover {
    background: rgba(255,255,255,0.30);
    box-shadow: 0 10px 40px rgba(0,0,0,0.22);
    transform: translateY(-1px);
}

.search-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    padding-left: 24px;
    gap: 10px;
}

.search-icon { font-size: 17px; opacity: 0.8; flex-shrink: 0; }

.search-box input {
    flex: 1;
    padding: 17px 8px 17px 0;
    border: none;
    font-size: 15px;
    outline: none;
    background: transparent;
    color: #fff;
    min-width: 0;
}
.search-box input::placeholder { color: rgba(255,255,255,0.7); }

.search-box button {
    padding: 17px 36px;
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    color: white;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1.5px;
    margin: 4px;
    border-radius: 56px;
    white-space: nowrap;
}
.search-box button:hover {
    background: linear-gradient(135deg, var(--green-700), var(--green-600));
    box-shadow: 0 4px 18px rgba(22,163,74,0.45);
    transform: scale(1.02);
}

/* 热门搜索 */
.hot-keywords {
    margin-top: 16px;
    font-size: 13px;
}
.hot-keywords span {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}
.hot-keywords a {
    color: #fff !important;
    text-decoration: none;
    margin: 0 5px;
    padding: 6px 18px;
    background: rgba(22,163,74,0.65) !important;
    border: 1.5px solid rgba(255,255,255,0.45) !important;
    border-radius: 20px;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 13px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.25);
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.hot-keywords a:hover {
    background: rgba(34,197,94,0.85) !important;
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

/* ===== 数据统计条 ===== */
.stats-bar {
    padding: 28px 0;
    background: #fff;
    border-bottom: 1px solid rgba(34,197,94,0.08);
    position: relative;
    z-index: 5;
    margin-top: -1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    text-align: center;
}

.stat-item {
    padding: 16px 10px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--green-50), #ffffff);
    border: 1px solid rgba(34,197,94,0.1);
    transition: all 0.3s;
}
.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--green-700);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: #6b8a6b;
    margin-top: 4px;
    font-weight: 500;
}

/* ===== 平台选择 ===== */
.platform-section {
    padding: 42px 0;
    background: rgba(255,255,255,0.55);
}

.platform-section h3,
.category-section h3,
.products-section h3 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 6px;
    color: var(--green-800);
    font-weight: 700;
    letter-spacing: 1px;
}

.section-icon { margin-right: 6px; }

.section-desc {
    text-align: center;
    font-size: 13px;
    color: #7a9a7a;
    margin-bottom: 24px;
}

.platform-tags {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.platform-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border: 2px solid;
    border-radius: 50px;
    background: #fff;
    transition: all 0.3s;
    cursor: default;
    font-weight: 600;
    min-width: 140px;
    justify-content: center;
}

.platform-taobao { border-color: rgba(255,80,0,0.3); }
.platform-taobao:hover { border-color: var(--taobao); background: rgba(255,80,0,0.04); box-shadow: 0 4px 20px rgba(255,80,0,0.1); transform: translateY(-3px); }

.platform-pdd { border-color: rgba(224,46,36,0.3); }
.platform-pdd:hover { border-color: var(--pdd); background: rgba(224,46,36,0.04); box-shadow: 0 4px 20px rgba(224,46,36,0.1); transform: translateY(-3px); }

.platform-douyin { border-color: rgba(0,0,0,0.2); }
.platform-douyin:hover { border-color: #333; background: rgba(0,0,0,0.04); box-shadow: 0 4px 20px rgba(0,0,0,0.1); transform: translateY(-3px); }

.platform-icon { font-size: 24px; }
.platform-name { font-size: 15px; }

/* ===== 分类筛选 ===== */
.category-section {
    padding: 38px 0 24px;
}

.category-list {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 24px;
    border: 1.5px solid rgba(34,197,94,0.22);
    background: rgba(255,255,255,0.75);
    border-radius: 28px;
    cursor: pointer;
    font-size: 14px;
    color: #4a6a4a;
    transition: all 0.25s;
    font-weight: 500;
}
.category-btn:hover,
.category-btn.active {
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 3px 14px rgba(22,163,74,0.3);
    transform: translateY(-1px);
}

/* ===== 商品列表 ===== */
.products-section {
    padding: 30px 0 70px;
}

.section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}
.section-header h3 { margin-bottom: 0; }
.product-count {
    font-size: 13px;
    color: #8aaa8a;
    background: rgba(34,197,94,0.08);
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 500;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

/* ===== 商品卡片 ===== */
.product-card {
    background: #fff;
    border: 1px solid rgba(34,197,94,0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s cubic-bezier(.4,0,.2,1);
    position: relative;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(22,163,74,0.12);
    border-color: rgba(34,197,94,0.25);
}

.card-top { position: relative; }

.hot-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(239,68,68,0.35);
    letter-spacing: 0.5px;
}

/* 商品图片区域 — 用渐变色代替placeholder */
.product-image {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.placeholder-icon { font-size: 42px; opacity: 0.7; }
.placeholder-text { font-size: 14px; font-weight: 600; opacity: 0.6; letter-spacing: 1px; }

/* 不同茶类的图片背景色 */
.tea-longjing { background: linear-gradient(135deg, #d4edda, #a8e6cf, #c8e6c9); }
.tea-tieguanyin { background: linear-gradient(135deg, #e8d5b7, #d4a574, #c9956c); }
.tea-puer { background: linear-gradient(135deg, #8B6914, #6b4e0a, #5a3d00); }
.tea-puer .placeholder-text { color: #ddd; }
.tea-biluo { background: linear-gradient(135deg, #90cdf4, #63b3ed, #4299e1); }
.tea-biluo .placeholder-text { color: #fff; }
.tea-dahongpao { background: linear-gradient(135deg, #fc8181, #f56565, #e53e3e); }
.tea-dahongpao .placeholder-text { color: #fff; }
.tea-baimao { background: linear-gradient(135deg, #f6e6e0, #ead5cf, #dfd0c8); }

.product-card:hover .product-image .placeholder-icon {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.4s ease;
}

/* 商品信息区 */
.product-info {
    padding: 20px 22px 18px;
}

.product-name {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a2e1a;
    line-height: 1.4;
}

.product-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 12px;
}

.brand {
    background: rgba(34,197,94,0.1);
    color: var(--green-700);
    padding: 3px 10px;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid rgba(34,197,94,0.15);
}
.spec {
    background: rgba(0,0,0,0.04);
    color: #6a8a6a;
    padding: 3px 10px;
    border-radius: 8px;
    font-weight: 500;
}

/* 价格对比区 */
.price-comparison {
    background: linear-gradient(135deg, var(--green-50), #fafff7);
    border: 1px solid rgba(34,197,94,0.12);
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.lowest-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.price-label {
    font-size: 12px;
    color: #8aaa8a;
    font-weight: 500;
}

.price-value {
    font-size: 26px;
    font-weight: 800;
    color: var(--green-700);
}

.platform-tag-small {
    color: white;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
}
.platform-pdd-bg { background: var(--pdd); }
.platform-taobao-bg { background: var(--taobao); }
.platform-douyin-bg { background: var(--douyin); }

.savings-info {
    display: flex;
    gap: 10px;
    font-size: 13px;
    align-items: center;
}

.savings {
    color: var(--green-700);
    font-weight: 700;
}
.savings-percent {
    background: rgba(34,197,94,0.12);
    color: var(--green-700);
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(34,197,94,0.18);
}

/* 价格明细 */
.price-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 12px;
    background: rgba(0,0,0,0.015);
    border-radius: 10px;
    font-size: 13px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.2s;
}
.price-item:hover { background: rgba(0,0,0,0.03); }

.price-item.best {
    background: linear-gradient(135deg, rgba(34,197,94,0.08), rgba(34,197,94,0.04));
    border: 1px solid rgba(34,197,94,0.2);
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
    flex-shrink: 0;
}
.dot.taobao { background: var(--taobao); }
.dot.pdd { background: var(--pdd); }
.dot.douyin { background: var(--douyin); }

.platform-name-small {
    color: #6a8a6a;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.price-item .price {
    font-weight: 700;
    color: #333;
    font-size: 14px;
}
.price-item.best .price {
    color: var(--green-700);
    font-size: 15px;
}
.best-label {
    background: var(--green-500);
    color: #fff;
    padding: 1px 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    margin-left: 6px;
}

/* 查看详情按钮 */
.compare-btn {
    display: block;
    text-align: center;
    padding: 12px;
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    color: white;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(22,163,74,0.25);
}
.compare-btn:hover {
    background: linear-gradient(135deg, var(--green-700), var(--green-600));
    transform: translateY(-2px);
    box-shadow: 0 4px 18px rgba(22,163,74,0.35);
}

/* ===== 页脚 ===== */
.footer {
    background: linear-gradient(180deg, #fff 0%, #f7fdf5 100%);
    border-top: 1px solid rgba(34,197,94,0.1);
    color: #6b8a6b;
    padding: 40px 0 24px;
}

.footer-content { text-align: center; }

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 22px;
    margin-bottom: 10px;
}
.footer-logo span:last-child {
    color: var(--green-800);
    font-weight: 700;
}

.footer-desc {
    margin-bottom: 18px;
    font-size: 14px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 20px;
}
.footer-links a {
    color: #5a7a5a;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--green-700); }

.copyright {
    font-size: 12px;
    color: #a0c0a0;
    border-top: 1px solid rgba(34,197,94,0.08);
    padding-top: 18px;
}

/* ===== 回到顶部 ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(22,163,74,0.35);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 22px rgba(22,163,74,0.45);
}

/* ===== 动画 ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes highlightPulse {
    0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
    70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.product-card {
    animation: fadeInUp 0.5s ease-out both;
}
.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }

/* ===== 滚动条 ===== */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: #f0f5f0; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--green-500), var(--green-600));
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--green-600), var(--green-700)); }

/* ===== 响应式 ===== */
@media (max-width: 768px) {
    .header .container { flex-direction: column; gap: 12px; }
    .nav { gap: 6px; flex-wrap: wrap; justify-content: center; }

    .search-section { min-height: 420px; padding: 60px 0 45px; }
    .search-section h2 { font-size: 28px; letter-spacing: 1px; }
    .hero-subtitle { font-size: 13px; }

    .search-box {
        flex-direction: column;
        border-radius: 20px;
        margin: 0 16px;
        max-width: calc(100% - 32px);
    }
    .search-input-wrapper { padding: 14px 18px; }
    .search-box button {
        border-radius: 0 0 18px 18px;
        margin: 0;
        padding: 14px;
    }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .stat-number { font-size: 24px; }

    .products-grid { grid-template-columns: 1fr; gap: 18px; }
    .platform-tags { flex-direction: column; align-items: center; gap: 12px; }
    .platform-tag { min-width: 200px; }
    .category-list { gap: 8px; }
    .category-btn { padding: 8px 16px; font-size: 13px; }

    .footer-links { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .logo h1 { font-size: 18px; }
    .nav a { padding: 6px 14px; font-size: 13px; }
    .hot-keywords a { padding: 5px 12px; font-size: 12px; margin: 0 3px; }
    .product-info { padding: 16px 16px 14px; }
    .price-value { font-size: 22px; }
}
