.date-input-wrapper {
    position: relative;
    width: 100%;
}

.date-input-wrapper input {
    width: 100%;
    height: 45px;
    padding: 0 45px 0 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
}

.date-input-wrapper i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    cursor: pointer;
    font-size: 18px;
}
         .checkout-section {
      padding: 40px 0;
    }

    .container {
      width: 92%;
      max-width: 1300px;
      margin: 0 auto;
    }

    .cart-icon {
    position: relative;
    font-size: 22px;
    color: #2b2b74;
    padding: 18px 15px !important;
    }

    .cart-icon i {
        font-size: 24px;
    }

    .cart-count {
    position: absolute;
    top: 8px;
    right: 6px;
    background: #9d4948;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .checkout-wrapper {
      display: flex;
      gap: 40px;
      align-items: flex-start;
    }

    .billing-column {
      flex: 0 0 58%;
    }

    .summary-column {
      flex: 0 0 42%;
    }

    .checkout-title {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 25px;
      color: #111;
    }

    .billing-form .form-row {
      display: flex;
      gap: 20px;
      margin-bottom: 14px;
    }

    .billing-form .form-group {
      width: 100%;
      margin-bottom: 14px;
    }

    .billing-form label {
      display: block;
      font-size: 12px;
      color: #6d7b8c;
      margin-bottom: 8px;
    }

    .billing-form input,
    .billing-form textarea {
      width: 100%;
      border: 1px solid #cfd6dd;
      border-radius: 4px;
      background: #fff;
      padding: 12px 14px;
      font-size: 14px;
      color: #333;
      outline: none;
    }

    .billing-form input:focus,
    .billing-form textarea:focus {
      border-color: #8fa3b8;
    }

    .billing-form textarea {
      min-height: 140px;
      resize: vertical;
    }

    .order-box {
      width: 100%;
    }

    .order-table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 25px;
    }

    .order-table th,
    .order-table td {
      padding: 14px 8px;
      text-align: left;
      font-size: 12px;
      color: #68798a;
      border-bottom: 1px solid #d9dee3;
    }

    .order-table th:last-child,
    .order-table td:last-child {
      text-align: right;
    }

    .order-total-row td {
      font-size: 13px;
      color: #222;
      padding-top: 18px;
      padding-bottom: 18px;
    }

    .payment-list {
      border-top: 1px solid #d9dee3;
      margin-top: 8px;
    }

    .payment-item {
      padding: 18px 0;
      border-bottom: 1px solid #d9dee3;
      font-size: 13px;
      color: #6f7d8d;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .payment-item input[type="radio"] {
      accent-color: #2b2b74;
    }

    .place-order-btn {
      width: 100%;
      margin-top: 20px;
      background: #9d4948;
      border: none;
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      padding: 16px 20px;
      border-radius: 6px;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .place-order-btn:hover {
      background: #eab7d4;
    }

    @media (max-width: 991px) {
      .checkout-wrapper {
        flex-direction: column;
      }

      .billing-column,
      .summary-column {
        flex: 0 0 100%;
        width: 100%;
      }
    }

    @media (max-width: 576px) {
      .billing-form .form-row {
        flex-direction: column;
        gap: 0;
      }

      .checkout-title {
        font-size: 22px;
      }
    }


    		/*  Newsletter Box  */
		.subscribe-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    align-items: center;
    justify-content: center;
}

.popup-box {
    background: #fff;
    width: 90%;
    max-width: 400px;
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    animation: popupFade 0.3s ease;
}

.popup-box h3 {
    margin-bottom: 10px;
    color: #111;
    font-size: 26px;
}

.popup-box p {
    color: #666;
    font-size: 15px;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 26px;
    cursor: pointer;
    color: #ff1f2d;
}

.newsletter-area {
    
    padding-top: 0;
    padding-bottom: 0;
}

.newsletter-box {
    width: 86%;
    max-width: 1200px;
    background: #9d4948;
	margin: 0 auto;
    padding: 28px 95px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.newsletter-box h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    white-space: nowrap;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 15px;
}

.newsletter-input {
    position: relative;
    width: 470px;
}

.newsletter-input input {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 4px;
    padding: 0 55px 0 22px;
    font-size: 14px;
    outline: none;
    background: #fff;
}

.newsletter-input i {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa3ad;
    font-size: 20px;
}

.newsletter-form button {
    height: 52px;
    padding: 0 36px;
    border: none;
    border-radius: 4px;
    background: #080808;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.newsletter-form button:hover {
    background: #eab7d4;
}

@media (max-width: 991px) {
    .newsletter-box {
        padding: 25px 30px;
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        justify-content: center;
    }

    .newsletter-input {
        width: 100%;
        max-width: 470px;
    }
}

@media (max-width: 576px) {
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .newsletter-box h4 {
        white-space: normal;
    }
}

@keyframes popupFade {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/*  Newsletter Box  */
