/* --- Shivyami Custom Stylesheet --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Inter:wght@300;400;500&display=swap');

.shivyami-new-arrivals {
    padding: 80px 20px;
    background-color: #fdfbf9;
    font-family: 'Inter', sans-serif;
}

.shivyami-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styling */
.shivyami-header {
    margin-bottom: 50px;
}

.title-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.main-heading {
    font-family: 'Cinzel', serif;
    font-size: 40px;
    color: #1a1a1a;
    margin: 0;
}

.count-pill {
    background: #ebeae8;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    color: #555;
    border: 1px solid #ddd;
}

.sub-heading {
    color: #888;
    line-height: 1.6;
    font-size: 16px;
}

/* Custom Grid Fix */
.shivyami-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns */
    gap: 30px;
}

.arrival-card {
    position: relative;
    display: block;
    height: 450px; /* Force Height */
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    background: #eee; /* Placeholder if image fails */
}

.card-image {
    width: 100%;
    height: 100%;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fixing image stretching */
    display: block;
    transition: transform 1s ease;
}

.arrival-card:hover .card-image img {
    transform: scale(1.1);
}

/* Text Overlay Styling */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.card-overlay h3 {
    color: #ffffff;
    font-family: 'Cinzel', serif;
    font-size: 28px;
    margin: 0;
    letter-spacing: 1.5px;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 900px) {
    .shivyami-grid {
        grid-template-columns: 1fr; /* Single column on tablet/mobile */
    }
    
    .main-heading {
        font-size: 30px;
    }
    
    .arrival-card {
        height: 350px;
    }

    .title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}


/* --- Shivyami Trending Section - Pure Custom CSS --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Inter:wght@300;400;600&display=swap');

.shivyami-trending-section {
    padding: 100px 20px;
    background-color: #fdfbf9;
    font-family: 'Inter', sans-serif;
}

.shivyami-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- NEW: Main Heading Styling --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.main-section-title {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: #C5A059; /* Shivyami Gold */
    margin: 0 auto;
}

/* --- Layout Fix --- */
.shivyami-hero-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.shivyami-hero-image {
    flex: 0 0 60%;
}

.image-inner {
    position: relative;
    height: 550px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.shivyami-hero-image:hover img {
    transform: scale(1.05);
}

/* --- Content Area --- */
.hero-label {
    display: block;
    color: #C5A059;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

.content-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.hero-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-shop-btn {
    display: inline-block;
    padding: 14px 45px;
    border: 1px solid #1a1a1a;
    border-radius: 50px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

.hero-shop-btn:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-3px);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 991px) {
    .shivyami-hero-layout {
        flex-direction: column;
        text-align: center;
    }
    .shivyami-hero-image {
        width: 100%;
    }
    .image-inner {
        height: 350px;
    }
    .main-section-title {
        font-size: 32px;
    }
}