/**
 * Planika Sync - Public/Frontend Styles
 * 
 * @package PlanikSync
 */

/* ==========================================================================
   Configurator Container
   ========================================================================== */

.planika-configurator-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.planika-configurator {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Header */
.planika-configurator-header {
    padding: 30px;
    background: #000;
    color: white;
    text-align: center;
}

.planika-configurator-title {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 600;
    color: white;
}

.planika-configurator-description {
    margin: 0;
    opacity: 1;
    font-size: 16px;
    color: white;
}

/* ==========================================================================
   Video Section
   ========================================================================== */

.planika-video-section {
    background: #000;
    padding: 40px 30px;
    border-bottom: 1px solid #e9ecef;
}

.planika-video-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.planika-video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.planika-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.planika-video-caption {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

/* Video responsive adjustments */
@media (max-width: 768px) {
    .planika-video-section {
        padding: 30px 20px;
    }
    
    .planika-video-wrapper {
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    }
    
    .planika-video-wrapper iframe {
        border-radius: 8px;
    }
    
    .planika-video-caption {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .planika-video-section {
        padding: 20px 15px;
    }
    
    .planika-video-wrapper {
        border-radius: 6px;
    }
    
    .planika-video-wrapper iframe {
        border-radius: 6px;
    }
}

/* ==========================================================================
   Design Help Section
   ========================================================================== */

.planika-design-help-section {
    background: #000;
    padding: 30px 30px;
    border-bottom: 1px solid #e9ecef;
}

/* ==========================================================================
   Burner Help Section (Step 3)
   ========================================================================== */

.planika-burner-help-section {
    background: #000;
    padding: 40px 30px;
    border-bottom: 1px solid #e9ecef;
}

.planika-burner-help-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.planika-burner-help-content {
    text-align: center;
}

.planika-burner-help-text {
    color: white;
}

.planika-burner-help-title {
    margin: 0 0 15px 0;
    font-size: 24px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
}

.planika-burner-help-description {
    margin: 0 0 25px 0;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.planika-burner-help-cta {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.planika-btn-contact-burner,
.planika-btn-call-burner {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.planika-btn-contact-burner {
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.planika-btn-contact-burner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.planika-btn-contact-burner:hover {
    background: linear-gradient(135deg, #005a87 0%, #004666 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 124, 186, 0.4);
    color: white;
    text-decoration: none;
}

.planika-btn-contact-burner:hover::before {
    opacity: 1;
}

.planika-btn-call-burner {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.planika-btn-call-burner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.planika-btn-call-burner:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.5);
}

.planika-btn-call-burner:hover::before {
    opacity: 1;
}

.planika-btn-contact-burner .planika-btn-icon,
.planika-btn-call-burner .planika-btn-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.planika-btn-contact-burner:hover .planika-btn-icon,
.planika-btn-call-burner:hover .planika-btn-icon {
    transform: scale(1.1);
}

.planika-design-help-container {
    max-width: 1000px;
    margin: 0 auto;
}

.planika-design-help-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.planika-design-help-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.planika-design-help-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.planika-design-help-image:hover img {
    transform: scale(1.02);
}

.planika-design-help-text {
    color: white;
}

.planika-design-help-title {
    margin: 0 0 15px 0;
    font-size: 24px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
}

.planika-design-help-description {
    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.planika-design-help-cta {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.planika-btn-contact,
.planika-btn-call {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-height: 48px;
    position: relative;
    overflow: hidden;
}

.planika-btn-contact {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #000;
    flex: 1;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.planika-btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.planika-btn-contact:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.planika-btn-contact:hover::before {
    left: 100%;
}

.planika-btn-call {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    flex: 1;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.planika-btn-call::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.planika-btn-call:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
    border-color: white;
}

.planika-btn-call:hover::before {
    left: 100%;
}

.planika-btn-icon {
    font-size: 16px;
}

.planika-design-help-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    font-size: 14px;
}

.planika-btn-back-to-video {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: none;
    padding: 4px 0;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: underline;
}

.planika-btn-back-to-video:hover {
    color: white;
}

.planika-design-help-divider {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.planika-design-help-continue {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-style: italic;
}

/* Design Help Section - Mobile Responsive */
@media (max-width: 768px) {
    .planika-design-help-section {
        padding: 25px 20px;
    }
    
    .planika-design-help-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .planika-design-help-title {
        font-size: 22px;
    }
    
    .planika-design-help-description {
        font-size: 15px;
    }
    
    .planika-design-help-cta {
        flex-direction: column;
        gap: 12px;
        padding: 18px;
    }
    
    .planika-btn-contact,
    .planika-btn-call {
        width: 100%;
        justify-content: center;
        min-height: 50px;
        font-size: 16px;
    }
    
    .planika-design-help-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Burner Help Mobile Styles */
    .planika-burner-help-section {
        padding: 30px 20px;
    }
    
    .planika-burner-help-title {
        font-size: 22px;
    }
    
    .planika-burner-help-description {
        font-size: 15px;
    }
    
    .planika-burner-help-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .planika-btn-contact-burner,
    .planika-btn-call-burner {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .planika-design-help-section {
        padding: 20px 15px;
    }
    
    .planika-design-help-content {
        gap: 20px;
    }
    
    .planika-design-help-title {
        font-size: 20px;
    }
    
    .planika-design-help-description {
        font-size: 14px;
    }
    
    .planika-design-help-image {
        border-radius: 8px;
    }
    
    .planika-design-help-image img {
        border-radius: 8px;
    }
    
    .planika-design-help-actions {
        font-size: 13px;
    }
    
    /* Burner Help Extra Small Mobile */
    .planika-burner-help-section {
        padding: 25px 15px;
    }
    
    .planika-burner-help-title {
        font-size: 20px;
    }
    
    .planika-burner-help-description {
        font-size: 14px;
    }
    
    .planika-btn-contact-burner,
    .planika-btn-call-burner {
        max-width: 220px;
    }
}

/* ==========================================================================
   Benefits Section
   ========================================================================== */

.planika-benefits-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 30px;
    border-bottom: 1px solid #e9ecef;
}

.planika-benefits-header {
    text-align: center;
    margin-bottom: 40px;
}

.planika-benefits-title {
    margin: 0 0 15px 0;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

.planika-benefits-subtitle {
    margin: 0 0 20px 0;
    font-size: 18px;
    color: #333;
    font-weight: 500;
    opacity: 0.9;
}

/* Kompakte fordeler */
.planika-benefits-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.planika-benefit-compact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.planika-benefit-compact:hover {
    border-color: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.planika-benefit-icon-small {
    font-size: 18px;
    flex-shrink: 0;
}

.planika-benefit-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

/* Toggle knapp */
.planika-benefits-toggle {
    text-align: center;
    margin-bottom: 20px;
}

.planika-btn-show-all-benefits {
    background: transparent;
    border: 1px solid #ddd;
    color: #333;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.planika-btn-show-all-benefits:hover {
    border-color: #000;
    background: #f8f9fa;
}

.planika-toggle-icon {
    transition: transform 0.3s ease;
}

.planika-btn-show-all-benefits.expanded .planika-toggle-icon {
    transform: rotate(180deg);
}

/* Detaljerte fordeler grid */
.planika-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.planika-benefit-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.planika-benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #000;
}

.planika-benefit-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.planika-benefit-content h5 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.planika-benefit-content p {
    margin: 0;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    opacity: 0.9;
}

.planika-benefits-cta {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.planika-benefits-cta-text {
    margin: 0 0 20px 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.planika-btn-start-config {
    font-size: 16px;
    padding: 15px 30px;
    background: #000;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.planika-btn-start-config:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Initially hide configurator steps until user clicks start */
.planika-configurator:not(.benefits-dismissed) .planika-progress-container,
.planika-configurator:not(.benefits-dismissed) .planika-configurator-content,
.planika-configurator:not(.benefits-dismissed) .planika-btn-reset {
    display: none;
}

/* Hide benefits section when configuration is started */
.planika-configurator.benefits-dismissed .planika-benefits-section {
    display: none;
}

/* Hide video and design help sections on step 2 and 3 for focused experience */
.planika-configurator.step-2 .planika-video-section,
.planika-configurator.step-2 .planika-design-help-section,
.planika-configurator.step-2 .planika-burner-help-section,
.planika-configurator.step-3 .planika-video-section,
.planika-configurator.step-3 .planika-design-help-section {
    display: none !important;
}

/* Show burner help only on step 3 */
.planika-burner-help-section {
    display: none;
}

.planika-configurator.step-3 .planika-burner-help-section {
    display: block;
}

/* ==========================================================================
   Progress Steps
   ========================================================================== */

.planika-progress-container {
    padding: 30px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.planika-progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.planika-progress-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.planika-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.planika-progress-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.planika-progress-step.active .planika-progress-step-number,
.planika-progress-step.completed .planika-progress-step-number {
    background: #000;
    color: white;
}

.planika-progress-step-label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.planika-progress-step.active .planika-progress-step-label,
.planika-progress-step.completed .planika-progress-step-label {
    color: #000;
    font-weight: 600;
}

/* ==========================================================================
   Steps Content
   ========================================================================== */

.planika-configurator-content {
    position: relative;
    min-height: 400px;
}

.planika-step {
    display: none;
    padding: 30px;
    padding-bottom: 20px;
    animation: fadeIn 0.3s ease-in-out;
}

.planika-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.planika-step-header {
    margin-bottom: 30px;
    text-align: center;
}

.planika-step-title {
    margin: 0 0 10px 0;
    font-size: 24px;
    color: #333;
    font-weight: 600;
}

.planika-step-description {
    margin: 0;
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

/* Selection Summary */
.planika-selection-summary {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #000;
}

.planika-selection-summary strong {
    color: #333;
}

.planika-selected-angle,
.planika-selected-width,
.planika-selected-burner {
    color: #000;
    font-weight: 600;
}

/* ==========================================================================
   Options Grid
   ========================================================================== */

.planika-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 20px;
}

/* Enhanced grid for larger screens */
@media (min-width: 1024px) {
    .planika-options-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media (min-width: 1200px) {
    .planika-options-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: none;
    }
}

.planika-option {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.planika-option:hover {
    border-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.planika-option.selected {
    border-color: #000;
    background: #f5f5f5;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.planika-option.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #000;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.planika-option-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.planika-option-description {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

.planika-option-meta {
    font-size: 14px;
    color: #28a745;
    margin-top: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.planika-option-meta::before {
    content: '';
    font-size: 12px;
}

/* Options with images (for angles) */
.planika-option-with-image {
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.planika-option-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
}

.planika-option-image img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.planika-option-with-image:hover .planika-option-image img {
    transform: scale(1.05);
}

.planika-option-content {
    padding-top: 10px;
    text-align: center;
}

.planika-option-with-image .planika-option-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.planika-option-with-image .planika-option-description {
    font-size: 13px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.planika-option-with-image .planika-option-meta {
    font-size: 14px;
    color: #28a745;
    font-weight: 600;
    margin-top: auto;
}

.planika-option-with-image .planika-option-meta::before {
    content: '';
}

/* ==========================================================================
   Step 3: Burner Selection - Modern Price Table Cards
   ========================================================================== */

.planika-step-burners .planika-options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: flex-start; /* Important: allows cards to have different heights */
}

@media (min-width: 768px) {
    .planika-step-burners .planika-options-grid {
        padding: 0;
    }
    
    .planika-step-burners .planika-burner-option {
        flex: 1 1 calc(33.333% - 16px); /* 3 columns with gap consideration */
        max-width: calc(33.333% - 16px);
    }
}

@media (max-width: 767px) {
    .planika-step-burners .planika-burner-option {
        flex: 1 1 100%; /* Full width on mobile */
        max-width: 100%;
    }
}

.planika-burner-option {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    border: 2px solid #f1f5f9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    min-height: 480px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.planika-burner-option:hover {
    border-color: #059669;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.planika-burner-option.selected {
    border-color: #059669;
    box-shadow: 0 0 0 1px #059669, 0 20px 25px -5px rgba(5, 150, 105, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

/* Card header with title and price */
.planika-burner-header {
    padding: 32px 24px 24px 24px;
    text-align: center;
    border-bottom: 1px solid #f8fafc;
}

.planika-burner-option .planika-option-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #111827;
    line-height: 1.2;
}

.planika-burner-option .planika-option-description {
    font-size: 14px;
    line-height: 1.5;
    color: #6b7280;
    margin: 0 0 20px 0;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.planika-burner-price {
    margin-bottom: 8px;
}

.planika-burner-option .planika-option-meta {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin: 0;
    line-height: 1;
    letter-spacing: -0.05em;
}

.planika-burner-price-label {
    font-size: 12px;
    font-weight: 500;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* Features section */
.planika-burner-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.planika-burner-features-list {
    margin: 0 0 32px 0;
    padding: 0;
    list-style: none;
    flex: 1;
}

.planika-burner-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
    border-bottom: 1px solid #f9fafb;
}

.planika-burner-features-list li:last-child {
    border-bottom: none;
}

.planika-burner-features-list li::before {
    content: "✓";
    color: #059669;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Expandable features for cards with many features */
.planika-burner-features-hidden {
    display: none;
}

.planika-burner-features-toggle {
    color: #059669;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0;
    text-align: center;
    border-top: 1px solid #f3f4f6;
    margin-top: 16px;
}

.planika-burner-features-toggle:hover {
    color: #047857;
}

/* CTA Button */
.planika-burner-cta {
    padding: 0 24px 24px 24px;
    margin-top: auto;
}

.planika-btn-select-burner {
    width: 100%;
    background: #fff;
    border: 2px solid #e5e7eb;
    color: #374151;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.planika-btn-select-burner:hover {
    border-color: #059669;
    color: #059669;
    background: #f0fdf4;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
}

.planika-burner-option.selected .planika-btn-select-burner {
    background: #111827;
    border-color: #111827;
    color: white;
}

/* Details section (when expanded) */
.planika-burner-details {
    display: none;
    border-top: 1px solid #f3f4f6;
    padding: 24px;
    background: #fafafa;
    margin: 0 -2px -2px -2px;
    border-radius: 0 0 14px 14px;
}

.planika-burner-details.expanded {
    display: block;
    animation: expandDetails 0.3s ease-out;
}

@keyframes expandDetails {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

.planika-burner-details-grid {
    display: grid;
    gap: 20px;
}

.planika-burner-details h5 {
    margin: 0 0 12px 0;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

.planika-burner-detailed-desc p {
    margin: 0 0 16px 0;
    line-height: 1.6;
    color: #4b5563;
    font-size: 13px;
}

.planika-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-size: 13px;
}

.planika-specs-table td {
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
    vertical-align: top;
}

.planika-specs-table td:first-child {
    font-weight: 500;
    color: #111827;
    width: 45%;
    padding-right: 12px;
}

.planika-specs-table td:last-child {
    color: #4b5563;
}

.planika-specs-table tr:last-child td {
    border-bottom: none;
}

/* Secondary action button for details */
.planika-btn-more-info {
    width: 100%;
    background: transparent;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.planika-btn-more-info:hover {
    border-color: #9ca3af;
    color: #374151;
}

.planika-btn-more-info .toggle-icon {
    transition: transform 0.3s ease;
    font-size: 10px;
}

.planika-btn-more-info.expanded .toggle-icon {
    transform: rotate(180deg);
}

/* Mobile responsive */
@media (max-width: 767px) {
    .planika-step-burners .planika-options-grid {
        gap: 16px;
    }
    
    .planika-burner-option {
        min-height: 420px;
    }
    
    .planika-burner-header {
        padding: 24px 20px 20px 20px;
    }
    
    .planika-burner-content {
        padding: 20px;
    }
    
    .planika-burner-cta {
        padding: 0 20px 20px 20px;
    }
    
    .planika-burner-option .planika-option-title {
        font-size: 20px;
    }
    
    .planika-burner-option .planika-option-meta {
        font-size: 28px;
    }
}

/* ==========================================================================
   Loading States
   ========================================================================== */

.planika-loading {
    text-align: center;
    padding: 60px 40px;
    color: #333;
}

.planika-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Card loading overlay */
.planika-option.loading {
    pointer-events: none;
    position: relative;
}

.planika-card-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    z-index: 10;
    backdrop-filter: blur(2px);
}

.planika-card-loading .planika-spinner {
    width: 30px;
    height: 30px;
    border-width: 3px;
    margin: 0;
}

/* ==========================================================================
   Navigation Buttons
   ========================================================================== */

.planika-step-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-bottom: none;
    position: sticky;
    bottom: 0;
    z-index: 10;
    border-radius: 0 0 12px 12px;
    margin-top: 20px;
    position: relative;
    backdrop-filter: blur(10px);
}

.planika-btn {
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    min-width: 140px;
    justify-content: center;
}

.planika-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.planika-btn:active {
    transform: translateY(0px) scale(0.98);
}

.planika-btn-primary,
.planika-btn-next,
.planika-btn-finish {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.planika-btn-primary::before,
.planika-btn-next::before,
.planika-btn-finish::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.planika-btn-primary:hover,
.planika-btn-next:hover:not(:disabled),
.planika-btn-finish:hover:not(:disabled) {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.planika-btn-primary:hover::before,
.planika-btn-next:hover:not(:disabled)::before,
.planika-btn-finish:hover:not(:disabled)::before {
    left: 100%;
}

.planika-btn-secondary,
.planika-btn-prev {
    background: #fff;
    color: #333;
    border: 2px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.planika-btn-secondary:hover,
.planika-btn-prev:hover {
    background: #f8f9fa;
    border-color: #333;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Reset button styling */
.planika-btn-reset {
    font-size: 14px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.planika-btn-reset:hover {
    opacity: 1;
}

/* Step info styling */
.planika-step-info {
    display: flex;
    align-items: center;
    color: #666;
    font-style: normal;
    background: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    backdrop-filter: blur(5px);
}

.planika-step-info small {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
}

/* Simplified navigation layout */
.planika-step-navigation {
    justify-content: space-between;
}

/* Reset button in corner */
.planika-btn-reset {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 12px !important;
    padding: 8px 16px !important;
    opacity: 0.6;
    z-index: 11;
}

/* ==========================================================================
   Messages
   ========================================================================== */

.planika-messages {
    margin-top: 20px;
}

.planika-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.planika-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.planika-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.planika-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    .planika-configurator-wrapper {
        padding: 10px;
    }
    
    .planika-configurator-header {
        padding: 20px;
    }
    
    .planika-configurator-title {
        font-size: 22px;
    }
    
    .planika-benefits-section {
        padding: 30px 20px;
    }
    
    .planika-benefits-title {
        font-size: 20px;
    }
    
    .planika-benefits-subtitle {
        font-size: 16px;
    }
    
    .planika-benefits-compact {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .planika-benefit-compact {
        padding: 10px 12px;
    }
    
    .planika-benefit-icon-small {
        font-size: 16px;
    }
    
    .planika-benefit-text {
        font-size: 13px;
    }
    
    .planika-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .planika-benefit-item {
        padding: 20px;
        gap: 12px;
    }
    
    .planika-benefit-icon {
        font-size: 20px;
        width: 35px;
        height: 35px;
    }
    
    .planika-benefit-content h5 {
        font-size: 15px;
    }
    
    .planika-benefit-content p {
        font-size: 13px;
    }
    
    .planika-benefits-cta-text {
        font-size: 16px;
    }
    
    .planika-btn-start-config {
        width: 100%;
        padding: 15px 20px;
        font-size: 15px;
    }
    
    .planika-progress-container {
        padding: 20px;
    }
    
    .planika-progress-step-label {
        font-size: 12px;
    }
    
    .planika-step {
        padding: 20px;
    }
    
    .planika-step-title {
        font-size: 20px;
    }
    
    .planika-options-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .planika-option-with-image {
        min-height: 270px;
    }
    
    .planika-option-image img {
        height: 160px;
        object-fit: contain;
    }
    
    .planika-step-navigation {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        background: #f8f9fa;
    }
    
    .planika-step-navigation .planika-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 15px;
    }
    
    .planika-step-info {
        order: -1;
        text-align: center;
        width: 100%;
        justify-content: center;
    }
    
    .planika-btn-reset {
        position: fixed !important;
        top: 10px !important;
        right: 10px !important;
        font-size: 11px !important;
        padding: 6px 12px !important;
    }
}

@media (max-width: 480px) {
    .planika-progress-steps {
        flex-direction: column;
        gap: 15px;
    }
    
    .planika-progress-steps::before {
        display: none;
    }
    
    .planika-progress-step {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
    
    .planika-progress-step-number {
        margin-bottom: 0;
        margin-right: 15px;
    }
    
    .planika-option-with-image {
        min-height: 240px;
    }
    
    .planika-option-image img {
        height: 140px;
        object-fit: contain;
    }
    
    .planika-option-with-image .planika-option-title {
        font-size: 15px;
    }
    
    .planika-option-with-image .planika-option-description {
        font-size: 12px;
    }
    
    /* Burner cards mobile adjustments */
    .planika-step-burners .planika-options-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .planika-burner-option {
        min-height: auto;
        padding: 20px;
    }
    
    .planika-burner-option .planika-option-title {
        font-size: 18px;
    }
    
    .planika-burner-option .planika-option-meta {
        font-size: 20px;
    }
    
    /* Burner details mobile styling */
    .planika-burner-summary {
        margin-top: 12px;
        padding-top: 12px;
    }
    
    .planika-burner-features-preview li {
        font-size: 12px;
        padding: 3px 0;
        padding-left: 12px;
    }
    
    .planika-btn-more-info {
        padding: 6px 12px;
        font-size: 12px;
        gap: 3px;
    }
    
    .planika-burner-details {
        padding: 15px;
        margin-top: 12px;
    }
    
    .planika-burner-details h5 {
        font-size: 14px;
        margin-bottom: 10px;
        padding-bottom: 6px;
    }
    
    .planika-burner-detailed-desc p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .planika-burner-features li {
        font-size: 13px;
        padding: 4px 0;
        padding-left: 18px;
    }
    
    .planika-specs-table {
        font-size: 12px;
    }
    
    .planika-specs-table td {
        padding: 6px 8px;
    }
    
    .planika-specs-table td:first-child {
        width: 45%;
    }
}

/* ==========================================================================
   Width Options (Enhanced for Step 2)
   ========================================================================== */

.planika-width-option {
    position: relative;
}

.planika-option-burner-info {
    margin-top: 8px;
    font-size: 12px;
    color: #666;
    font-style: italic;
    border-top: 1px solid #e9ecef;
    padding-top: 8px;
}

.planika-option-width-info {
    margin-top: 5px;
    font-size: 13px;
    color: #28a745;
    font-weight: 500;
}

.planika-width-option:hover .planika-option-burner-info {
    color: #555;
}

/* Tablet responsive for burner cards */
/* Mobile responsive styles for width info */
@media (max-width: 768px) {
    .planika-option-burner-info {
        font-size: 11px;
        padding-top: 6px;
    }
    
    .planika-option-width-info {
        font-size: 12px;
    }
}

/* ==========================================================================
   Burner Overview (Shortcode: [planika_brennere])
   ========================================================================== */

.planika-burner-overview-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.planika-burner-overview {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Header */
.planika-burner-overview-header {
    padding: 40px 30px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: white;
    text-align: center;
}

.planika-burner-overview-title {
    margin: 0 0 15px 0;
    font-size: 32px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.planika-burner-overview-description {
    margin: 0;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.4;
}

/* Grid Layout - Use same as configurator */
.planika-burner-overview-grid {
    display: grid;
    gap: 30px;
    padding: 40px 30px;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.planika-burner-overview-grid[data-columns="2"] {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.planika-burner-overview-grid[data-columns="4"] {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Empty State */
.planika-burner-overview-empty {
    padding: 60px 30px;
    text-align: center;
    color: #6c757d;
}

.planika-burner-overview-empty p {
    margin: 0;
    font-size: 18px;
    font-style: italic;
}

/* Responsive Design for Overview Grid */
@media (max-width: 768px) {
    .planika-burner-overview-wrapper {
        padding: 15px;
    }
    
    .planika-burner-overview-header {
        padding: 30px 20px;
    }
    
    .planika-burner-overview-title {
        font-size: 26px;
    }
    
    .planika-burner-overview-description {
        font-size: 16px;
    }
    
    .planika-burner-overview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .planika-burner-overview-grid[data-columns="2"],
    .planika-burner-overview-grid[data-columns="4"] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .planika-burner-overview-wrapper {
        padding: 10px;
    }
    
    .planika-burner-overview-header {
        padding: 25px 15px;
    }
    
    .planika-burner-overview-title {
        font-size: 22px;
    }
    
    .planika-burner-overview-grid {
        padding: 20px 15px;
        gap: 15px;
    }
}

/* Informational burner cards (for [planika_brennere] shortcode) */
.planika-burner-info-card.planika-burner-option {
    min-height: auto; /* Remove fixed height since no CTA */
}

.planika-burner-info-card .planika-burner-header {
    padding-bottom: 32px; /* More space at bottom since no price section */
    border-bottom: 1px solid #f8fafc;
}

.planika-burner-info-card .planika-burner-content {
    padding-top: 32px; /* More space at top to balance layout */
}

/* Enhanced hover effect for info cards */
.planika-burner-info-card:hover {
    border-color: #6366f1;
    box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Status indicator for availability */
.planika-burner-info-card.available::before {
    content: "";
    position: absolute;
    top: 16px;
    right: 16px;
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.planika-burner-info-card.limited::before {
    background: #f59e0b;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

.planika-burner-info-card.discontinued::before {
    background: #ef4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
    opacity: 0.6;
}

.planika-burner-info-card.discontinued {
    opacity: 0.7;
}

/* Responsive adjustments for info cards */
@media (max-width: 767px) {
    .planika-burner-info-card .planika-burner-header {
        padding: 24px 20px 28px 20px;
    }
    
    .planika-burner-info-card .planika-burner-content {
        padding: 28px 20px 24px 20px;
    }
}

/* ===== BRENNER OVERVIEW SPECIFIC STYLES ===== */
.planika-burner-overview {
    margin: 40px 0;
}

.planika-burner-overview h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: #333;
}

/* ===== BRENNER HELP QUESTION MARK ===== */
.planika-burner-help-wrapper {
    margin-top: 5px;
    margin-bottom: 10px;
}

.planika-burner-help {
    display: inline-block;
    text-decoration: none !important;
    color: #666 !important;
    font-weight: normal !important;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.planika-burner-help:hover {
    background: #333 !important;
    color: white !important;
    border-color: #333;
    text-decoration: none !important;
}

.planika-burner-help:focus {
    outline: 2px solid #0073aa;
    outline-offset: 2px;
}

/* ===== CHECKOUT NOTICE STYLES ===== */
.planika-checkout-notice {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.planika-checkout-notice-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.planika-checkout-notice-icon {
    display: none; /* Hide icon completely */
}

.planika-checkout-notice-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.planika-checkout-notice-content {
    margin: 0;
}

.planika-checkout-notice-products {
    margin: 0 0 8px 0;
    line-height: 1.6;
    font-size: 14px;
    font-weight: 500;
}

.planika-checkout-notice-message {
    margin: 0;
    line-height: 1.6;
    font-size: 14px;
}

/* Warning style (yellow) - without left border */
.planika-checkout-notice-warning {
    background: #fffbf0;
    border-color: #f39c12;
}

.planika-checkout-notice-warning .planika-checkout-notice-title {
    color: #d68910;
}

.planika-checkout-notice-warning .planika-checkout-notice-products {
    color: #b7791f;
}

.planika-checkout-notice-warning .planika-checkout-notice-message {
    color: #8e6a00;
}

/* Info style (blue) - without left border */
.planika-checkout-notice-info {
    background: #f0f8ff;
    border-color: #2980b9;
}

.planika-checkout-notice-info .planika-checkout-notice-title {
    color: #2471a3;
}

.planika-checkout-notice-info .planika-checkout-notice-products {
    color: #2e86ab;
}

.planika-checkout-notice-info .planika-checkout-notice-message {
    color: #1b4f72;
}

/* Notice style (green) - without left border */
.planika-checkout-notice-notice {
    background: #f0fff4;
    border-color: #229954;
}

.planika-checkout-notice-notice .planika-checkout-notice-title {
    color: #1e8449;
}

.planika-checkout-notice-notice .planika-checkout-notice-products {
    color: #28a745;
}

.planika-checkout-notice-notice .planika-checkout-notice-message {
    color: #145a32;
}

/* Responsive design */
@media (max-width: 768px) {
    .planika-checkout-notice {
        padding: 16px;
        margin: 16px 0;
    }
    
    .planika-checkout-notice-header {
        margin-bottom: 10px;
    }
    
    .planika-checkout-notice-title {
        font-size: 15px;
    }
    
    .planika-checkout-notice-products,
    .planika-checkout-notice-message {
        font-size: 13px;
    }
}

/* ===== ORIGINAL STYLES ===== */ 