.agc-close-btn i {
    border: 1px solid rgb(255, 255, 255);
    padding: 1.2rem;
}

.agc_header {
    margin-bottom: 2rem;
}

.addGiftCardModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    background-color: rgba(0, 0, 0, 0.486);
    width: 100%;
    max-width: 100%;
    overflow-y: scroll;
    height: 100%;
    padding: 4rem;
}

.agcmodal-Content {
    margin: 0 auto;
    max-width: 100rem;
    background-color: #3e3e3e;
    padding: 2rem;
    position: relative;

}

.agc-body {
    display: grid;
    grid-template-columns: 35rem 1fr;
    gap: 1rem;
}

.agc-body-content-left {
    grid-column: 1;
}

.agc-body-content-right {
    grid-column: 2;
    overflow-x: hidden;
    overflow-y: scroll;
    max-height: 80rem;
    scrollbar-width: none;
}

.gift-card-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    background-color: #262626;
    padding: 2rem;
}

.gift-card-body .gc-top {
    background-color: #000000;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1.2rem;
}

.gift-card-body .gc-top h5 {
    font-size: 1.6rem;
    line-height: 2rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    grid-column: 1/ span 2;
    grid-row: 1/ span 1;
}

.gift-card-body .gc-top p {
    font-size: 1.2rem;
    line-height: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    color: white;
    grid-column: 3/ span 1;
    grid-row: 1/ span 1;
}

.gift-card-body .gc-top h6 {
    font-size: 3.8rem;
    line-height: 3.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: yellow;
    margin: auto;
    grid-column: 1/ span 1;
    grid-row: 2/ span 1;
}

.gift-card-body .gc-top .gift-box-icon {
    color: red;
    margin: auto;
    font-size: 5.2rem;
    line-height: 5.3rem;
    grid-column: 2/ span 1;
    grid-row: 2/ span 1;
}

.gift-card-body .gc-top .gc-amount {
    margin: auto;
    padding: 1rem 2rem;
    background: navy;
    border-radius: 0.5rem;
    grid-column: 3/ span 1;
    grid-row: 2/ span 1;
}

.gift-card-body .gc-top .gc-amount .amount {
    font-size: 2.2rem;
    line-height: 2.6rem;
    font-weight: 700;
    text-transform: uppercase;
    color: yellow;
    margin: auto;
}

.border-bottom-1px {
    width: 100%;
    border-bottom: 0.1rem solid grey;
}

.gc-individual-card-amount p {
    margin: 0;
}

.gc_footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.gc_box {
    grid-column: 1 / span 1;
    grid-row: 1 / span 2;
}

.gc_btn {
    grid-column: 2 / span 1;
    grid-row: 1 / span 1;
    padding: 1rem 1.5rem;
    margin: auto;
    background-color: rgba(0, 128, 0, 0.2);
    color: #00ff00;
    border-radius: 0.5rem;
}

p.gc_del_date {
    grid-column: 2 / span 1;
    grid-row: 2 / span 1;
    font-size: 1.4rem;
    line-height: 2rem;
    font-weight: 400;
    margin: 0 auto;
}

.gc_box img {
    max-width: 10rem;
}

p.gcmsgtxt {
    padding: 1rem;
    border: 0.1rem solid grey;
    border-radius: 0.5rem;
    font-family: 'Abtera Ragular', sans-serif;
}

.gcmf-container {
    max-width: 100%;
    margin: 0 auto;
}

.gcmf-section {
    margin-bottom: 3rem;
}


/* Amount Selection */
.gcmf-amount-section {
    border: 0.1rem solid #747474;
    padding: 2rem;
    border-radius: 0.3rem;
}

.gcmf-amount-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.gcmf-amount-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.gcmf-amount-option {
    padding: 1.2rem 1rem;
    background-color: #111;
    border: 0.1rem solid #747474;
    border-radius: 0.3rem;
    font-size: 1.6rem;
    font-weight: bold;
    min-width: 10rem;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.gcmf-amount-option.gcmf-selected {
    background-color: #0a2e64;
    border-color: #0a2e64;
}

/* Address Selection */
.gcmf-address-section {
    margin-top: 3rem;
}

.gcmf-swiper {
    width: 100%;
    overflow: hidden;
}

.gcmf-swiper-slide {
    width: 28rem;
    height: auto;
    box-sizing: border-box;
}

.gcmf-address-card {
    border: 0.1rem solid #747474;
    padding: 1.5rem;
    border-radius: 0.3rem;
    height: 100%;
    position: relative;
    box-sizing: border-box;
}

.gcmf-address-type {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    border-radius: 0.3rem;
    margin-bottom: 1rem;
}

.gcmf-address-type.gcmf-default {
    background-color: #a2e5a2;
    color: #000;
}

.gcmf-address-type.gcmf-temporary {
    background-color: #e5a2a2;
    color: #000;
}

.gcmf-address-name {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
}

.gcmf-address-details {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.gcmf-address-checkbox {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 1.8rem;
    height: 1.8rem;
    cursor: pointer;
}

.gcmf-add-address-card {
    border: 0.1rem solid #747474;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem 1.5rem;
    cursor: pointer;
    border-radius: 0.3rem;
    height: 100%;
}

.gcmf-add-address-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.gcmf-add-address-text {
    font-size: 1.4rem;
}

/* Delivery Info */
.gcmf-delivery-info-section {
    margin-top: 3rem;
}

.gcmf-delivery-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.gcmf-form-group {
    flex: 1;
}

.gcmf-form-label {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #ccc;
}

.gcmf-form-input {
    width: 100%;
    background-color: transparent;
    border: 0.1rem solid #747474;
    padding: 1.2rem 1rem;
    border-radius: 0.3rem;
    color: #fff;
    font-size: 1.4rem;
}

.gcmf-form-textarea {
    width: 100%;
    background-color: transparent;
    border: 0.1rem solid #747474;
    padding: 1.2rem 1rem;
    border-radius: 0.3rem;
    color: #fff;
    font-size: 1.4rem;
    min-height: 12rem;
    resize: vertical;
}

.gcmf-date-input-wrapper {
    position: relative;
}

/* Quantity */
.gcmf-quantity-section {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.gcmf-quantity-controls {
    display: flex;
    align-items: center;
}

.gcmf-quantity-btn {
    width: 3.6rem;
    height: 3.6rem;
    background-color: #111;
    border: 0.1rem solid #747474;
    border-radius: 0.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    cursor: pointer;
}

.gcmf-quantity-input {
    width: 4rem;
    height: 3.6rem;
    background-color: transparent;
    border: 0.1rem solid #747474;
    color: #fff;
    text-align: center;
    font-size: 1.4rem;
    margin: 0 0.8rem;
}

.gcmf-cart-btn,
.gcmf-checkout-btn {
    padding: 1.2rem 2rem;
    font-size: 1.4rem;
    border-radius: 0.3rem;
    border: none;
    cursor: pointer;
}

.gcmf-cart-btn {
    background-color: #111;
    color: #fff;
    border: 0.1rem solid #747474;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gcmf-checkout-btn {
    background-color: #333;
    color: #fff;
    flex: 1;
    font-weight: bold;
}



@media (max-width: 600px) {
    .gcmf-delivery-row {
        flex-direction: column;
        gap: 1rem;
    }

    .gcmf-quantity-section {
        flex-direction: column;
    }

    .gcmf-quantity-controls {
        margin-bottom: 1rem;
    }
}

.gcmf-addressSwiper .swiper-wrapper {
    height: auto;
}

@media(max-width: 991px) {
    .agc-body-content-left {
        display: none;
    }

    .agc-body {
        grid-template-columns: 1fr;
    }

    .agc-body-content-right {
        grid-column: 1;
    }
}

input:focus-visible {
    outline: none;
}

textarea:focus-visible {
    outline: none;
}