@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#ffffff !important;
    color:#111111 !important;
}

/* HERO */

.shop-hero{

    width:100%;
    height:70vh;

    background:
    linear-gradient(rgba(15, 23, 42, 0.75),
    rgba(15, 23, 42, 0.75)),
    url('../images/shop_banner.png');

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding-top:90px;
}

.shop-content{

    width:800px;
}

.shop-content h1{

    font-size:80px;

    margin-bottom:20px;

    font-weight:800;
}

.shop-content p{

    font-size:20px;

    color:#ccc;

    line-height:35px;
}

/* PRODUCTS */
.shop-hero{
    height:55vh;
}

.products-section{
    width:90%;
    margin:50px auto;
}

.products-section h2{

    text-align:center;

    font-size:55px;

    margin-bottom:70px;
}

/* GRID */

.products-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:40px;
}

/* PRODUCT CARD */

.product-card{

    background:#151515;

    border-radius:25px;

    overflow:hidden;

    transition:0.4s;

    border:1px solid #222;
}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 40px rgba(0,255,153,0.15);
}

/* IMAGE */

.product-image{

    width:100%;
    height:340px;

    overflow:hidden;
}

.product-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.5s;
}

.product-card:hover img{

    transform:scale(1.08);
}

/* DETAILS */

.product-details{

    padding:28px;
}

.product-details h3{

    font-size:30px;

    margin-bottom:15px;
}

.product-details p{

    color:#aaa;

    line-height:28px;

    margin-bottom:20px;
}

/* PRODUCT INFO (BADGES MADE EQUAL SIZE AND TEXT CENTERED) */

.product-info{

    display:flex;

    gap:12px;

    margin-bottom:20px;
    width:100%;
}

.product-info span{

    background:#1f1f1f;

    color:#00ff99;

    padding:10px 12px;

    border-radius:30px;

    font-size:14px;
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    min-height:54px;
}

/* PRICE */

.price{

    font-size:38px;

    color:#00ff99;

    font-weight:bold;

    margin-bottom:25px;
}

/* BUTTON */

.cart-btn{

    width:100%;
    height:60px;

    border:none;

    border-radius:15px;

    background:#00ff99;

    color:black;

    font-size:18px;

    font-weight:bold;

    cursor:pointer;

    transition:0.3s;
}

.cart-btn:hover{

    transform:scale(1.03);

    box-shadow:
    0 0 20px #00ff99;
}

/* FOOTER */

.footer{

    background:#111;

    padding:60px 20px;

    text-align:center;

    margin-top:100px;
}

.footer h2{

    color:#00ff99;

    margin-bottom:15px;
}

.footer p{

    color:#aaa;
}

/* MOBILE */

@media(max-width:768px){

    .header{

        padding:0 25px;
    }

    .logo{

        font-size:24px;
    }

    .shop-content h1{

        font-size:45px;
    }

    .shop-content p{

        font-size:16px;

        line-height:30px;
    }

    .products-section h2{

        font-size:38px;
    }
}

.cart-icon{
    position:relative;
    color:white;
    text-decoration:none;
    font-size:24px;
    cursor:pointer;
}

.cart-icon span{
    position:absolute;
    top:-10px;
    right:-10px;
    width:20px;
    height:20px;
    background:#00ff99;
    color:black;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:bold;
}
.product-buttons{
    display:flex;
    gap:10px;
    margin-top:15px;
}

.cart-btn,
.buy-btn{

    flex:1;

    min-height:48px;

    padding:0 12px;

    border:none;
    border-radius:12px;

    font-size:14px;
    font-weight:600;

    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:6px;

    white-space:nowrap;
}
.cart-btn{
    background:#7c3aed;
    color:white;
}

.buy-btn{
    background:#f59e0b;
    color:white;
}

.quantity-box{
    display:flex;
    align-items:center;
    gap:15px;
    margin-top:15px;
}

.quantity-box button{
    width:35px;
    height:35px;
    border:none;
    border-radius:50%;
    background:#111827;
    color:white;
    cursor:pointer;
    font-size:18px;
}

.back-btn:hover{
   background:rgba(255,255,255,0.2);
}
/* BACK BUTTON */
.top-nav{
    position:fixed;

    top:20px;
    left:15px;

    z-index:1100;
}

.back-btn{
    width:45px;
    height:45px;

    border:none;
    border-radius:50%;

    background:transparent;

    color:white;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:22px;

    cursor:pointer;
}

.back-btn:hover{
    transform:scale(1.05);
    background:#334155;
}
.shop-hero{
    padding-top:110px;
}
@media(max-width:768px){

    .header{
        height:80px;
        padding:0 20px 0 70px;
    }

    .top-nav{
        top:18px;
        left:10px;
    }

    .logo{
        font-size:20px;
    }

    .cart-icon{
        font-size:24px;
    }

    .back-btn{
        width:40px;
        height:40px;
        font-size:20px;
    }

}

/* ==========================
   PREMIUM WHITE SHOP THEME
   ADD AT END OF shop.css
========================== */

/* BODY */
body{
    background:#ffffff !important;
    color:#111111 !important;
}

/* HEADER */
.header{
    background:#ffffff !important;
    border-bottom:1px solid #e5e7eb !important;

    box-shadow:
    0 2px 15px rgba(0,0,0,0.05);
}

/* LOGO */
.logo{
    color:#000000 !important;
    font-weight:900;

    text-shadow:
    0 1px 0 rgba(0,0,0,0.05),
    0 2px 8px rgba(0,0,0,0.05);
}

/* CART ICON */
.cart-icon{
    color:#111111 !important;
}

.cart-icon i{
    color:#111111 !important;
}

.cart-icon span{
    background:#8B5E2B !important;
    color:#ffffff !important;
}

/* BACK BUTTON */
.back-btn{
    background:#7c3aed !important;
    color:#ffffff !important;

    box-shadow:
    0 8px 20px rgba(124,58,237,0.25);
}

.back-btn:hover{
    background:#6d28d9 !important;
    transform:scale(1.05);
}

/* PRODUCT SECTION TITLE */
.products-section h2{
    color:#111111 !important;
}

/* PRODUCT CARDS */
.product-card{
    background:#ffffff !important;

    border:1px solid #e5e7eb !important;

    box-shadow:
    0 8px 25px rgba(0,0,0,0.08);
}

.product-card:hover{
    box-shadow:
    0 15px 35px rgba(0,0,0,0.12);
}

/* PRODUCT TEXT */
.product-details h3{
    color:#111111 !important;
}

.product-details p{
    color:#555555 !important;
}

/* PRODUCT INFO TAGS */
.product-info span{
    background:#f3f4f6 !important;
    color:#7c3aed !important;
}

/* PRICE */
.price{
    color:#8B5E2B !important;
}

/* FOOTER */
.footer{
    background:#ffffff !important;
    border-top:1px solid #e5e7eb;
}

.footer h2{
    color:#8B5E2B !important;
}

.footer p{
    color:#555555 !important;
}

/* ==========================
   PREMIUM SUPPLEMENTS SECTION
========================== */

/* ==========================================================
   COMPACT SHOP HERO & BRAND GRADIENT CURVED BANNER REDESIGN
   ========================================================== */

.shop-hero {
    background: #ffffff !important;
    min-height: auto !important; /* Remove massive vertical height pusher */
    padding-top: 10px !important;  /* Snug below the navbar spacer */
    padding-bottom: 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Premium Content Box with Royal Purple & Gold Gradient */
.shop-content {
    background: linear-gradient(135deg, #3b0764 0%, #7c3aed 50%, #8B5E2B 100%) !important;
    padding: 40px 45px !important;
    border-radius: 30px !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 25px 50px -12px rgba(124, 58, 237, 0.25), 0 8px 24px rgba(139, 94, 43, 0.1) !important;
    color: white !important;
    width: 90% !important;
    max-width: 900px !important;
    text-align: center !important;
}

/* Gold-White Gradient Heading */
.shop-content h1 {
    background: linear-gradient(to right, #ffffff 40%, #fde047 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-size: 44px !important;
    font-weight: 800 !important;
    margin-bottom: 12px !important;
    text-shadow: none !important;
}

/* Subtitle text formatting */
.shop-content p {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 15.5px !important;
    line-height: 1.6 !important;
    max-width: 700px !important;
    margin: 0 auto !important;
}

/* Custom Pill Tag for Elite Aesthetic */
.shop-badge {
    display: inline-block !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    color: #fde047 !important;
    background: rgba(253, 224, 71, 0.1) !important;
    padding: 6px 16px !important;
    border-radius: 50px !important;
    border: 1px solid rgba(253, 224, 71, 0.2) !important;
    margin-bottom: 16px !important;
    text-transform: uppercase !important;
}

/* Mobile */

@media(max-width:768px){

    .shop-content{

        padding:30px 20px;

        border-radius:22px;
    }

    .shop-content h1{

        font-size:42px;
    }

    .shop-content p{

        font-size:16px;

        line-height:28px;
    }
}

/* ==========================================================
   HORIZONTAL CARDS REDESIGN, RATING STARS & SVG SPARKLINES
   ========================================================== */

/* Star Ratings container */
.rating-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
    font-size: 13px;
}
.rating-stars i {
    color: #fbbf24 !important; /* Premium gold stars */
}
.rating-value {
    font-weight: 700;
    color: #111111 !important;
    margin-left: 5px;
}
.rating-count {
    color: #64748b !important;
    font-size: 12px;
}

/* Stars Interactive Hover & Click Container */
.stars-container {
    display: inline-flex;
    cursor: pointer;
    gap: 3px;
}
.stars-container i {
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.15s ease !important;
}
.stars-container i:hover {
    transform: scale(1.35) !important;
    color: #f59e0b !important; /* Brighter gold hover color */
}
.rating-stars-bounce {
    animation: starBounce 0.5s ease-out;
}
@keyframes starBounce {
    0% { transform: scale(1); }
    30% { transform: scale(1.35); }
    60% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

/* Demand indicator sparkline container */
.demand-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 12px;
    background: rgba(249, 115, 22, 0.05) !important;
    border: 1px solid rgba(249, 115, 22, 0.12) !important;
    padding: 5px 12px;
    border-radius: 8px;
    color: #ea580c !important;
    font-weight: 600;
    width: fit-content;
}
.sparkline svg {
    display: block;
    filter: drop-shadow(0 2px 4px rgba(249, 115, 22, 0.2));
}
.demand-percentage {
    color: #64748b !important;
    font-size: 11px;
    font-weight: 500;
    margin-left: 2px;
}

/* Redesign product grid as list rows */
.products-grid {
    grid-template-columns: 1fr !important; /* Single column of horizontal rows */
    max-width: 1200px !important;
    margin: 0 auto !important;
    gap: 25px !important;
}

.product-card {
    display: flex !important;
    flex-direction: row !important; /* Left-to-right layout */
    align-items: stretch !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04) !important;
    width: 100% !important;
    margin: 0 !important;
    height: auto !important;
}

.product-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.08) !important;
    border-color: #8b5cf6 !important;
}

.product-image {
    width: 260px !important;
    min-width: 260px !important;
    max-width: 260px !important;
    height: auto !important;
    background: #f8fafc !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
    border-right: 1px solid #f1f5f9 !important;
    cursor: pointer;
}

.product-image img {
    max-width: 100% !important;
    max-height: 220px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    transition: all 0.3s ease !important;
}

.product-card:hover .product-image img {
    transform: scale(1.05) !important;
}

.product-details {
    flex: 1 !important;
    padding: 30px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.product-details h3 {
    font-size: 26px !important;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
    color: #111111 !important;
    line-height: 1.2 !important;
}

.product-details p {
    color: #475569 !important;
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
}

.product-info {
    margin-bottom: 15px !important;
    background: #f8fafc !important;
    border: 1px solid #f1f5f9 !important;
}

.product-buttons {
    margin-top: 15px !important;
    display: flex !important;
    gap: 15px !important;
}

.cart-btn, .buy-btn {
    height: 52px !important;
    border-radius: 12px !important;
    font-size: 15px !important;
}

/* Mobile & Tablet responsiveness for Horizontal Cards */
@media (max-width: 768px) {
    .product-card {
        flex-direction: column !important; /* Stack card vertically on mobile */
    }
    .product-image {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: 260px !important;
        padding: 16px !important;
        border-right: none !important;
        border-bottom: 1px solid #f1f5f9 !important;
    }
    .product-image img {
        max-height: 220px !important;
    }
    .product-details {
        padding: 24px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .product-details h3 {
        font-size: 20px !important;
        margin-bottom: 6px !important;
    }
    .product-details p {
        font-size: 13.5px !important;
        line-height: 1.5 !important;
        margin-bottom: 10px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    .rating-stars {
        margin-bottom: 8px !important;
        font-size: 13px !important;
    }
    .demand-indicator {
        padding: 5px 10px !important;
        margin-bottom: 10px !important;
        font-size: 11px !important;
    }
    .sparkline svg {
        width: 60px !important;
        height: 18px !important;
    }
    .product-info {
        display: flex !important; /* Show specifications and badges on mobile */
        margin-bottom: 12px !important;
    }
    .price {
        font-size: 24px !important;
        margin-bottom: 12px !important;
    }
    .product-buttons {
        gap: 10px !important;
    }
    .cart-btn, .buy-btn {
        height: 44px !important;
        min-height: 44px !important;
        font-size: 14px !important;
        border-radius: 10px !important;
    }
}

@media (max-width: 550px) {
    .product-image {
        height: 220px !important;
        padding: 12px !important;
    }
    .product-image img {
        max-height: 195px !important;
    }
    .product-details {
        padding: 16px !important;
    }
    .product-details h3 {
        font-size: 18px !important;
    }
    .product-details p {
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    .demand-indicator {
        display: none !important;
    }
    .price {
        font-size: 22px !important;
    }
}