/**
 * Pretpot Simple Image Card Widget Styles
 */

.pretpot-simple-image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pretpot-simple-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Image Wrapper */
.pretpot-sic-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: var(--sic-image-spacing, 24px);
}

.pretpot-sic-image {
    width: 100%;
    height: var(--sic-image-height, 280px);
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.pretpot-simple-image-card:hover .pretpot-sic-image {
    transform: scale(1.05);
}

/* Badge */
.pretpot-sic-badge {
    position: absolute;
    top: 16px;
    right: -40px;
    background: #4F46E5;
    color: #ffffff;
    padding: 8px 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/* Content Area */
.pretpot-sic-content {
    text-align: var(--sic-text-align, center);
}

.pretpot-sic-title {
    font-size: var(--sic-title-size, 28px);
    font-weight: 700;
    color: var(--sic-title-color, #1e293b);
    margin-bottom: var(--sic-title-spacing, 16px);
    line-height: 1.2;
}

.pretpot-sic-description {
    font-size: var(--sic-desc-size, 16px);
    line-height: 1.6;
    color: var(--sic-desc-color, #475569);
    margin-bottom: var(--sic-desc-spacing, 28px);
}

/* Buttons Container */
.pretpot-sic-buttons {
    display: flex;
    gap: var(--sic-button-gap, 12px);
    justify-content: var(--sic-button-align, center);
    flex-wrap: wrap;
}

/* Glass Blurred Buttons */
.pretpot-sic-button {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--sic-button-color, #1e293b);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pretpot-sic-button:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pretpot-sic-button.pretpot-sic-button-primary {
    background: rgba(79, 70, 229, 0.3);
    color: #ffffff;
    border-color: rgba(79, 70, 229, 0.5);
}

.pretpot-sic-button.pretpot-sic-button-primary:hover {
    background: rgba(79, 70, 229, 0.5);
}

/* Alignment variations */
.pretpot-sic-align-left {
    --sic-text-align: left;
    --sic-button-align: flex-start;
}

.pretpot-sic-align-center {
    --sic-text-align: center;
    --sic-button-align: center;
}

.pretpot-sic-align-right {
    --sic-text-align: right;
    --sic-button-align: flex-end;
}

/* Responsive */
@media (max-width: 768px) {
    .pretpot-sic-title {
        font-size: calc(var(--sic-title-size, 28px) * 0.85);
    }
    
    .pretpot-sic-description {
        font-size: calc(var(--sic-desc-size, 16px) * 0.9);
    }
    
    .pretpot-sic-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}