/* Modern Bare Bones Theme for Shop - Based on Reference */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800&display=swap');

:root {
    --bb-bg: #0a0a0a;
    --bb-card-bg: #1a1a1a;
    --bb-green: #4ade80; /* Vibrant modern green */
    --bb-green-hover: #22c55e;
    --bb-text-white: #ffffff;
    --bb-text-gray: #9ca3af;
    --bb-radius: 20px;
}

.bb-shop-body {
    background-color: #050505;
    background-image: 
        radial-gradient(at 0% 0%, rgba(74, 222, 128, 0.2) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(96, 165, 250, 0.15) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(139, 94, 60, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(74, 222, 128, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(96, 165, 250, 0.1) 0px, transparent 50%);
    color: var(--bb-text-white);
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    padding-bottom: 100px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.bb-shop-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(80px);
    z-index: -1;
}

/* Fix for layout body and gaps */
html, body {
    background-color: #050505 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
}

/* Ensure navbar is at the very top without gaps */
header.header-wrapper, 
.header-layout1,
.header-top,
.sticky-header-wrap {
    margin-top: 0 !important;
    padding-top: 0 !important;
    top: 0 !important;
}

/* Original template elements should be visible */
header.header-wrapper, .sticky-header-wrap {
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
}

.footer-wrapper {
    display: block !important;
}

.preloader {
    display: none !important;
}

/* Simple Navbar - REMOVED AS PER USER REQUEST */
.bb-nav {
    display: none;
}

/* Ensure no padding/margin from layout containers */
main, .main-wrapper, .vs-product-wrapper {
    padding: 0 !important;
    margin: 0 !important;
}

/* Simple Navbar */
.bb-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: transparent;
}

.bb-nav-links {
    display: flex;
    gap: 30px;
}

.bb-nav-link {
    color: var(--bb-text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.bb-nav-link:hover, .bb-nav-link.active {
    color: var(--bb-green);
}

.bb-nav-auth {
    display: flex;
    gap: 15px;
    align-items: center;
}

.bb-btn-small {
    padding: 8px 15px;
    font-size: 0.9rem;
    border-radius: 8px;
}

/* Header Section */
.bb-header-modern {
    padding: 200px 20px 40px; /* Increased to 200px to clear the absolute layout header */
    text-align: center;
}

.bb-title-modern {
    font-size: 4rem;
    font-weight: 800;
    color: var(--bb-green);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.bb-subtitle-modern {
    color: var(--bb-text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Product Grid */
.bb-grid-modern {
    margin-top: 50px;
}

/* Product Card Modern */
.bb-card-modern {
    background-color: var(--bb-card-bg);
    border-radius: var(--bb-radius);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.bb-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(74, 222, 128, 0.2);
}

.bb-img-container-modern {
    width: 120px;
    height: 120px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bb-img-modern {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}

.bb-name-modern {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--bb-text-white);
}

.bb-desc-short-modern {
    color: var(--bb-text-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
    min-height: 2.7em;
}

.bb-price-modern {
    color: var(--bb-green);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Modern Button */
.bb-btn-modern {
    background-color: var(--bb-green);
    color: #000000;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.bb-btn-modern:hover {
    background-color: #ffffff;
    transform: scale(1.02);
}

.bb-btn-modern:active {
    transform: scale(0.98);
}

/* Sidebar Modern */
.bb-sidebar-modern {
    background-color: var(--bb-card-bg);
    border-radius: var(--bb-radius);
    padding: 25px;
    margin-bottom: 30px;
}

.bb-widget-title-modern {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--bb-text-white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.bb-input-modern {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 12px 15px;
    color: white;
    width: 100%;
    margin-bottom: 15px;
}

.bb-input-modern:focus {
    outline: none;
    border-color: var(--bb-green);
}

.bb-cat-list-modern {
    list-style: none;
    padding: 0;
}

.bb-cat-link-modern {
    display: block;
    padding: 10px 15px;
    border-radius: 10px;
    color: var(--bb-text-gray);
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 5px;
}

.bb-cat-link-modern:hover {
    background-color: rgba(255,255,255,0.05);
    color: var(--bb-text-white);
}

.bb-cat-link-modern.active {
    background-color: rgba(74, 222, 128, 0.1);
    color: var(--bb-green);
    font-weight: 600;
}

/* Cart Icon Float (Optional like in ref) */
.bb-cart-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--bb-green);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(74, 222, 128, 0.3);
    z-index: 1000;
    color: black;
    font-size: 1.5rem;
}
