:root {
    --primary: #0F172A; /* Deep Navy */
    --accent: #3B82F6; /* Electric Blue */
    --accent-hover: #2563EB;
    --dark: #020617;
    --light: #F8FAFC;
    --gray: #64748B;
    --white: #FFFFFF;
    --success: #10B981;
    --danger: #EF4444;
    --border: #E2E8F0;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--light);
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* Notification Bar */
.top-bar {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    color: var(--accent);
}

.search-bar {
    display: none; /* Hidden on mobile */
    position: relative;
    width: 350px;
}

.search-bar input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: var(--light);
    outline: none;
}

.search-bar button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    padding: 8px;
}

.desktop-nav {
    display: none;
    gap: 30px;
}

.desktop-nav a {
    font-weight: 500;
    color: var(--gray);
}

.desktop-nav a.active, .desktop-nav a:hover {
    color: var(--accent);
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-icons a {
    font-size: 1.2rem;
    color: var(--primary);
}

.cart-icon {
    position: relative;
}

.cart-icon .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: 700;
    transition: transform 0.2s;
}

.badge.pop {
    transform: scale(1.5);
}

.mobile-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-top: 1px solid var(--border);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transform: translateY(-150%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu a {
    font-size: 1.1rem;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light);
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
}

.hero-text {
    color: white;
    max-width: 600px;
}

.hero-text .tag {
    background: var(--accent);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #e2e8f0;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 40px 20px;
    border-bottom: 1px solid var(--border);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    font-size: 2rem;
    color: var(--accent);
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Categories */
.categories {
    padding: 60px 20px;
}

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

.section-header h2 {
    font-size: 2rem;
}

.view-all {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cat-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid var(--border);
    cursor: pointer;
}

.cat-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.cat-card img {
    height: 120px;
    width: auto;
    margin: 0 auto 15px;
    object-fit: contain;
}

.cat-card h3 {
    font-size: 1.1rem;
}

/* Products */
.products {
    padding: 60px 20px;
    background: #f1f5f9;
}

.filters {
    display: flex;
    gap: 10px;
}

.filters button {
    background: none;
    border: 1px solid var(--border);
    padding: 6px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

.filters button.active, .filters button:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

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

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.prod-img-wrap {
    position: relative;
    background: white;
    padding: 20px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--light);
}

.prod-img-wrap img {
    max-height: 200px;
    transition: 0.3s;
}

.product-card:hover .prod-img-wrap img {
    transform: scale(1.05);
}

.discount, .new {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 10px;
    border-radius: 4px;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
}

.discount { background: var(--danger); }
.new { background: var(--accent); }

.prod-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(10px);
    transition: 0.3s;
}

.product-card:hover .prod-actions {
    opacity: 1;
    transform: translateX(0);
}

.prod-actions button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: white;
    cursor: pointer;
    color: var(--gray);
    transition: 0.2s;
}

.prod-actions button:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.prod-info {
    padding: 20px;
}

.prod-info .category {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prod-info h4 {
    font-size: 1rem;
    margin: 5px 0 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rating {
    color: #F59E0B;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.rating span {
    color: var(--gray);
    margin-left: 5px;
}

.price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.old {
    font-size: 0.9rem;
    color: var(--gray);
    text-decoration: line-through;
}

.btn-add {
    width: 100%;
    padding: 10px;
    background: white;
    border: 1px solid var(--primary);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.btn-add:hover {
    background: var(--primary);
    color: white;
}

/* Promo Banner */
.promo {
    padding: 60px 20px;
}

.promo-content {
    border-radius: 20px;
    padding: 60px 40px;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.promo-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.promo-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* About */
.about {
    padding: 60px 20px;
}

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

.tag-sm {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.about-text h2 {
    font-size: 2.2rem;
    margin: 10px 0 20px;
}

.about-list {
    margin: 20px 0;
}

.about-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.about-list i {
    color: var(--success);
}

.store-details {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: var(--light);
    padding: 20px;
    border-radius: 12px;
}

.detail {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.detail i {
    font-size: 1.2rem;
    color: var(--primary);
    margin-top: 4px;
}

.about-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

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

.exp-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.exp-badge span {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.exp-badge small {
    font-weight: 600;
    color: var(--primary);
}

/* Testimonials */
.testimonials {
    background: var(--primary);
    color: white;
    padding: 80px 20px;
}

.center { text-align: center; }

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

.testi-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.stars {
    color: #F59E0B;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testi-card p {
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 20px;
}

.user h5 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.user small {
    opacity: 0.6;
}

/* Newsletter */
.newsletter {
    padding: 60px 20px;
}

.news-box {
    background: var(--accent);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
    color: white;
}

.news-form {
    display: flex;
    width: 100%;
    max-width: 500px;
    gap: 10px;
}

.news-form input {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    outline: none;
}

.news-form button {
    padding: 12px 25px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

/* Footer */
footer {
    background: var(--dark);
    color: #94a3b8;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 20px;
}

.footer-brand p {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.socials {
    display: flex;
    gap: 15px;
}

.socials a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: 0.3s;
}

.socials a:hover {
    background: var(--accent);
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col a {
    display: block;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-col p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.payments {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
    color: white;
}

/* Media Queries */
@media (min-width: 768px) {
    .search-bar { display: block; }
    .mobile-toggle { display: none; }
    .desktop-nav { display: flex; }
    .category-grid { grid-template-columns: repeat(4, 1fr); }
    .about-grid { grid-template-columns: 1fr 1fr; }
    .news-box {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    .store-details {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-text h1 { font-size: 4.5rem; }
}
/* Vibitely Responsive Safety Fixes */
img, video, iframe, embed, object { max-width: 100%; height: auto; }
.vibitely-hidden { display: none !important; }
