body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #000000;
    color: #eb2e28;
}
a {
    color: #eb2e28;
    text-decoration: none;
}
.navbar {
    border-bottom: 1px solid #eb2e28;
}
.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: #eb2e28;
    font-weight: 500;
}
.navbar button,
.navbar a {
    color: #eb2e28;
    text-decoration: none;
}
.dropdown-menu-dark {
    background-color: rgba(0, 0, 0, .6);
    border: none;
    min-width: 200px;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show,
.dropdown-menu-dark .dropdown-item {
    color: #eb2e28;
}

.dropdown-menu-dark .dropdown-item:hover {
    background-color: #333;
}

.category-link {
    color: #222;
    font-weight: 500;
    text-decoration: none;
}

.category-link.active,
.category-link:hover {
    font-weight: bold;
    text-decoration: underline;
}

.filter-link {
    color: #222;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #222;
}

.filter-panel {
    display: none;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease-in-out;
}

.filter-panel.show {
    display: block;
}

.filter-panel ul {
    padding-left: 0;
    margin-top: 0.5rem;
}

.filter-panel .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.product-card {
    position: relative;
    padding: 0.25rem;
    border: none;
}

.discount-badge {
    position: absolute;
    top: 8px;
    right: 10px;
    background: #b03a5b;
    color: white;
    border-radius: 50%;
    padding: 0.3em 0.5em;
    font-size: 0.75rem;
    font-weight: bold;
}

.product-title {
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.price-block {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.old-price {
    text-decoration: line-through;
    color: #888;
}

.new-price {
    font-weight: bold;
    color: #b03a5b;
}

.footer a {
    color: #6c757d;
}

.footer a:hover {
    color: #eb2e28;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .product-title {
        font-size: 0.85rem;
    }
    .price-block {
        font-size: 0.75rem;
    }
    .filter-panel {
        padding: 0.5rem 0;
    }
}

.hero-section {
    position: relative;
    overflow: hidden;
    max-height: 600px;
}

.hero-section img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    max-height: 600px;
}

.hero-content {
    z-index: 2;
    padding: 1rem;
}

.category-tile {
    color: #000;
    text-decoration: none;
}

.category-tile:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}
carousel-item img {
    max-height: 600px;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(255, 255, 255, 0.6);
    padding: 1rem;
    border-radius: 0.5rem;
}

.category-thumb {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
}
.carousel-item img {
    max-height: 600px;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(255, 255, 255, 0.6);
    padding: 1rem;
    border-radius: 0.5rem;
}

.category-thumb {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.category-thumb img {
    transition: transform 0.4s ease;
}

.category-thumb:hover img {
    transform: scale(1.05);
}

.thumb-label {
    position: absolute;
    top: 10px;
    left: 10px;
    font-weight: 500;
    color: #000;
    background: rgba(255,255,255,0.75);
    padding: 0.3rem 0.6rem;
    border-radius: 0.3rem;
}

.zoom img {
    height: 320px;
    transition: transform 0.3s ease-in-out;
}

.zoom:hover img {
    transform: scale(1.05);
}

.btn-dot {
    width: 12px;
    height: 12px;
    margin: 0 4px;
    border-radius: 50%;
    border: 2px solid #333;
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-dot.active,
.btn-dot:focus {
    background-color: #333;
}

.shipping-box {
    border: 1px solid #eb2e28;
    max-width: 700px;
    margin: 0 auto;
    color: #eb2e28;
}

.shipping-box h5 {
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.shipping-box .btn {
    color: #eb2e28;
}
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(255,255,255,0.95);
    z-index: 9999;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    transition: height 0.4s ease;
    padding-top: 2rem;
    opacity: 0;
    pointer-events: none;
}

.search-overlay.active {
    height: 120px;
    opacity: 1;
    pointer-events: auto;
}

.search-container {
    position: relative;
    width: 80%;
    max-width: 600px;
    transform: translateY(-30px);
    opacity: 0;
    transition: all 0.4s ease;
}

.search-overlay.active .search-container {
    transform: translateY(0);
    opacity: 1;
}

.search-container input {
    width: 100%;
    font-size: 1.5rem;
    padding: 0.75rem 1rem;
}

.search-container .btn-close {
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100%;
    background: #1f1f1f;
    color: white;
    z-index: 1050;
    transition: right 0.4s ease;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0,0,0,0.5);
}

.cart-sidebar.active {
    right: 0;
}

.cart-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.cart-backdrop.active {
    opacity: 1;
    visibility: visible;
}
.product-thumb {
    transition: all 0.3s ease;
}
.object-cover {
    object-fit: cover;
}

.object-contain {
    object-fit: contain;
}
img.product-thumb {
    object-fit: cover;
}
.thumbnail-container {
    height: 320px;
    overflow: hidden;
}
.color-circle {
    display: inline-block;
    margin: 4px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s ease;
}

.color-circle .dot {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
}

.color-circle:hover {
    border-color: #ccc;
}

.color-circle input:checked + .dot {
    outline: 2px solid #333;
}
input[type="radio"]:checked + label.color-circle {
    border-color: #000;
}
.product .img-thumbnail {
    border-color: #eb2e28;
    background-color: #eb2e28;
}
