/* css/pages/shop.css */

/* SHOP HERO */
.shop-hero {
    padding: 100px 0 70px;
    background: var(--accent-beige);
    text-align: center;
}
.shop-hero h1 {
    font-size: clamp(2.4rem, 6vw, 3.5rem);
    margin-bottom: 12px;
    color: #2c2c2c;
}
.shop-hero p {
    font-size: 1.1rem;
    color: #666;
}

/* CATEGORY FILTER TABS */
.shop-filters {
    background: white;
    border-bottom: 1px solid #ede9e2;
    position: sticky;
    top: 60px;
    z-index: 100;
    padding: 0;
}
.shop-filters-inner {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.shop-filters-inner::-webkit-scrollbar { display: none; }
.filter-btn {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 16px 22px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.filter-btn:hover { color: #3f4a3f; }
.filter-btn.active {
    color: #8fa88f;
    border-bottom-color: #8fa88f;
    font-weight: 600;
}

/* SHOP BODY */
.shop-body {
    background: #fbf9f5;
    padding: 60px 0 100px;
}

/* CATEGORY SECTION */
.shop-category {
    margin-bottom: 70px;
    scroll-margin-top: 120px;
}
.shop-category:last-child { margin-bottom: 0; }
.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
}
.category-header h2 {
    font-size: 1.9rem;
    color: #3f4a3f;
    white-space: nowrap;
}
.category-header-line {
    flex: 1;
    height: 1px;
    background: #ddd8d0;
}
.category-count {
    font-size: 0.85rem;
    color: #8fa88f;
    font-weight: 600;
    background: #eef4ee;
    padding: 4px 10px;
    border-radius: 50px;
    white-space: nowrap;
}

/* PRODUCT GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
}

/* PRODUCT CARD */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #ede9e2;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.09);
}

/* IMAGE */
.product-card-img {
    position: relative;
    height: 220px;
    background: #f0ece5;
    overflow: hidden;
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }

/* Placeholder for no image */
.product-card-img.no-img {
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card-img.no-img::after {
    content: '🎁';
    font-size: 3rem;
    opacity: 0.35;
}

/* BADGES */
.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    z-index: 2;
}
.badge-bestseller { background: #8fa88f; color: white; }
.badge-popular    { background: #d4b8c7; color: #5a3d4e; }
.badge-new        { background: #b0c4d8; color: #1e3a52; }

/* HEART */
.heart-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s;
}
.heart-btn:hover { background: white; }
.heart-btn svg { width: 15px; height: 15px; }
.heart-btn.liked svg path { fill: #e05a6a; stroke: #e05a6a; }

/* CARD BODY */
.product-card-body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem;
    color: #2c2c2c;
    margin-bottom: 6px;
    line-height: 1.35;
}
.product-card-desc {
    font-size: 0.87rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 14px;
    flex: 1;
}

/* COLOUR SWATCHES */
.swatches-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.swatch-label {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-right: 2px;
}
.swatch {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s, border-color 0.15s;
    outline: 1px solid rgba(0,0,0,0.1);
}
.swatch:hover { transform: scale(1.2); }
.swatch.selected {
    border-color: #8fa88f;
    outline: none;
}

/* CARD FOOTER */
.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f0ece5;
}
.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #8fa88f;
}
.product-price-label {
    font-size: 10px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 2px;
}
.btn-order {
    background: #8fa88f;
    color: white;
    border: none;
    padding: 9px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
}
.btn-order:hover { background: #7a917a; transform: translateY(-2px); }

/* ORDER BANNER */
.shop-order-banner {
    background: var(--accent-beige);
    text-align: center;
    padding: 80px 20px;
}
.shop-order-banner h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: #3f4a3f;
    margin-bottom: 14px;
}
.shop-order-banner p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* MOBILE */
@media (max-width: 768px) {
    .shop-hero { padding: 80px 0 50px; }
    .shop-filters { top: 56px; }
    .filter-btn { padding: 14px 16px; font-size: 0.9rem; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
    .product-card-img { height: 170px; }
    .product-card-body { padding: 14px 14px 16px; }
    .product-card-body h3 { font-size: 0.95rem; }
    .product-price { font-size: 1.1rem; }
    .btn-order { padding: 8px 12px; font-size: 0.8rem; }
    .shop-category { margin-bottom: 50px; scroll-margin-top: 110px; }
    .category-header h2 { font-size: 1.5rem; }
}
@media (max-width: 400px) {
    .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}