/* CSS Variables & Global Styles */
:root {
    --bg-dark: #180a29;
    --bg-card: #220e36;
    --primary: #d900ff;
    --secondary: #7b2cbf;
    --text-main: #ffffff;
    --text-muted: #b3b3b3;
    --accent-gradient: linear-gradient(135deg, #ff00cc, #9900ff);
    --card-border: rgba(255, 255, 255, 0.1);
    --glow: 0 0 20px rgba(217, 0, 255, 0.3);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Pattern */
/* Background Pattern removed from global body */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 0;
    background: rgba(5, 2, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: -10px;
}

.logo i {
    display: none;
    /* Deprecated */
}

.nav-logo-icon {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(217, 0, 255, 0.5));
}

.logo span {
    color: #d900ff;
}

.logo .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
}


.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-dark);
    /* Ensure robust background */
}

/* Grid Pattern for Hero Only */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
}

/* Corner Glow Effect */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 0% 0%, rgba(217, 0, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 100% 0%, rgba(0, 204, 255, 0.1) 0%, transparent 40%);
    z-index: 0;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    /* Bring content above grid and glow */
}

/* Decorative Plus Icons */
.hero-plus-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    font-size: 1.5rem;
    font-weight: 300;
    z-index: 1;
    animation: blink 4s infinite ease-in-out;
}

.hero-star {
    position: absolute;
    color: #ffd700;
    /* Gold color for stars */
    font-size: 1.2rem;
    z-index: 1;
    opacity: 0.8;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
    animation: twinkle 3s infinite ease-in-out alternate;
}

@keyframes twinkle {
    0% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1.2) rotate(15deg);
    }

}

@keyframes blink {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 0, 204, 0.15);
    border: 1px solid rgba(255, 0, 204, 0.5);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: #ff5de3;
    margin-bottom: 20px;
    box-shadow: 0 0 25px rgba(255, 0, 204, 0.6);
    animation: float 4s ease-in-out infinite;
}

.badge i {
    margin-right: 5px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 800;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 540px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: #130a1c;
    border: 1px solid rgba(255, 0, 204, 0.2);
    padding: 12px 30px 12px 12px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 0 35px rgba(255, 0, 204, 0.5);
    animation: float 3s ease-in-out infinite;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(217, 0, 255, 0.3);
    border-color: #ff00cc;
    animation-play-state: paused;
}

.icon-circle {
    width: 55px;
    height: 55px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    color: white;
    margin-right: 15px;
    box-shadow: 0 0 15px rgba(217, 0, 255, 0.5);
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-text strong {
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.btn-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Hero Visual Animation */
.hero-visual {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

.glowing-circle {
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    position: relative;
    animation: rotate 20s linear infinite;
    box-shadow: none;
}

.glowing-circle::before {
    content: '';
    position: absolute;
    top: 50px;
    /* Offset dot */
    left: 85%;
    width: 8px;
    height: 8px;
    background: #d900ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #d900ff, 0 0 20px #d900ff;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Features */
.features {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(20, 10, 30, 0.5));
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.underline {
    width: 60px;
    height: 4px;
    background: var(--accent-gradient);
    margin: 0 auto 50px;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    /* Centered as per new style typically */
    transition: 0.3s;
    border: 1px solid var(--card-border);
}

.feature-card:hover {
    border-color: #ff00cc;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 0, 204, 0.2);
}

.feature-card:hover .icon-box {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 0 20px rgba(255, 0, 204, 0.4);
    transform: scale(1.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 auto 20px;
    /* Center icon */
    transition: all 0.3s ease;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Skeleton Loader */
.skeleton-card {
    height: 450px;
    border-radius: 24px;
    background: var(--bg-card);
    /* Dark background similar to plan cards */
    border: 1px solid var(--card-border);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.skeleton-block {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

/* Shimmer Effect on Blocks */
.skeleton-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0) 100%);
    animation: shimmer 1.5s infinite;
}

.title-block {
    width: 40%;
    height: 20px;
}

.subtitle-block {
    width: 70%;
    height: 20px;
    margin-bottom: 20px;
}

.content-block {
    width: 100%;
    flex-grow: 1;
    /* Fills remaining space */
    border-radius: 16px;
}

.btn-block {
    width: 100%;
    height: 50px;
    border-radius: 50px;
    margin-top: auto;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Plans Section */
.plans {
    padding: 80px 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    justify-content: center;
}

.plan-card {
    background: linear-gradient(145deg, #3d1f4d, #2d1a3d);
    border: 2px solid rgba(255, 102, 179, 0.6);
    border-radius: 24px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    border-color: #ff66b3;
    box-shadow: 0 0 40px rgba(255, 102, 179, 0.4);
    transform: translateY(-5px) scale(1.03);
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.plan-header h3 {
    font-size: 1.3rem;
}

.duration {
    font-size: 0.7rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.duration-select {
    font-size: 0.75rem;
    background: rgba(255, 0, 204, 0.1);
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    font-weight: 700;
    border: 1px solid rgba(255, 0, 204, 0.3);
    outline: none;
    cursor: pointer;
    font-family: var(--font-main);
    transition: 0.3s;
}

.duration-select:hover,
.duration-select:focus {
    background: #ff00cc;
    border-color: white;
    box-shadow: 0 0 10px rgba(255, 0, 204, 0.5);
}

.duration-select option {
    background: #180a29;
    color: white;
}

.price-box {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    /* Lighter grey for better visibility on dark bg */
    font-size: 1rem;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.discount-badge {
    display: inline-block;
    background: #ff66b3;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(255, 102, 179, 0.5);
}

.plan-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: white;
    display: flex;
    align-items: center;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.plan-features li i {
    color: #00ff88;
    /* Green checkmark */
    margin-right: 10px;
    font-size: 0.9rem;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}

.buy-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ff66b3 0%, #ff3399 100%);
    color: white;
    text-align: center;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 102, 179, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.buy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.buy-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 30px rgba(255, 102, 179, 0.6);
}

.buy-btn:hover::before {
    left: 100%;
}

.disclaimer {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-align: center;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    text-align: center;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* Align top */
    gap: 0px;
    flex-wrap: wrap;
    /* Fallback */
    margin-top: 50px;
}

.step-item {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 40px;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff007f;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.step-item h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 250px;
}

.step-connector {
    padding-top: 25px;
    /* Align with icon center approximately */
    color: var(--text-muted);
    opacity: 0.3;
    font-size: 0.8rem;
}

/* Help Section */
.help-section {
    padding: 60px 0;
}

.help-card {
    background: #181024;
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.help-card h2 {
    margin-bottom: 10px;
}

.help-card p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 220px;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.contact-btn i {
    font-size: 2rem;
    margin-right: 15px;
}

.instagram i {
    color: #E1306C;
}

.whatsapp i {
    color: #25D366;
}

.btn-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.btn-info strong {
    font-size: 0.95rem;
    font-weight: 600;
}


/* Customer Details Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Darker backdrop */
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #180a29;
    /* Match your card bg */
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    border: 1px solid rgba(217, 0, 255, 0.2);
    box-shadow: 0 0 40px rgba(217, 0, 255, 0.2);
    text-align: left;
    position: relative;
    animation: fadeInScale 0.3s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-header h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    color: #b3b3b3;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.form-control:focus {
    border-color: #d900ff;
    background: rgba(255, 255, 255, 0.1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    opacity: 0.7;
}

.modal-close:hover {
    opacity: 1;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background: #ff00cc;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-submit:hover {
    box-shadow: 0 0 15px rgba(255, 0, 204, 0.4);
}



/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 20px;
    font-size: 0.9rem;
    background: #020105;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand i {
    color: var(--primary);
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 250px;
}

.footer-links h4,
.footer-legal h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-legal p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-legal .small-text {
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Track Order */
.track-order {
    padding: 80px 0;
    background: linear-gradient(0deg, rgba(20, 10, 30, 0.5), transparent);
}

.track-form-container {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--card-border);
}

.track-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.track-form input {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    outline: none;
    font-family: var(--font-main);
}

.track-form input:focus {
    border-color: var(--primary);
}

.track-form button {
    justify-content: center;
    cursor: pointer;
    border: none;
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {

    /* Reorder Sections for Mobile */
    .main-content-flow {
        display: flex;
        flex-direction: column;
    }

    #plans {
        order: -1;
    }

    /* Compact Mobile Navbar */
    .navbar {
        padding: 10px 0 !important;
    }

    .logo {
        font-size: 1.2rem !important;
    }

    .nav-logo-icon {
        height: 30px !important;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        padding-top: 120px;
        text-align: center;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-visual {
        display: none;
    }

    .hero-text {
        margin-bottom: 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
        /* simple hide for now, would need JS toggle */
    }

    .mobile-toggle {
        display: block;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p,
    .footer-legal p {
        margin: 0 auto 10px;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }


    .step-connector {
        transform: rotate(90deg);
        margin: -20px 0 10px;
        padding: 0;
    }

    /* Compact Mobile Product Cards */
    .plans {
        padding: 40px 0 !important;
    }

    .plans-grid {
        gap: 15px !important;
    }

    .plan-card {
        padding: 20px 15px !important;
        border-radius: 16px !important;
    }

    .plan-header {
        margin-bottom: 12px !important;
    }

    .plan-header h3 {
        font-size: 1.1rem !important;
    }

    .duration {
        font-size: 0.65rem !important;
        padding: 3px 6px !important;
    }

    .price-box {
        margin-bottom: 12px !important;
    }

    .original-price {
        font-size: 0.85rem !important;
    }

    .current-price {
        font-size: 1.8rem !important;
    }

    .discount-badge {
        font-size: 0.7rem !important;
        padding: 3px 10px !important;
        margin-bottom: 15px !important;
    }

    .plan-features {
        margin-bottom: 15px !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }

    .plan-features li {
        margin-bottom: 0 !important;
        font-size: 0.8rem !important;
    }

    .plan-features li i {
        font-size: 0.75rem !important;
        margin-right: 6px !important;
    }

    .buy-btn {
        padding: 10px !important;
        font-size: 0.95rem !important;
        margin-bottom: 10px !important;
    }

    .disclaimer {
        font-size: 0.6rem !important;
    }
}


/* Customer Details Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Darker backdrop */
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #180a29;
    /* Match your card bg */
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    border: 1px solid rgba(217, 0, 255, 0.2);
    box-shadow: 0 0 40px rgba(217, 0, 255, 0.2);
    text-align: left;
    position: relative;
    animation: fadeInScale 0.3s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-header h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    color: #b3b3b3;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.form-control:focus {
    border-color: #d900ff;
    background: rgba(255, 255, 255, 0.1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    opacity: 0.7;
}

.modal-close:hover {
    opacity: 1;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background: #ff00cc;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-submit:hover {
    box-shadow: 0 0 15px rgba(255, 0, 204, 0.4);
}

/* --- New Checkout Modal Styles --- */

.checkout-modal {
    max-width: 800px !important;
    /* Wider than standard modal */
    padding: 0 !important;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    background: #180a29;
}

.checkout-container {
    display: flex;
    width: 100%;
}

/* Left Side: Summary */
.checkout-summary {
    width: 40%;
    background: #220e36;
    /* Slightly lighter than modal bg */
    padding: 30px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.checkout-summary h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: white;
}

.product-badge {
    display: inline-block;
    background: rgba(217, 0, 255, 0.15);
    color: #ff00cc;
    border: 1px solid rgba(255, 0, 204, 0.3);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 25px;
    align-self: flex-start;
}

.summary-price-box {
    margin-bottom: 30px;
}

.summary-original-price {
    display: block;
    text-decoration: line-through;
    color: #888;
    font-size: 1rem;
    margin-bottom: 5px;
}

.summary-current-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-right: 10px;
}

.summary-discount {
    background: #00ff88;
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 4px;
    vertical-align: middle;
}

.summary-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
    /* Push to bottom */
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 0.9rem;
}

.summary-item i {
    color: #ff00cc;
    width: 20px;
    text-align: center;
}

/* Right Side: Form */
.checkout-form-section {
    width: 60%;
    padding: 30px 40px;
    position: relative;
    background: #130a1c;
    /* Darker bg for form */
}

/* Close button positioning for split modal */
.checkout-modal .modal-close {
    top: 15px;
    right: 15px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: 0.2s;
}

.checkout-modal .modal-close:hover {
    background: rgba(255, 0, 204, 0.5);
    color: white;
}

.checkout-form-section .modal-header {
    text-align: left;
    margin-bottom: 25px;
}

.checkout-form-section .modal-header h2 {
    text-align: left;
    margin-bottom: 5px;
}

.form-group label {
    margin-bottom: 6px;
    font-weight: 500;
    color: #e31885;
    /* Pinkish label as in design */
    font-size: 0.85rem;
}

.form-control {
    background: transparent;
    border: 1px solid #333;
    border-radius: 12px;
    /* More rounded */
    padding: 14px;
}

.form-control:focus {
    border-color: #ff00cc;
    box-shadow: 0 0 0 2px rgba(255, 0, 204, 0.1);
}

.form-hint {
    display: block;
    color: #ff3366;
    /* Red/Pink hint text */
    font-size: 0.75rem;
    margin-top: 5px;
}

.btn-submit {
    background: linear-gradient(90deg, #ff00cc, #9900ff);
    border-radius: 50px;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 20px;
    box-shadow: 0 5px 20px rgba(217, 0, 255, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 0, 255, 0.5);
}

.terms-text {
    font-size: 0.7rem;
    color: #666;
    text-align: center;
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .checkout-container {
        flex-direction: column;
    }

    .checkout-summary,
    .checkout-form-section {
        width: 100%;
    }

    .checkout-summary {
        padding: 15px !important;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .checkout-summary h2 {
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
    }

    .product-badge {
        font-size: 0.6rem !important;
        padding: 3px 8px !important;
        margin-bottom: 12px !important;
    }

    .summary-price-box {
        margin-bottom: 15px !important;
    }

    .summary-original-price {
        font-size: 0.85rem !important;
    }

    .summary-current-price {
        font-size: 1.6rem !important;
    }

    .summary-discount {
        font-size: 0.7rem !important;
        padding: 2px 6px !important;
    }

    #modalProductFeatures {
        margin-top: 12px !important;
        margin-bottom: 12px !important;
    }

    #modalProductFeatures ul {
        gap: 6px !important;
        font-size: 0.75rem !important;
    }

    .summary-features {
        display: none !important;
    }

    .checkout-form-section {
        padding: 15px 20px !important;
    }

    .checkout-form-section .modal-header {
        margin-bottom: 15px !important;
    }

    .checkout-form-section .modal-header h2 {
        font-size: 1.1rem !important;
        margin-bottom: 3px !important;
    }

    .checkout-form-section .modal-header p {
        font-size: 0.75rem !important;
    }

    .form-group {
        margin-bottom: 12px !important;
    }

    .form-group label {
        font-size: 0.8rem !important;
        margin-bottom: 5px !important;
    }

    .form-control {
        padding: 10px !important;
        font-size: 0.9rem !important;
        border-radius: 8px !important;
    }

    .btn-submit {
        padding: 12px !important;
        font-size: 1rem !important;
        margin-top: 15px !important;
    }

    .terms-text {
        font-size: 0.65rem !important;
        margin-top: 10px !important;
    }

    .checkout-modal {
        overflow-y: auto;
        max-height: 95vh !important;
        flex-direction: column;
    }

    .modal-content.checkout-modal {
        width: 95% !important;
        max-width: 95% !important;
        padding: 0 !important;
    }
}