header.style-2 {
  background-color: #8C0048;
  background-color: #d908cc;
}

header.style-2 .main-menu .menu-list > li a {
  color: white;
}

header.style-2 .main-menu .menu-list > li a {
  transition: all 0.3s ease; /* animación suave */
}

header.style-2 .main-menu .menu-list > li a {
  display: inline-block; /* necesario para usar transform */
  transition: transform 0.3s ease, color 0.3s ease;
}

header.style-2 .main-menu .menu-list > li a:hover {
  color: #fff;
  transform: scale(1.1); /* agranda solo el texto visualmente */
}

header.style-2 .nav-right .search-btn .bi {
  color: #2F1B50;
}

header.style-2 .nav-right .search-btn .bi {
  transition: all 0.3s ease; /* animación suave */
}

header.style-2 .nav-right .search-btn .bi:hover {
  color: #fff;
  transform: scale(1.3); /* agranda 30% */
}

header.style-2 .join-btn {
  color: #fff;
}

header.style-2 .join-btn:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

header.style-2.sticky {

  background: #6C053A;
  background: #861ADF;

}

.btn--primary2 {
  background: #F96F0B;
  color: #2F1B50;
}

.btn--primary2::after {
  background: #F96F0B;
  color: #2F1B50;
}


header.style-2 .header-btn {
  background: #2F1B50;
}

.btn--primary2::before {
  background: #2F1B50;
}

header.style-2 .header-btn:hover {
  background: #191a1c;
}

.hero-style-two .banner2-content h1 {
  color: #2F1B50;
}

footer.style-2 .footer-item .input-with-btn button {
  background: #2F1B50;
}

footer.style-2 .footer-item .input-with-btn button:hover {
  background: #F96F0B;
}

footer.style-2 .footer-item .footer-social i:hover {
  background: #F96F0B;
  border: 1px solid #F96F0B;
}

.single-blog-style2 .blog-img .blog-date {
  color: #fff;
  background: #F96F0B;
}

.sponsor-section.style-2 .slick-dots .slick-active {
  background-color: #2F1B50;
}

.c-feature-card2 .c-feature-content p span {
  color: #2F1B50;
}

.c-feature-card2 .auction-timer2 .countdown-single {
  border: 1.5px solid #2F1B50;
}

.c-feature-card2 .auction-timer2 .countdown-single:hover {
  border: 1.5px solid #F96F0B;
}

.auction-card2 .author-price-area p {
  color: #2F1B50;
}

.hero-style-two .scroll-text h6::before {
  background-image: linear-gradient(0deg, #2F1B50 30%, dimgray 70%);
}

.preloader.style-2 {
  background: #2F1B50;
}

.mobile-search .search-cross-btn.style-2 {
  border: 1px solid #F96F0B;
}

.mobile-search .search-cross-btn.style-2:hover {
  background-color: #2F1B50;
}


.hero-style-two::after {
  content: "";
  position: absolute;
  right: -50%;
  bottom: -8%;
  width: 90%;
  height: 90%;
  background-image: url(../images/bg/banner.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

.glow-link {
  display: inline-block;
  font-weight: bold;
  color: #2F1B50;
  font-size: 18px;
  text-decoration: none;
  animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 5px #2F1B50, 0 0 10px #2F1B50;
  }
  to {
    text-shadow: 0 0 15px #2F1B50, 0 0 30px #2F1B50;
  }
}





.loader-bg {
  width: 100%;
  height: 100%;
  background: #ffffff;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999999999;
}

/* círculo giratorio */
.loader-circle {
  width: 8em;
  height: 8em;
  border-radius: 50%;
  border-top: 0.3em solid #A61919;
  position: relative;
  animation: rotating 2s linear infinite;
}

.loader-circle::before,
.loader-circle::after {
  content: '';
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  top: -0.2em;
  left: 0;
}

.loader-circle::before {
  border-top: 0.3em solid #2F1B50;
  transform: rotate(120deg);
}

.loader-circle::after {
  border-top: 0.3em solid #ff5e31;
  transform: rotate(240deg);
}

/* logo fijo en el centro */
.logo-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logo-center img {
  width: 90px;
  height: auto;
}

/* animación */
@keyframes rotating {
  100% { transform: rotate(360deg); }
}


/* SHARE CARD 2 */
.share-area-card2 {
    position: relative;
    display: inline-block;
}

.social-icons-card2 {
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    gap: 10px;
    margin: 0;
    margin-right: 5px;
    padding: 8px 12px;
    position: absolute;
    top: 50%; 
    right: 100%; 
    transform: translate(10px, -50%);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    z-index: 10;
    display: flex;
    flex-direction: row;
}

.share-area-card2:hover .social-icons-card2 {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%);
}

/* Botón compartir card2 */
.share-btn-card2 {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #e0e0e0; /* gris claro */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555; /* gris oscuro para el ícono */
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.share-btn-card2:hover {
    background: #bdbdbd; /* gris un poco más oscuro al hacer hover */
    color: #000;
    transform: scale(1.1);
}

.auction-card2 .auction-card-bttm .share-area i:hover {
  color: #2F1B50;
}

footer.style-2 .footer-item .footer-list li:hover a {
  color: #F96F0B;
}

footer.style-2 .footer-item .footer-list li::before {
  background: #F96F0B;
}

footer.style-2 .footer-item .address-list li:hover a {
  color: #F96F0B;
}


.auction-card2 .auction-img .auction-timer {
  background: #2F1B50;
}

.auction-card2 .auction-img .auction-timer .countdown h5 {
  color: #F96F0B;
}

.auction-card2 .auction-img .auction-timer .countdown h5:hover {
  color: #fff;
}

.btn--primary::before {
  background: #F96F0B;
}

.btn--primary::after {
  background: #F96F0B;
}

.details-tab-btn.active {
  background: #2F1B50 !important;
  color: #F96F0B;
}

.details-tab-btn:hover {
  background: #2F1B50;
  color: #fff;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #F96F0B;
  background-color: #2F1B50;
}

.auction-card1 .auction-img .auction-timer {
  background: #2F1B50;
}

.auction-card1 .auction-img .auction-timer .countdown h4 {
  color: #F96F0B;
}

.auction-card2:hover .auction-img .auction-timer .countdown h5 {
  color: #fff;
}

.tab-content .auction-gallery-timer {
  background-color: #F96F0B;
}

.breadcrumb .breadcrumb-item {
  color: #F96F0B;
}

.inner-banner {
  min-height: 250px;
  background: #2F1B50;
}

.inner-banner-title {
  color: #fff;
}

.breadcrumb .breadcrumb-item.active {
  color: #fff;
}

.inner-banner-title {
  font-size: 40px;
}

.product-details-right .bid-form .form-title p::before {
  background-color: #F96F0B;
}

.product-details-right .bid-form .form-title p::after {
  background-color: #F96F0B;
}

.auction-card1 .share-area:hover .social-icons li i:hover {
  color: #F96F0B;
}

.pagination-wrap .page-item.active .page-link {
  border-color: #F96F0B;
}

.pagination-wrap .page-item.active .page-link {
  color: #F96F0B !important;
  border-color: #F96F0B;
}

.pagination-wrap .page-link:hover {
  color: #2F1B50;
  background-color: #F96F0B;
  border-color: #F96F0B;
}

.live-auction .dotted3 {
  left: -300px;
}

.form-wrapper .account-btn {
  background: #F96F0B;
  border: 1px solid #F96F0B;
}

.form-wrapper .account-btn:hover {
  background: white;
  border: 1px solid #F96F0B;
  color: #2F1B50;
}

.text-primary {
  color: #2F1B50 !important;
}

.wow {
    visibility: visible !important;
    animation: none !important;
}

.how-work-section .how-work-content span {
  color: #2F1B50;
}

.how-work-section .how-work-content h3 {
  color: #2F1B50;
}

.single-feature .sn {
  font-weight: 700;
  color: #2F1B50;
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #2F1B50;
}

.single-feature:hover .icon svg {
  fill: #F96F0B;
}

.hover-border1::before {
  background: #F96F0B;
}

.single-feature .content h5 a:hover {
  color: #F96F0B;
}

.hover-border2::before {
  background: #F96F0B;
}

.contact-signle .icon {
  background: #2F1B50;
}

.contact-signle .icon i {
  color: #F96F0B;
}

.contact-signle:hover .icon {
  background: #F96F0B;
  color: #fff;
}

/* Select2 SINGLE */
.select2-container--default .select2-selection--single {
    height: 48px !important;        /* altura */
    display: flex !important;
    align-items: center !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    padding-left: 12px !important;
    box-sizing: border-box !important;
}

/* Texto dentro */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: normal !important;
    padding-left: 0 !important;
}

/* Flechita */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    right: 10px !important;
}

.ck-editor__editable_inline {
  min-height: 200px; /* puedes poner 300px o lo que necesites */
}

.auction-card1 .author-area .author-name {
  background: #F96F0B;
}

.auction-card1 .author-area:hover .author-emo {
  border: 1px solid #F96F0B;
}

.dashboard-section .nav-pills .nav-link:hover {
  background-color: #F96F0B;
  color: #fff;
}

.dashboard-card:hover .body .icon svg {
  fill: #F96F0B;
}

.button-group .profile-btn:hover {
  background-color: #fff;
  color: #F96F0B;
}

.button-group .profile-btn {

  background-color: #F96F0B;
  color: #fff;
}

.button-group .profile-btn {

  background-color: #F96F0B;
  color: #fff;

  border: 1px solid #F96F0B;

}

.auction-card2 .auction-img {
  width: 100%;
  height: 340px;        /* todas tendrán la misma altura */
  overflow: hidden;     /* oculta el exceso */
}

.auction-card2 .auction-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* recorta y centra sin deformar */
  display: block;
}


.pagination-wrap .pagination.style-two .page-link {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 3px;
  padding-bottom: 3px;
}

.pagination-wrap .pagination.style-two .page-link:hover {
  color: #2F1B50;
  border-color: #2F1B50;
}

.bg-outline-info {
  background-color: transparent;
  border: 1px solid #2F1B50 !important;
  color: #2F1B50;
}

.bg-outline-dark{
  background-color: transparent;
  border: 1px solid #2F1B50 !important;
  color: #2F1B50;
}

.dashboard-section.pt-120 {
  padding-top: 60px;
}

.form-wrapper input{
  border: 1px solid #aaa;
  border-radius: 4px;
}

.tags-input { 
  display: flex; flex-wrap: wrap; border: 1px solid #ccc; padding: 5px; border-radius: 5px; min-height: 40px; cursor: text; 
}

.tag { 
  background: #2F1B50 !important; 
}

.tag span {
  cursor: pointer;
  margin-left: 5px;
  background: #F96F0B;
  border-radius: 20px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 5px;
}

.tag span:hover {
  background: #000;
}

.tags-input input { 
  border: none; outline: none; flex: 1; min-width: 120px; 
}

/* Estilo del dropdown con punta */
.cart-dropdown {
    position: relative;
    border-radius: 0.5rem;
}

/* La punta */
.cart-dropdown::before {
    content: '';
    position: absolute;
    top: -9px; /* distancia desde el borde superior del dropdown */
    right: 10px; /* distancia desde el borde derecho del dropdown */
    border-width: 0 10px 10px 10px; /* ancho de la punta */
    border-style: solid;
    border-color: transparent transparent #212529 transparent; /* color de la punta (igual que bg-dark) */
}

.show-product{
  background: #F96F0B;
  color: white;
  font-weight: bold;
  font-size: 16px;
  border: 1px solid #F96F0B;
  bottom: 20px !important;
  border-radius: 21px;
}

.show-product:hover{
  background: #1f2230;;
  color: #fff;
  border: 1px solid #1f2230;
}

.qty-product{
  background: #1f2230 !important;
  padding: 7px !important;
}

.cart-bounce {
    animation: bounce 0.5s;
}

@keyframes bounce {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.3); color: yellow; }
    100% { transform: scale(1); color: inherit; }
}

.txt-search{
  height: 46px;
}

    .payment-choices {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .payment-option2 {
        flex: 1;
        border: 2px solid #ddd;
        border-radius: 12px;
        padding: 20px;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        background: #fff;
    }

    .payment-option2:hover {
        border-color: #F96F0B;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    }

    .payment-option2 input {
        display: none;
    }

    .payment-option2 input:checked + .content {
        border-color: #F96F0B;
        background: #2F1B50;
        color: #fff;
    }

    .payment-option2 .icon {
        font-size: 2rem;
        margin-bottom: 10px;
        color: #6c757d;
    }

    .payment-option2 input:checked + .content .icon {
        color: #F96F0B;
    }

    .payment-option2 small {
        color: #F96F0B;
    }

    .payment-logos img {
        height: 58px;
        margin: 0 4px;
        opacity: 0.7;
        filter: grayscale(100%);
        transition: all 0.3s ease;
    }

    .payment-option2 input:checked + .content .payment-logos img {
        filter: grayscale(0%);
        opacity: 1;
    }
