/* ================================================
   HEALING BIRD - PRODUCTS SECTION STYLES
   TWO PRODUCTS DISPLAY - PIXEL PERFECT
   ================================================ */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #2c2c2c;
    line-height: 1.6;
}

/* === SECTION CONTAINER === */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* === PRODUCTS SECTION === */
.products-section {
    padding: 80px 0 100px;
    background: #ffffff;
}

/* === SECTION HEADER === */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 14px;
    line-height: 1.8;
    color: #5a5a5a;
    max-width: 700px;
    margin: 0 auto;
}

/* === PRODUCTS GRID === */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

/* === PRODUCT CARD === */
.product-card {
    background: #ffffff;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* === PRODUCT IMAGE CONTAINER === */
.product-image-container {
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

/* Pastel Yellow Semi-Circle Background */
.product-bg-circle {
    position: absolute;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #FFF8DC 0%, #FFEFD5 100%);
    border-radius: 50%;
    z-index: 1;
}

/* Product Bottle Image */
.product-image {
    position: relative;
    z-index: 2;
    width: auto;
    height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* Price Badge */
.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.price-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.3px;
}

/* === PRODUCT INFO === */
.product-info {
    text-align: center;
    padding: 0 20px;
}

.product-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-description {
    font-size: 13px;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 18px;
    min-height: 60px;
}

/* Order Link */
.order-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    transition: all 0.3s ease;
}

.order-link:hover {
    color: #e67e4d;
    gap: 10px;
}

.order-link .arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.order-link:hover .arrow {
    transform: translateX(3px);
}

/* === RESPONSIVE DESIGN === */

/* Large Tablets (1024px and below) */
@media (max-width: 1024px) {
    .section-container {
        padding: 0 30px;
    }
    
    .products-grid {
        gap: 50px;
        max-width: 800px;
    }
    
    .product-image-container {
        height: 300px;
    }
    
    .product-bg-circle {
        width: 260px;
        height: 260px;
    }
    
    .product-image {
        height: 260px;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .products-section {
        padding: 60px 0 80px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-heading {
        font-size: 40px;
    }
    
    .section-description {
        font-size: 13px;
    }
    
    .products-grid {
        gap: 40px;
    }
    
    .product-image-container {
        height: 280px;
    }
    
    .product-bg-circle {
        width: 240px;
        height: 240px;
    }
    
    .product-image {
        height: 240px;
    }
    
    .price-badge {
        width: 50px;
        height: 50px;
    }
    
    .price-text {
        font-size: 14px;
    }
}

/* Mobile (640px and below) */
@media (max-width: 640px) {
    .section-container {
        padding: 0 20px;
    }
    
    .products-section {
        padding: 50px 0 60px;
    }
    
    .section-heading {
        font-size: 32px;
    }
    
    /* Stack products vertically on mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 400px;
    }
    
    .product-image-container {
        height: 300px;
    }
    
    .product-bg-circle {
        width: 260px;
        height: 260px;
    }
    
    .product-image {
        height: 260px;
    }
    
    .product-title {
        font-size: 17px;
    }
    
    .product-description {
        font-size: 12px;
        min-height: 50px;
    }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
    .section-heading {
        font-size: 28px;
    }
    
    .product-image-container {
        height: 280px;
    }
    
    .product-bg-circle {
        width: 240px;
        height: 240px;
    }
    
    .product-image {
        height: 240px;
    }
    
    .price-badge {
        width: 48px;
        height: 48px;
        top: 10px;
        right: 10px;
    }
    
    .price-text {
        font-size: 13px;
    }
}

/* Extra Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .product-image-container {
        height: 260px;
    }
    
    .product-bg-circle {
        width: 220px;
        height: 220px;
    }
    
    .product-image {
        height: 220px;
    }
}