* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #E23149;
    --secondary-color: #FE573A;
    --white-color: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --bg-light: #f8f9fa;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
}

body {
    font-family: 'Prompt', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white-color);
}

.container{
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    background: var(--white-color);
    z-index: 1000;
    margin-bottom: 15px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
}

.top-bar {
    background: linear-gradient(119deg, #F7BA14 0%, #DC0F4C 58%);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 14px;
    color: white;
}

.top-bar-content {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: end;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-info i, .user-menu i {
    color: white;
    margin-right: 5px;
}

.separator {
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.5);
}

.user-menu a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

.user-menu a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.main-header {
    padding: 0px 0;
    background: white;
}

.main-header .container {
    max-width: 100%;
    padding: 0 20px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    padding: 10px 0;
}

.logo {
    flex-shrink: 0;
    z-index: 10;
}

.logo img {
    height: 60px;
    width: auto;
    margin-top: 4px;
    margin-bottom: -4px;
}

/* Header Navigation */
.header-nav {
    position: static;
    display: flex;
    justify-content: center;
    flex: 1;
}

.nav-menu-horizontal {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.nav-menu-horizontal li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 10px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    border-radius: 4px;
    transition: all 0.3s;
    white-space: nowrap;
    font-size: 14px;
}

.nav-menu-horizontal li a:hover {
    background: var(--primary-color);
    color: white;
}

.nav-menu-horizontal li a i {
    font-size: 14px;
}

.cart-icon {
    position: relative;
    flex-shrink: 0;
    z-index: 10;
}

.cart-icon a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    transition: all 0.3s;
}

.cart-icon a:hover {
    background: var(--primary-color);
    color: white;
}

.cart-icon i {
    font-size: 20px;
}

.cart-count {
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Navigation */
.main-nav {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-menu li a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
    font-weight: 300;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: rgba(255,255,255,0.2);
}

.nav-menu li a i {
    margin-right: 5px;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, rgba(226, 49, 73, 0.9), rgba(254, 87, 58, 0.9)),
                url('../images/BG-Store.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Prompt', sans-serif;
    font-size: 14px;
    height: 45px;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.btn-primary:hover {
    background: transparent;
    color: white;
}

.btn-add-cart {
    width: 100%;
    background: var(--primary-color);
    color: white;
    margin-top: 10px;
}

.btn-add-cart:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Features */
.features {
    padding: 60px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* Products Section */
.products {
    padding: 60px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 28px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 10px;
    font-weight: 400;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.view-all {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.view-all:hover {
    color: var(--secondary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.badge-discount {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-quick-view {
    background: white;
    color: var(--text-dark);
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    font-family: 'Prompt', sans-serif;
}

.btn-quick-view:hover {
    background: var(--primary-color);
    color: white;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--text-dark);
    min-height: 50px;
}

.product-info h3 a{
    color: #000;
    text-decoration: none;
}

.product-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    margin: 15px 0;
}

.price, .new-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.old-price {
    font-size: 16px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-right: 10px;
}

.product-rating {
    color: #ffa500;
    margin-bottom: 10px;
}

.product-rating span {
    color: var(--text-light);
    margin-left: 5px;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px 0;
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 30px;
    font-size: 16px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    outline: none;
    font-family: 'Prompt', sans-serif;
}

.newsletter-form .btn-primary {
    background: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
}

.newsletter-form .btn-primary:hover {
    background: white;
    color: var(--text-dark);
}

/* Footer */
.footer {
    background: linear-gradient(119deg, #F7BA14 0%, #DC0F4C 58%);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.2fr 2fr;
    gap: 40px;
    margin-bottom: 0;
}

.footer-logo-col h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logos {
    display: flex;
    gap: 0px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-logos img {
    height: 54px;
    width: 95px;
    object-fit: contain;
    padding: 5px;
    border-radius: 2px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 600;
    color: white;
}

.footer-col p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: white;
    font-size: 14px;
    font-weight: 300;
}

.footer-copyright {
    margin-top: 20px;
    font-size: 13px;
    opacity: 0.9;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0px;
    font-weight: 300;
    font-size: 14px;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    font-size: 14px;
    font-weight: 300;
}

.footer-col ul li a:hover {
    opacity: 0.8;
}

.footer-col ul li i {
    margin-right: 8px;
    color: white;
    width: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 13px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 12px;
}

.footer-bottom a{
    color: white;
}

.footer a{
    color: white;
}


/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .top-bar-content {
        padding: 0 15px;
    }
    
    .main-header .container {
        padding: 0 15px;
    }
    
    .nav-menu-horizontal {
        gap: 2px;
    }
    
    .nav-menu-horizontal li a {
        font-size: 12px;
        padding: 8px 6px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        order: 2;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 10px;
        padding: 15px 0;
    }
    
    .logo {
        order: 1;
        flex: 1;
    }
    
    .cart-icon {
        order: 3;
    }
    
    .header-nav {
        order: 4;
        width: 100%;
        position: static;
        flex: none;
    }
    
    .nav-menu-horizontal {
        display: none;
        width: 100%;
        flex-direction: column;
        background: white;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        border-radius: 0 0 10px 10px;
        overflow: hidden;
    }
    
    .nav-menu-horizontal.active {
        display: flex;
    }
    
    .nav-menu-horizontal li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu-horizontal li:last-child {
        border-bottom: none;
    }
    
    .nav-menu-horizontal li a {
        padding: 15px 20px;
        display: block;
        width: 100%;
        color: var(--text-dark);
        font-size: 14px;
        border-radius: 0;
    }
    
    .nav-menu-horizontal li a:hover {
        background: var(--bg-light);
        color: var(--primary-color);
    }
    
    .banner-content h1 {
        font-size: 28px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form input {
        margin-bottom: 10px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .top-bar {
        font-size: 12px;
        padding: 5px 0;
    }
    
    .top-bar-content {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        text-align: center;
        padding: 0 10px;
        flex-wrap: wrap;
    }
    
    .contact-info,
    .user-menu {
        font-size: 12px;
    }
    
    .separator {
        display: none;
    }
    
    .user-menu a {
        margin-left: 10px;
        font-size: 12px;
    }
    
    .logo img {
        height: 45px;
    }

    .btn {
    padding: 12px 10px;
    }
    
    .cart-icon a {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .cart-text {
        display: none;
    }
    
    .banner-content h1 {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .banner-content p {
        font-size: 14px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .product-card {
        padding: 10px;
    }
    
    .product-card h3 {
        font-size: 14px;
    }
    
    .product-card p {
        font-size: 12px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .newsletter {
        padding: 30px 0;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-col h4 {
        font-size: 16px;
    }
}
