/* ===========================
   Global Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #15222E;
    line-height: 1.6;
}

/* ===========================
   Offer Banner
   =========================== */
.offer-banner {
    background: #030211;
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.offer-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.offer-text {
    font-size: 17px;
    font-weight: 600;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    gap: 12px;
    align-items: center;
}

.time-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 39, 133, 0.5);
    border-radius: 8px;
    padding: 12px 10px 20px;
    text-align: center;
    min-width: 58px;
}

.time-num {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
}

.time-box small {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.separator {
    font-size: 30px;
    color: #a4a4a4;
    margin-top: -10px;
}

/* ===========================
   Trust Bar
   =========================== */
.trust-bar {
    background: #F8FBFF;
    padding: 20px 0;
    margin: 40px auto;
    border-radius: 12px;
    max-width: 1130px;
}

.trust-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

.trust-item svg {
    flex-shrink: 0;
}

.divider {
    width: 1px;
    height: 35px;
    background: #e1e6eb;
}

/* ===========================
   Cart Container
   =========================== */
.cart-container {
    max-width: 1135px;
    margin: 40px auto;
    padding: 0 20px;
}

/* ===========================
   Product Card
   =========================== */
.product-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.product-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Custom Dropdown */
.custom-dropdown {
    position: relative;
}

.dropdown-button {
    width: 100%;
    padding: 12px 18px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-align: left;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-button:after {
    content: '▼';
    font-size: 10px;
    color: #666;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-top: 4px;
    display: none;
    z-index: 10;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.custom-dropdown.open .dropdown-content {
    display: block;
}

.dropdown-item {
    padding: 12px 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #f8f9fa;
}

.dropdown-item.active {
    background: #e3f1ff;
    color: #146EF5;
}

/* Pricing Display */
.pricing-display {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.discount-badge {
    background: #FF2785;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.strike-price {
    text-decoration: line-through;
    color: #7c7d7c;
    font-size: 13px;
    margin-bottom: 4px;
}

.main-price {
    font-size: 28px;
    font-weight: 700;
    color: #15222E;
}

.price-suffix {
    font-size: 16px;
    font-weight: 400;
}

/* Renewal Info */
.renewal-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 12px;
    background: #f0fdf4;
    border-radius: 6px;
    font-size: 13px;
    color: #15222E;
}

/* Free Domain Alert */
.free-domain-alert {
    margin-top: 20px;
    padding: 13px 16px;
    background: #E6F8EC;
    border-radius: 6px;
    display: none;
}

.free-domain-alert.show {
    display: block;
}

.alert-content {
    font-size: 14px;
    color: #051223;
}

/* ===========================
   Domain Search Section
   =========================== */
.domain-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
}

.domain-search-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.domain-input {
    padding: 16px 50px 16px 16px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 15px;
    border-radius: 4px;
}

.domain-info {
    margin-top: 15px;
}

.domain-note {
    font-size: 13px;
    color: #8B8E8C;
    margin-bottom: 10px;
}

.domain-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 10px 0;
}

.domain-extensions {
    font-size: 13px;
    color: #8B8E8C;
    margin: 0;
}

.domain-extensions span {
    color: #1f2937;
    font-weight: 500;
}

/* Domain Suggestions */
.domain-suggestions {
    margin-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.domain-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.domain-name {
    font-size: 16px;
    font-weight: 500;
}

.domain-price-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.domain-price {
    text-align: right;
}

.add-btn {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 4px;
    white-space: nowrap;
}

.domain-not-available {
    color: #6B7B8B;
    background: #f5f5f5;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 13px;
}

/* ===========================
   Order Summary
   =========================== */
.order-summary {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sticky-summary {
    position: sticky;
    top: 120px;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.summary-header h5 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.btn-close-summary {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    display: none;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
}

.item-name {
    font-weight: 600;
    margin-bottom: 8px;
}

.item-price {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.free-badge {
    background: #E1EFFF;
    color: #146EF5;
    padding: 3px 7px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    margin-left: 4px;
}

.domain-name {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.discount-item {
    color: #FF2785;
}

.discount-item svg {
    vertical-align: middle;
    margin-right: 4px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    font-size: 16px;
}

.tax-note {
    font-size: 12px;
    color: #79797F;
    font-weight: 400;
    margin-top: 4px;
}

.total-price {
    text-align: right;
}

.main-total {
    font-size: 24px;
    font-weight: 600;
    color: #17191C;
}

/* Coupon Section */
.coupon-section {
    padding: 20px 0;
}

.coupon-link {
    color: #007FFF;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
}

.coupon-link:hover {
    text-decoration: underline;
}

#couponForm {
    margin-top: 15px;
}

.input-group {
    display: flex;
    gap: 8px;
}

.coupon-message {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
}

.coupon-message.success {
    color: #1A9647;
}

.coupon-message.error {
    color: #F63E3E;
}

/* Checkout Button */
.btn-checkout {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    margin-top: 20px;
}

/* Security Info */
.security-info {
    margin-top: 30px;
    text-align: center;
}

.security-item {
    font-size: 15px;
    font-weight: 500;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.no-hidden-charges {
    font-size: 13px;
    color: #6B7B8B;
    margin-top: 20px;
}

/* ===========================
   Exit Popup
   =========================== */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
}

.popup-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-content {
    background: #000;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    position: relative;
    padding: 40px;
    text-align: center;
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    color: #656565;
    font-size: 32px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background 0.3s;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.popup-badge {
    display: inline-block;
    background: #ff188b;
    color: white;
    font-size: 24px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    position: relative;
}

.popup-badge::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ff188b;
}

.popup-title {
    color: white;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 30px;
}

.coupon-display {
    margin: 30px 0;
}

.coupon-label {
    color: #a4a4ff;
    font-size: 14px;
    margin-bottom: 15px;
}

.coupon-box {
    background: linear-gradient(90deg, #000 60%, #00002b 100%);
    border: 1px dashed #9d72ff;
    border-radius: 12px;
    padding: 20px;
    margin: 15px auto;
    max-width: 330px;
}

.coupon-value {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(98.43deg, #3535ff -22.81%, #fff 47.03%, #7d66ff 116.88%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-expires {
    color: #939393;
    font-size: 14px;
    margin-top: 20px;
}

.popup-timer {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
}

.popup-time-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 39, 133, 0.5);
    border-radius: 8px;
    padding: 14px 10px 20px;
    text-align: center;
    min-width: 72px;
}

.popup-time-num {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
}

.popup-time-box small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.claim-btn {
    background: white;
    color: #000;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    margin-top: 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.claim-btn:hover {
    background: #CECEFF;
}

/* ===========================
   Footer
   =========================== */
.cart-footer {
    background: #f8f9fa;
    padding: 30px 0;
    margin-top: 60px;
    text-align: center;
    color: #9FA3AD;
}

.cart-footer a {
    color: #29237B;
    text-decoration: none;
    margin: 0 10px;
}

.cart-footer a:hover {
    text-decoration: underline;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 991px) {
    .sticky-summary {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 500;
        border-radius: 12px 12px 0 0;
        padding: 15px 20px;
    }

    .summary-content {
        display: none;
    }

    .btn-close-summary {
        display: block;
    }

    .summary-content.show {
        display: block;
    }

    .summary-header {
        cursor: pointer;
    }
}

@media (max-width: 768px) {
    .offer-banner .container {
        justify-content: center;
        gap: 15px;
    }

    .offer-text {
        display: none;
    }

    .trust-bar {
        display: none;
    }

    .product-card {
        padding: 20px 15px;
    }

    .pricing-display {
        justify-content: flex-start;
    }

    .domain-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .domain-price-wrapper {
        width: 100%;
        justify-content: space-between;
    }

    .time-box {
        min-width: 50px;
        padding: 8px 5px 15px;
    }

    .time-num {
        font-size: 18px;
    }

    .time-box small {
        font-size: 9px;
    }

    .popup-content {
        padding: 30px 20px;
    }

    .popup-title {
        font-size: 20px;
    }

    .coupon-value {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .discount-badge {
        font-size: 11px;
        padding: 4px 8px;
    }

    .main-price {
        font-size: 22px;
    }

    .summary-header h5 {
        font-size: 18px;
    }

    .main-total {
        font-size: 20px;
    }
}
/* Checkout Billing Box (Reference Match) */

.checkout-box {

    margin-top: 25px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;

}

.checkout-box-inner {

    padding: 22px;

}

.checkout-option {

    display: block;

}

.checkout-radio {

    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;

}

.checkout-radio input {

    transform: scale(1.2);

}

.checkout-panel {

    margin-top: 15px;

}

.checkout-panel label {

    font-size: 13px;
    font-weight: 500;
    margin-bottom: 4px;
    display: block;

}

.checkout-status {

    font-size: 13px;
    margin-top: 8px;

}


/*costom code for registration form*/

.iti{
    display : block !important;
}

.gst-set{
    display:flex;
    align-items : center;
    gap:10px;
}

