.acs-cs-container {
    font-family: 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #333;
    box-sizing: border-box;
}

.acs-cs-container * {
    box-sizing: border-box;
}

/* Header & Dropdown */
.acs-cs-header-wrapper {
    text-align: center;
    margin-bottom: 80px;
}

.acs-cs-header-wrapper h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #FFF;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.acs-cs-header-wrapper p {
    color: #C10000;
    font-size: 1.2rem;
    margin: 0 0 30px;
}

.acs-cs-custom-select {
    position: relative;
    display: inline-block;
    min-width: 320px;
    max-width: 100%;
}

.acs-cs-select-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0D0000;
    border: 1px solid #C10000;
    border-radius: 30px;
    padding: 10px 25px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.acs-cs-select-selected:hover {
    background: #1A0000;
}

.acs-cs-select-selected.acs-cs-active {
    border-radius: 20px 20px 0 0;
    border-bottom-color: transparent;
}

.acs-cs-select-icon {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.acs-cs-select-text {
    flex: 1;
    color: #FFF;
    font-size: 1rem;
    text-align: left;
}

.acs-cs-select-arrow {
    display: flex;
    align-items: center;
    margin-left: 15px;
    transition: transform 0.3s;
}

.acs-cs-select-selected.acs-cs-active .acs-cs-select-arrow {
    transform: rotate(180deg);
}

.acs-cs-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1A0000;
    border: 1px solid #C10000;
    border-top: none;
    border-radius: 0 0 20px 20px;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 100;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0s 0.3s;
}

.acs-cs-select-options.acs-cs-open {
    max-height: 250px;
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0s 0s;
}

/* Custom Scrollbar for Dropdown */
.acs-cs-select-options::-webkit-scrollbar {
    width: 6px;
}

.acs-cs-select-options::-webkit-scrollbar-track {
    background: #000;
    border-radius: 0 0 20px 0;
}

.acs-cs-select-options::-webkit-scrollbar-thumb {
    background: #C10000;
    border-radius: 3px;
}

.acs-cs-select-option {
    padding: 15px 25px 15px 50px;
    color: #FFF;
    cursor: pointer;
    transition: background 0.2s;
    text-align: left;
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
}

.acs-cs-select-option:last-child {
    border-bottom: none;
    border-radius: 0 0 20px 20px;
}

.acs-cs-select-option:hover {
    background: #330000;
}

/* Cards Grid */
.acs-cs-cards-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
    transition: opacity 0.3s ease;
}

.acs-cs-hidden {
    display: none !important;
}

.acs-cs-empty-state {
    text-align: left;
    color: #FFF;
    padding: 60px 35px;
    background: linear-gradient(180deg, rgba(193, 0, 0, 1) 0%, rgba(83, 0, 0, 1) 100%);
    border-radius: 20px;
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.acs-cs-empty-state::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1.6px;
    border-radius: 20px;
    background: linear-gradient(231deg, rgba(129, 0, 6, 1) 35%, rgba(231, 0, 11, 1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: 1;
    pointer-events: none;
}

.acs-cs-empty-state-content {
    position: relative;
    z-index: 2;
}

.acs-cs-empty-state-title {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    margin: 0 0 40px;
    text-transform: none;
}

.acs-cs-empty-state-text {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 15px;
    margin: 0;
}

@media (max-width: 768px) {
    .acs-cs-empty-state {
        padding: 40px 30px;
    }

    .acs-cs-empty-state-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
}

.acs-cs-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.acs-cs-card-inner {
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Standard Card (1 & 3) */
.acs-cs-card-standard .acs-cs-card-inner {
    background: linear-gradient(180deg, #DDDDE8 0%, rgba(162, 163, 168, 0.99) 100%);
    color: #333;
}

/* Highlight Card (2) */
.acs-cs-card-highlight .acs-cs-card-inner {
    background: linear-gradient(180deg,
            rgba(193, 0, 0, 0.8) 0%,
            rgba(83, 0, 0, 0.8) 100%);
    /* Darker red */
    color: #FFF;
    transform: scale(1.05);
    /* Elevate slightly */
    z-index: 10;
}

.acs-cs-card-highlight .acs-cs-card-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1.6px;
    border-radius: 16px;
    background: linear-gradient(231deg,
            rgba(129, 0, 6, 1) 35%,
            rgba(231, 0, 11, 1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: 1;
    pointer-events: none;
}

.acs-cs-badge-placeholder {
    height: 24px;
    margin-bottom: 10px;
}

.acs-cs-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #C10000;
    color: #FFF;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 5px 20px;
    border-radius: 20px;
    text-transform: uppercase;
    z-index: 11;
}

.acs-cs-plan-name {
    font-size: .95rem;
    font-weight: 700;
    margin: 10px 0 5px;
    text-transform: uppercase;
    color: inherit;
}

.acs-cs-price-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.acs-cs-price-promo {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: #C10000;
    /* Red price for light cards */
}

.acs-cs-card-highlight .acs-cs-price-promo {
    color: #FFF;
    /* White price for dark card */
}

.acs-cs-price-regular {
    font-size: 0.9rem;
    opacity: 0.7;
    max-width: 120px;
    line-height: 1.2;
    text-align: left;
}

.acs-cs-card-highlight .acs-cs-price-regular::first-line {
    color: #FFFFFF;
    opacity: 1;
}

.acs-cs-sub-texts {
    margin-bottom: 25px;
}

.acs-cs-sub1 {
    font-size: 0.85rem;
    font-weight: 400;
    color: #C10000;
    margin: 0 0 10px;
}

.acs-cs-card-highlight .acs-cs-sub1 {
    color: #E26E6E;
    /* Lighter red for visibility */
}

.acs-cs-sub2 {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

.acs-cs-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex-grow: 1;
}

.acs-cs-features li {
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    line-height: 1.4;
}

.acs-cs-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.acs-cs-card-footer {
    text-align: center;
}

.acs-cs-btn {
    display: block;
    background: #C10000;
    color: #FFF;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: background 0.3s;
}

.acs-cs-btn:hover {
    background: #D00000;
    color: #fff;
    text-decoration: underline;
}

.acs-cs-card-highlight .acs-cs-btn {
    background: #C10000;
}

.acs-cs-obs {
    font-size: 0.7rem;
    opacity: 0.6;
    margin: 15px 0 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
    .acs-cs-cards-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .acs-cs-card-highlight .acs-cs-card-inner {
        transform: scale(1);
        /* remove scale on mobile */
    }

    .acs-cs-card {
        width: 100%;
        max-width: 400px;
    }
}

/* Gold Layout Specifics */
.acs-cs-layout-gold .acs-cs-card-highlight .acs-cs-card-inner {
    background: linear-gradient(155deg, #B26701 0%, #C08716 30%, #F0DF75 54%, #B26701 100%);
    color: #171717; /* Dark text for better contrast on gold */
}

.acs-cs-layout-gold .acs-cs-card-highlight .acs-cs-card-inner::before {
    background: linear-gradient(231deg, #EEDB71 0%, #B26701 100%);
}

.acs-cs-layout-gold .acs-cs-card-highlight .acs-cs-badge {
    background: #F6C500;
    color: #824B00;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.acs-cs-layout-gold .acs-cs-card-highlight .acs-cs-plan-name {
    color: #FFFFFF;
}

.acs-cs-layout-gold .acs-cs-card-highlight .acs-cs-price-promo {
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.acs-cs-layout-gold .acs-cs-card-highlight .acs-cs-price-regular {
    color: #FFFFFF;
    opacity: 1;
}

.acs-cs-layout-gold .acs-cs-card-highlight .acs-cs-sub1 {
    color: #824B00;
    font-weight: 600;
}

.acs-cs-layout-gold .acs-cs-card-highlight .acs-cs-sub2 {
    color: #171717;
    opacity: 1;
    font-weight: 500;
}

.acs-cs-layout-gold .acs-cs-card-highlight .acs-cs-features li {
    color: #171717;
    font-weight: 500;
}

.acs-cs-layout-gold .acs-cs-card-highlight .acs-cs-btn {
    background: #824B00;
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 15px rgba(130, 75, 0, 0.3);
}

.acs-cs-layout-gold .acs-cs-card-highlight .acs-cs-btn:hover {
    background: #9C5702;
    transform: translateY(-2px);
}

.acs-cs-layout-gold .acs-cs-card-highlight .acs-cs-obs {
    color: #824B00;
    opacity: 0.8;
}

/* Mixed Layout: Side cards Red, Center card Gold */
.acs-cs-layout-mixed .acs-cs-card-inner {
    background: linear-gradient(180deg, #C10000 0%, #830000 100%);
    color: #FFFFFF;
}

.acs-cs-layout-mixed .acs-cs-card-inner::before {
    background: linear-gradient(231deg, #FF3D3D 0%, #C10000 100%);
}

.acs-cs-layout-mixed .acs-cs-plan-name,
.acs-cs-layout-mixed .acs-cs-price-promo,
.acs-cs-layout-mixed .acs-cs-price-regular,
.acs-cs-layout-mixed .acs-cs-sub1,
.acs-cs-layout-mixed .acs-cs-sub2,
.acs-cs-layout-mixed .acs-cs-features li {
    color: #FFFFFF;
}

.acs-cs-layout-mixed .acs-cs-btn {
    background: #FFFFFF;
    color: #C10000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.acs-cs-layout-mixed .acs-cs-btn:hover {
    background: #F0F0F0;
}

/* Mixed layout highlight card override (Gold) */
.acs-cs-layout-mixed .acs-cs-card-highlight .acs-cs-card-inner {
    background: linear-gradient(155deg, #B26701 0%, #C08716 30%, #F0DF75 54%, #B26701 100%);
    color: #171717;
}

.acs-cs-layout-mixed .acs-cs-card-highlight .acs-cs-card-inner::before {
    background: linear-gradient(231deg, #EEDB71 0%, #B26701 100%);
}

.acs-cs-layout-mixed .acs-cs-card-highlight .acs-cs-badge {
    background: #F6C500;
    color: #824B00;
}

.acs-cs-layout-mixed .acs-cs-card-highlight .acs-cs-plan-name,
.acs-cs-layout-mixed .acs-cs-card-highlight .acs-cs-price-promo,
.acs-cs-layout-mixed .acs-cs-card-highlight .acs-cs-price-regular {
    color: #FFFFFF;
}

.acs-cs-layout-mixed .acs-cs-card-highlight .acs-cs-sub1 {
    color: #824B00;
}

.acs-cs-layout-mixed .acs-cs-card-highlight .acs-cs-sub2,
.acs-cs-layout-mixed .acs-cs-card-highlight .acs-cs-features li {
    color: #171717;
}

.acs-cs-layout-mixed .acs-cs-card-highlight .acs-cs-btn {
    background: #824B00;
    color: #FFFFFF;
}