/* 
    SHOP PAGE STYLES - NATURAL HUB
    Aesthetics: Elegant, Premium, Clean
*/

:root {
    --pink-primary: #f74d6c;
    --gold-accent: #B08A3C;
    --dark-bg: #1E1717;
    --light-bg: #fdfdfd;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Shop Hero --- */
.shop-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #fdf4f5 0%, #fff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.shop-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--pink-primary);
    opacity: 0.03;
    border-radius: 50%;
}

.shop-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.shop-hero-sub {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Filter Tabs --- */
.shop-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid #eee;
    background: #fff;
    color: #666;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--pink-primary);
    color: #fff;
    border-color: var(--pink-primary);
    box-shadow: 0 5px 15px rgba(247, 77, 108, 0.2);
}

/* --- Product Grid --- */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding-bottom: 80px;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.product-img {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--pink-primary);
    backdrop-filter: blur(5px);
    z-index: 10;
}

.product-content {
    padding: 25px;
}

.product-cat {
    font-size: 0.8rem;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-bg);
}

.product-desc {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f5f5f5;
    padding-top: 20px;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark-bg);
}

.product-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #999;
}

.add-to-cart {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--dark-bg);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart:hover {
    background: var(--pink-primary);
    transform: rotate(90deg);
}

/* --- Product Variants --- */
.product-variants {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.variant-tag {
    font-size: 0.75rem;
    padding: 3px 10px;
    background: #f8f8f8;
    border-radius: 4px;
    color: #666;
    border: 1px solid #eee;
}

/* --- CTA Section --- */
.shop-cta {
    background: var(--dark-bg);
    padding: 80px 0;
    color: #fff;
    text-align: center;
    border-radius: 40px;
    margin: 40px auto 100px;
    position: relative;
    overflow: hidden;
}

.shop-cta-inner {
    position: relative;
    z-index: 2;
}

.shop-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.shop-cta p {
    opacity: 0.8;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .shop-hero-title { font-size: 2.2rem; }
    .shop-grid { grid-template-columns: 1fr; }
}
