/* ==========================================================================
   GAS Product Widget Styles
   ========================================================================== */

.gas-product-widget {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.gas-product-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Centering Options */
.gas-product-widget--centered {
    margin: 0 auto;
}

.gas-product-widget-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
}

.gas-product-widget-container--full-height {
    min-height: 400px;
}

.gas-product-widget-container--background {
    background: #f8f9fa;
    border-radius: 12px;
}

/* Default Style */
.gas-product-widget--default {
    display: flex;
    flex-direction: column;
    max-width: 400px;
}

.gas-product-widget--default .gas-product-widget__image {
    height: 200px;
    overflow: hidden;
}

.gas-product-widget--default .gas-product-widget__content {
    padding: 20px;
}

/* Compact Style */
.gas-product-widget--compact {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 20px;
    max-width: 700px;
    min-height: 120px;
}

.gas-product-widget--compact .gas-product-widget__image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    margin-right: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.gas-product-widget--compact .gas-product-widget__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gas-product-widget--compact .gas-product-widget__title {
    font-size: var(--text-l, 1.25rem);
    margin-bottom: 8px;
    font-weight: 700;
}

.gas-product-widget--compact .gas-product-widget__price {
    font-size: var(--text-l, 1.25rem);
    margin-bottom: 10px;
    font-weight: 700;
}

.gas-product-widget--compact .gas-product-widget__description {
    font-size: var(--text-s, 0.875rem);
    line-height: 1.4;
    margin-bottom: 15px;
    flex: 1;
}

.gas-product-widget--compact .gas-product-widget__actions {
    margin-top: auto;
}

/* Card Style */
.gas-product-widget--card {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.gas-product-widget--card .gas-product-widget__image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

/* Sidebar Style */
.gas-product-widget--sidebar {
    display: flex;
    flex-direction: row;
    min-height: 300px;
    max-width: 800px;
    overflow: hidden;
}

.gas-product-widget--sidebar .gas-product-widget__image {
    flex: 0 0 40%;
    min-height: 300px;
    overflow: hidden;
    position: relative;
}

.gas-product-widget--sidebar .gas-product-widget__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gas-product-widget--sidebar .gas-product-widget__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 30px;
    justify-content: space-between;
}

.gas-product-widget--sidebar .gas-product-widget__content-top {
    flex: 1;
}

.gas-product-widget--sidebar .gas-product-widget__title {
    font-size: var(--text-m);
    margin-bottom: 15px;
    line-height: 1.3;
}

.gas-product-widget--sidebar .gas-product-widget__price {
    font-size: var(--text-m);
    margin-bottom: 20px;
    font-weight: 700;
}

.gas-product-widget--sidebar .gas-product-widget__description {
    font-size: var(--text-s);
    line-height: 1.6;
    margin-bottom: 25px;
    color: #555;
}

.gas-product-widget--sidebar .gas-product-widget__actions {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.gas-product-widget--sidebar .gas-product-widget__button {
    width: 100%;
    padding: 15px 30px;
    font-size: var(--text-s);
    margin-bottom: 10px;
}

.gas-product-widget--sidebar .gas-product-widget__link {
    text-align: center;
    font-size: var(--text-s);
}

/* Common Image Styles */
.gas-product-widget__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Styles */
.gas-product-widget__title {
    margin: 0 0 10px 0;
    font-size: var(--text-m);
    font-weight: 600;
    color: var(--text, #2c3e50);
}

.gas-product-widget__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gas-product-widget__title a:hover {
    color: var(--primary, #3498db);
}

.gas-product-widget__description {
    margin: 0 0 15px 0;
    color: #6c757d;
    line-height: 1.5;
    font-size: 0.9rem;
}

.gas-product-widget__price {
    margin: 0 0 20px 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary, #3498db);
}

.gas-product-widget__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gas-product-widget--compact .gas-product-widget__actions {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.gas-product-widget--compact .gas-product-widget__button {
    padding: 10px 20px;
    font-size: var(--text-s, 0.875rem);
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.gas-product-widget--compact .gas-product-widget__link {
    font-size: var(--text-s, 0.875rem);
    padding: 0;
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.gas-product-widget__button {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.gas-product-widget__link {
    color: var(--primary, #3498db);
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.gas-product-widget__link:hover {
    color: var(--primary-dark, #2980b9);
    text-decoration: underline;
}

.gas-product-widget__out-of-stock {
    color: var(--danger, #e74c3c);
    font-weight: 600;
    text-align: center;
    margin: 0;
    padding: 12px;
    background: #ffeaea;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .gas-product-widget--compact {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .gas-product-widget--compact .gas-product-widget__image {
        width: 150px;
        height: 150px;
        margin: 0 auto 15px auto;
    }
    
    .gas-product-widget--compact .gas-product-widget__content {
        align-items: center;
        text-align: center;
    }
    
    .gas-product-widget--compact .gas-product-widget__actions {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        justify-content: center;
    }
    
    .gas-product-widget--compact .gas-product-widget__button {
        width: auto;
        min-width: 200px;
    }
    
    /* Sidebar responsive */
    .gas-product-widget--sidebar {
        flex-direction: column;
        min-height: auto;
    }
    
    .gas-product-widget--sidebar .gas-product-widget__image {
        flex: none;
        height: 200px;
        min-height: 200px;
    }
    
    .gas-product-widget--sidebar .gas-product-widget__content {
        padding: 20px;
    }
    
    .gas-product-widget--sidebar .gas-product-widget__title {
        font-size: 1.3rem;
    }
    
    .gas-product-widget--sidebar .gas-product-widget__price {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .gas-product-widget--sidebar .gas-product-widget__description {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .gas-product-widget--sidebar .gas-product-widget__content {
        padding: 15px;
    }
    
    .gas-product-widget--sidebar .gas-product-widget__button {
        padding: 12px 20px;
        font-size: var(--text-s);
    }
}