:root {
    --primary-color: #FF6600;
    --secondary-color: #E65500;
    --accent-color: #FF8533;
    --light-orange: #FFF5EE;
    --light-gray: #F8F9FA;
    --gray: #E8E8E8;
    --dark-gray: #666666;
    --text-color: #2C2C2C;
    --white: #ffffff;
    --shadow: 0 2px 12px rgba(255, 102, 0, 0.08);
    --shadow-hover: 0 4px 20px rgba(255, 102, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-orange: linear-gradient(135deg, #FF6600 0%, #FF8533 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-tap-highlight-color: transparent; /* 移除移动端点击高亮 */
}

body {
    /*background: linear-gradient(to bottom, #FAFAFA 0%, #F5F5F5 100%);*/
    color: var(--text-color);
    line-height: 1.6;
    padding-bottom: 60px;
    overflow-x: hidden;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    margin-top: 3%; /* 从5%减少到3%，减少顶部空间 */
    max-width: 1200px;
    /*margin: 0 auto;*/
    padding: 0 15px;
    margin-left: auto;
    margin-right: auto; /* 保持居中对齐 */
    position: relative;
}

/* 添加返回按钮 */
.back-btn {
    position: fixed;
    top: 15px;
    left: 15px;
    width: 36px;
    height: 36px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    z-index: 90;
    font-size: 18px;
}

/* 头部导航 - 简化版 */
header {
    background: var(--gradient-orange);
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 12px 0;
    margin-bottom: 5%;
}

.search-container {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 15px;
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 10px 18px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.search-bar:focus-within {
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.2);
    transform: translateY(-1px);
}

.search-bar input {
    border: none;
    background: transparent;
    font-size: 0.95rem;
    width: 100%;
    padding: 4px 10px;
    outline: none;
    color: var(--text-color);
}

.search-bar input::placeholder {
    color: #999;
}

.search-icon {
    color: var(--primary-color);
    cursor: pointer;
    font-size: 18px;
}

/* 分类导航 */
.category-nav {
    background-color: var(--white);
    padding: 10px 0;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-nav .container {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-nav .container::-webkit-scrollbar {
    display: none;
}

.category-list {
    display: inline-flex;
    list-style: none;
    padding: 5px 0;
}

.category-item {
    margin-right: 20px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.category-item.active {
    background: var(--gradient-orange);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.3);
}

/* 轮播图 */
.banner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    height: 140px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
}

.banner:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
    transform: translateY(-2px);
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
    background: linear-gradient(90deg, rgba(255, 102, 0, 0.85) 0%, rgba(255, 102, 0, 0.4) 60%, rgba(255, 102, 0, 0) 100%);
    color: var(--white);
}

.banner h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.banner p {
    font-size: 0.8rem;
    margin-bottom: 8px;
    max-width: 70%;
}

.banner .btn {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    align-self: flex-start;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.banner .btn:hover {
    background-color: var(--light-orange);
    transform: scale(1.05);
}

/* 商品列表 */
.section-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-left: 10px;
}

.section-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background: var(--gradient-orange);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(255, 102, 0, 0.3);
}

.view-all {
    font-size: 12px;
    color: #999;
    font-weight: 400;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 30px;
    padding: 0 4px;
}

.product-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    height: auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 4px;
    position: relative;
    border: 1px solid rgba(255, 102, 0, 0.08);
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.product-card:active {
    transform: translateY(-2px);
}

.promo-tag {
    position: absolute;
    top: 8px;
    left: 0;
    background: var(--gradient-orange);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 0 20px 20px 0;
    z-index: 5;
    box-shadow: 0 2px 6px rgba(255, 102, 0, 0.4);
    letter-spacing: 0.5px;
}

.product-img {
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* 创建正方形图片容器 */
    overflow: hidden;
    position: relative;
    border-radius: 0;
}

.product-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.05));
    z-index: 1;
}

.product-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 8px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    overflow: hidden;
}

.product-name {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
    max-height: 34px;
    color: #333;
}

.product-slogan {
    font-size: 11px;
    color: #999;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 价格和标签容器 */
.price-tag-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-price {
    display: flex;
    align-items: baseline;
}

.price-prefix {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.original-price {
    font-size: 11px;
    color: #999;
    text-decoration: line-through;
    margin-left: 4px;
}

.coupon-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin-bottom: 4px;
}

.coupon-tag {
    font-size: 9px;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.08) 0%, rgba(255, 133, 51, 0.12) 100%);
    padding: 2px 6px;
    border-radius: 3px;
    border: 1px solid rgba(255, 102, 0, 0.25);
    white-space: nowrap;
    font-weight: 600;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3px;
}

.tag {
    font-size: 10px;
    color: #999;
    padding: 2px 6px;
    white-space: nowrap;
    border: 1px solid #E8E8E8;
    border-radius: 3px;
    background-color: #FAFAFA;
}

.sold {
    font-size: 10px;
    color: #999;
    white-space: nowrap;
}

.shop-info {
    font-size: 10px;
    color: #999;
    margin-top: 3px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* 加载状态 */
.loading {
    text-align: center;
    padding: 20px;
    color: var(--dark-gray);
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    border-top-color: transparent;
    border-right-color: transparent;
    margin-left: 10px;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* 错误提示 */
.error {
    text-align: center;
    padding: 20px;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--light-orange) 0%, #FFF8F0 100%);
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid rgba(255, 102, 0, 0.2);
}

/* 下拉刷新提示 */
.pull-to-refresh {
    text-align: center;
    padding: 15px;
    color: var(--dark-gray);
    font-size: 14px;
}

/* 回到顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: var(--gradient-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(255, 102, 0, 0.4);
    z-index: 90;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s;
    font-size: 20px;
    font-weight: bold;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.5);
    transform: translateY(-2px);
}

/* 详情页滚动指示器 */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: bounce 1.5s infinite;
    z-index: 50;
    pointer-events: none;
}

.scroll-indicator::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
}

/* 底部导航 */
.bottom-nav {
    background-color: var(--white);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.bottom-nav-list {
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding: 8px 0;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: var(--dark-gray);
}

.bottom-nav-icon {
    margin-bottom: 3px;
    font-size: 18px;
}

.bottom-nav-item.active {
    color: var(--primary-color);
}

/* 商品详情模态框 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto; /* 允许模态框内容垂直滚动 */
}

.modal-content {
    background-color: var(--light-gray);
    margin: 0 auto; /* 上下边距设为0，使内容填满屏幕 */
    width: 100%; /* 宽度设为100% */
    height: 100%; /* 高度设为100% */
    border-radius: 0; /* 移除圆角 */
    overflow: auto; /* 允许内容溢出时滚动 */
    box-shadow: var(--shadow);
    animation: slideUp 0.3s ease;
    position: relative; /* 增加相对定位 */
}

@media (min-width: 768px) {
    .modal-content {
        width: 90%;
        max-width: 600px;
        margin: 15px auto;
        height: auto;
        max-height: 90vh;
        border-radius: 12px;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 新增：模态框顶部导航栏 */
.modal-top-nav {
    display: flex;
    align-items: center;
    justify-content: center; /* 水平居中 */
    position: sticky;
    top: 0;
    background-color: var(--white);
    z-index: 1010;
    height: 50px;
    padding: 0 15px;
    border-bottom: 1px solid #f0f0f0;
}

.modal-back-btn {
    position: absolute;
    left: 15px;
    font-size: 22px;
    color: var(--dark-gray);
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
}

.modal-back-btn span {
    font-size: 16px;
    margin-left: 5px;
    font-weight: 500;
}

.modal-nav-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-color);
}

.modal-header {
    position: relative;
}

.modal-close {
    position: absolute;
    top: 9%;
    right: 15px;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    z-index: 100; /* 增加z-index确保关闭按钮在最上层 */
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    background-color: rgba(0, 0, 0, 0.3);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-image {
    width: 100%;
    height: 250px;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 轮播图样式 */
.carousel {
    position: relative;
    width: 100%;
    height: auto; /* 修改: 将高度设置为auto，让图片自适应 */
    overflow: hidden;
    touch-action: pan-y;
    border-radius: 0;
}

.carousel-inner {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    height: 100%;
    will-change: transform;
}

.carousel-item {
    min-width: 100%;
    height: auto; /* 修改: 将高度设置为auto，让图片自适应 */
    cursor: pointer;
}

.carousel-item img {
    width: 100%;
    height: auto; /* 修改: 将高度设置为auto，让图片自适应 */
    object-fit: cover; /* 确保图片填满容器 */
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.carousel-control:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.carousel-indicator.active {
    background-color: var(--white);
}

.modal-body {
    padding: 10px; /* 从15px减少到10px */
}

.product-title {
    font-size: 15px; /* 从16px减少到15px */
    font-weight: 600;
    margin-bottom: 6px; /* 从8px减少到6px */
}

.product-detail-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--light-orange) 0%, #FFF8F0 100%);
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 102, 0, 0.15);
}

.product-detail-price .price-prefix {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
}

.product-detail-price .current-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.product-detail-price .original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

.product-status {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 10px;
    background-color: #fff;
}

.product-description {
    margin-bottom: 10px; /* 从15px减少到10px */
    font-size: 13px; /* 从14px减少到13px */
    color: var(--dark-gray);
    line-height: 1.4; /* 从1.5减少到1.4 */
}

.product-specs {
    margin-bottom: 10px; /* 从15px减少到10px */
}

.spec-title {
    font-size: 14px; /* 从15px减少到14px */
    font-weight: 500;
    margin-bottom: 5px; /* 从8px减少到5px */
}

.spec-item {
    display: flex;
    margin-bottom: 5px; /* 从8px减少到5px */
    font-size: 13px; /* 从14px减少到13px */
}

.spec-label {
    width: 80px;
    color: var(--dark-gray);
}

.spec-value {
    flex: 1;
}

.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 8px; /* 添加上边距 */
    margin-bottom: 10px; /* 增加底部间距 */
}

.action-btn {
    flex: 1;
    padding: 12px; /* 增加按钮高度 */
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px; /* 增加字体大小 */
    letter-spacing: 0.5px; /* 增加字间距 */
}

.primary-btn {
    background: var(--gradient-orange);
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(255, 102, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.primary-btn:hover::before {
    left: 100%;
}

.primary-btn:hover {
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.45);
    transform: translateY(-2px);
}

.primary-btn:active {
    transform: translateY(0);
}

.secondary-btn {
    background-color: var(--light-gray);
    color: var(--text-color);
}

.secondary-btn:hover {
    background-color: var(--gray);
}

/* 长图样式 */
.long-image-container {
    margin-top: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.long-image {
    width: 100%;
    height: auto;
    display: block; /* 避免图片底部间隙 */
}

/* 图片查看器样式 */
.image-viewer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2500; /* 确保在最上层 */
    overflow: hidden;
}

.image-viewer-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.viewer-image {
    max-width: 98%; /* 增加边距防止触碰边缘 */
    max-height: 98%;
    object-fit: contain;
}

.image-viewer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 2001;
}

/* 响应式设计 */
@media (min-width: 768px) {
    .banner {
        height: 200px;
    }

    .banner h2 {
        font-size: 1.8rem;
    }

    .banner p {
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr); /* 平板设备显示两列 */
        gap: 10px; /* 增加间距 */
    }

    .product-img {
        height: 50vh; /* 平板设备使用50%视口高度 */
    }

    .product-card {
        height: auto; /* 自适应高度 */
        margin-bottom: 15px;
    }

    .modal-content {
        margin: 30px auto;
    }

    .carousel {
        height: 320px; /* 从280px增加到320px */
    }
}

@media (min-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr); /* 桌面设备显示三列 */
        gap: 12px; /* 增加间距 */
    }

    .product-card {
        height: auto; /* 自适应高度 */
        margin-bottom: 15px;
    }

    .product-img {
        height: 40vh; /* 桌面设备使用40%视口高度 */
    }

    .bottom-nav {
        display: none;
    }
}

@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr); /* 大屏设备显示四列 */
        gap: 15px; /* 增加间距 */
    }

    .product-img {
        height: 35vh; /* 大屏设备使用35%视口高度 */
    }
}

/* 手机端响应式调整 */
@media (max-width: 767px) {
    .container {
        margin-top: 1%;
        padding: 0 8px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        padding: 0;
    }

    .product-card {
        border-radius: 4px;
        margin-bottom: 0;
    }

    .product-img {
        padding-bottom: 100%;
    }

    .product-info {
        padding: 6px;
    }

    .product-name {
        font-size: 12px;
        line-height: 1.2;
        max-height: 28.8px;
        margin-bottom: 3px;
    }

    .current-price {
        font-size: 14px;
    }

    .price-prefix {
        font-size: 10px;
    }

    .original-price {
        font-size: 10px;
    }

    .coupon-tag {
        font-size: 8px;
        padding: 0 2px;
    }

    .tag, .sold {
        font-size: 9px;
    }
}

/* 非常小的屏幕 */
@media (max-width: 320px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }

    .product-info {
        padding: 4px;
    }

    .product-name {
        font-size: 11px;
        -webkit-line-clamp: 2;
        margin-bottom: 2px;
    }

    .coupon-container {
        margin-bottom: 2px;
    }

    .product-footer {
        margin-top: 2px;
    }
}