/* ========================================
   Custom Jewelry Home Page - Enhanced V2
   Responsive, Elegant, Luxurious Red Theme
   ======================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-red: #c41e3a;
    --secondary-red: #a01828;
    --dark-red: #8b1523;
    --luxury-burgundy: #6b0f1a;
    --accent-gold: #d4af37;
    --light-red: #f8e8eb;
    --text-dark: #2c2c2c;
    --text-medium: #555;
    --text-light: #777;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
    --shadow-sm: 0 2px 8px rgba(196, 30, 58, 0.1);
    --shadow-md: 0 4px 16px rgba(196, 30, 58, 0.15);
    --shadow-lg: 0 8px 32px rgba(196, 30, 58, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
}

/* Hide page header */
.page-header {
    display: none !important;
}

.custom-jewelry-home {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ========================================
   Hero Banner Section
   ======================================== */
.hero-banner-section {
    width: 100%;
    margin-bottom: 0;
    position: relative;
}

.hero-banner-container {
    width: 100%;
    position: relative;
}

.hero-banner-image {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.hero-banner-image .banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Show desktop banner by default, hide mobile */
.banner-img-desktop {
    display: block !important;
}

.banner-img-mobile {
    display: none !important;
}

/* ========================================
   Trust Strip
   ======================================== */
.trust-strip-section {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 25px 0;
    box-shadow: var(--shadow-sm);
}

.trust-strip-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-strip-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 35px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--text-medium);
    font-weight: 500;
}

.trust-icon {
    font-size: 1.5rem;
}

/* ========================================
   Section Headers & Containers
   ======================================== */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-with-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header-left {
    text-align: left;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    position: relative;
}

.section-subtitle {
    font-size: 1.35rem;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 12px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition);
    font-size: 1.05rem;
}

.view-all-btn:hover {
    background: var(--primary-red);
    color: white;
    transform: translateX(5px);
}

/* ========================================
   Shop by Category Section
   ======================================== */
.shop-by-category-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.category-main-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.category-main-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.category-main-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.category-main-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-main-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

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

.category-main-card:hover .category-main-image img {
    transform: scale(1.08);
}

.category-main-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
}

.category-main-icon {
    font-size: 5rem;
    opacity: 0.9;
}

.category-main-info {
    padding: 28px;
    text-align: center;
}

.category-main-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-dark);
}

/* ========================================
   Shop by Occasion Section
   ======================================== */
.shop-by-occasion-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.occasion-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.occasion-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

.occasion-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.occasion-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    position: relative;
}

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

.occasion-card:hover .occasion-image img {
    transform: scale(1.12);
}

.occasion-info {
    padding: 32px;
    text-align: center;
}

.occasion-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.occasion-desc {
    font-size: 1.05rem;
    color: var(--text-medium);
}

/* ========================================
   Product Cards (New This Week & Bestsellers)
   ======================================== */
.new-this-week-section,
.bestsellers-section {
    padding: 80px 0;
}

.new-this-week-section {
    background: var(--bg-white);
}

.bestsellers-section {
    background: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.products-grid-scrollable {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.product-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.product-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
    background: var(--bg-light);
}

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

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

.new-badge,
.sale-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 7px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.new-badge {
    background: var(--primary-red);
    color: white;
}

.sale-badge {
    background: var(--dark-red);
    color: white;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3em;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.product-price del {
    color: var(--text-light);
    font-weight: 400;
    margin-right: 10px;
    font-size: 1.2rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.rating-count {
    color: var(--text-light);
}

/* ========================================
   Shop by Price Section
   ======================================== */
.shop-by-price-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.price-range-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.price-range-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.price-range-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.price-range-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-red) 0%, #fdd 100%);
}

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

.price-range-card:hover .price-range-image img {
    transform: scale(1.1);
}

.price-range-info {
    padding: 20px;
    text-align: center;
}

.price-range-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.price-range-desc {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 10px;
}

.price-range-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ========================================
   Value & Trust Section
   ======================================== */
.value-trust-section {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--light-red) 0%, #fff5f7 100%);
}

.value-trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.value-trust-card {
    text-align: center;
    padding: 35px 25px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.value-trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 18px;
}

.value-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-desc {
    font-size: 1.05rem;
    color: var(--text-medium);
}

/* ========================================
   Offers & Financing Section
   ======================================== */
.offers-financing-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.offer-card {
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.offer-card-highlight {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white;
}

.offer-card-savings {
    background: linear-gradient(135deg, #c41e3a 0%, #8b1523 100%);
    color: white;
}

.offer-card-emi {
    background: linear-gradient(135deg, var(--secondary-red) 0%, var(--luxury-burgundy) 100%);
    color: white;
}

.offer-icon {
    font-size: 4rem;
    margin-bottom: 25px;
}

.offer-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #ffffff;
}

.offer-desc {
    font-size: 1.15rem;
    margin-bottom: 28px;
    opacity: 0.95;
}

.offer-btn {
    display: inline-block;
    padding: 12px 32px;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition);
}

.offer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ========================================
   About/Heritage Section
   ======================================== */
.about-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    padding: 20px;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 28px;
}

.about-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 35px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 35px 0;
}

.about-features li {
    font-size: 1.15rem;
    margin-bottom: 18px;
    color: var(--text-medium);
    display: flex;
    align-items: center;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    margin-right: 16px;
    font-weight: bold;
    font-size: 0.95rem;
}

.about-btn {
    display: inline-block;
    padding: 16px 45px;
    background: var(--primary-red);
    color: white;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition);
    margin-top: 25px;
}

.about-btn:hover {
    background: var(--secondary-red);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.4);
}

/* ========================================
   Stores & Services Section
   ======================================== */
.stores-services-section {
    padding: 80px 0;
    background: var(--bg-white);
}

/* Visit Store - Elegant Minimal Design */
.visit-store-wrapper {
    margin: 50px 0 40px;
}

.service-card-visit {
    padding: 60px 40px;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 24px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.service-card-visit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.02) 0%, rgba(139, 0, 0, 0.02) 100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.service-card-visit:hover::before {
    opacity: 1;
}

.service-card-visit:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.1);
}

.service-card-visit .service-icon {
    font-size: 4.5rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    filter: grayscale(0);
}

.service-card-visit .service-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.service-card-visit .service-desc {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-medium);
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Other Services - Same Line on Desktop */
.stores-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    padding: 35px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-red);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 18px;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 1.05rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.service-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-red);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition);
    margin-top: 15px;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    border: 2px solid var(--primary-red);
}

.service-btn:hover {
    background: var(--secondary-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

/* ========================================
   Loyalty Program Section
   ======================================== */
.loyalty-program-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--light-red) 0%, #ffe5ea 50%, #ffd5dc 100%);
}

.loyalty-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.loyalty-left {
    padding: 20px;
}

.loyalty-icon {
    font-size: 4.5rem;
    margin-bottom: 25px;
}

.loyalty-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.loyalty-desc {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.loyalty-benefits {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.loyalty-benefits li {
    font-size: 1.15rem;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-weight: 500;
}

.loyalty-actions {
    display: flex;
    gap: 18px;
    margin-top: 35px;
}

.loyalty-btn {
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition);
    font-size: 1.05rem;
}

.loyalty-btn-primary {
    background: var(--primary-red);
    color: white;
}

.loyalty-btn-primary:hover {
    background: var(--secondary-red);
    transform: translateY(-3px);
}

.loyalty-btn-secondary {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.loyalty-btn-secondary:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-3px);
}

.loyalty-right {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.loyalty-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   Reviews Section
   ======================================== */
.reviews-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.reviews-summary {
    text-align: center;
    margin: 30px 0 50px;
}

.review-stats {
    display: inline-block;
    padding: 30px 50px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.review-rating-large {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 12px;
}

.review-rating-text {
    font-size: 1.25rem;
    color: var(--text-medium);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    padding: 35px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.review-stars {
    color: var(--primary-red);
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.review-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 22px;
    font-style: italic;
}

.review-author {
    font-size: 1.05rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ========================================
   Trust Badges Section (Final)
   ======================================== */
.trust-badges-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.trust-badge {
    text-align: center;
    padding: 35px 25px;
    border-radius: 16px;
    background: var(--bg-light);
    transition: var(--transition);
    border: 1px solid transparent;
}

.trust-badge:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.badge-icon {
    font-size: 4rem;
    margin-bottom: 22px;
}

.badge-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.badge-description {
    font-size: 1.1rem;
    color: var(--text-medium);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1200px) {
    .section-title {
        font-size: 3rem;
    }
    
    .category-main-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .occasion-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .value-trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stores-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .section-title {
        font-size: 2.6rem;
    }
    
    .about-content,
    .loyalty-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .category-main-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .occasion-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .value-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stores-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header-with-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-banner-image {
        height: auto;
    }
    
    .hero-banner-image .banner-img {
        height: auto;
        object-fit: cover;
    }
    
    /* Switch to mobile banner */
    .banner-img-desktop {
        display: none !important;
    }
    
    .banner-img-mobile {
        display: block !important;
    }
    
    .hero-banner-section {
        margin-bottom: 0;
    }
    
    .shop-by-category-section {
        padding: 40px 0;
    }
    
    .trust-strip-items {
        gap: 15px;
    }
    
    .trust-item {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
    }
    
    .products-grid,
    .products-grid-scrollable {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .category-main-grid,
    .occasion-grid,
    .value-trust-grid,
    .stores-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .occasion-image {
        height: 250px;
    }
    
    .about-image,
    .loyalty-right {
        height: 350px;
    }
    
    .about-title,
    .loyalty-title {
        font-size: 2.2rem;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .loyalty-actions {
        flex-direction: column;
    }
    
    .loyalty-btn {
        width: 100%;
        text-align: center;
    }
    
    .service-card-visit {
        padding: 40px 25px;
    }
    
    .service-card-visit .service-title {
        font-size: 2rem;
    }
    
    .service-card-visit .service-desc {
        font-size: 1.05rem;
    }
    
    .service-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-banner-image {
        height: auto;
    }
    
    .hero-banner-image .banner-img {
        height: auto;
        object-fit: cover;
    }
    
    .hero-banner-section {
        margin-bottom: 0;
    }
    
    .shop-by-category-section {
        padding: 30px 0;
    }
    
    .trust-strip-items {
        flex-direction: column;
        gap: 12px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .category-main-grid,
    .price-range-grid,
    .stores-services-grid {
        grid-template-columns: 1fr;
    }
    
    .occasion-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid,
    .products-grid-scrollable {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-badges-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card-visit {
        padding: 30px 20px;
    }
    
    .service-card-visit .service-icon {
        font-size: 3.5rem;
    }
    
    .service-card-visit .service-title {
        font-size: 1.8rem;
    }
    
    .service-card-visit .service-desc {
        font-size: 1rem;
    }
    
    .service-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%;
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.section-container {
    animation: fadeInUp 0.8s ease forwards;
}

/* Print Styles */
@media print {
    .custom-jewelry-home {
        font-size: 12pt;
    }
}
