  .pg-hero-slider {
    width: 100%;
    height: 520px;
    position: relative;
    overflow: hidden;
    /* font-family: 'Poppins', sans-serif; */
    background: #f5f5f5;
}

.pg-slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.pg-slide {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.8s ease;
    opacity: 0;
}

.pg-slide.active {
    left: 0;
    opacity: 1 !important;
}

.pg-slide-content {
    width: 50%;
}

.pg-slide-content h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.pg-slide-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
}

.pg-btn {
    background: #fc6e1d;
    color: #fff;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
    font-weight: 600;
}

.pg-btn:hover {
    background: #d95c17;
}

.pg-slide-img img {
    width: 430px;
    filter: drop-shadow(0px 10px 35px rgba(0,0,0,0.20));
}

/* Navigation */
.pg-slider-nav span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffffcc;
    padding: 12px 14px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s ease;
}

.pg-prev { left: 20px; }
.pg-next { right: 20px; }

.pg-slider-nav span:hover {
    background: #fc6e1d;
    color: #fff;
}

/* Dots */
.pg-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    bottom: 15px !important;
}

.pg-dots span {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
}

.pg-dots .active {
    background: #fc6e1d;
}


@media(max-width: 991px) {
    .pg-hero-slider { height: 520px; }

    .pg-slide-content h1 { font-size: 38px; }
    .pg-slide-img img { width: 330px; }
}

@media(max-width: 768px) {

 
    .pg-hero-slider {
        min-height: 580px !important;
        padding: 20px 0 80px 0 !important;
        background: #f9f9f9;
    }

    /* Slide stacking */
    .pg-slide {
        position: absolute;
        left: 0 !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        text-align: center;
        padding: 20px !important;
        height: auto !important;
    }

    /* Slide Text */
    .pg-slide-content {
        width: 100% !important;
        margin-bottom: 20px;
    }

    .pg-slide-content h1 {
        font-size: 28px !important;
        line-height: 1.3 !important;
        margin-bottom: 10px;
    }

    .pg-slide-content p {
        font-size: 15px !important;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    /* Button */
    .pg-btn {
        padding: 10px 26px !important;
        font-size: 14px !important;
        margin-bottom: 20px;
    }

    /* Image */
    .pg-slide-img {
        width: 100% !important;
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    .pg-slide-img img {
        width: 210px !important;
        height: auto;
        display: block;
    }

    /* Arrows - move to top bottom */
    .pg-slider-nav span {
        bottom: 160px !important;
        top: auto !important;
        transform: none !important;
        background: #ffffff !important;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pg-prev {
        left: 15px !important;
    }
    .pg-next {
        right: 15px !important;
    }

    /* Dots */
    .pg-dots {
        bottom: 25px !important;
    }

    .pg-dots span {
        width: 10px;
        height: 10px;
    }
}





















   .pg-home-block .pg-container {
        display: block;
    }

    /* sections */
    .pg-home-block {
        padding: 60px 0;
    }

    .pg-home-block-alt {
        background: #f7f8fc;
    }

    /* heading row – full width, center */
    .pg-home-section-heading {
        text-align: center;
        margin-bottom: 32px;
    }

    .pg-home-section-heading h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 6px;
        color: #222;
    }

    .pg-home-section-heading p {
        font-size: 14px;
        color: #666;
        max-width: 620px;
        margin: 0 auto;
    }

    /* features row */
    .pg-features-row {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 24px;
    }

    .pg-feature-box {
        text-align: center;
        background: #fff;
        padding: 24px 18px;
        border-radius: 14px;
        border: 1px solid #eee;
        transition: .3s;
    }

    .pg-feature-box i {
        font-size: 28px;
        color: #ff7a00;
        margin-bottom: 10px;
    }

    .pg-feature-box h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .pg-feature-box p {
        font-size: 13px;
        color: #666;
    }

    .pg-feature-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    }

    /* categories row */
    .pg-category-row {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

    .pg-category-card {
        display: block;
        text-align: center;
        padding: 16px;
        border-radius: 12px;
        border: 1px solid #eee;
        background: #fff;
        transition: .3s;
    }

    .pg-category-card img {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .pg-category-card span {
        font-size: 15px;
        font-weight: 600;
        color: #222;
    }

    .pg-category-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    /* benefits row */
    .pg-benefits-row {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

    .pg-benefit-item {
        text-align: center;
        background: #fff;
        padding: 24px 18px;
        border-radius: 16px;
        border: 1px solid #eee;
    }

    .pg-benefit-item i {
        font-size: 30px;
        color: #ff7a00;
        margin-bottom: 8px;
    }

    .pg-benefit-item h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .pg-benefit-item p {
        font-size: 13px;
        color: #666;
    }




    .pg-blog-swiper .swiper-wrapper {
        align-items: stretch;
    }

    .pg-blog-slide-card {
        background: #fff;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
        display: flex;
        flex-direction: column;
        height: 100%;
        transition: transform .3s, box-shadow .3s;
    }

    .pg-blog-slide-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
    }

    .pg-blog-slide-img-wrap {
        position: relative;
        overflow: hidden;
        max-height: 220px;
    }

    .pg-blog-slide-img-wrap img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        transition: transform .4s;
    }

    .pg-blog-slide-card:hover .pg-blog-slide-img-wrap img {
        transform: scale(1.07);
    }

    .pg-blog-badge {
        position: absolute;
        left: 14px;
        bottom: 14px;
        background: rgba(0, 0, 0, .75);
        color: #fff;
        padding: 6px 10px;
        border-radius: 999px;
        font-size: 11px;
    }

    .pg-blog-slide-body {
        padding: 16px 18px 18px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        flex-grow: 1;
    }

    .pg-blog-slide-title a {
        font-size: 16px;
        font-weight: 600;
        color: #222;
        text-decoration: none;
    }

    .pg-blog-slide-title a:hover {
        color: #ff7a00;
    }

    .pg-blog-slide-excerpt {
        font-size: 13px;
        color: #666;
        line-height: 1.5;
    }

    .pg-blog-slide-link {
        margin-top: 4px;
        font-size: 13px;
        font-weight: 600;
        color: #ff7a00;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    .pg-blog-slide-link i {
        font-size: 11px;
    }

    .pg-blog-nav {
        position: absolute;
        top: 45%;
        transform: translateY(-50%);
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #fff;
        box-shadow: 0 8px 18px rgba(0, 0, 0, .15);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: .2s;
    }

    .pg-blog-prev {
        left: -12px;
    }

    .pg-blog-next {
        right: -12px;
    }

    .pg-blog-nav i {
        font-size: 14px;
        color: #333;
    }

    .pg-blog-nav:hover {
        transform: translateY(-50%) scale(1.05);
    }

    .pg-blog-pagination {
        text-align: center;
        margin-top: 18px;
    }

    .pg-blog-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: #ccc;
        opacity: 1;
        margin: 0 4px !important;
    }

    .pg-blog-pagination .swiper-pagination-bullet-active {
        background: #ff7a00;
    }

    .pg-blog-single {
        max-width: 420px;
        /* card jaisa width */
        margin: 0 auto;
        /* center */
    }

    /* responsive */
    @media (max-width:992px) {
        .pg-features-row {
            grid-template-columns: repeat(2, 1fr);
        }

        .pg-category-row {
            grid-template-columns: repeat(2, 1fr);
        }

        .pg-benefits-row {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width:576px) {

        .pg-features-row,
        .pg-category-row,
        .pg-benefits-row {
            grid-template-columns: 1fr;
        }

        .pg-home-section-heading h2 {
            font-size: 26px;
        }
    }











  /* ============================================
   BACKWARD COMPATIBILITY - Old Class Names
   ============================================ */
.grocery-hero-section,
.vip-services,
.categories-section,
.products-section,
.blog-section {
    position: relative;
}

/* Old hero section classes */
.grocery-hero-section { background: #FF6F00; }
.grocery-hero-item { display: none; min-height: 550px; }
.grocery-hero-item.active { display: block; }
.grocery-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; }
.grocery-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(27,94,32,0.95) 0%, rgba(27,94,32,0.7) 50%, rgba(27,94,32,0.4) 100%); }
.grocery-hero-content { position: relative; z-index: 10; padding: 60px 0; }
.grocery-hero-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); padding: 12px 24px; border-radius: 50px; color: white; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; border: 1px solid rgba(255,255,255,0.2); }
.grocery-hero-badge i { color: #FFB74D; }
.grocery-badge-orange { background: rgba(255,111,0,0.2); }
.grocery-badge-orange i { color: #FFB74D; }
.grocery-badge-blue { background: rgba(25,118,210,0.2); }
.grocery-badge-blue i { color: #64B5F6; }
.grocery-hero-title { font-size: 3.5rem; font-weight: 800; line-height: 1.2; color: white; margin-bottom: 25px; text-shadow: 0 2px 20px rgba(0,0,0,0.3);    animation: slideInLeft 0.6s ease-out 0.3s both;
    -webkit-animation: slideInLeft 0.6s ease-out 0.3s both; }
.grocery-hero-title span { color: #FFB74D; display: block;     animation: slideInLeft 0.6s ease-out 0.3s both;
    -webkit-animation: slideInLeft 0.6s ease-out 0.3s both; }
.grocery-hero-desc { font-size: 1.2rem; color: rgba(255,255,255,0.9);
     line-height: 1.8; margin-bottom: 35px; max-width: 500px;    animation: slideInLeft 0.9s ease-out 0.1s both;
}
.grocery-hero-actions { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 40px; }
.grocery-btn-primary { display: inline-flex; align-items: center; gap: 12px; background: #FF6F00; color: white; padding: 18px 36px; border-radius: 50px; font-size: 16px; font-weight: 700; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 8px 25px rgba(255,111,0,0.4); }
.grocery-btn-primary:hover { background: #F57C00; transform: translateY(-3px); box-shadow: 0 12px 35px rgba(255,111,0,0.5); color: white; }
.grocery-btn-primary i { transition: transform 0.3s ease; }
.grocery-btn-primary:hover i { transform: translateX(5px); }
.grocery-btn-primary.grocery-btn-orange { background: #FF6F00; }
.grocery-btn-primary.grocery-btn-blue { background: #1976D2; box-shadow: 0 8px 25px rgba(25,118,210,0.4); }
.grocery-btn-primary.grocery-btn-blue:hover { background: #1565C0; box-shadow: 0 12px 35px rgba(25,118,210,0.5); }
.grocery-btn-secondary { display: inline-flex; align-items: center; gap: 10px; background: transparent; border: 2px solid rgba(255,255,255,0.5); color: white; padding: 16px 28px; border-radius: 50px; font-size: 15px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; }
.grocery-btn-secondary:hover { background: white; color: #1B5E20; border-color: white; }
.grocery-hero-stats { display: flex; gap: 40px; }
.grocery-stat { text-align: center; }
.grocery-stat-number { display: block; font-size: 2rem; font-weight: 800; color: #8BC34A; }
.grocery-stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.grocery-hero-features { display: flex; gap: 25px; flex-wrap: wrap; }
.grocery-feature { display: flex; align-items: center; gap: 8px; color: white; font-size: 0.95rem; }
.grocery-feature i { color: #FFB74D; }
.grocery-hero-delivery { display: flex; align-items: center; gap: 15px; background: rgba(255,255,255,0.1); padding: 20px 30px; border-radius: 50px; backdrop-filter: blur(10px); }
.grocery-delivery-step { display: flex; align-items: center; gap: 10px; color: white; font-size: 0.9rem; }
.grocery-delivery-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.grocery-delivery-icon i { color: #FFB74D; font-size: 16px; }
.grocery-delivery-arrow { color: rgba(255,255,255,0.5); font-size: 14px; }
.grocery-hero-visual { position: relative; height: 100%; display: flex; align-items: center; justify-content: center; }
.grocery-hero-image-stack { position: relative; width: 100%; height: 350px; }
.grocery-hero-img-card { position: absolute; background: white; border-radius: 20px; padding: 25px; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 20px 60px rgba(0,0,0,0.3); animation: float 3s ease-in-out infinite; }
.grocery-hero-img-card i { font-size: 40px; color: #1B5E20; margin-bottom: 10px; }
.grocery-hero-img-card span { font-size: 14px; font-weight: 600; color: #333; }
.grocery-hero-img-1 { top: 20%; left: 10%; animation-delay: 0s; }
.grocery-hero-img-2 { top: 45%; left: 35%; animation-delay: 0.5s; }
.grocery-hero-img-3 { top: 70%; left: 15%; animation-delay: 1s; }
.grocery-hero-nav { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 20px; z-index: 100; }
.grocery-hero-nav-btn { width: 50px; height: 50px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.1); color: white; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(10px); }
.grocery-hero-nav-btn:hover { background: white; color: #1B5E20; border-color: white; }
.grocery-hero-dots { display: flex; gap: 10px; }
.grocery-hero-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.3s ease; }
.grocery-hero-dot.active { background: white; transform: scale(1.3); }
.grocery-hero-scroll { position: absolute; bottom: 30px; right: 30px; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 12px; z-index: 100; animation: bounce 2s infinite; }

/* Old services classes */
.vip-services { padding: 30px 0; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
.vip-services-inner { display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.service-item { display: flex; align-items: center; gap: 15px; padding: 15px 25px; background: rgba(255,255,255,0.05); border-radius: 12px; transition: all 0.3s ease; }
.service-item:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.service-icon { width: 50px; height: 50px; background: linear-gradient(135deg, #FF6F00 0%, #F57C00 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.service-icon i { font-size: 22px; color: white; }
.service-text h4 { color: white; font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.service-text p { color: rgba(255,255,255,0.7); font-size: 13px; margin: 0; }
.service-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.1); }

/* Old categories classes */
.categories-section { padding: 80px 0; background: #fafafa; }
.section-header { text-align: center; margin-bottom: 50px; position: relative; }
.section-title { font-size: 2rem; font-weight: 800; color: #1a1a2e; margin-bottom: 10px; }
.section-subtitle { color: #666; font-size: 1rem; }
.view-all-link { position: absolute; right: 0; top: 20px; color: #ff6b00; font-weight: 600; text-decoration: none; display: flex; align-items: center; gap: 5px; }
.view-all-link:hover { color: #e55a00; }
.categories-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.category-card { background: white; border-radius: 16px; padding: 25px 15px; text-align: center; text-decoration: none; transition: all 0.3s ease; border: 2px solid transparent; }
.category-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.15); border-color: #ff6b00; }
.category-card.view-all { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
.category-card.view-all h4 { color: white; }
.category-icon { width: 70px; height: 70px; background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; transition: all 0.3s ease; }
.category-card:hover .category-icon { background: linear-gradient(135deg, #FF6F00 0%, #F57C00 100%); transform: scale(1.1); }
.category-icon i { font-size: 1.8rem; color: #1a1a2e; transition: color 0.3s ease; }
.category-card:hover .category-icon i { color: white; }
.category-card h4 { font-size: 0.95rem; font-weight: 700; color: #333; margin: 0; }
.category-arrow { display: block; margin-top: 10px; opacity: 0; transform: translateX(-10px); transition: all 0.3s ease; color: #ff6b00; }
.category-card:hover .category-arrow { opacity: 1; transform: translateX(0); }

/* Old products classes */
.products-section { padding: 80px 0; }
.products-section.bg-light { background: #f8f9fa; }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.products-scroll-container { display: none; overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; scroll-behavior: smooth; scroll-snap-type: x mandatory; padding-bottom: 20px; margin: 0 -15px; padding-left: 15px; padding-right: 15px; }
.products-scroll-container::-webkit-scrollbar { height: 6px; }
.products-scroll-container::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
.products-scroll-container::-webkit-scrollbar-thumb { background: #1a1a2e; border-radius: 10px; }
.products-scroll-container .product-card { flex: 0 0 calc(33.333% - 17px); min-width: calc(33.333% - 17px); scroll-snap-align: start; }
@media (max-width: 991px) { .products-grid { display: none; } .products-scroll-container { display: flex; gap: 15px; } }
.product-card { background: white; border-radius: 20px; overflow: hidden; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: 1px solid #eee; position: relative; }
.product-card:hover { transform: translateY(-12px); box-shadow: 0 25px 60px rgba(0,0,0,0.12); }
.product-badges { position: absolute; top: 15px; left: 15px; right: 15px; display: flex; justify-content: space-between; z-index: 10; }
.product-discount { background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%); color: white; padding: 6px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4); }
.product-new-badge { background: linear-gradient(135deg, #38ef7d 0%, #2ecc71 100%); color: #1a1a2e; padding: 6px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; box-shadow: 0 4px 15px rgba(56, 239, 125, 0.4); }
.product-hot-badge { background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%); color: white; padding: 6px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4); }
.product-accessory-badge { background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%); color: white; padding: 6px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; box-shadow: 0 4px 15px rgba(155, 89, 182, 0.4); }
.product-wishlist { width: 40px; height: 40px; border-radius: 50%; background: white; border: none; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(0,0,0,0.1); cursor: pointer; transition: all 0.3s ease; }
.product-wishlist:hover, .product-wishlist.active { background: #e74c3c; color: white; transform: scale(1.1); }
.product-image { display: block; height: 220px; overflow: hidden; background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-image img { transform: scale(1.08); }
.product-info { padding: 20px; }
.product-brand { font-size: 0.7rem; text-transform: uppercase; color: #999; letter-spacing: 1px; font-weight: 600; }
.product-name { font-size: 1rem; font-weight: 700; margin: 8px 0; line-height: 1.4; }
.product-name a { text-decoration: none; color: #1a1a2e; transition: color 0.3s ease; }
.product-name a:hover { color: #ff6b00; }
.product-rating { display: flex; align-items: center; gap: 5px; margin-bottom: 12px; }
.product-rating i { color: #ffc107; font-size: 0.85rem; }
.product-rating span { color: #888; font-size: 0.8rem; }
.product-price { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.price-new { font-size: 1.3rem; font-weight: 800; color: #1a1a2e; }
.price-old { font-size: 0.95rem; text-decoration: line-through; color: #999; }
.add-to-cart { width: 100%; padding: 14px; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); color: white; border: none; border-radius: 12px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.3s ease; font-size: 0.95rem; }
.add-to-cart:hover { background: linear-gradient(135deg, #FF6F00 0%, #F57C00 100%); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255, 111, 0, 0.3); }
.no-products { text-align: center; padding: 60px 20px; }
.no-products i { font-size: 4rem; color: #ccc; margin-bottom: 15px; }
.no-products p { color: #888; font-size: 1.1rem; }

/* Old blog classes */
.blog-section { padding: 80px 0; background: #fafafa; }
.blog-grid { margin-top: 30px; }
.blog-card { background: white; border-radius: 20px; overflow: hidden; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); height: 100%; border: 1px solid #eee; }
.blog-card:hover { transform: translateY(-10px); box-shadow: 0 25px 60px rgba(0,0,0,0.12); }
.blog-image { height: 200px; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); display: flex; align-items: center; justify-content: center; position: relative; }
.blog-image::before { content: ''; position: absolute; width: 100%; height: 100%; background: linear-gradient(45deg, rgba(255,111,0,0.2), rgba(255,111,0,0.1)); }
.blog-image i { font-size: 3.5rem; color: rgba(255,255,255,0.8); position: relative; z-index: 1; }
.blog-content { padding: 25px; }
.blog-date { font-size: 0.85rem; color: #888; display: block; margin-bottom: 12px; }
.blog-date i { margin-right: 5px; }
.blog-content h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: #1a1a2e; line-height: 1.4; }
.blog-content p { color: #666; font-size: 0.95rem; line-height: 1.6; margin-bottom: 18px; }
.blog-read-more { color: #ff6b00; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; font-size: 0.95rem; transition: all 0.3s ease; }
.blog-read-more:hover { color: #e55a00; gap: 12px; }

@media (max-width: 1200px) { .products-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (max-width: 991px) { .grocery-hero-title { font-size: 2.5rem; } .grocery-hero-desc { font-size: 1.1rem; } .grocery-hero-content { padding: 40px 0; } .grocery-hero-stats { gap: 25px; } .grocery-stat-number { font-size: 1.5rem; } .grocery-hero-delivery { flex-wrap: wrap; justify-content: center; } .categories-grid { grid-template-columns: repeat(3, 1fr); } .products-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; } .service-divider { display: none; } .vip-services-inner { justify-content: center; } }
@media (max-width: 768px) { .grocery-hero-title { font-size: 2rem; } .grocery-hero-item { min-height: 500px; } .min-vh-550 { min-height: 500px; } .grocery-hero-actions { flex-direction: column; } .grocery-btn-primary, .grocery-btn-secondary { width: 100%; justify-content: center; } .grocery-hero-stats { gap: 20px; justify-content: center; } .grocery-hero-nav { bottom: 15px; } .grocery-hero-scroll { display: none; } .grocery-hero-badge { font-size: 12px; padding: 10px 18px; } .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; } .category-card { padding: 20px 10px; } .section-title { font-size: 1.6rem; } .view-all-link { position: static; margin-top: 15px; display: inline-flex; } .section-header { display: flex; flex-direction: column; align-items: center; } .products-scroll-container .product-card { flex: 0 0 calc(70% - 8px); min-width: calc(70% - 8px); } }
@media (max-width: 480px) { .grocery-hero-title { font-size: 1.7rem; } .grocery-hero-desc { font-size: 1rem; } .grocery-hero-content { padding: 30px 0; } .grocery-stat-number { font-size: 1.3rem; } .grocery-hero-features { flex-direction: column; gap: 10px; } .announcement-content { flex-direction: column; gap: 10px; } .service-item { width: 100%; justify-content: center; } }
@media (max-width: 400px) { .grocery-hero-title { font-size: 1.5rem; } .products-scroll-container .product-card { flex: 0 0 calc(85% - 8px); min-width: calc(85% - 8px); } }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.pg-announcement-bar {
    background: linear-gradient(90deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    padding: 12px 0;
    position: relative;
    overflow: hidden;
}

.pg-announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

.pg-announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    color: white;
    font-size: 14px;
}

.pg-announcement-tag {
    background: #e74c3c;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pg-announcement-text {
    flex: 1;
    text-align: center;
}

.pg-announcement-text a {
    color: #FFB74D;
    font-weight: 600;
    text-decoration: none;
    margin-left: 10px;
}

.pg-announcement-text a:hover {
    color: #fff;
}

.pg-announcement-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.pg-announcement-close:hover {
    opacity: 1;
}

/* ============================================
   GROCERY HERO SECTION STYLES
   ============================================ */
.pg-hero-section {
    position: relative;
    overflow: hidden;
    background: #FFB74D;
}

.pg-hero-item {
    position: relative;
    display: none;
    min-height: 550px;
    animation: fadeInUp 0.6s ease;
}

.pg-hero-item.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pg-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.pg-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(252, 208, 13, 0.95) 0%, rgba(27,94,32,0.7) 50%, rgba(27,94,32,0.4) 100%);
    z-index: 2;
}

.pg-hero-content-wrapper {
    position: relative;
    z-index: 10;
    padding: 60px 0;
}

.pg-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.2);
    animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pg-hero-badge i {
    color: #8BC34A;
}

.pg-hero-badge.pg-badge-orange {
    background: rgba(255,111,0,0.5);
}

.pg-hero-badge.pg-badge-orange i {
    color: #FFB74D;
}

.pg-hero-badge.pg-badge-blue {
    background: rgba(25,118,210,0.2);
}

.pg-hero-badge.pg-badge-blue i {
    color: #64B5F6;
}

.pg-hero-title-main {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-bottom: 25px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    animation: slideInUp 0.8s ease 0.2s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pg-hero-title-main span {
    color: #8BC34A;
    display: block;
}

.pg-hero-description {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 500px;
    animation: slideInUp 0.8s ease 0.4s both;
}

.pg-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: slideInUp 0.8s ease 0.6s both;
}

.pg-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #FF6F00;
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255,111,0,0.4);
}

.pg-btn-primary:hover {
    background: #F57C00;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,111,0,0.5);
    color: white;
}

.pg-btn-primary i {
    transition: transform 0.3s ease;
}

.pg-btn-primary:hover i {
    transform: translateX(5px);
}

.pg-btn-primary.pg-btn-orange {
    background: #FF6F00;
}

.pg-btn-primary.pg-btn-blue {
    background: #1976D2;
    box-shadow: 0 8px 25px rgba(25,118,210,0.4);
}

.pg-btn-primary.pg-btn-blue:hover {
    background: #1565C0;
    box-shadow: 0 12px 35px rgba(25,118,210,0.5);
}

.pg-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pg-btn-secondary:hover {
    background: white;
    color: #1B5E20;
    border-color: white;
}

.pg-hero-stats {
    display: flex;
    gap: 40px;
    animation: slideInUp 0.8s ease 0.8s both;
}

.pg-stat-item {
    text-align: center;
}

.pg-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #8BC34A;
}

.pg-stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.pg-hero-features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease 0.6s both;
}

.pg-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.95rem;
}

.pg-feature-item i {
    color: #8BC34A;
}

.pg-hero-delivery-steps {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.1);
    padding: 20px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    animation: slideInUp 0.8s ease 0.6s both;
}

.pg-delivery-step {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.9rem;
}

.pg-delivery-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pg-delivery-icon i {
    color: #8BC34A;
    font-size: 16px;
}

.pg-delivery-arrow {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.pg-hero-visual-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pg-hero-image-stack {
    position: relative;
    width: 100%;
    height: 350px;
}

.pg-hero-img-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: float 3s ease-in-out infinite;
}

.pg-hero-img-card i {
    font-size: 40px;
    color: #1B5E20;
    margin-bottom: 10px;
}

.pg-hero-img-card span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.pg-hero-img-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.pg-hero-img-2 {
    top: 45%;
    left: 35%;
    animation-delay: 0.5s;
}

.pg-hero-img-3 {
    top: 70%;
    left: 15%;
    animation-delay: 1s;
}

/* Hero Navigation */
.pg-hero-navigation {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 100;
}

.pg-hero-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.pg-hero-nav-btn:hover {
    background: white;
    color: #1B5E20;
    border-color: white;
}

.pg-hero-dots-container {
    display: flex;
    gap: 10px;
}

.pg-hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pg-hero-dot.active {
    background: white;
    transform: scale(1.3);
}

.pg-hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    z-index: 100;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.pg-services-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.pg-services-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.pg-service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.pg-service-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.pg-service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6F00 0%, #F57C00 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pg-service-icon i {
    font-size: 22px;
    color: white;
}

.pg-service-text h4 {
    color: white;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 3px;
}

.pg-service-text p {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    margin: 0;
}

.pg-service-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.1);
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.pg-categories-section {
    padding: 80px 0;
    background: #fafafa;
}

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

.pg-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.pg-section-subtitle {
    color: #666;
    font-size: 1rem;
}

.pg-view-all-link {
    position: absolute;
    right: 0;
    top: 20px;
    color: #ff6b00;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.pg-view-all-link:hover {
    color: #e55a00;
    gap: 10px;
}

.pg-categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.pg-category-card {
    background: white;
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.pg-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF6F00 0%, #F57C00 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pg-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: #ff6b00;
}

.pg-category-card.pg-view-all-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.pg-category-card.pg-view-all-card h4 {
    color: white;
}

.pg-category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.pg-category-card:hover .pg-category-icon {
    background: linear-gradient(135deg, #FF6F00 0%, #F57C00 100%);
    transform: scale(1.1);
}

.pg-category-icon i {
    font-size: 1.8rem;
    color: #1a1a2e;
    transition: color 0.3s ease;
}

.pg-category-card:hover .pg-category-icon i {
    color: white;
}

.pg-category-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    position: relative;
    z-index: 1;
}

.pg-category-arrow {
    display: block;
    margin-top: 10px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #ff6b00;
    position: relative;
    z-index: 1;
}

.pg-category-card:hover .pg-category-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.pg-products-section {
    padding: 80px 0;
}

.pg-products-section.pg-bg-light {
    background: #f8f9fa;
}

.pg-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Horizontal Scroll Container for Mobile/Tablet */
.pg-products-scroll {
    display: none;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
}

.pg-products-scroll::-webkit-scrollbar {
    height: 6px;
}

.pg-products-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.pg-products-scroll::-webkit-scrollbar-thumb {
    background: #1a1a2e;
    border-radius: 10px;
}

.pg-products-scroll .pg-product-card {
    flex: 0 0 calc(33.333% - 17px);
    min-width: calc(33.333% - 17px);
    scroll-snap-align: start;
}

@media (max-width: 991px) {
    .pg-products-grid {
        display: none;
    }
    .pg-products-scroll {
        display: flex;
        gap: 15px;
    }
}

/* Product Card */
.pg-product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #eee;
    position: relative;
}

.pg-product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.pg-product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.pg-badge-discount {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.pg-badge-new {
    background: linear-gradient(135deg, #38ef7d 0%, #2ecc71 100%);
    color: #1a1a2e;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(56, 239, 125, 0.4);
}

.pg-badge-hot {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.pg-badge-accessory {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.4);
}

.pg-btn-wishlist {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pg-btn-wishlist:hover,
.pg-btn-wishlist.active {
    background: #e74c3c;
    color: white;
    transform: scale(1.1);
}

.pg-product-image-wrapper {
    display: block;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.pg-product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pg-product-card:hover .pg-product-image-wrapper img {
    transform: scale(1.08);
}

.pg-product-quick-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    transition: bottom 0.3s ease;
}

.pg-product-card:hover .pg-product-quick-actions {
    bottom: 0;
}

.pg-quick-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pg-quick-action-btn:hover {
    background: #FF6F00;
    color: white;
}

.pg-product-info {
    padding: 20px;
}

.pg-product-brand {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
    font-weight: 600;
}

.pg-product-name {
    font-size: 1rem;
    font-weight: 700;
    margin: 8px 0;
    line-height: 1.4;
}

.pg-product-name a {
    text-decoration: none;
    color: #1a1a2e;
    transition: color 0.3s ease;
}

.pg-product-name a:hover {
    color: #ff6b00;
}

.pg-product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
}

.pg-product-rating i {
    color: #ffc107;
    font-size: 0.85rem;
}

.pg-product-rating span {
    color: #888;
    font-size: 0.8rem;
}

.pg-product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.pg-price-current {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a2e;
}

.pg-price-old {
    font-size: 0.95rem;
    text-decoration: line-through;
    color: #999;
}

.pg-btn-add-cart {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.pg-btn-add-cart:hover {
    background: linear-gradient(135deg, #FF6F00 0%, #F57C00 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 111, 0, 0.3);
}

.pg-no-products {
    text-align: center;
    padding: 60px 20px;
}

.pg-no-products i {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 15px;
}

.pg-no-products p {
    color: #888;
    font-size: 1.1rem;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.pg-blog-section {
    padding: 80px 0;
    background: #fafafa;
}

.pg-blog-grid {
    margin-top: 30px;
}

.pg-blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid #eee;
}

.pg-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.pg-blog-image {
    height: 200px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.pg-blog-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,111,0,0.2), rgba(255,111,0,0.1));
}

.pg-blog-image i {
    font-size: 3.5rem;
    color: rgba(255,255,255,0.8);
    position: relative;
    z-index: 1;
}

.pg-blog-content {
    padding: 25px;
}

.pg-blog-date {
    font-size: 0.85rem;
    color: #888;
    display: block;
    margin-bottom: 12px;
}

.pg-blog-date i {
    margin-right: 5px;
}

.pg-blog-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a2e;
    line-height: 1.4;
}

.pg-blog-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.pg-blog-link {
    color: #ff6b00;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.pg-blog-link:hover {
    color: #e55a00;
    gap: 12px;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1199px) {
    .pg-hero-title-main { font-size: 3rem; }
    .pg-hero-image-stack { height: 280px; }
    .pg-hero-img-card { padding: 20px; }
    .pg-hero-img-card i { font-size: 30px; }
    .pg-products-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (max-width: 991px) {
    .pg-hero-title-main { font-size: 2.5rem; }
    .pg-hero-description { font-size: 1.1rem; }
    .pg-hero-content-wrapper { padding: 40px 0; }
    .pg-hero-stats { gap: 25px; }
    .pg-stat-number { font-size: 1.5rem; }
    .pg-hero-delivery-steps { flex-wrap: wrap; justify-content: center; }
    .pg-categories-grid { grid-template-columns: repeat(3, 1fr); }
    .pg-products-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; }
    .pg-service-divider { display: none; }
    .pg-services-inner { justify-content: center; }
}

@media (max-width: 768px) {
    .pg-hero-title-main { font-size: 2rem; }
    .pg-hero-item { min-height: 500px; }
    .min-vh-550 { min-height: 500px; }
    .pg-hero-buttons { flex-direction: column; }
    .pg-btn-primary, .pg-btn-secondary { width: 100%; justify-content: center; }
    .pg-hero-stats { gap: 20px; justify-content: center; }
    .pg-hero-navigation { bottom: 15px; }
    .pg-hero-scroll-indicator { display: none; }
    .pg-hero-badge { font-size: 12px; padding: 10px 18px; }
    .pg-categories-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .pg-category-card { padding: 20px 10px; }
    .pg-section-title { font-size: 1.6rem; }
    .pg-view-all-link { position: static; margin-top: 15px; display: inline-flex; }
    .pg-section-header { display: flex; flex-direction: column; align-items: center; }
    .pg-products-scroll .pg-product-card {
        flex: 0 0 calc(70% - 8px);
        min-width: calc(70% - 8px);
    }
}

@media (max-width: 480px) {
    .pg-hero-title-main { font-size: 1.7rem; }
    .pg-hero-description { font-size: 1rem; }
    .pg-hero-content-wrapper { padding: 30px 0; }
    .pg-stat-number { font-size: 1.3rem; }
    .pg-hero-features { flex-direction: column; gap: 10px; }
    .pg-announcement-content { flex-direction: column; gap: 10px; }
    .pg-service-item { width: 100%; justify-content: center; }
}

@media (max-width: 400px) {
    .pg-hero-title-main { font-size: 1.5rem; }
    .pg-products-scroll .pg-product-card {
        flex: 0 0 calc(85% - 8px);
        min-width: calc(85% - 8px);
    }
}

/* FAQ Wrapper */
.pg-faq-wrapper {
    max-width: 780px;
    margin: 0 auto;
}

/* Question Button */
.pg-faq-question {
    width: 100%;
    text-align: left;
    background: #000;
    color: #fff;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.pg-faq-question:hover {
    background: #fc6e1d;
}

/* + Icon */
.pg-faq-icon {
    font-size: 22px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

/* Answer Box */
.pg-faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height 0.35s ease;
}

.pg-faq-answer p {
    padding: 15px 20px;
    margin: 0;
    color: #333;
    font-size: 15px;
    line-height: 1.5;
}

/* When Active */
.pg-faq-item.active .pg-faq-answer {
    max-height: 300px;
}

.pg-faq-item.active .pg-faq-icon {
    transform: rotate(45deg);
}







.pg-reviews-section {
    padding: 70px 0;
    background: #fafafa;
}

.pg-reviews-heading h2 {
    font-size: 36px;
    font-weight: 800;
    color: #000;
}

.pg-reviews-heading p {
    color: #555;
    margin-top: 10px;
}

/* Review Card */
.pg-review-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border-left: 5px solid #fc6e1d;
    height: auto;
}

.pg-review-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.pg-review-user {
    font-weight: 700;
    font-size: 17px;
    color: #000;
}

/* Swiper pagination */
.swiper-pagination-bullet {
    background: #aaa;
    opacity: 1;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: #fc6e1d !important;
}

/* Responsive */
@media (max-width: 768px) {
    .pg-review-card {
        padding: 25px;
    }
}





.pg-how-works {
    padding: 70px 0;
    background: #fff;
    text-align: center; /* MAIN FIX */
}

.pg-how-heading {
    margin-bottom: 50px;
}

/* Heading and paragraph */
.pg-how-heading h2 {
    font-size: 40px;
    font-weight: 700;
    color: #000;
}

.pg-how-heading p {
    font-size: 18px;
    margin-top: 10px;
    color: #444;
}

/* SINGLE ROW */
.pg-how-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 30px;
}

/* STEPS */
.pg-how-step {
    width: 19%;
    text-align: center;
}

/* ICONS */
.pg-how-icon {
    width: 85px;
    height: 85px;
    background: #ff7a00;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    box-shadow: 0 6px 22px rgba(255, 122, 0, 0.35);
}

.pg-how-step h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pg-how-step p {
    font-size: 15px;
    color: #444;
    line-height: 22px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .pg-how-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .pg-how-step {
        width: 45%;
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .pg-how-step {
        width: 100%;
    }
}






 .category-slider-full {
    /* padding-top: 10px; */
}

.cat-full-card {
    border-radius: 18px;
    overflow: hidden;
    height: 260px;
    background: transparent;
}

.cat-full-card img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

/* FIXED HOVER – no jump, no white space */
.cat-full-card:hover img {
    transform: scale(1.05);
}

/* Remove white gaps during movement */
.swiper-slide {
    background: transparent !important;
}

.swiper-button-next,
.swiper-button-prev {
    display: none;
}







/* ===============================
   PRICE SLIDER – FIXED VERSION
   =============================== */

.price-slider {
    position: relative;
    width: 100%;
    padding-top: 18px;   /* space for slider */
    padding-bottom: 22px; /* space for prices */
}

/* RANGE BASE */
.price-slider input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: #e5e5e5;
    border-radius: 5px;
    outline: none;
    position: absolute;
    top: 0;
    pointer-events: none;
}

/* ACTIVE TRACK */
.price-slider input[type=range]::-webkit-slider-runnable-track {
    height: 4px;
    background: #fc6e1d;
    border-radius: 5px;
}

.price-slider input[type=range]::-moz-range-track {
    height: 4px;
    background: #fc6e1d;
    border-radius: 5px;
}

/* THUMB */
.price-slider input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #fc6e1d;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    margin-top: -6px;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.price-slider input[type=range]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #fc6e1d;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
}

/* STACKING */
#priceMin { z-index: 2; }
#priceMax { z-index: 1; }

/* PRICE TEXT */
.price-values {
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}
/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}