#header {
    border: solid 1px;
    text-align: center;
}

html {
    box-sizing: border-box;
  }
  *, *:before, *:after {
    box-sizing: inherit;
  }

  body {
    font-family: "Exo 2", sans-serif;
    font-size: 1rem;
}

h1,
h2,
h3 {
    margin: 0 0 5rem 0;
    color: #1a1a1a;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2rem;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none !important; 
    color: #1883AF;
}

a:hover{
    cursor: pointer;
}

ul{
    list-style-type: none;
}



/*navegacion*/
@media (min-width: 992px) {
    .dropdown-menu {
        display: none;
        transition: display 0.5s ease-in-out; 
        width: auto; 
    }

    .dropdown:hover .dropdown-menu {
        display: block; 
    }

    .dropdown-item {
        padding: 10px 15px; 
        white-space: nowrap; 
    }
}

.nav-link{
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-link:hover{
    cursor: pointer;
}

@media (max-width: 992px) {
    .nav-item {
        display: block; 
        width: 100%;
        border-top: 1px solid #ccc; 
        padding: 10px 15px; 
    }

    .dropdown-menu {
        border: none; 
        box-shadow: none;
    }

    .dropdown-item {
        border-top: 1px solid #ccc; 
    }

    .nav-link {
        display: block; 
        width: 100%; 
        text-align: left; 
        text-transform: uppercase;
        font-size: 0.9rem;
        font-weight: 500;
        padding: 10px 15px; 
    }

    .nav-link:hover {
        cursor: pointer;
    }

    .move-right-on-hover:hover {
        animation: moveRight 0.5s forwards;
    }

    .dropdown-item:hover {
        background-color: transparent;
        color: #757575;
    }

    .navbar .navbar-nav .nav-item.active {
        border-bottom: none; 
    }
}

@keyframes moveRight {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(10px); 
    }
}

.move-right-on-hover:hover {
    animation: moveRight 0.5s forwards; 
}

.dropdown-item:hover {
    background-color: transparent; 
    color: #757575;
}

.navbar .navbar-nav .nav-item.active {
    border-bottom: none;
}

.form-control{
  height: 2.5rem;  
}

.menu2-style{
    text-transform: uppercase;
} 

/*Feature Products*/
.bg-color {
    background-color: #f0f0f0;
}

.title-wrapper {
    text-align: center; 
    margin-bottom: 20px; 
}

.title-container {
    display: inline-block;
    margin: 0; 
    text-transform: uppercase;
    font-weight: bold;
}

.border-container {
    display: block;
    margin: 0 auto;
    width: 5%; 
    border-bottom: 1px solid #ccc; 
    margin-top: 5px;
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.5);
}

.card {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    
}

a .card-title {
    color: #363636;
    text-transform: uppercase;
}

a .card-title:hover {
    color: #fbb72c;
}

.card-body p {
    color: #757575;
}

.card-text {
    text-transform: uppercase;
    font-weight: bold;
    color: #757575;
}

.card-body-container {
    background-color: #f1efef;
}

.card-image-container {
    position: relative;
    overflow: hidden;
    width: 100%; 
    height: 20rem; 
}

.card-image-container img {
    width: auto;
    height: 100%;
    object-fit: cover; 
    border-radius: 15px 15px 0 0;
    transition: transform 0.3s ease;
}

.card-image-container:hover img {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.6rem;
    color: white;
    background-color: rgb(26, 151, 53);
    padding: 10px;
    text-transform: uppercase;
}

.card-image-container:hover .badge {
    display: block;
}

.owl-carousel .owl-nav.disabled {
    display: flex !important;
}

.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #333;
    pointer-events: all;
}

.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: -50px;
}

.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: -25px;
}

.owl-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
}


/*Brands*/
.brand-container {
    margin-top: 3rem;  
    margin-bottom: 3rem;
}

.brand-carousel .brand-item {
    padding: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 10rem;
    height: 10rem;
    margin-right: 10px;
    overflow: hidden; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-carousel img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover; 
    display: block;
    margin: auto;
} 

.owl-carousel .owl-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 480px) {
    .owl-carousel .owl-controls .owl-buttons div {
        display: none;
    }
}

/*Newsletter*/
.newsletter{
    background-color: #8a1b1a;
}

.btn-color{
    background-color: #171E2B;
    color: white;
}

.btn-color:hover{
    background-color: #171E2B;
    color: rgb(175, 162, 162);
}

.input-group > .form-control{
    height: 3rem;
   
}

/*footer*/
.footer-title{
    font-size: 20px;
    margin-top: 2rem;
}

.footer-item a{
    color: black;
    font-weight: 300;
    
}

.footer-item a:hover{
    color: #757575;
    text-decoration: none;
}

.form-control input{
    width: 5rem;
}

.bg-footer{
    background-color: #171E2B;
}

.border-footer {
    display: block;
    margin: 0;
    margin-right: 95%; 
    width: 8%; 
    border-bottom: 1px solid #7a7a7a; 
    margin-top: 5px;
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.5);
 
}

span a{
    color: rgb(106, 105, 109);
}

span a:hover{
    color: #333;
}

.copyright{
    margin-top: 1rem;
}

@media (min-width: 768px){
   .copyright{
        margin-left: 5rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .developed{
        margin-right: 5rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}

/*boton volver*/
.go-top-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: none;
    z-index: 100;
}

.go-top-button {
    width: 100%;
    height: 100%;
    background-color: rgb(150, 26, 26);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.go-top-button:hover {
    background-color: rgb(200, 36, 36);
}

.go-top-button .bi {
    font-size: 24px;
    color: white;
}
/*Search page*/
.breadcrumb-container{
    background-color: #F8F8F8;
}

.breadcrumb{
    padding: 25px;
   
}

.breadcrumb-item{
    text-transform: uppercase;
    font-size: 0.8rem;
}

.breadcrumb-item a{
    color: #979594;
}

.sidebar-container{
    display: flex;
    justify-content: center;
    align-items: center;
}
.sidebar {
    width: 350px;
    border: 1px solid #ccc;
    padding: 20px;
    margin-left: -2rem;
}

.sidebar .font {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
}

@media (min-width: 768px){
    .sidebar {
        width: 250px;
        border: 1px solid #ccc;
        padding: 20px;
        margin-left: -2rem;
    }
    
    .sidebar .font {
        font-size: 0.8rem;
        text-transform: uppercase;
        font-weight: bold;
    }
    
}

.scrollbox {
    max-height: 250px;
    overflow-y: auto;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

ul li {
    margin: 5px 0;
}

ul li a {
    text-decoration: none;
    color: #726c6c;
}

ul li a:hover {
    color: #333;
}

.order-container{
    display: inline-block;
}

.dropdown .btn-secondary,
.item-perpage,
.item-options .btn-secondary {
    border: none !important;
    box-shadow: none !important;
}


.page-title span{
    color: #333;
}

  @media (min-width: 1200px) {
    .container{
      max-width: 1400px;
    }
  }

  @media (max-width: 768px) {
    .container {
      max-width: 860px;
    }
  }

/* Estilos específicos para Firefox */
@-moz-document url-prefix() {
    .scrollbox {
        scrollbar-width: thin;
        scrollbar-color: transparent transparent; 
    }

    .scrollbox:hover {
        scrollbar-color: #888 #f1f1f1; 
    }
}

/* Estilos específicos para WebKit (Chrome, Safari, etc.) */
.scrollbox::-webkit-scrollbar {
    width: 8px; 
}

.scrollbox::-webkit-scrollbar-track {
    background: transparent; 
}

.scrollbox::-webkit-scrollbar-thumb {
    background-color: #ccc; 
    border-radius: 4px; 
}

.scrollbox::-webkit-scrollbar-thumb:hover {
    background-color: #999; }


@media (max-width: 768px){
    .page-container{
        margin-top: 2rem;
      
    }

 
}

/*Product Details*/
.pro-big-img{
    margin-top: 8rem;

}

.big-img{
    width: 100%;
    height: auto;
}

.product-title {
    color: black;
    text-transform: uppercase;
    font-weight: bold;
}

.product-title:hover{
    color: gray;
}

.stock-container{
    background-color: rgb(26, 151, 53);
    width: 60px;
    text-align: center;
   

}

.product-stock{
    color: white;
    font-size: 0.8rem;
   
}

.references-container{
    border: 1px solid #ccc;
    width: 100px;
    text-align: center;
    border-radius: 5%;
}

.product-references{
    color: gray;
    font-size: 0.8rem;
}

.stock-container,
.references-container {
    display: inline-block;
    vertical-align: top; 
    margin: 0; 
    padding: 0; 
    line-height: 25px;
}

.details-title{
    text-transform: uppercase;
    font-size: 1rem;
}

.pro-details-container
 {
    display: inline-block; 
   
}

.pro-details-style {
    color: grey;
    font-size: 0.8rem;
    text-transform: uppercase;
    border: 1px solid #ccc;
    padding: 8px; 
    margin-right: 20px; 
    border-radius: 5%;
}

.pro-details-container {
    display: inline-block;
}

.button {
    display: inline-block;
    padding: 8px 12px;
    color: grey;
    font-size: 0.8rem;
    text-transform: uppercase;
    border: 1px solid #ccc;
    padding: 8px; 
    margin-right: 20px; 
    border-radius: 5%;
}

.size-item {
    margin-bottom: 10px; 
}

.sizes {
    margin-top: 10px; 
}

.sizes form {
    margin-top: 10px; 
}

.sizes p {
    margin: 0; 
}

.colors .flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; 
}

.colors .flex-container a {
    display: inline-block;
}

.colors .flex-container img {
    width: 100px;
    height: auto;
    object-fit: cover;
}


.pro-small-img {
    display: inline-block;
    width: 110px;
    height: 110px;
    border: 1px solid #ccc; 
    padding: 5px; 
    object-fit: contain;
}

.small-img {
    width: 100px; 
    height: auto; 
   
}

#MainImgContainer{
    overflow: hidden;
    
}

#footer {
    border: solid 1px;
    text-align: center;
}

.owl-carousel .item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 100%;
}

.card {
    width: 100%; 
    height: 100%; 
    display: flex;
    flex-direction: column;
}

.card-body-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
}
