/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    /* Offset for fixed announcement bar and nav */
    padding-top: 120px;
}

/* Announcement Bar */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1002;
    background-color: #f6f6f6;
    text-align: center;
}

.announcement-bar p {
    margin: 0;
}

.announcement-bar strong {
    font-weight: 600;
}

.announcement-bar .shop-now {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
}

.announcement-bar .shop-now:hover {
    text-decoration: underline;
}

/* Navigation Styles */
.main-nav {
    position: fixed;
    top: 20px; /* height of announcement bar */
    left: 0;
    width: 100vw;
    z-index: 1001;
    background-color: #ffffff;
    padding: 10px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo img {
    height: 28px;
    width: auto;
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: 40px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link i {
    font-size: 12px;
    margin-top: 2px;
}

/* Search Bar */
.search-container {
    flex: 1;
    max-width: 400px;
    margin: 0 40px;
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 8px 15px;
}

.search-icon {
    color: #666;
    margin-right: 10px;
}

.search-bar input {
    border: none;
    background: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    color: #333;
}

.search-bar input::placeholder {
    color: #666;
}

/* User Actions */
.user-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-icon, .cart-icon {
    color: #000000;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.user-icon svg {
    width: 25px;
    height: 25px;
}

.user-icon svg path#svgkp-path {
    color: #000000;
}

.cart-icon {
    font-size: 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #ff0000;
    color: #fff;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #cc0000;
}

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

.categories h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.category-card {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
}

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

/* Featured Products */
.featured-products {
    padding: 60px 50px;
    background-color: #f9f9f9;
}

.featured-products h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

/* Newsletter Section */
.newsletter {
    padding: 80px 50px;
    text-align: center;
    background-color: #000;
    color: #fff;
}

.newsletter h2 {
    margin-bottom: 20px;
}

.newsletter-form {
    max-width: 500px;
    margin: 30px auto 0;
    display: flex;
    gap: 10px;
}

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

.newsletter-form button {
    background-color: #ff0000;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #cc0000;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 50px 20px;
}

/* Login Modal */
.login-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.login-modal-overlay.active {
    display: flex;
}
.login-modal {
    background: #fff;
    width: 90%;
    max-width: 420px;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
}
.login-modal .login-tabs { display:flex; gap:8px; background:#f5f5f5; border-radius:10px; padding:4px; margin: 8px 0 12px 0; }
.login-modal .login-tabs .tab-btn { flex:1; background:transparent; border:none; padding:10px; border-radius:8px; font-weight:600; cursor:pointer; color:#555; }
.login-modal .login-tabs .tab-btn.active { background:#111; color:#fff; }
.login-modal .modal-header h3 {
    font-size: 1.25rem;
    margin: 0 0 4px 0;
}
.login-modal .modal-header .modal-sub {
    color: #666;
    font-size: 0.95rem;
    margin: 0 0 12px 0;
}
.login-modal .close-btn {
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
}
.login-modal h3 {
    margin-bottom: 16px;
}
.login-modal .login-form .input-group { margin-bottom: 10px; }
.login-modal .login-form .input-group label { display:block; font-size: 0.9rem; margin: 6px 0; }
.login-modal .login-form .input-group input[type="tel"] { width:100%; padding: 12px; border:1px solid #e6e6e6; border-radius:10px; outline:none; }
.login-modal .login-form .input-group input[type="tel"]:focus { border-color:#111; }
.login-modal .login-form .error-text { color:#b00020; font-size:0.85rem; min-height: 18px; margin-top: 4px; }
.login-modal .login-form .checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}
.login-modal .login-form .primary-btn,
.login-modal .login-form button[type="submit"] {
    width: 100%;
    margin-top: 14px;
    background: #ff0000;
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}
.login-modal .login-form .terms { color:#777; font-size:0.85rem; text-align:center; margin-top:8px; }

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

.footer-section h3 {
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        gap: 20px;
        margin-left: 20px;
    }

    .search-container {
        margin: 0 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .search-container {
        max-width: none;
    }

    .hero {
        height: 400px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .categories,
    .featured-products {
        padding: 40px 20px;
    }

    .newsletter {
        padding: 60px 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    footer {
        padding: 40px 20px 20px;
    }
} 

/* Banner Carousel */
.banner-carousel {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    background: #000;
    height: auto;
    margin-bottom: 0;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
}

.carousel-banner {
    min-width: 100%;
    max-height: 600px;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.carousel-arrow.left {
    left: 16px;
}
.carousel-arrow.right {
    right: 16px;
}
.carousel-arrow:hover {
    background: rgba(0,0,0,0.7);
}
@media (max-width: 600px) {
    .carousel-arrow {
        width: 28px;
        height: 28px;
        font-size: 1.2rem;
        left: 4px;
        right: 4px;
    }
}

/* Carousel Dots Styles */
.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
    margin-bottom: 10px;
    background: rgba(255,255,255,0.7);
    border-radius: 16px;
    width: fit-content;
    padding: 6px 18px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 18px;
    z-index: 3;
}
.carousel-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #111;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.2s;
}
.carousel-dot.active {
    width: 28px;
    height: 12px;
    border-radius: 8px;
    background: #444;
}

/* Big Deals Section */
.big-deals {
    background: #fff;
    padding: 32px 0 0 0;
    margin-bottom: 32px;
}
.big-deals-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    margin-bottom: 12px;
}
.big-deals-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
}
.big-deals-header h2 span {
    color: #222;
    text-decoration: underline;
}
.big-deals-header .view-all {
    color: #1a73e8;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 4px;
}
.big-deals-tabs {
    display: flex;
    gap: 18px;
    padding: 0 32px 18px 32px;
    border-bottom: 1.5px solid #eee;
    margin-bottom: 18px;
}
.big-deals-tabs .tab {
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: #888;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.big-deals-tabs .tab.active {
    background: #222;
    color: #fff;
    font-weight: 700;
}
.big-deals-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
}
.deal-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    min-width: 220px;
    max-width: 240px;
    flex: 1 0 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-bottom: 16px;
    transition: box-shadow 0.3s ease;
}
.deal-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.deal-card img {
    width: 100%;
    border-radius: 14px 14px 0 0;
    object-fit: cover;
    height: 160px;
    background: #f7f7f7;
}
.deal-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #222;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 8px;
    z-index: 2;
}
.deal-badge.green {
    background: #1db954;
    color: #fff;
}
.deal-badge.bestseller {
    background: #222;
    color: #fff;
}
.deal-info {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 8px 12px 0 12px;
    font-size: 1rem;
    font-weight: 600;
}
.deal-info.yellow {
    background: #ffd600;
    border-radius: 0 0 0 0;
    margin-top: -4px;
    padding-bottom: 4px;
}
.deal-info .star {
    background: #fff;
    color: #ffb300;
    border-radius: 8px;
    padding: 2px 8px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-left: auto;
}
.deal-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    padding: 8px 12px 0 12px;
    margin-bottom: 2px;
}
.deal-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    padding: 0 12px;
    margin-bottom: 2px;
}
.deal-price .old {
    color: #888;
    text-decoration: line-through;
    font-size: 0.95rem;
    font-weight: 400;
    margin-left: 8px;
}
.deal-price .off {
    color: #1db954;
    font-size: 0.95rem;
    font-weight: 600;
    margin-left: 8px;
}
@media (max-width: 900px) {
    .big-deals-header, .big-deals-tabs, .big-deals-products {
        padding-left: 12px;
        padding-right: 12px;
    }
    .deal-card img {
        height: 120px;
    }
}
@media (max-width: 600px) {
    .big-deals-header, .big-deals-tabs, .big-deals-products {
        padding-left: 4px;
        padding-right: 4px;
    }
    .deal-card img {
        height: 80px;
    }
    .deal-card {
        min-width: 160px;
        max-width: 180px;
    }
}

/* --- Categories Dropdown Hover Styles --- */
.categories-hover-parent {
    position: relative;
}
.categories-hover-parent:hover .categories-dropdown,
.categories-hover-parent:focus-within .categories-dropdown {
    display: block;
}
.categories-dropdown {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 900px;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-radius: 0 0 12px 12px;
    padding: 32px 40px 24px 40px;
    z-index: 100;
    margin-top: 8px;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px 24px;
}
.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    border-radius: 8px;
    padding: 10px 0 0 0;
}
.category-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 50%;
    background: #f2f2f2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.category-item span {
    font-size: 14px;
    color: #222;
    font-weight: 500;
}
.category-item:hover {
    background: #fbeaec;
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 4px 16px rgba(225,27,34,0.08);
}
@media (max-width: 1100px) {
    .categories-dropdown {
        width: 700px;
        padding: 24px 20px 16px 20px;
    }
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px 16px;
    }
}
@media (max-width: 800px) {
    .categories-dropdown {
        width: 95vw;
        left: 50%;
        transform: translateX(-50%);
        padding: 16px 4vw 8px 4vw;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 8px;
    }
}

/* Info Bar Styles */
.info-bar {
    background: #ffd23f;
    padding: 10px 0;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    border-bottom: 1px solid #f2c200;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.info-bar-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}

.info-bar-content span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    white-space: nowrap;
}

.info-dot {
    color: #111;
    font-size: 18px;
    font-weight: bold;
    margin: 0 10px;
    opacity: 0.6;
    user-select: none;
}

.info-bar-img {
    height: 20px;
    max-width: 80px;
    object-fit: contain;
    vertical-align: middle;
    border-radius: 4px;
    background: none;
    box-shadow: none;
}
@media (max-width: 600px) {
    .info-bar-content span {
        font-size: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .info-bar-img {
        height: 16px;
    }
}

/* Blogs Section */
.blogs-section {
    padding: 60px 5%;
    background-color: #ffffff;
}

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

.blogs-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

.view-all-link {
    color: #0077cc;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1rem;
}

.blogs-tabs {
    margin-bottom: 30px;
}

.blogs-tabs .tab {
    padding: 10px 20px;
    margin-right: 15px;
    border: none;
    background: none;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
}

.blogs-tabs .tab.active {
    background-color: #f5f5f5;
    border-radius: 20px;
    font-weight: 600;
}

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

.blog-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-date {
    color: #666;
    font-size: 0.9rem;
}

.blog-content h3 {
    margin: 10px 0;
    font-size: 1.2rem;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.read-more {
    color: #0077cc;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Press Section */
.press-section {
    padding: 80px 5%;
    background-color: #ffffff;
}

.press-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #000;
}

.press-bold {
    border-bottom: 3px solid #ff0000;
    padding-bottom: 2px;
}

.press-slider {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.press-logo-container {
    background-color: #f5f5f5;
    padding: 60px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.press-logo {
    max-width: 100%;
    height: auto;
}

.press-content {
    position: relative;
    padding: 20px 0;
}

.quote-mark {
    font-size: 6rem;
    position: absolute;
    top: -60px;
    left: -20px;
    color: #999;
    font-family: Georgia, serif;
}

.press-quote {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    padding-left: 20px;
    text-align: center;
}

.press-navigation {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #666;
}

.nav-btn:hover {
    border-color: #999;
    background: #f5f5f5;
}

.nav-btn svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .press-slide {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .press-logo-container {
        padding: 40px;
    }

    .press-quote {
        font-size: 1.3rem;
        padding: 0;
    }

    .quote-mark {
        font-size: 5rem;
        top: -50px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    .press-section {
        padding: 60px 5%;
    }

    .press-section h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .press-logo-container {
        padding: 30px;
    }

    .press-quote {
        font-size: 1.1rem;
    }

    .quote-mark {
        font-size: 4rem;
        top: -40px;
    }
}

/* Features Bar Styles */
.features-bar {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    background: #f7fafc;
    padding: 32px 0 18px 0;
    border-bottom: 1px solid #eaeaea;
    margin-top: 0;
}
.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 140px;
    text-align: center;
}
.feature-icon {
    margin-bottom: 8px;
}
.feature-label {
    font-size: 1.1rem;
    color: #222;
    font-weight: 500;
}
.feature-label span {
    font-size: 0.98rem;
    color: #555;
    font-weight: 400;
}
@media (max-width: 900px) {
    .features-bar {
        gap: 24px;
        padding: 24px 0 12px 0;
    }
    .feature {
        min-width: 90px;
    }
}
@media (max-width: 600px) {
    .info-bar-content {
        font-size: 14px;
        padding: 6px 6px;
    }
    .features-bar {
        flex-direction: column;
        gap: 12px;
        padding: 16px 0 8px 0;
    }
    .feature {
        min-width: 0;
    }
}

.nirvana-section {
    margin: 48px auto 0 auto;
    max-width: 1400px;
    padding: 0 24px;
}
.nirvana-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.nirvana-header h2 {
    font-size: 2rem;
    font-weight: 400;
    margin: 0;
}
.nirvana-bold {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    color: #222;
}
.nirvana-view-all {
    color: #1a4a7a;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 4px;
}
.nirvana-banner {
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 21 / 6;
    height: auto;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    position: relative;
    padding: 0;
}
.nirvana-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.nirvana-banner-text {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}
.nirvana-title {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 2px;
}
.nirvana-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 6px;
}
.nirvana-product-img {
    height: 120px;
    width: auto;
    margin-left: 32px;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.18));
}
@media (max-width: 900px) {
    .nirvana-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 16px;
    }
    .nirvana-product-img {
        margin-left: 0;
        margin-top: 18px;
        height: 90px;
    }
    .nirvana-title {
        font-size: 1.3rem;
    }
}

.shop-categories-section {
    margin: 48px auto 0 auto;
    max-width: 1400px;
    padding: 0 24px;
}
.shop-categories-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.shop-categories-header h2 {
    font-size: 2rem;
    font-weight: 400;
    margin: 0;
}
.categories-bold {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    color: #222;
}
.categories-view-all {
    color: #1a4a7a;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 4px;
}
.categories-row {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 18px;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-bottom: 12px;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f5f5f5;
}
.categories-row::-webkit-scrollbar {
    height: 8px;
}
.categories-row::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}
.categories-row::-webkit-scrollbar-track {
    background: #f5f5f5;
}
.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 72px;
    max-width: 80px;
}
.category-item img {
    width: 44px;
    height: 44px;
    margin-bottom: 6px;
    border-radius: 12px;
}
.category-label {
    font-size: 0.92rem;
    font-weight: 600;
    margin-top: 0;
}
@media (max-width: 900px) {
    .categories-row {
        gap: 8px;
    }
    .category-item {
        min-width: 60px;
        max-width: 70px;
    }
    .category-item img {
        width: 36px;
        height: 36px;
    }
    .category-label {
        font-size: 0.78rem;
    }
}
@media (max-width: 600px) {
    .shop-categories-header h2 {
        font-size: 1.2rem;
    }
    .categories-row {
        gap: 4px;
    }
    .category-item {
        min-width: 48px;
        max-width: 56px;
    }
    .category-item img {
        width: 28px;
        height: 28px;
    }
    .category-label {
        font-size: 0.65rem;
    }
}

.top-picks-section, .recently-viewed-section {
    max-width: 1400px;
    margin: 48px auto 0 auto;
    padding: 0 24px;
}
.top-picks-header, .recently-viewed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.top-picks-header h2, .recently-viewed-header h2 {
    font-size: 1.6rem;
    font-weight: 400;
    margin: 0;
}
.bold-underline {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    color: #222;
}
.top-picks-view-all {
    color: #1a4a7a;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 4px;
}
.top-picks-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}
.top-picks-tabs .tab {
    background: #f5f5f5;
    border: none;
    border-radius: 20px;
    padding: 7px 22px;
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    transition: background 0.2s;
}
.top-picks-tabs .tab.active {
    background: #e6f0fa;
    color: #1a4a7a;
}
.top-picks-row, .recently-viewed-row {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f5f5f5;
}
.top-picks-row::-webkit-scrollbar, .recently-viewed-row::-webkit-scrollbar {
    height: 8px;
}
.top-picks-row::-webkit-scrollbar-thumb, .recently-viewed-row::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}
.top-picks-row::-webkit-scrollbar-track, .recently-viewed-row::-webkit-scrollbar-track {
    background: #f5f5f5;
}
.product-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    min-width: 220px;
    max-width: 240px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}
.product-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    background: #f7f7f7;
}
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #222;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 8px;
    padding: 3px 10px;
    z-index: 2;
}
.product-feature {
    background: #ffd600;
    color: #222;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 0 0 8px 8px;
    margin-top: -8px;
    margin-bottom: 4px;
    width: fit-content;
    min-width: 60%;
}
.product-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: #222;
    margin: 8px 0 0 0;
    padding: 0 12px;
    min-height: 40px;
}
.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 0 12px 12px 12px;
    margin-top: 6px;
}
.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
}
.product-old-price {
    font-size: 0.95rem;
    color: #888;
    text-decoration: line-through;
    font-weight: 400;
}
.product-discount {
    font-size: 0.95rem;
    color: #1dbf73;
    font-weight: 600;
}
@media (max-width: 900px) {
    .top-picks-section, .recently-viewed-section {
        padding: 0 8px;
    }
    .product-card {
        min-width: 170px;
        max-width: 180px;
    }
    .product-card img {
        height: 110px;
    }
    .product-title {
        font-size: 0.98rem;
        min-height: 32px;
    }
}
@media (max-width: 600px) {
    .top-picks-header h2, .recently-viewed-header h2 {
        font-size: 1.1rem;
    }
    .product-card {
        min-width: 130px;
        max-width: 140px;
        border-radius: 10px;
    }
    .product-card img {
        height: 70px;
        border-radius: 10px 10px 0 0;
    }
    .product-feature {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    .product-title {
        font-size: 0.8rem;
        min-height: 20px;
        padding: 0 6px;
    }
    .product-price-row {
        padding: 0 6px 8px 6px;
        gap: 4px;
    }
    .product-price, .product-old-price, .product-discount {
        font-size: 0.8rem;
    }
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.product-link:hover {
    transform: translateY(-5px);
}

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

.deal-card {
    transition: box-shadow 0.3s ease;
}

/* Ensure the layout stays consistent */
.big-deals-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* Make it responsive */
@media (max-width: 768px) {
    .big-deals-products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .big-deals-products {
        grid-template-columns: 1fr;
    }
}

/* Filter Styles */
.filter-container {
    display: flex;
    gap: 30px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-section {
    flex: 1;
    min-width: 200px;
}

.filter-section h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #333;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
}

.filter-options input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #e11b22;
}

#sort-select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #333;
    cursor: pointer;
}

#sort-select:focus {
    outline: none;
    border-color: #e11b22;
}

/* Product Grid Styles */
#filtered-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.product-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .filter-container {
        flex-direction: column;
        gap: 20px;
    }

    .filter-section {
        width: 100%;
    }

    #filtered-products {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

/* Additional Filter Styles */
.clear-filters-btn {
    width: 100%;
    padding: 10px;
    background-color: #e11b22;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.clear-filters-btn:hover {
    background-color: #c41118;
}

.feature-tag {
    display: inline-block;
    padding: 4px 8px;
    background-color: #f0f0f0;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #666;
    margin: 2px;
}

.product-features {
    margin: 8px 0;
    min-height: 30px;
}

.no-results {
    text-align: center;
    padding: 40px;
    font-size: 1.2rem;
    color: #666;
    width: 100%;
}

/* Enhanced Product Card Styles */
.product-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 12px;
    transition: transform 0.3s;
}

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

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #e11b22;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
}

.stars {
    color: #ffd700;
    font-weight: 600;
}

.reviews {
    color: #666;
    font-size: 0.9rem;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
}

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

.product-discount {
    color: #00a65a;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .product-card img {
        height: 150px;
    }

    .feature-tag {
        font-size: 0.7rem;
        padding: 3px 6px;
    }

    .product-price {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .product-card img {
        height: 120px;
    }

    .product-features {
        display: none;
    }
}

/* Shop by Lifestyle Section */
.lifestyle-section {
    padding: 40px 5%;
    background-color: #f5f5f5;
}

.lifestyle-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.lifestyle-bold {
    border-bottom: 3px solid #ff0000;
    padding-bottom: 5px;
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.lifestyle-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-color: #e8f0f2;
    transition: transform 0.3s ease;
}

.lifestyle-card:hover {
    transform: translateY(-5px);
}

.lifestyle-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.lifestyle-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #000;
}

.lifestyle-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.view-all {
    color: #0077cc;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-all i {
    transition: transform 0.3s ease;
}

.view-all:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .lifestyle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .lifestyle-grid {
        grid-template-columns: 1fr;
    }
    
    .lifestyle-section h2 {
        font-size: 2rem;
    }
}

/* Blogs Section */
.blogs-section {
    padding: 60px 5%;
    background-color: #ffffff;
}

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

.blogs-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

.view-all-link {
    color: #0077cc;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1rem;
}

.blogs-tabs {
    margin-bottom: 30px;
}

.blogs-tabs .tab {
    padding: 10px 20px;
    margin-right: 15px;
    border: none;
    background: none;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
}

.blogs-tabs .tab.active {
    background-color: #f5f5f5;
    border-radius: 20px;
    font-weight: 600;
}

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

.blog-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-date {
    color: #666;
    font-size: 0.9rem;
}

.blog-content h3 {
    margin: 10px 0;
    font-size: 1.2rem;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.read-more {
    color: #0077cc;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Press Section */
.press-section {
    padding: 80px 5%;
    background-color: #ffffff;
}

.press-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #000;
}

.press-bold {
    border-bottom: 3px solid #ff0000;
    padding-bottom: 2px;
}

.press-slider {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.press-logo-container {
    background-color: #f5f5f5;
    padding: 60px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.press-logo {
    max-width: 100%;
    height: auto;
}

.press-content {
    position: relative;
    padding: 20px 0;
}

.quote-mark {
    font-size: 6rem;
    position: absolute;
    top: -60px;
    left: -20px;
    color: #999;
    font-family: Georgia, serif;
}

.press-quote {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    padding-left: 20px;
    text-align: center;
}

.press-navigation {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #666;
}

.nav-btn:hover {
    border-color: #999;
    background: #f5f5f5;
}

.nav-btn svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .press-slide {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .press-logo-container {
        padding: 40px;
    }

    .press-quote {
        font-size: 1.3rem;
        padding: 0;
    }

    .quote-mark {
        font-size: 5rem;
        top: -50px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    .press-section {
        padding: 60px 5%;
    }

    .press-section h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .press-logo-container {
        padding: 30px;
    }

    .press-quote {
        font-size: 1.1rem;
    }

    .quote-mark {
        font-size: 4rem;
        top: -40px;
    }
}