/* Copy Animation */
::selection{
  background-color: #3390FF;
  color: #fff;
}

.base-color{
  color: hsl(var(--main)) !important;
}

.copyInput {
	display: inline-block;
	line-height: 50px;
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	text-align: center;
	font-size: 14px;
	cursor: pointer;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
  }
  
  .copied::after {
	position: absolute;
	top: 8px;
	right: 12%;
	width: 100px;
	display: block;
	content: "COPIED";
	font-size: 1em;
	padding: 5px 5px;
	color: #fff;
	background-color: #FF7000;
	border-radius: 3px;
	opacity: 0;
	will-change: opacity, transform;
	animation: showcopied 1.5s ease;
  }
  
  @keyframes showcopied {
	0% {
		opacity: 0;
		transform: translateX(100%);
	}
	50% {
		opacity: 0.7;
		transform: translateX(40%);
	}
	70% {
		opacity: 1;
		transform: translateX(0);
	}
	100% {
		opacity: 0;
	}
  }




  .cookies-card {
	width: 520px;
	padding: 30px;
	color: #1E2337;
	position:  fixed;
	bottom: 15px;  
	left: 15px;
	z-index: 999999;
	transition: all .5s;
	background: #d1d1d1;
    border-radius: 5px;
  }
  
  .cookies-card.hide{
	bottom: -500px !important;
  }
  .radius--10px {
	border-radius: 10px;
  }
  
  .cookies-card__icon {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background-color: #6e6f70;
    color: #fff;
	font-size: 32px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
  }
  
  .cookies-card__content {
	margin-bottom: 0;
  }
  
  .cookies-btn {
	color: #363636;
	text-decoration: none;
	padding: 10px 35px;
	margin: 3px 5px;
	display: inline-block;
	border-radius:  999px;
  }
  
  .cookies-btn:hover {
	color: #363636;
  }

  
  @media (max-width: 767px) {
	  .cookies-card {
		  width:  100%;
		  left: 0;
		  bottom:  0;
		  font-size:  14px;
		  padding:  15px;
	  }
  }




.hover-input-popup {
        position: relative;
    }
    .input-popup {
        display: none;
    }
    .hover-input-popup .input-popup {
        display: block;
        position: absolute;
        bottom: 130%;
        left: 50%;
        width: 280px;
        background-color: #1a1a1a;
        color: #fff;
        padding: 20px;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }
    .input-popup::after {
        position: absolute;
        content: '';
        bottom: -19px;
        left: 50%;
        margin-left: -5px;
        border-width: 10px 10px 10px 10px;
        border-style: solid;
        border-color: transparent transparent #1a1a1a transparent;
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    .input-popup p {
        padding-left: 20px;
        position: relative;
    }
    .input-popup p::before {
        position: absolute;
        content: '';
        font-family: 'Line Awesome Free';
        font-weight: 900;
        left: 0;
        top: 4px;
        line-height: 1;
        font-size: 18px;
    }
    .input-popup p.error {
        text-decoration: line-through;
    }
    .input-popup p.error::before {
        content: "\f057";
        color: #ea5455;
    }
    .input-popup p.success::before {
        content: "\f058";
        color: #28c76f;
    }



 .show-filter{
  display: none;
}
@media(max-width:767px){
  .responsive-filter-card{
      display: none;
      transition: none;
  }
  .show-filter{
      display: block;
  }
}




/****************************************/
/****************************************/
/****************************************/
/********** Custom Style **************/
/****************************************/
/****************************************/
/****************************************/

.header-bottom .menu li a {
    color: #fff !important;
}

.first-banner-section h1 {
    color: #fff;
}
.first-banner-section p {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}
.first-banner-section .sec2 {
    color: #fff;
    font-size: 15px;
}
.bg-pink {
    background-color: #EC1C65;
}
.bg-purple{
    background-color: #541de7;
}
.discount-timmer {
    background: linear-gradient(90deg, #f52b7e, #e61a5f);
    color: #fff;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
}
.discount-timmer #countdown {
    background: #fc5185;
    display: inline-block;
    padding-right: 15px;
    padding-left: 15px;
}


/* --- MAIN SECTION --- */
.offers-section {
    background-color: #f9f9ff;
}

/* --- OFFER BOX STYLE --- */
.offer-box {
    background: linear-gradient(135deg, #198754, #7932f4);
    color: white;
    border-radius: 12px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensure content is evenly spaced inside the box */
    flex-grow: 1; /* Both boxes take equal space */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Both boxes will stretch to the same height */
}

/* Hover effect for the offer boxes */
.offer-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.offer-box h2 {
    font-size: 2.0rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.offer-box p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #f0eaff;
}

.price-text {
    font-size: 1.1rem;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.8;
    margin-right: 5px;
}

/* --- BUTTONS --- */
.black-friday-btn {
    background-color: #FF7000;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.black-friday-btn:hover {
    background-color: #0f0540;
}

/* --- DOMAIN SEARCH --- */
.domain-input-group {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    margin-top: 15px;
}

.domain-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    color: #000000;
    padding-left: 20px;
}

.search-btn {
    background-color: #FF7000;
    color: #fff;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background-color: #0f0540;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 992px) {
    .offer-box {
        height: auto; /* Auto height for stacked items on smaller screens */
        text-align: center;
    }

    .domain-input-group {
        flex-direction: column;
    }

    .search-btn {
        width: 100%;
        border-radius: 0 0 12px 12px;
    }
}


/* --- RIGHT CARD: DOMAIN SEARCH FORM --- */
.right-offer {
    background: linear-gradient(135deg, #198754, #7932f4);
    color: white;
    border-radius: 12px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}



/* --- DOMAIN SEARCH GROUP --- */
.domain-input-group {
    width: 100%;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    margin-top: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.form-group {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

/* Search icon (left side) */
.domain-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c2fbb;
    font-size: 1.1rem;
}

/* Input field */
.domain-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 130px 12px 45px; /* padding for icon and button space */
    font-size: 1rem;
    border-radius: 30px;
    color: #000;
}

/* Search button (right side) */
.search-btn {
    position: absolute;
    right: 6px;
    top: 5px;
    bottom: 5px;
    background-color: #FF7000;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 0 20px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background-color: #0f0540;
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 576px) {
    .form-group {
        flex-direction: column;
        align-items: stretch;
    }

    .domain-input {
        padding: 12px 20px 12px 45px;
        width: 100%;
    }

    .search-btn {
        position: relative;
        width: 100%;
        margin-top: 10px;
        border-radius: 30px;
    }
}







/* --- FORM AND INPUT STYLES --- */
/*.domain-search-icon {*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 5px;*/
/*    transform: translateY(-50%);*/
/*    color: #6c2fbb;*/
/*    font-size: 1.2rem;*/
/*}*/

/*.domain-search-icon-reset {*/
/*    right: -265px;*/
/*}*/

/*.right-offer .form-control.form--control {*/
/*    padding: 10px 50px;*/
/*}*/


/* Container */
.domain-form {
    width: 100%;
    margin-top: 20px;
}

.domain-group {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 40px;
    padding: 0 10px;
    overflow: hidden;
    border: 1px solid #ddd;
}

/* Left Icon */
.icon-left {
    padding: 0 15px;
    color: #6b6b6b;
    font-size: 18px;
}

/* Input */
.domain-group input {
    flex: 1;
    border: none;
    padding: 15px 10px;
    font-size: 16px;
    outline: none;
}

/* Search Button */
.btn-search {
    background: #ff6b00;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    margin-left: 10px;
    white-space: nowrap;
}

.btn-search:hover {
    opacity: 0.9;
}

