:root {
    --bg-color: #050505;
    --surface-color: rgba(25, 25, 25, 0.6);
    --primary-glow: #00f0ff;
    --secondary-glow: #7000ff;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(12px);

    /* Checkout Dynamic Variables */
    --checkout-bg: rgba(20, 20, 20, 0.7);
    --checkout-border: var(--border-color);
    --checkout-accent: var(--primary-glow);
    --checkout-secondary: var(--secondary-glow);
    --checkout-text: var(--text-main);
    --checkout-muted: var(--text-muted);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    font-family: 'Tajawal', 'Inter', sans-serif;
}

input,
button,
textarea,
select {
    font-family: inherit;
}

::selection {
    background-color: var(--primary-glow);
    color: #000;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-glow);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: 5%;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-glow), var(--secondary-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

header {
    position: fixed;
    inset-block-start: 0;
    inset-inline: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.5);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-block-end: 1px solid var(--border-color);
    transition: 0.3s;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-decoration: none;
    color: var(--text-main);
}

.nav-btn {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--primary-glow);
    padding-block: 10px;
    padding-inline: 24px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
}

.nav-btn::before {
    content: '';
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(to inline-end, var(--primary-glow), var(--secondary-glow));
    z-index: -1;
    transition: width 0.4s;
}

.nav-btn:hover::before {
    width: 100%;
}

.nav-btn:hover {
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    border-color: transparent;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-block-start: 80px;
    overflow: hidden;
}

.glow-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary-glow);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.2;
    z-index: -1;
    animation: pulse 8s infinite alternate;
}

.glow-blob.two {
    background: var(--secondary-glow);
    inset-inline-end: 0;
    inset-block-end: -100px;
    animation-delay: 2s;
}

@keyframes pulse {

    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.2) translate(50px, -50px);
    }

}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-block-end: 20px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-block-end: 40px;
    max-width: 450px;
}

.hero-image-wrapper {
    position: relative;
    perspective: 1000px;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 30px 40px rgba(0, 240, 255, 0.2));
    animation: float 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes float {


    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }

}

.features {
    padding-block: 120px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-block-end: 80px;
}

.section-header h2 {
    font-size: 3rem;
    margin-block-end: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    padding-block: 40px;
    padding-inline: 30px;
    border-radius: 20px;
    backdrop-filter: var(--glass-blur);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: 0.5s;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-glow);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-block-end: 25px;
    color: var(--primary-glow);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-block-end: 15px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.order-section {
    padding-block: 120px;
    position: relative;
}

.order-wrapper {
    max-width: 800px;
    margin-inline: auto;
    background: var(--checkout-bg);
    border: 1px solid var(--checkout-border);
    border-radius: 30px;
    padding-block: 60px;
    padding-inline: 60px;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    color: var(--checkout-text);
}

.order-wrapper::after {
    content: '';
    position: absolute;
    inset-block-start: 0;
    inset-inline: 0;
    height: 2px;
    background: linear-gradient(to inline-end, transparent, var(--checkout-accent), transparent);
}

.order-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-block-start: 40px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-control {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-main);
    padding-block: 18px;
    padding-inline: 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus,
.form-control:not(:placeholder-shown) {
    border-color: var(--checkout-accent);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}

.form-label {
    position: absolute;
    inset-block-start: 18px;
    inset-inline-end: 20px;
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: 0.3s ease;
    background: rgba(20, 20, 20, 0.95);
    padding-inline: 5px;
    border-radius: 4px;
    line-height: 1;
}

.form-control:focus~.form-label,
.form-control:not(:placeholder-shown)~.form-label {
    inset-block-start: -10px;
    inset-inline-end: 15px;
    font-size: 0.82rem;
    color: var(--checkout-accent);
}

.form-label--static {
    position: static;
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-block-end: 12px;
}

select.form-control {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a0a0a0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: inline-end 16px center;
    padding-inline-end: 40px;
}

.option-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-block: 12px;
    padding-inline: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
    background: transparent;
    color: var(--text-main);
    text-align: start;
    width: 100%;
}

.option-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    background: rgba(0, 240, 255, 0.04);
}

.option-card.is-selected,
input[type="radio"]:checked+.option-card {
    border-color: var(--primary-glow);
    background: rgba(0, 240, 255, 0.07);
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.1);
}

.variant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.variant-card {
    text-align: center;
    padding-block: 10px;
    padding-inline: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
}

.variant-card:hover,
input[type="radio"]:checked~.variant-card {
    border-color: var(--primary-glow);
    background: rgba(0, 240, 255, 0.06);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
}

.stock-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-block: 14px;
    padding-inline: 18px;
    background: rgba(255, 80, 80, 0.08);
    border: 1px solid rgba(255, 80, 80, 0.2);
    border-radius: 12px;
    margin-block-end: 24px;
}

.stock-alert__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 80, 80, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5050;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stock-alert__badge {
    margin-inline-start: auto;
    padding-block: 4px;
    padding-inline: 12px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.price-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 16px;
    padding-inline: 20px;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 14px;
    margin-block-end: 30px;
}

.price-summary__product {
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-summary__img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-summary__total {
    text-align: end;
}

.price-summary__amount {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--checkout-accent), var(--checkout-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gateway-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-block: 20px;
    padding-inline: 20px;
    background: rgba(0, 240, 255, 0.04);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 12px;
}

.gateway-info__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gateway-info pre {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: pre-wrap;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-family: inherit;
}

.submit-btn {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--checkout-accent), var(--checkout-secondary));
    color: #fff;
    border: none;
    padding-block: 20px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
    margin-block-start: 10px;
    position: relative;
    overflow: hidden;
    width: 100%;
    font-family: inherit;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.submit-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(112, 0, 255, 0.3);
}

.btn-text {
    transition: opacity 0.3s;
}

.spinner {
    position: absolute;
    inset-block-start: 50%;
    inset-inline-start: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 3px solid rgba(0, 0, 0, 0.3);
    border-block-start-color: #000;
    border-radius: 50%;
    animation: spin 1s infinite linear;
    opacity: 0;
    visibility: hidden;
}

.submit-btn.loading .btn-text {
    opacity: 0;
}

.submit-btn.loading .spinner {
    opacity: 1;
    visibility: visible;
}

@keyframes spin {

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }

}

.success-msg {
    grid-column: span 2;
    text-align: center;
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.2);
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    display: none;
    margin-top: 20px;
    font-size: 1rem;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1),
        transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

footer {
    padding-block: 40px;
    padding-inline: 5%;
    border-block-start: 1px solid var(--border-color);
    color: var(--text-muted);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin-inline: auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.footer-copy .powered-by-dropsaas {
    color: inherit;
    text-decoration: underline;
    opacity: 0.8;
    font-size: 0.9em;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social__link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.25s, border-color 0.25s, background 0.25s, transform 0.25s;
}

.footer-social__link:hover {
    color: var(--primary-glow);
    border-color: var(--primary-glow);
    background: rgba(0, 240, 255, 0.06);
    transform: scale(1.1);
}




.icon-sun {
    display: block;
}

.icon-moon {
    display: none;
}

.dark .icon-sun {
    display: none;
}

.dark .icon-moon {
    display: block;
}

.widget-icon--sun {
    color: #f97316;
    display: block;
}

.widget-icon--moon {
    color: #fde68a;
    display: none;
}

.widget-lang-code {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.25s;
}

.nav-link:hover {
    color: var(--primary-glow);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-block: 6px;
    padding-inline: 16px;
    border-radius: 100px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-block-end: 20px;
}

.hero-badge__dot {
    color: var(--primary-glow);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-block-start: 10px;
}

.hero-cta-btn {
    padding-block: 14px;
    padding-inline: 36px;
    font-size: 1.05rem;
}

.hero-price-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-block: 12px;
    padding-inline: 20px;
    border-radius: 12px;
    background: rgba(0, 240, 255, 0.06);
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.hero-price-pill__label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.hero-price-pill__amount {
    font-size: 1.05rem;
    font-weight: 800;
}

.hero-spec-card {
    position: absolute;
    background: rgba(20, 20, 20, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding-block: 12px;
    padding-inline: 16px;
    min-width: 130px;
}

.hero-spec-card--end {
    inset-block-start: 15%;
    inset-inline-end: -8%;
}

.hero-spec-card--start {
    inset-block-end: 15%;
    inset-inline-start: -8%;
}

.hero-spec-card__label {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-block-end: 4px;
}

.hero-spec-card__value {
    font-size: 1rem;
    font-weight: 800;
}

.marquee-wrapper {
    overflow: hidden;
    background: rgba(0, 240, 255, 0.04);
    border-block: 1px solid var(--border-color);
    padding-block: 18px;
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
    width: max-content;
}

[dir="rtl"] .marquee-track {
    animation-direction: reverse;
}

@keyframes marquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-33.333%);
    }

}

.marquee-item {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.marquee-item__dot {
    color: var(--primary-glow);
    font-size: 0.4rem;
}

.testimonial-quote {
    position: absolute;
    inset-block-start: 12px;
    inset-inline-end: 16px;
    font-size: 4rem;
    line-height: 1;
    color: var(--primary-glow);
    opacity: 0.08;
    font-family: Georgia, serif;
    pointer-events: none;
    user-select: none;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-block-end: 16px;
    color: var(--primary-glow);
}

.testimonial-stars__icon {
    font-size: 0.75rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.7;
    margin-block-end: 20px;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-glow), var(--secondary-glow));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: #000;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-location {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.nav-logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin-inline: auto;
    margin-block-start: 12px;
    line-height: 1.7;
}

.price-summary__product-name {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.price-summary__shipping {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-block-start: 4px;
}

.price-summary__shipping-amount {
    color: #fff;
}

.price-summary__total-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.stock-alert__label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #ff5050;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.stock-alert__count {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
}

.stock-alert__count--flash {
    color: #ff5050 !important;
    animation: pop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.variant-label {
    cursor: pointer;
}

.variant-card__name {
    font-size: 0.85rem;
    font-weight: 700;
    display: block;
}

.variant-card__price {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.payment-label {
    cursor: pointer;
}

.option-card__icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.option-card__icon--fa {
    font-size: 1.2rem;
    color: var(--primary-glow);
}

.option-card__title {
    font-size: 0.85rem;
    font-weight: 700;
}

.option-card__desc {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.gateway-info__body {
    flex: 1;
}

.gateway-info__title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-block-end: 8px;
}

.gateway-info__pre {
    white-space: pre-wrap;
    word-break: break-word;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.gateway-info__proof {
    margin-block-start: 14px;
}

.gateway-info__proof-hint {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-block-start: 6px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.section-header__wrapper {
    margin-bottom: 10px;
}

.section-sub-text {
    color: var(--text-muted);
}

.price-summary-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 14px;
    margin-bottom: 30px;
}

.product-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-thumb {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-name-sm {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.shipping-info {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.text-white {
    color: #fff;
}

.total-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.total-price-display {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary-glow), var(--secondary-glow));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stock-alert-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 80, 80, 0.08);
    border: 1px solid rgba(255, 80, 80, 0.2);
    border-radius: 12px;
    margin-bottom: 24px;
    animation: soft-pulse 3s infinite ease-in-out;
}

.stock-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 80, 80, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5050;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.stock-label-sm {
    font-size: 0.7rem;
    font-weight: 700;
    color: #ff5050;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.stock-count-lg {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    transition: color 0.3s;
}

@keyframes soft-pulse {


    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(255, 80, 80, 0);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 4px 12px rgba(255, 80, 80, 0.15);
    }

}

@keyframes pop {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }

}

.limited-time-badge {
    margin-right: auto;
    margin-inline-start: auto;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.section-label {
    position: static;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.variants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.payment-box {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 12px 14px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.payment-box.is-selected {
    border-color: var(--primary-glow);
    background: rgba(7, 192, 38, 0.1);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}

.variant-box {
    text-align: center;
    cursor: pointer;
    padding: 10px 8px;
    transition: 0.3s;
    border: 1px solid transparent;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
}

.variant-box.is-selected {
    border-color: var(--primary-glow);
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
}

.variant-name {
    font-size: 0.85rem;
    font-weight: 700;
}

.variant-price {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.payments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
}

.payment-icon-lg {
    font-size: 1.1rem;
}

.payment-icon-primary {
    font-size: 1.2rem;
    color: var(--primary-glow);
}

.payment-title {
    font-size: 0.85rem;
    font-weight: 700;
}

.payment-subtitle {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.instruction-box {
    background: rgba(0, 240, 255, 0.04);
    border-color: rgba(0, 240, 255, 0.2);
    padding: 20px;
}

.info-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.instruction-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.instruction-pre {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: pre-wrap;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.upload-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.file-input-field {
    font-size: 0.85rem;
    color: var(--text-muted);
    width: 100%;
}

.file-help-text {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.flex-start-gap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.flex-1 {
    flex: 1;
}

.mt-14 {
    margin-top: 14px;
}

.success-msg.active {
    display: block;
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-color);
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    opacity: 0.5;
}

.bg-blob--green {
    inset-block-start: 0;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: rgba(74, 222, 128, 0.1);
}

.bg-blob--accent {
    inset-block-end: 0;
    inset-inline-end: 0;
    width: 600px;
    height: 600px;
    background: rgba(0, 240, 255, 0.05);
}

.glass-card-lg {
    max-width: 42rem;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 3rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.success-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(74, 222, 128, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.checkmark-circle {
    width: 6rem;
    height: 6rem;
    background-color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    margin-block-end: 2rem;
    box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.4);
    animation: bounce 1s infinite;
}

.checkmark-icon {
    font-size: 2.25rem;
    color: #fff;
}

.success-title {
    font-size: 2.25rem;
    font-weight: 900;
    margin-block-end: 1rem;
    background: linear-gradient(90deg, #fff, #a0a0a0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.success-desc {
    color: var(--text-muted);
    margin-block-end: 2.5rem;
    text-align: center;
}

.order-details-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2rem;
    margin-block-end: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: start;
}

.order-details-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-block-end: 0.25rem;
}

.detail-value {
    font-size: 1.25rem;
    font-weight: 700;
}

.text-green {
    color: #4ade80;
}

.actions-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.btn-primary-action {
    padding: 1rem 2rem;
    background: linear-gradient(to right, #3b82f6, #4f46e5);
    color: white;
    font-weight: 900;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary-action:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
}

.btn-secondary-action {
    padding: 1rem 2rem;
    background: white;
    color: #000;
    font-weight: 900;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-secondary-action:hover {
    background-color: #e5e7eb;
    transform: scale(1.02);
}

.btn-outline-action {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 700;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: background-color 0.2s;
}

.btn-outline-action:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.track-header {
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 1.5rem;
    margin-block-end: 3rem;
    border-block-end: 1px solid rgba(255, 255, 255, 0.05);
}

.track-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: white;
    text-decoration: none;
}

.track-logo img {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
}

.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
}

.timeline-line {
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 27px;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.step-icon-circle {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border-width: 2px;
    border-style: solid;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 10;
}

.step-active {
    border-color: #22c55e;
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.step-inactive {
    border-color: rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: #6b7280;
}

.step-content h3 {
    font-weight: 700;
    font-size: 1.125rem;
    margin-block-end: 0.25rem;
}

.step-meta {
    font-size: 0.875rem;
}

.step-status-label {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.text-gray {
    color: #6b7280;
}

@keyframes bounce {


    0%,
    100% {
        transform: translateY(-5%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }

}

@media (max-width: 600px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 991px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .hero-text p {
        margin-inline: auto;
        margin-block-end: 30px;
    }

    .order-form {
        grid-template-columns: 1fr;
    }

    .form-group,
    .form-group.full-width {
        grid-column: span 1;
    }

    .submit-btn,
    .success-msg {
        grid-column: span 1;
    }

    .order-wrapper {
        padding-block: 40px;
        padding-inline: 20px;
    }

    .payment-grid,
    .variant-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .payment-grid,
    .variant-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .success-title {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .order-details-grid {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 640px) {
    .actions-group {
        flex-direction: row;
    }
}

.text-primary-glow {
    color: var(--primary-glow);
}