.gift_voucher_main_wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.gift_voucher_header_image{
    width: 100%;
    max-height: 370px;
    object-fit: cover;
}
.gift_voucher_title{
    color: var(--black-color);
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 30px;
    margin-top: 20px;
    text-align: center;
}
.gift_voucher_subtitle{
    font-size: 22px;
    color: var(--black-color);
    font-family: var(--font-main);
    text-align: center;
}
.gift_voucher_steps_image{
    margin-top: 40px;
    width: 100%;
    max-height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.gift_voucher_steps_image img{
    width: 70%;
    height: 100%;
}
.gift_voucher_button_section{
    margin-top: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
.gift_voucher_button_section button {
  padding: 10px 20px;
  font-family: var(--font-main);
  font-size: 20px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  height: 60px;
  width: 400px;
}

.gift_voucher_price_button{
  border: 1px solid var(--pink-color);
  background-color: transparent;
  color: var(--pink-color);
}
.gift_voucher_price_button:hover {
  background-color: var(--pink-color);
  color: var(--white-color);
}
.gift_voucher_buy_button{
  border: 1px solid var(--pink-color);
  background-color: var(--pink-color);
  color: var(--white-color);
}
.gift_voucher_buy_button:hover {
    background-color: var(--white-color);
    color: var(--pink-color);
}
.gift_voucher_items_grid_section {
    display: flex;
    width: 100%;
    margin-top: 40px;
    align-items: center;
    justify-content: center;
}
.gift_voucher_items_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px;
    width: 60%;
}
.gift_voucher_upsells_section{
    width: 100%;
    margin-top: 60px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}





.gift_voucher_order_box {
    width: 100%;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.gift_voucher_order_box_inner {
    display: flex;
    flex-direction: row-reverse;
    width: 700px;
    min-height: 250px;
    overflow: hidden;
}
.gift_voucher_order_image {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gift_voucher_order_image img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 16px;
}
.gift_voucher_order_data {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 30px 20px;
}
.gift_voucher_order_title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: right;
    direction: rtl;
    font-family: var(--font-main);
}
.gift_voucher_order_details {
    font-size: 16px;
    color: var(--dark-gray-color);
    margin-bottom: 20px;
    text-align: right;
    direction: rtl;
    font-family: var(--font-main);
}
.gift_voucher_order_quantity {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    margin-bottom: 20px;
    font-family: var(--font-main);
    font-size: 18px;
    color: var(--dark-gray-color);
}
.gift_voucher_order_quantity button {
    width: 32px;
    height: 32px;
    font-size: 20px;
    border: none;
    color: var(--dark-gray-color);
    border-radius: 50%;
    cursor: pointer;
    margin: 0 10px;
    background-color: var(--white-color);
    border: 1px solid var(--dark-gray-color);
}
.gift_voucher_order_quantity span {
    font-size: 18px;
    min-width: 32px;
    text-align: center;
    display: inline-block;
    font-family: var(--font-main);
}
.gift_voucher_order_price {
    font-size: 18px;
    font-weight: bold;
    font-family: var(--font-main);
    color: var(--pink-color);
}





/* Tablets – 2 columns */
@media (max-width: 1024px) {
    .gift_voucher_items_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile – 1 column */
@media (max-width: 600px) {
    .gift_voucher_items_grid {
        grid-template-columns: 1fr;
    }
}