/* Custom Variables */
:root {
    --primary-red: #ff002b;
    --dark-bg: #0a0a0a;
}

body {
    background-color: var(--dark-bg);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}
.navbar {
    background: rgba(10, 10, 10, 0.8) !important;
    backdrop-filter: blur(10px);
    transition: 0.3s;
    margin-bottom: -100px;
}

/* search */
/* Container to control width and glow */
.search-wrapper {
    width: 100%;
    max-width: 400px;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 10px;

}

/* The Input Field */
.search-wrapper .form-control {
    background-color: #1a1a1a !important;
    border: 1px solid #333 !important;
    color: white !important;
    border-radius: 50px 0 0 50px !important; /* Pill shape left */
    padding: 12px 25px;
    box-shadow: none !important;
}

/* The Search Icon Area */
.search-wrapper .input-group-text {
    background-color: #1a1a1a !important;
    border: 1px solid #333 !important;
    border-left: none !important;
    color: #888;
    border-radius: 0 50px 50px 0 !important; /* Pill shape right */
    padding-right: 20px;
}

/* The Glow Effect on Focus */
.search-wrapper:focus-within {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.3));
    transform: scale(1.01);
}

.search-wrapper .form-control::placeholder {
    color: #666;
}

.store-header{
    background: linear-gradient(rgba(0,0,0,0.8), rgba(10,10,10,0.9)),
              url("images/car\ 5.jpeg") center/cover no-repeat;
    background-attachment: fixed;
    opacity: 0.9;
}

.product-card {
    background: #111;
    border: 1px solid rgb(145, 34, 34);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    color: aliceblue;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-card img{
    margin: 10px;
    border-radius: 15px;
    border: 1px solid rgb(145, 34, 34);
}


/* Newsletter Capsule Styling */
.newsletter-capsule {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.newsletter-capsule:focus-within {
    border-color: var(--primary-red);
    box-shadow: 0 0 15px rgba(255, 0, 43, 0.2);
}

.newsletter-capsule input:focus {
    box-shadow: none;
    color: white;
}

/* Footer Links & Socials */
.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    opacity: 0.6;
    transition: 0.3s;
}

.social-icons a:hover {
    opacity: 1;
    color: var(--primary-red);
    transform: translateY(-3px);
    display: inline-block;
}

.tracking-widest {
    letter-spacing: 4px;
}
