/* ============================
   INDEX BLOCK (Homepage Order Section)
============================ */

/* FULL WIDTH YELLOW BACKGROUND */
.index-block-wrapper {
    width: 100%;
   /* background: #f7d84a;*/
    padding: 0;
}

/* TITLE BAR ACROSS TOP BELOW HEADER */
.index-title-bar {
    width: 100%;
   /* background: #f7d84a;*/
    padding: 15px 20px;
    border-bottom: 1px solid #e0c63f;
}

.index-title-bar h3 {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
}

/* MAIN FLEX ROW */
.index-block-inner {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 30px;
    padding: 20px;
}

/* LEFT SIDE */
.index-left {
    width: 260px;
}

.index-left img {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.index-qty input {
    width: 80px;
    padding: 6px;
    margin-top: 10px;
}

/* RIGHT SIDE */
.index-right {
    flex: 1;
}

.price-red {
    color: red;
    font-weight: bold;
}

/* BUY BUTTON RIGHT ALIGNED */
.index-buy-wrapper {
    text-align: right;
    margin-top: 15px;
}

.index-buy-btn {
    padding: 12px 20px;
    background: #0073e6;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.index-buy-btn:hover {
    background: #005bb5;
}

/* MOBILE */
@media (max-width: 768px) {
    .index-block-inner {
        flex-direction: column;
        text-align: center;
    }

    .index-buy-wrapper {
        text-align: center;
    }
}


/* ============================
   PRODUCT PAGE
============================ */
/* ============================
   GLOBAL SHARED ELEMENTS
============================ */
.product-buy-button,
.buy-button {
    padding: 12px 20px;
    background: #0073e6;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s ease;
}

.product-buy-button:hover,
.buy-button:hover {
    background: #005bb5;
}

#map-qty,
.order-qty input {
    width: 80px;
    padding: 6px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}


/* ============================
   INDEX BLOCK – HOMEPAGE
============================ */
.order-top-bar {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    font-family: Arial, sans-serif;
}

.order-image {
    flex: 0 0 260px;
}

.order-image img {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.order-qty {
    margin-top: 12px;
}

.order-info {
    flex: 1;
}

.order-info h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
}

.product-description {
    font-size: 16px;
    margin-bottom: 12px;
}

.product-price {
    font-size: 20px;
    margin-bottom: 15px;
}


/* ============================
   PRODUCT PAGE
============================ */
.product-page {
    max-width: 1024px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.product-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.product-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.product-image {
    width: 45%;
}

.product-image img {
    width: 100%;
    border-radius: 6px;
}

.product-info {
    width: 55%;
}

.product-buy-box {
    margin-top: 20px;
}
.intl-note {
    font-size: 11px;
    color: #cc0000;
    margin-top: -2px;   /* sits almost flush under the dropdown */
    line-height: 1.1;
}
.elementor-field-group .intl-note {
    margin-top: -6px;   /* pulls it upward */
}

/* ============================
   MOBILE
============================ */
@media (max-width: 768px) {
    .order-top-bar,
    .product-flex {
        flex-direction: column;
        text-align: center;
    }

    .order-image,
    .product-image,
    .order-info,
    .product-info {
        width: 100%;
    }

    .product-buy-box {
        margin-top: 20px;
    }
	
}

/* ============================
   CHECKOUT PAGE LAYOUT
============================ */
.checkout-container {
    max-width: 1024px;
    margin: 0 auto;
    padding-left: 20px;
    font-family: Arial, sans-serif;
}

.checkout-title {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
}
.same-line {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0;              /* removes Elementor spacing */
    padding: 0;             /* keeps it tight */
    line-height: 1.2;       /* keeps text aligned with checkbox */
}

#sameAsShipping {
    margin: 0;              /* removes default checkbox spacing */
}
/* ============================
   TWO COLUMN LAYOUT
============================ */
.checkout-columns {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.checkout-column {
    width: 50%;
}

/* ============================
   INPUTS & SELECTS
============================ */
.checkout-column input,
.checkout-column select {
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.checkout-column input:focus,
.checkout-column select:focus {
    border-color: #0073e6;
    outline: none;
}

/* ============================
   TOTALS SECTION
============================ */
.checkout-totals {
    width: 100%;
	margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #ddd;
	 
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 10px 4px 10px;
    font-size: 16px;
}
.total-row1 {
    display: flex;
    justify-content: space-between;
    padding: 4px 10px 4px 10px;
    font-size: 16px;
	background: #eee;
}


.total-final {
    font-size: 20px;
    font-weight: bold;
    padding-top: 12px;
    border-top: 1px solid #ccc;
}

/* ============================
   PAYMENT SECTION
============================ */
.checkout-payment {
	margin-top: 30px;
}

#card-element {
    height: 60px;
	padding: 12px;
    border: 1px solid #aaa;
    border-radius: 4px;
    background: #fafafa;
    margin-top: 12px;
    margin-bottom: 12px;
}

#card-errors {
    margin-top: 8px;
    font-size: 14px;
    color: red;
}

/* ============================
   BUTTON
============================ */
.checkout-buy-btn {
    width: 100%;
    margin-top: 25px;
	padding: 14px;
    background: #0073e6;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.checkout-buy-btn:hover {
    background: #005bb5;
}

/* ============================
   MOBILE RESPONSIVE
============================ */
@media (max-width: 768px) {
    .checkout-columns {
        flex-direction: column;
        gap: 20px;
    }

    .checkout-column {
        width: 100%;
    }

    .checkout-buy-btn {
        font-size: 20px;
        padding: 16px;
    }
}
#form-errors {
    display: none;
    background: #ffdddd;
    border-left: 4px solid #cc0000;
    padding: 10px;
    margin-bottom: 15px;
    color: #900;
    font-size: 14px;
}

.input-error {
    border: 2px solid red !important;
}
