/* style.css */
:root {
    --gold: #FFC107;
    --gold-hover: #FFB300;
    --green: #4ade80;
    --green-dark: #22c55e;
    --bg-base: #111418;
    --panel-bg: #1c2126;
    --panel-border: rgba(255,255,255,0.05);
    --text-main: #ffffff;
    --text-muted: #9ca3af;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-base) !important;
    background-image: none !important;
    color: var(--text-main);
    min-height: 100vh;
}

.site-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.3) blur(2px);
}

.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Hero Header */
.hero-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0 3rem;
}

.hero-side {
    flex: 1;
}
.hero-right {
    display: flex;
    justify-content: flex-end;
}

.hero-center {
    flex: 2;
    display: flex;
    justify-content: center;
}

.main-logo {
    max-width: 350px;
    width: 100%;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    transition: transform 0.3s ease;
}
.main-logo:hover {
    transform: scale(1.02);
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s;
}
.hero-btn:hover {
    transform: translateY(-2px);
}

.hero-btn-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(74, 222, 128, 0.2);
    border: 2px solid var(--green);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.hero-btn-icon.discord {
    background: rgba(88, 101, 242, 0.2);
    border-color: #5865F2;
}

.hero-btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.hero-btn-text.text-right {
    text-align: right;
}
.hero-btn-text span {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}
.hero-btn-text small {
    color: var(--green);
    font-weight: 600;
    font-size: 0.85rem;
}

/* Status Bar */
.status-bar {
    background: var(--panel-bg);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.status-left {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    gap: 1rem;
}

.status-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.status-text {
    display: flex;
    flex-direction: column;
}
.status-text strong {
    font-size: 1.2rem;
    color: var(--text-main);
}
.status-text span {
    color: var(--green);
    font-size: 0.9rem;
    font-weight: 600;
}

.status-right {
    display: flex;
}

/* Slanted Buttons */
.slanted-btn {
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: skew(-20deg);
    margin-right: -20px;
    cursor: pointer;
    transition: filter 0.3s;
}
.slanted-btn:hover {
    filter: brightness(1.1);
}

.slanted-content {
    transform: skew(20deg);
    display: flex;
    flex-direction: column;
    text-align: center;
    color: var(--bg-base);
}
.slanted-content small {
    font-size: 0.75rem;
    font-weight: 800;
}
.slanted-content strong {
    font-size: 1.2rem;
    font-weight: 900;
}

.basket-btn {
    background: var(--gold);
}
.login-btn {
    background: var(--green);
    padding-right: 4rem;
}

/* Sale Banner */
.sale-banner {
    background: var(--panel-bg);
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.sale-info h2 {
    font-size: 2rem;
    font-weight: 900;
}
.sale-info p {
    color: var(--green);
    font-weight: 600;
}
.sale-timer {
    display: flex;
    gap: 1rem;
}
.time-box {
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.time-box strong { font-size: 1.5rem; font-weight: 900; }
.time-box small { font-size: 0.7rem; color: var(--text-muted); font-weight: 800; }

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    height: auto;
}

.cat-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    min-height: 240px;
    text-decoration: none;
    color: white;
    transition: transform 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cat-full-width {
    grid-column: span 2;
    min-height: 200px;
}

.cat-card:hover {
    transform: translateY(-5px) scale(1.01);
}

.cat-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 1;
}

.cat-content {
    position: relative;
    z-index: 2;
}
.cat-content h2 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
}
.cat-content p {
    font-weight: 800;
    font-size: 1.1rem;
    text-shadow: 1px 2px 5px rgba(0,0,0,0.5);
}

/* Info Panels */
.panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.content-panel {
    background: var(--panel-bg);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.content-panel h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}
.content-panel p {
    color: var(--text-muted);
    line-height: 1.8;
    text-align: center;
    font-size: 0.95rem;
}

.text-center { text-align: center; }

/* Goal Progress */
.goal-progress-wrap {
    background: rgba(0,0,0,0.3);
    border-radius: 6px;
    height: 40px;
    padding: 4px;
    margin-bottom: 1rem;
}
.goal-bar {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    position: relative;
}
.goal-fill {
    height: 100%;
    background: var(--green);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
    font-weight: 800;
    color: var(--bg-base);
}
.goal-times {
    font-size: 0.85rem;
    color: var(--green) !important;
    font-weight: 600;
}

.top-supporter-name {
    font-size: 1.5rem;
    color: var(--text-main);
    display: block;
    margin-top: 2rem;
}

/* Recent Supporters */
.full-width {
    grid-column: 1 / -1;
}

.supporters-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.supporter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.supporter img {
    border-radius: 8px;
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.05);
}
.supporter span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Modals & Cart */
.modal-overlay, .cart-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.modal-overlay.active, .cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: var(--panel-bg);
    padding: 2.5rem;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--panel-border);
}
.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.modal-box h2 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.modal-box p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.modal-input {
    width: 100%;
    padding: 1rem;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    color: var(--text-main);
    font-size: 1rem;
    margin-bottom: 1rem;
    outline: none;
}
.modal-input:focus { border-color: var(--green); }

.modal-submit {
    width: 100%;
    padding: 1rem;
    background: var(--green);
    color: var(--bg-base);
    border: none;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.modal-submit:hover { background: var(--green-dark); }

.close-btn {
    position: absolute;
    top: 1rem; right: 1rem;
    background: none; border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s;
}
.close-btn:hover { color: var(--text-main); }

/* Cart Sidebar */
.cart-overlay {
    justify-content: flex-end;
}
.cart-panel {
    background: var(--panel-bg);
    width: 100%;
    max-width: 350px;
    height: 100%;
    border-left: 1px solid var(--panel-border);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    position: relative;
}
.cart-overlay.active .cart-panel {
    transform: translateX(0);
}
.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--panel-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-header h2 { color: var(--gold); }
.cart-header .close-btn { position: static; }

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0,0,0,0.2);
    padding: 0.5rem;
    border-radius: 8px;
}
.cart-item img {
    width: 50px; height: 50px;
    border-radius: 6px;
    object-fit: cover;
}
.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.cart-item-info strong { color: var(--text-main); font-size: 0.95rem; }
.cart-item-info span { color: var(--green); font-size: 0.85rem; font-weight: 600; }
.remove-item {
    background: none; border: none;
    color: #ef4444; cursor: pointer;
    padding: 0.5rem; transition: color 0.2s;
}
.remove-item:hover { color: #dc2626; }

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--panel-border);
}
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}
.cart-total strong { color: var(--gold); font-size: 1.5rem; font-weight: 900; }
.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gold);
    color: var(--bg-base);
    border: none;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: filter 0.2s;
}
.checkout-btn:hover { filter: brightness(1.1); }

/* Category Page */
.page-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--panel-bg);
    padding: 1.5rem 2rem;
    border-radius: 8px;
}
.back-btn {
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: color 0.2s;
}
.back-btn:hover { color: var(--text-main); }
.page-header h2 {
    font-size: 1.5rem;
}
.page-header h2 span { color: var(--green); font-weight: 900; }

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.package-card-new {
    background: var(--panel-bg);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--panel-border);
    transition: transform 0.2s, border-color 0.2s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.package-card-new:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
}

.pkg-img-box {
    background: rgba(255, 255, 255, 0.03);
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 2rem;
}
.pkg-img-box img {
    max-width: 100%;
    max-height: 100%;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
}

.pkg-info {
    width: 100%;
    text-align: center;
}
.pkg-info h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}
.pkg-price-row {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}
.old-price {
    color: #ef4444;
    text-decoration: line-through;
    font-weight: 700;
    font-size: 0.95rem;
}
.new-price {
    color: var(--text-main);
    font-weight: 900;
    font-size: 1.15rem;
}

.pkg-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.action-btn {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    border: none;
    background: var(--green);
    color: var(--bg-base);
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.action-btn:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
    .hero-header { flex-direction: column; gap: 2rem; }
    .status-bar { flex-direction: column; border-radius: 8px; }
    .slanted-btn { transform: none; margin: 0; padding: 1.5rem; width: 100%; }
    .slanted-content { transform: none; }
    .status-right { flex-direction: column; width: 100%; }
    
    .sale-banner { flex-direction: column; gap: 1.5rem; text-align: center; }
    .categories-grid { grid-template-columns: 1fr; height: auto; }
    .cat-card { height: 250px; }
    .panel-grid { grid-template-columns: 1fr; }
}

/* Solara Plus Custom Page */
.plus-container {
    background: var(--panel-bg);
    border-radius: 12px;
    border: 2px solid var(--gold);
    padding: 3rem;
    margin-top: 1rem;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.1);
}
.plus-header {
    text-align: center;
    margin-bottom: 3rem;
}
.plus-header h1 {
    color: var(--gold);
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.plus-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 1rem auto;
    line-height: 1.6;
}

.plus-section {
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--gold);
}
.plus-section.green-border {
    border-left-color: var(--green);
}
.plus-section h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.plus-section ul {
    list-style: none;
    padding: 0;
}
.plus-section ul li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
}
.plus-section ul li strong {
    color: var(--gold);
}
.discord-tag {
    background: rgba(255,255,255,0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
    color: #a78bfa;
    font-size: 0.95rem;
}

.buy-plus-box {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid var(--green);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}
.buy-plus-box h2 {
    color: var(--green);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.buy-plus-box p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.add-to-cart-plus {
    background: var(--green);
    color: var(--bg-base);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.25rem;
    font-weight: 900;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}
.add-to-cart-plus:hover {
    transform: scale(1.05);
    background: var(--green-dark);
}

/* Package View Page (when clicking info) */
.package-view-wrapper {
    background: var(--panel-bg);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}
.package-view-left {
    flex: 1;
    max-width: 400px;
    background: rgba(255,255,255,0.03);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}
.package-view-left img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
}
.package-view-right {
    flex: 2;
}
.package-view-right h1 {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}
.package-view-desc {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--green);
    margin-bottom: 2rem;
    line-height: 1.6;
    color: var(--text-muted);
}
.package-view-desc ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}
.package-view-desc li {
    margin-bottom: 0.5rem;
}
.package-view-buy-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255,255,255,0.02);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--panel-border);
}
.package-view-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
}
.package-purchase-form {
    display: flex; 
    gap: 1rem; 
    align-items: center; 
    flex: 1; 
    justify-content: flex-end;
}

@media (max-width: 600px) {
    .package-view-wrapper {
        flex-direction: column;
        padding: 1.5rem;
    }
    .package-view-left {
        max-width: 100%;
    }
    .package-view-buy-box {
        flex-direction: column;
        text-align: center;
    }
    .package-purchase-form {
        justify-content: center;
        width: 100%;
    }
}

/* Tebex Default Checkout & Panel Styling */
.panel-default, .panel, .module, .tebex-module {
    background: var(--panel-bg);
    border-radius: 12px;
    border: 1px solid var(--panel-border);
    margin: 2rem auto;
    max-width: 900px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    color: var(--text-main);
}
.panel-heading, .module-header, .module-title {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    border-bottom: 1px solid var(--panel-border);
}
.panel-body, .module-body {
    padding: 2rem;
}
.panel-body table, .table, .module-body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}
.panel-body th, .table th, .module-body th {
    text-align: left;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--panel-border);
}
.panel-body td, .table td, .module-body td {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    vertical-align: middle;
}
.panel-body input[type="text"], 
.panel-body input[type="number"],
.panel-body select,
.form-control {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--panel-border);
    color: var(--text-main);
    padding: 0.75rem;
    border-radius: 6px;
    outline: none;
    font-family: 'Outfit', sans-serif;
    width: 100%;
    box-sizing: border-box;
}
.panel-body input:focus,
.panel-body select:focus,
.form-control:focus {
    border-color: var(--gold);
}
.btn, .btn-primary, .btn-success, .btn-default {
    background: var(--green) !important;
    color: var(--bg-base) !important;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 900;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    text-shadow: none !important;
    box-shadow: none !important;
}
.btn:hover, .btn-primary:hover {
    transform: scale(1.05);
    background: var(--green-dark) !important;
}
.panel-body a {
    color: #ef4444;
    text-decoration: none;
    font-weight: 800;
}
.panel-body a:hover {
    text-decoration: underline;
}
.text-right { text-align: right; }
.pull-right { float: right; }

/* Modal and Cart Sidebar CSS */
.modal-overlay, .cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.modal-overlay.active, .cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Login Modal */
.modal-box {
    background: var(--panel-bg);
    padding: 3rem;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border: 1px solid var(--panel-border);
}
.modal-overlay.active .modal-box {
    transform: translateY(0);
}
.modal-box h2 { color: var(--gold); margin-bottom: 1rem; }
.modal-box p { color: var(--text-muted); margin-bottom: 2rem; }
.modal-input {
    width: 100%;
    padding: 1rem;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--panel-border);
    border-radius: 6px;
    color: var(--text-main);
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    outline: none;
}
.modal-submit {
    width: 100%;
    padding: 1rem;
    background: var(--green);
    color: var(--bg-base);
    border: none;
    border-radius: 6px;
    font-weight: 800;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: 0.2s ease;
}
.modal-submit:hover { background: var(--green-dark); }

/* Cart Sidebar */
.cart-overlay {
    justify-content: flex-end;
}
.cart-panel {
    background: var(--panel-bg);
    width: 100%;
    max-width: 400px;
    height: 100%;
    border-left: 1px solid var(--panel-border);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}
.cart-overlay.active .cart-panel {
    transform: translateX(0);
}
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--panel-border);
}
.cart-header h2 { color: var(--gold); }
.close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.2s;
}
.close-btn:hover { color: var(--text-main); }
.cart-items {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.03);
    padding: 1rem;
    border-radius: 8px;
}
.cart-item img {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    object-fit: cover;
}
.cart-item-info { flex: 1; display: flex; flex-direction: column; }
.cart-item-info strong { color: var(--text-main); }
.cart-item-info span { color: var(--green); font-weight: 800; }
.remove-item { color: #ef4444; transition: 0.2s; }
.remove-item:hover { color: #dc2626; transform: scale(1.1); }
.cart-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--panel-border);
}
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.cart-total span { color: var(--text-muted); }
.cart-total strong { color: var(--green); }
.checkout-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--green);
    color: var(--bg-base);
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 800;
    transition: 0.2s;
}
.checkout-btn:hover { background: var(--green-dark); }

/* Comprehensive Mobile Responsiveness */
@media (max-width: 600px) {
    .main-wrapper { padding: 1rem; }
    
    .hero-btn { flex-direction: column; text-align: center; gap: 0.5rem; }
    .hero-btn-text, .hero-btn-text.text-right { text-align: center; }
    .main-logo { max-width: 250px; }
    
    .status-left { flex-direction: column; text-align: center; padding: 1rem; }
    
    .page-header { flex-direction: column; text-align: center; gap: 1rem; padding: 1rem; }
    
    .cat-content h2 { font-size: 2rem; }
    .sale-info h2 { font-size: 1.5rem; }
    
    .content-panel, .panel-body, .module-body { padding: 1.5rem; }
    
    .plus-container { padding: 1.5rem; }
    .plus-header h1 { font-size: 1.8rem; }
    
    .cart-panel { max-width: 100%; border-left: none; }
    .modal-box { padding: 1.5rem; margin: 1rem; }
    
    .supporters-row { flex-direction: column; align-items: center; }
    
    .pkg-img-box { padding: 1rem; }
}