
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700;800&family=Rajdhani:wght@700;900&display=swap');

/* --- SHOP PAGE MASTER STYLES --- */

/* Inherit your existing variables */
.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 cards on desktop */
    gap: 24px;
    margin-bottom: 60px;
}

/* SEARCH BAR STYLING */
.shop-search-bar {
    position: relative;
    width: 350px;
}

.shop-search-bar i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
}

.shop-search-bar input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px 12px 45px;
    border-radius: 12px;
    color: #fff;
    outline: none;
    transition: 0.3s;
}

.shop-search-bar input:focus {
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.05);
}

/* UTILITY ROW */
.shop-utility-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 5px;
}

.filter-dropdowns {
    display: flex;
    gap: 15px;
}

.shop-select {
    background: var(--card-grey);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    outline: none;
}

.results-text {
    color: #666;
    font-size: 13px;
    font-weight: 600;
}

.results-text span {
    color: var(--primary-gold);
}

/* CLEAN PAGINATION */
.shop-pagination-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.page-numbers {
    display: flex;
    gap: 10px;
    align-items: center;
}

.page-num, .page-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--card-grey);
    color: #fff;
    font-family: var(--font-gaming);
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-num.active {
    background: var(--primary-gold);
    color: #000;
    border-color: var(--primary-gold);
}

.page-num:hover:not(.active), .page-nav-btn:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.page-dots { color: #444; }

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1400px) {
    .shop-product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .shop-product-grid { grid-template-columns: repeat(2, 1fr); }
    .shop-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .shop-search-bar { width: 100%; }
    .header-right-filters{ width: 100%;}
}

@media (max-width: 650px) {
    .shop-product-grid { grid-template-columns: 1fr; }
    .shop-utility-row { flex-direction: column; align-items: flex-start; gap: 15px; }
    .page-num { width: 35px; height: 35px; font-size: 12px; }
}


/* --- HORIZONTAL PAGINATION --- */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.pagination-inner {
    display: flex;
    flex-direction: row; /* Horizontal Force */
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.02);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.05);
}

.page-numbers-horizontal {
    display: flex;
    flex-direction: row; /* Horizontal Force */
    gap: 8px;
    align-items: center;
}

.page-num, .page-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.03);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-num.active {
    background: var(--y-gold);
    color: #000;
    border-color: var(--y-gold);
}

.page-num:hover:not(.active), .page-arrow:hover {
    background: rgba(245, 166, 35, 0.2);
    color: var(--y-gold);
}

.page-dots { color: #555; padding: 0 5px; }


@media (max-width: 600px) {
    
    .pagination-inner {
        padding: 8px 15px;
        gap: 8px;
    }
    .page-num, .page-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
}


/* SHOP CTA */


/* --- Shop Bottom CTA --- */
.yamraj-shop-cta {
    padding: 60px 0 100px;
    background: var(--bg-black);
}

.custom-request-box {
    position: relative;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(245, 166, 35, 0.15);
    border-radius: 24px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Background Watermark */
.cta-watermark {
    position: absolute;
    right: -20px;
    bottom: -10px;
    font-size: 10rem;
    font-weight: 900;
    font-family: var(--font-gaming);
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    line-height: 1;
}

/* Left Content Styling */
.cta-text-side {
    position: relative;
    z-index: 2;
    max-width: 60%;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    color: #25d366;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 4px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.pulse-green {
    width: 6px; height: 6px;
    background: #25d366;
    border-radius: 50%;
    animation: pulseStatus 2s infinite;
}

@keyframes pulseStatus {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.cta-text-side h3 {
    font-family: var(--font-gaming);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.cta-text-side h3 span {
    color: var(--primary-gold);
}

.cta-text-side p {
    color: #888;
    font-size: 1rem;
    line-height: 1.6;
}

/* Right Side Button Styling */
.cta-action-side {
    position: relative;
    z-index: 2;
}

.request-wa-btn {
    position: relative;
    background: #25d366;
    color: #000;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 12px;
    font-family: var(--font-gaming);
    font-weight: 900;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.4s;
    overflow: hidden;
}

.btn-glow-effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.request-wa-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    background: #fff;
}

.request-wa-btn:hover .btn-glow-effect {
    transform: translateX(100%);
}

.request-wa-btn i {
    font-size: 1.5rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .custom-request-box {
        padding: 40px;
    }
    .cta-text-side h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 850px) {
    .custom-request-box {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .cta-text-side {
        max-width: 100%;
    }
    .request-wa-btn {
        width: 100%;
        justify-content: center;
    }
}