@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background-color: #fcfcfc;
    color: #111111;
    -webkit-font-smoothing: antialiased;
}

/* Typography & Links */
a {
    text-decoration: none;
    color: #111111;
    transition: all 0.3s ease;
}
a:hover {
    color: #555555;
}
.text-muted {
    color: #737373 !important;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}
.nav-link {
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    position: relative;
}
.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #000;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.nav-link:hover::after {
    width: 80%;
}

/* Brand Dropdown Styles */
.brand-dropdown-menu {
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
    min-width: 240px;
    margin-top: 10px;
}
.brand-dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}
.brand-dropdown-item:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}
.brand-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-right: 15px;
}

/* Buttons */
.btn-dark-custom {
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #000;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-dark-custom:hover {
    background-color: #ffffff;
    color: #000000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Sub-Navbar Auto Slider (Marquee) */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
}
.marquee-content {
    display: flex;
    animation: scroll-marquee 25s linear infinite;
}
.marquee-content:hover {
    animation-play-state: paused;
}
@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.marquee-item {
    display: inline-flex;
    align-items: center;
    padding: 12px 35px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #737373;
    transition: color 0.3s;
}
.marquee-item i {
    color: #111111;
    margin-right: 10px;
    font-size: 1.2rem;
}
.marquee-item:hover {
    color: #111111;
}

/* Hero Section (Updated Background) */
.hero-section {
    background-color: #000;
    color: white;
    padding: 120px 0 100px;
    position: relative;
background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Search Box */
.search-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    margin-top: -100px;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.form-select,
.form-control {
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    font-weight: 500;
    transition: all 0.3s;
}
.form-select:focus,
.form-control:focus {
    border-color: #000;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

/* Cards */
.card-custom {
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}
.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.card-custom:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.sold-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: 4px;
    z-index: 2;
}

.badge-dark-custom {
    background-color: #000000;
    color: #ffffff;
    padding: 8px 16px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.price-tag {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 10px 20px;
    font-weight: 700;
    font-size: 1.1rem;
    border-top-left-radius: 20px;
    box-shadow: -5px -5px 15px rgba(0, 0, 0, 0.05);
}

/* Category Lists */
.category-box {
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.3s;
}
.category-box:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}
.category-list li {
    margin-bottom: 14px;
    transition: transform 0.2s ease;
}
.category-list li:hover {
    transform: translateX(8px);
}
.category-list li a {
    color: #555;
    font-weight: 500;
}
.category-list li a:hover {
    color: #000;
}
.category-list i {
    font-size: 0.8rem;
    margin-right: 8px;
    color: #000;
}

/* Sections */
.section-title {
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.footer {
    background-color: #111;
    color: #fff;
    padding: 80px 0 30px;
}
.footer a {
    color: #aaa;
}
.footer a:hover {
    color: #fff;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s;
}
.footer-social a:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}
