/* Product Display Block Styles */
.sq-product-display {
    /* border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    margin: 1rem 0;
    background-color: #fff;
    max-width: 600px; */
}

.sq-product-display.alignfull {
    /* max-width: none;
    margin-left: auto;
    margin-right: auto; */
}

/* Preview Notice */
.sq-preview-notice {
    background-color: #f0f6fc;
    border: 1px solid #0073aa;
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 1rem;
    color: #0073aa;
}

.sq-preview-notice p {
    margin: 0;
}

/* Product Grid Layout */
.sq-product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

@media (min-width: 992px) {
    .sq-product-grid {
        grid-template-columns: 1fr 1fr;
        /* gap: 0rem; */
    }
}


@media (min-width: 1400px){
    .sq-product-grid{
        gap: 10rem;
    }
}

/* Product Gallery Column */
.sq-product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 100%;
    overflow-x: hidden;
}

.sq-main-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.sq-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sq-main-image.sq-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
}

.sq-main-image.sq-placeholder img {
    object-fit: contain;
    opacity: 0.5;
}

/* Thumbnail Slider */
.sq-thumbnail-slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.sq-thumbnail-swiper {
    width: 100%;
    max-width: 100%;
    padding: 0 35px;
    box-sizing: border-box;
}

.sq-thumbnail-swiper .swiper-slide {
    width: auto !important;
    flex-shrink: 0;
}

.sq-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.sq-thumbnail:hover {
    border-color: #666;
}

.sq-thumbnail.active {
    border-color: #000;
}

/* Product Content Column */
.sq-product-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sq-product-title {
    font-size: var(--wp--preset--font-size--extra-large);
    max-width: 70%;
    font-weight: 300;
    font-family: var(--wp--preset--font-family--kollektif);
    margin-bottom: 0.125rem;
    /* font-weight: 600;
    margin: 0;
    color: #333; */
}


.sq-product-brand{
    font-size: var(--wp--preset--font-size--medium);
    text-transform: uppercase;
    color: var(--wp--preset--color--lrdv-light-grey);
    text-decoration: none;
    margin-block: 0.5rem;
    a{
        all: inherit;
    }
}


.sq-product-price {
    font-size: var(--wp--preset--font-size--large);
    font-family: var(--wp--preset--font-family--inter);
    font-weight: 400;
    color: #000;
    .woocommerce-Price-currencySymbol{
        margin-inline-end: 0.5rem;
    }
}

.sq-product-price .amount {
    color: inherit;
}

.sq-product-price del {
    opacity: 0.6;
    margin-right: 0.5rem;
}

/* Stock Status */
.sq-stock-status {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    display: none;
}

/* Cart Form */
/* .sq-cart-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
} */

/* Variations */
/* .sq-variations {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 4px;
    border: 1px solid #ddd;
} */

/* .sq-variation-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
} */

.sq-variation-item label {
    font-weight: 600;
    color: #333;
    display: none;
}

.sq-variation-select {
    padding: 0.75rem;
    margin-block-end: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: var(--wp--preset--font-size--small) !important;
    background-color: #fff;
    transition: border-color 0.2s ease;
    width: 100%;
    select{
        option{
            padding-block: 1rem;
        }
    }
}

.sq-variation-select:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 2px rgba(44, 90, 160, 0.1);
}

/* Grouped Products */
.sq-grouped-products {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.sq-grouped-product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.sq-grouped-product-item:last-child {
    border-bottom: none;
}

.sq-grouped-product-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: var(--wp--preset--font-size--medium) !important;
    font-weight: 600;
}

.sq-grouped-product-price {
    font-weight: bold;
    color: #000;
}

.sq-grouped-product-quantity {
    min-width: 80px;
}

/* Quantity */
.sq-quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.sq-quantity-wrapper label {
    font-weight: 600;
    color: #333;
}

.sq-quantity-input {
    width: 80px;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: var(--wp--preset--font-size--small) !important;
    text-align: center;
}

/* .sq-quantity-input:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 2px rgba(44, 90, 160, 0.1);
} */

/* Add to Cart Button */
.sq-cart-button-wrapper {
    margin-top: 1rem;
}

.sq-add-to-cart-button {
    background-color: var(--wp--preset--color--lrdv-dark);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: var(--wp--preset--font-size--small);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.sq-add-to-cart-button:hover:not(:disabled) {
    background-color: #1e3a8a;
    transform: translateY(-1px);
}

.sq-add-to-cart-button:active:not(:disabled) {
    transform: translateY(0);
}

.sq-add-to-cart-button:disabled {
    background-color: #6b7280;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Loading */
.sq-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    color: #666;
    font-style: italic;
}

.sq-loading::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ddd;
    border-top: 2px solid #2c5aa0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Messages */
.sq-messages {
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
}

.sq-messages.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.sq-messages.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.sq-messages p {
    margin: 0;
}

/* Out of Stock */
.sq-out-of-stock {
    padding: 1rem;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    text-align: center;
    color: #6c757d;
}

.sq-product-description{
    font-family: var(--wp--preset--font-family--kollektif);

    h2{
        font-size: var(--wp--preset--font-size--medium);
        font-weight: 400;
        color: #000;
    }

    p{
        font-size: var(--wp--preset--font-size--medium);
        font-weight: 300;
        color: #828282;
        line-height: 1.3;
    }
}



/* Responsive Design */
@media (max-width: 768px) {
    .sq-product-display {
        padding: 1rem;
    }
    
    .sq-variations {
        padding: 0.75rem;
    }
    
    .sq-grouped-product-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .sq-quantity-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sq-add-to-cart-button {
        max-width: none;
    }
    
    /* Thumbnail slider responsive adjustments */
    .sq-thumbnail-swiper {
        padding: 0 20px;
    }
    
    .sq-thumbnail {
        width: 60px;
        height: 60px;
    }
}

@media (min-width: 768px) {
    .sq-variation-item {
        flex-direction: row;
        align-items: center;
    }
    
    .sq-variation-item label {
        min-width: 120px;
    }
    
    .sq-quantity-wrapper {
        max-width: 200px;
    }
}