:root {
    --primary-blue: #0da2e7;
    --light-blue: #E3F2FD;
    --dark-blue: #1976D2;
    --text-dark: #333;
    --text-light: #666;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.product-description {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Header Styles */
.top-bar {
    background: var(--primary-blue);
    color: white;
    padding: 8px 0;
    font-size: 12px;
}

.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-blue) !important;
}

.navbar .nav-link {
    color: #000 !important;
    font-weight: 500;
    margin-right: 5px;
}

.navbar .nav-link:hover {
    color: var(--primary-blue) !important;
}

.nav-button {
    background-color: #fff;
    padding: 10px 12px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    transition: 0.3s;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    gap: 7px;
    border: none;
}

.nav-button:hover {
    background-color: #e7f6fe;
    fill: var(--primary-blue) !important;
    color: var(--primary-blue) !important;
}

.search-box {
    position: relative;
    max-width: 450px;
    width: 100%;
    margin: auto;
}

.search-box svg {
    fill: rgb(180, 175, 175);
}

.cart-icon {
    position: relative;
    font-size: 20px;
    color: var(--text-dark);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, hsl(199 89% 48% / .1), hsl(199 89% 62% / .05));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.new-arrival-badge {
    background: #0da2e71a;
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-second-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-primary-custom {
    background: linear-gradient(135deg, hsl(199 89% 48%), hsl(199 89% 62%));
    border: none !important;
    padding: 7px 30px !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
    margin-right: 20px !important;
    color: #fff !important;
    transition: 0.3s !important;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, hsl(199 89% 31%), hsl(199 89% 52%));
    color: #fff !important;
}

.checkout-btn{
    text-decoration: none;
    color: #fff;
}

.checkout-btn:hover{
    color: #fff;
}

.btn-outline-custom {
    color: #000 !important;
    padding: 7px 30px !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
    background: #fff !important;
    border: 1px solid rgb(226, 226, 226) !important;
    height: max-content !important;
}

.btn-outline-custom:hover {
    background: rgb(13 162 231 / 5%) !important;
    color: var(--primary-blue) !important;
}

.btn-outline-custom-transparent {
    color: #fff !important;
    padding: 7px 30px !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
    background: transparent !important;
    border: 1px solid rgb(226, 226, 226) !important;
    height: max-content !important;
}

.btn-outline-custom-transparent:hover {
    background: #fff !important;
    color: var(--primary-blue) !important;
}

.stats-section {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.hero-image {
    max-width: 100%;
    height: auto;
}

/* Featured Categories */
.featured-categories {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 60px;
}

.category-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.category-icon {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.category-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.category-description {
    font-size: 14px;
    color: var(--text-light);
}

/* Top Selling Products */
.top-products {
    padding: 80px 0;
    background: white;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

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

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f8f9fa;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.rating {
    margin-bottom: 15px;
}

.rating i {
    color: #ffc107;
    margin-right: 2px;
}

.rating-count {
    color: var(--text-light);
    font-size: 14px;
    margin-left: 5px;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 16px;
    margin-left: 10px;
}

.btn-add-cart {
    background: var(--primary-blue);
    border: none;
    color: white;
    padding: 7px 20px;
    border-radius: 5px;
    font-weight: 600;
    width: 100%;
    font-size: 14px;
    height: max-content;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Promotional Sections */
.promo-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.promo-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.summer-sale {
    background: linear-gradient(135deg, hsl(199 89% 48%), hsl(199 89% 62%));
    color: white;
}

.promo-main-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.promo-main-description {
    margin-bottom: 25px;
    margin-right: 80px;
    font-size: 18px;
    opacity: 0.9;
}

.promo-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.promo-description {
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-promo {
    color: #000 !important;
    padding: 7px 30px !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
    background: #fff !important;
    border: 1px solid rgb(226, 226, 226) !important;
    height: max-content !important;
}

.btn-promo:hover {
    color: #000 !important;
    background: #fff !important;
    border: 1px solid rgb(226, 226, 226) !important;
    height: max-content !important;
}

.service-icon {
    font-size: 35px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(13, 162, 231, 0.12);
    display: flex;
    justify-content: center;
    align-items: center;
    right: 20px;
}

/* Footer */
.footer {
    background: rgb(17, 24, 39);
    color: white;
    padding: 60px 0 30px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.footer-description {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-blue);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    opacity: 0.7;
    font-size: 14px;
}

.footer-bottom a {
    text-decoration: none;
    color: #fff;
}

.business-hours {
    margin-top: 20px;
}

.business-hours div {
    margin-bottom: 5px;
    opacity: 0.8;
}

.hero-image{
    position: relative;
    z-index: 99;
}

.hero-shadow{
    border-radius: 9999px;
    filter: blur(24px);
    width: 100px;
    height: 100px;
    background-color: var(--primary-blue);
    opacity: 0.5;
    right: -35px;
    top: -35px;
    z-index: 9;
}

@media (max-width: 768px) {
    .category-item {
        padding: 5px 10px;
    }

    .product-info {
        padding: 10px;
    }

    .product-title{
        font-size: 14px;
    }

    .price{
        font-size: 14px;
    }
}