.hi-gift-wrapping{
    margin-top: 10px;
}
.hi-gift-wrapping__content .hi-gift-wrapping__message{
    display: none;
}
.hi-gift-wrapping__content .hi-gift-wrapping__message-label {
    margin-bottom: 10px;
}
.hi-gift-wrapping__content .hi-gift-wrapping__item{
    padding: 15px 0px;
    display: flex;
    align-items: baseline;
    justify-content: start;
    gap: 10px;
    flex-wrap: wrap;
}
.hi-gift-wrapping__content .hi-gift-wrapping__item .hi-gift-wrapping__label{
    margin-left: 15px;
}
.hi-gift-wrapping__content .checker{
    display: inline-block;
}
.hi-gift-wrapping__content .hi-gift-wrapping__image-block{
    display: inline-block;
    cursor: pointer;
}
.hi-gift-wrapping__content .hi-gift-wrapping__image-block .hi-gift-wrapping__image{
    max-width:100%;
}
#supercheckout-gift_container,
#supercheckout-gift-comments{
    display: none !important;
}
.hi-gift-wrapping__product-qty{
    text-align: center;
    max-width: 50px;
    height: 30px;
    margin-left: 10px;
}
.hi-gift-wrapping__products{
    border: 1px solid #c9c9c9;
    padding: 10px;
    display: none;
    flex-basis: 100%;
}
.hi-gift-wrapping__content .hi-gift-wrapping__item .hi-gift-wrapping__product-item .hi-gift-wrapping__product-label{
    text-align: left;
    margin: 0;
}
.hi-gift-wrapping__alert--hidden{
    display: none;
}
.hi-gift-wrapping__products--active{
    display: block;
}
.hi-gift-wrapping__product-item{
    padding: 7px 0;
}
.hi-gift-wrapping__container {
    padding: 1rem;
    display: flex;
    flex-direction: column;
}
.hi-gift-wrapping__qty-container {
    display: flex;
    align-items: baseline;
}
.hi-gift-wrapping__qty {
    height: 30px;
    margin-left: 10px;
    text-align: center;
    max-width: 60px;
}
.hi-gift-wrapping__title {
    text-transform: none;
    margin-bottom: 10px;
}

.hi-gift-wrapping-product__main {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hi-gift-wrapping-product__checkbox {
    margin: 0;
    flex-shrink: 0;
}

.hi-gift-wrapping-product__label {
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hi-gift-wrapping-product__qty-container {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
}

.hi-gift-wrapping-product__qty-label {
    margin: 0;
    white-space: nowrap;
}

.hi-gift-wrapping-product__qty-input {
    width: 30px;
    height: 28px;
    padding: 2px 6px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
}

/* Gift Wrapping Modal Styles */
.hi-gift-wrapping-modal__body {
    padding: 1.5rem;
}

.hi-gift-wrapping-modal__qty-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
}

.hi-gift-wrapping-modal__qty-label {
    margin: 0;
    white-space: nowrap;
}

.hi-gift-wrapping-modal__qty {
    width: 60px;
    height: 32px;
    padding: 4px 8px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

/* Modal-specific styles for gift wrapping options */
.hi-gift-wrapping-modal__container {
    padding: 0;
}

.hi-gift-wrapping-modal__item {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hi-gift-wrapping-modal__item:has(.hi-gift-wrapping-modal__image-block) {
    padding: 0.3rem 0.5rem;
}

.hi-gift-wrapping-modal__item:hover {
    border-color: #007bff;
}

.hi-gift-wrapping-modal__item--selected {
    border-color: #007bff;
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

.hi-gift-wrapping-modal__input {
    margin: 0;
    flex-shrink: 0;
}

.hi-gift-wrapping-modal__image-block {
    flex-shrink: 0;
}

.hi-gift-wrapping-modal__image {
    max-width: 100px;
    max-height: 100px;
    border-radius: 0.25rem;
}

.hi-gift-wrapping-modal__label {
    flex: 1;
    margin: 0;
    cursor: pointer;
    font-weight: 500;
    text-align: left;
}

.hi-gift-wrapping-modal__description {
    margin-top: 0.5rem;
    font-style: italic;
    color: #6c757d;
    font-size: 0.9rem;
}

.hi-gift-wrapping-modal__image-link {
    display: block;
    text-decoration: none;
    transition: opacity 0.2s ease-in-out;
}

.hi-gift-wrapping-modal__image-link:hover {
    opacity: 0.8;
    text-decoration: none;
}

/* Gift wrapping product loader styles */
.hi-gift-wrapping-product--loading {
    opacity: 0.7;
    pointer-events: none;
}

.hi-gift-wrapping-product__loader {
    position: absolute;
}

.hi-gift-wrapping-product__loader .material-icons,
.hi-gift-wrapping-product__loader .fa {
    animation: spin 1s linear infinite;
    font-size: 16px;
    color: #007bff;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Hide products selection block when products_selection is disabled */
.hi-gift-wrapping__products--hidden {
    display: none !important;
}

/* Hide quantity container for product gift wrapping */
.hi-gift-wrapping-product__qty-container--hidden {
    display: none !important;
}

@media (max-width: 575px) {
    .hi-gift-wrapping-modal .modal-content {
        min-height: auto;
    }
}

@media (max-width: 500px) {
    .hi-gift-wrapping-modal__qty-container {
        flex-direction: column;
    }
}