*{
    margin: 0;
    padding: 0;
}
.marquee-container{
    overflow: hidden;
    box-sizing: border-box;
    padding: 0.625rem 0;
    background: #000000;
    white-space: nowrap;
    width: 100%;
}
.marquee-content{
    display: inline-block;
    padding-left: 100%;
    animation: scroll 30s linear infinite;
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: bold;
   
}
@media (max-width:760px) {
    .marquee-content{
        font-size: 1.2rem;
    }
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100%{
        transform: translateX(-100%);
    }
}
.glass{
    color:rgb(240, 86, 14);
}
.gear{
    color: #C0C0C0;
}
.eye{
    color: #000080;
}

/*Style to remove focus border*/
button:focus,input:focus{
    outline: none;
    box-shadow: none;
}

.navbar-toggler:focus,.form-control:focus{
    outline: none;
    box-shadow: none;
}

/*Style for toggler*/
.custom-toggler i{
    color: #000;
    font-weight: bolder;
    font-size: 1.5rem;
}

/*Style for brand logo*/
.logo{
    width: 4em;
}
@media (max-width:768px) {
    .logo{
        width: 3em;
    }
}

.navbar-brand{
    font-family: "Cinzel_Decora";
}

/*Style for the navigation and toggle bar*/
.navigation{
    background-color: #FFFDD0;
}
.navbar-toggler{
    border: none;
}

/*Style for the dropdown in the navigation*/
.dropdown-menu{
    border: none;
    box-shadow: 0 0 0.625rem rgba(0,0,0,0.1);
}
.nav-item.dropdown:hover .dropdown-menu{
    display: block;
}

    .dropdown-item:hover{
        background-color: #bd9b06ea;
    }

    .dropdown-item.active{
        background-color: #bd9b06ea;
    }

@media (min-width: 770px) {
    .nav-link:hover{
    border-bottom: 2px solid #bd9b06ea;
    }
}

@media (min-width: 770px) {
    .nav-link.active{
    border-bottom: 2px solid #bd9b06ea;
}
}

.social-icons {
            color: #1a1a1a;
            font-size: 1.5rem;
            margin-left: 15px;
            transition: color 0.3s;
        }

 .social-icons:hover {
            color: #b8860b; /* Gold hover color */
        }

/*PRODUCTS STYLING*/
 /*PRODUCTS STYLING*/

.watch-card { 
            border: none; 
            border-radius: 20px; 
            overflow: hidden; 
            background-color: #fdf5eb;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            height: 100%;
        }

        .card-img-top {
            height: 200px;
            object-fit: cover;
        }

        /* Top text section */
        .card-price-section { 
            padding: 1.5rem 1.25rem 1rem 1.25rem; 
        }

        .status-label { 
            font-size: 0.8rem; 
            color: #333;
        }

        .price-text { 
            font-weight: 800; 
            font-size: 1.4rem; 
            margin: 5px 0 0 0;
            color: #000;
        }

        .series-label { 
            font-size: 0.75rem; 
            font-weight: bold; 
            text-transform: uppercase;
            color: #000;
        }

        /* Bottom description section */
        .card-details-section { 
            border-top: 1px solid #e0d5c5; 
            padding: 1.25rem;
            background-color: #fdf5eb;
        }

        .watch-title {
            font-weight: 900;
            color: #000000;
            font-size: 0.9rem;
            text-transform: uppercase;
            margin-bottom: 4px;
        }

        .watch-desc {
            font-size: 0.85rem;
            font-weight: bold;
        }

/*Shop button*/
.shop{
    background-color: #ee660c;
    transition: all 0.4s ease; /* Smooth transition is key */
}
.shop:hover{
  background-color: #d36318; /* Lightens the gold slightly */
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6); /* Soft gold glow */
  transform: translateY(-2px); /* Subtle lift */
}
        
        /*Style for footer*/
.beilan-footer{
  background: linear-gradient(to right, #2C2C2C);
  font-family: Arial, sans-serif;
}
.beilan-footer h5{
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: white;
}
@media (max-width: 768px) {
    .beilan-footer h5{
        font-size: 1.1rem;
    }
}
.beilan-footer p{
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
  color: #f0f0f0;
}
@media (max-width: 768px) {
    .beilan-footer p{
        font-size: 0.9rem;
    }
}
.beilan-footer .small{
  font-size: 0.75rem !important;
  font-weight: 300;
}
.beilan-footer h5 a{
  text-decoration: none;
}
.socialmedia{
  color: #f0f0f0 !important;
}
