/* Container */
.desim-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
}

/* Main Tabs */
.desim-main-tabs {
    display: flex;
    border: 1px solid #e0e0e0;
    margin-bottom: 30px;
}
.desim-tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    border-right: 1px solid #e0e0e0;
    padding: 16px 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    color: #333;
    transition: all 0.2s ease;
}
.desim-tab-btn:last-child {
    border-right: none;
}
.desim-tab-btn.active {
    color: #F27B35;
}
.desim-tab-btn:hover {
    background: #fdfdfd;
}

/* Zone Tabs */
.desim-zone-tabs {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #e0e0e0;
    margin-bottom: 40px;
}
.desim-zone-btn {
    flex: 1;
    min-width: 80px;
    background: transparent;
    border: none;
    border-right: 1px solid #e0e0e0;
    padding: 12px 6px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    color: #333;
    text-align: center;
    transition: all 0.2s ease;
}
.desim-zone-btn:last-child {
    border-right: none;
}
.desim-zone-btn.active {
    color: #F27B35;
}
.desim-zone-btn:hover {
    background: #fdfdfd;
}
@media(max-width: 768px) {
    .desim-zone-tabs {
        border-bottom: none;
    }
    .desim-zone-btn {
        border-bottom: 1px solid #e0e0e0;
        min-width: 33.33%;
    }
}

/* Tab Contents */
.desim-tab-content, .desim-zone-content {
    display: none;
}
.desim-tab-content.active, .desim-zone-content.active {
    display: block;
    animation: desimFadeIn 0.3s ease-in-out;
}

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

/* Packages Grid */
.desim-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    justify-content: center;
}
@media(min-width: 1000px) {
    .desim-packages-grid {
        grid-template-columns: repeat(5, 1fr); /* 5 cards per row */
    }
}

/* Package Card */
.desim-package-card {
    background-color: #ffffff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Center horizontally */
    padding: 20px 10px;
    text-align: center;
    min-height: 170px; /* Tighter height */
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    border: 1px solid #f0f0f0;
    color: #F27B35;
    transition: transform 0.2s, box-shadow 0.2s;
}
.desim-package-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.06);
}

.desim-pkg-top {
    /* No margin auto needed anymore since card uses justify-content: center */
    display: flex;
    flex-direction: column;
    align-items: center;
}
.desim-pkg-price {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1;
}
.desim-pkg-data {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}
.desim-pkg-duration {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.95;
    margin-bottom: 5px; /* Spacing before name */
}
.desim-pkg-name {
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
}

/* Empty message */
.desim-empty-msg {
    text-align: center;
    color: #888;
    grid-column: 1 / -1;
    padding: 40px 0;
}
