/** Shopify CDN: Minification failed

Line 161:15 Expected identifier but found whitespace
Line 161:17 Unexpected "{"
Line 161:26 Expected ":"
Line 162:10 Expected identifier but found whitespace
Line 162:12 Unexpected "{"
Line 162:21 Expected ":"
Line 193:10 Expected identifier but found whitespace
Line 193:12 Unexpected "{"
Line 193:21 Expected ":"

**/


/* CSS from section stylesheet tags */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.esim-devices-section {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    min-height: 100vh;
    padding: 40px 20px;
}

.esim-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 60px 40px;
}

.esim-header {
    text-align: center;
    margin-bottom: 50px;
}

.esim-header h1 {
    font-size: 3rem;
    color: #1F2937;
    margin-bottom: 10px;
    font-weight: 700;
}

.esim-header p {
    font-size: 1.3rem;
    color: #4B5563;
}

.esim-search-container {
    max-width: 600px;
    margin: 0 auto 50px;
    position: relative;
}

.esim-search-box {
    width: 100%;
    padding: 18px 50px 18px 20px;
    font-size: 1.1rem;
    border: 2px solid #E5E7EB;
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.esim-search-box:focus {
    border-color: #8B5CF6;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.esim-search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #8B5CF6;
    font-size: 1.3rem;
}

.esim-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.esim-tab {
    padding: 14px 35px;
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.05rem;
    color: #374151;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.esim-tab:hover {
    background: #F9FAFB;
    border-color: #8B5CF6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.esim-tab.active {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
    border-color: #7C3AED;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
}

.esim-devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.esim-device-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.esim-device-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.3);
    border-color: #8B5CF6;
}

.esim-device-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.esim-device-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.esim-device-status {
    display: inline-block;
    padding: 5px 15px;
    background: {{ section.settings.status_bg_color }};
    color: {{ section.settings.status_text_color }};
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.esim-device-btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(139, 92, 246, 0.3);
}

.esim-device-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

.esim-table-section {
    margin-top: 60px;
}

.esim-table-section h2 {
    font-size: 2rem;
    color: {{ section.settings.heading_color }};
    margin-bottom: 30px;
    text-align: center;
}

.esim-table-container {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
}

.esim-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.esim-table thead {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
}

.esim-table th {
    padding: 18px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.esim-table td {
    padding: 15px 18px;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
}

.esim-table tr:last-child td {
    border-bottom: none;
}

.esim-table tbody tr:hover {
    background: #f7fafc;
}

.esim-status-yes {
    color: #22543d;
    font-weight: 600;
}

.esim-status-no {
    color: #742a2a;
    font-weight: 600;
}

.esim-cta-section {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    border-radius: 15px;
    color: white;
}

.esim-cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.esim-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.esim-cta-btn {
    padding: 15px 40px;
    background: white;
    color: #8B5CF6;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.esim-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .esim-devices-section {
        padding: 20px 15px;
    }

    .esim-container {
        padding: 40px 20px;
        border-radius: 15px;
    }

    .esim-header {
        margin-bottom: 35px;
    }

    .esim-header h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .esim-header p {
        font-size: 0.95rem;
    }

    .esim-search-container {
        margin-bottom: 35px;
    }

    .esim-search-box {
        padding: 15px 45px 15px 18px;
        font-size: 0.95rem;
    }

    .esim-tabs {
        gap: 10px;
        margin-bottom: 30px;
    }

    .esim-tab {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .esim-devices-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }

    .esim-device-card {
        padding: 20px;
    }

    .esim-device-icon {
        font-size: 3.5rem;
    }

    .esim-device-name {
        font-size: 1rem;
    }

    .esim-table-section {
        margin-top: 50px;
    }

    .esim-table-section h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .esim-table-container {
        border-radius: 10px;
    }

    .esim-table {
        font-size: 0.8rem;
    }

    .esim-table th,
    .esim-table td {
        padding: 10px 8px;
    }

    .esim-table th {
        font-size: 0.8rem;
    }

    .esim-cta-section {
        margin-top: 40px;
        padding: 30px 20px;
        border-radius: 12px;
    }

    .esim-cta-section h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .esim-cta-section p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .esim-cta-btn {
        padding: 12px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .esim-devices-section {
        padding: 15px 10px;
    }

    .esim-container {
        padding: 30px 15px;
    }

    .esim-header h1 {
        font-size: 1.5rem;
    }

    .esim-header p {
        font-size: 0.9rem;
    }

    .esim-tab {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .esim-device-icon {
        font-size: 3rem;
    }

    .esim-table th,
    .esim-table td {
        padding: 8px 6px;
        font-size: 0.75rem;
    }

    .esim-cta-section h3 {
        font-size: 1.2rem;
    }

    .esim-cta-section p {
        font-size: 0.85rem;
    }

    .esim-cta-btn {
        padding: 10px 30px;
        font-size: 0.95rem;
    }
}