

body {
    background-color: #fdf7f4;
}



/* =============================================
   PRODUCTS HEADER SECTION
   ============================================= */
.products-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 15px;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.brand-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: #333333;
    text-transform: uppercase;
}

.main-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 500;
    color: #333333;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.sub-heading {
    font-size: 0.95rem;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* =============================================
   PRODUCTS GRID MASONRY/ASYMMETRIC STYLE
   ============================================= */
.products-grid {
    /* display: grid; */
    /* grid-template-columns: repeat(12, 1fr); */
    /* gap: 25px; */
}

/* =============================================
   BASE PRODUCT CARD STYLING
   ============================================= */
.product-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #f5cfc9;
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(229, 147, 138, 0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    /* grid-column: span 3; */ /* Default card size (4 in a row) */
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: #e68c82;
    box-shadow: 0 14px 35px rgba(229, 147, 138, 0.15);
}
.product-image-wrap {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.product-image-wrap img {
    transition: transform 0.5s ease;
    width: 100%;
    /* height: 260px; */
}

.product-card:hover .product-image-wrap img {
    transform: scale(1.03);
}

/* Card Typography & Details */
.product-details {
    margin-top: auto;
}

.product-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: #333333;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 18px;
}

/* Call to Action Button */
.btn-order {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background-color: #e68c82; /* Premium brand terracotta pink tint */
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 6px;
    border: 1px solid #e68c82;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-order:hover {
    background-color: #ffffff;
    color: #e68c82;
}
.product-card.medium-feature .product-image-wrap img {
    height: 280px;
}

/* 3. Full Horizontal Feature Banner Card (Takes all 12 Columns) */
.product-card.banner-feature {
    grid-column: span 12;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 40px;
    padding: 35px;
}
.product-card.banner-feature .product-image-wrap {
    flex: 1.2;
    margin-bottom: 0;
}
.product-card.banner-feature .product-image-wrap img {
    height: 340px;
    border-radius: 12px;
}
.product-card.banner-feature .product-details {
    flex: 1;
    width: 100%;
}
.product-card.banner-feature .btn-order {
    max-width: 220px;
}

/* Simple entry micro-animation */
.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
   
  
    .product-card {
   
        padding: 18px;
    }
    .product-card.banner-feature {
      
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .product-card.banner-feature .product-image-wrap {
        margin-bottom: 20px;
    }
    .product-card.banner-feature .btn-order {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 1.8rem;
    }
}