:root {
    --primary: #FF1B8D;
    --secondary: #00F5FF;
    --accent: #FFD700;
    --purple: #B026FF;
    --green: #00FF88;
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --text: #ffffff;
    --text-muted: #a0a0a0;
    --border: #2a2a2a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rubik', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--border);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    height: 70px;
}

.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.cart-btn {
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--purple));
    border: none;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s;
}

.cart-btn:hover {
    transform: scale(1.1);
}

.cart-btn svg {
    display: block;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: var(--bg-dark);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    right: -450px;
    top: 0;
    width: 450px;
    height: 100vh;
    background: var(--bg-card);
    border-left: 2px solid var(--primary);
    z-index: 2000;
    transition: right 0.3s;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 25px;
    border-bottom: 2px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
}

.close-cart {
    background: none;
    border: none;
    color: var(--text);
    font-size: 32px;
    cursor: pointer;
    transition: 0.3s;
}

.close-cart:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--bg-dark);
    border-radius: 12px;
    margin-bottom: 15px;
    border: 2px solid var(--border);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.cart-item-options {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.cart-item-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 2px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
}

.qty-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
}

.remove-item {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
}

.remove-item:hover {
    color: var(--primary);
}

.cart-footer {
    padding: 25px;
    border-top: 2px solid var(--border);
    background: var(--bg-dark);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 15px;
}

.cart-total-final {
    display: flex;
    justify-content: space-between;
    font-size: 22px;
    font-weight: 700;
    margin: 20px 0;
    padding-top: 15px;
    border-top: 2px solid var(--border);
}

.cart-total-final span:last-child {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--purple));
    color: var(--text);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 27, 141, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text);
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
}

.btn-checkout,
.btn-continue {
    width: 100%;
    margin-bottom: 10px;
}

.btn-continue {
    background: var(--bg-card);
    border: 2px solid var(--border);
    color: var(--text);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--purple);
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-30px, 30px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 27, 141, 0.2);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(50px, 10vw, 100px);
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: 4px;
}

.title-word {
    display: block;
    animation: slideUp 0.8s ease-out backwards;
}

.title-word:nth-child(1) { animation-delay: 0.1s; }
.title-word:nth-child(2) { animation-delay: 0.2s; }
.title-word:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    animation: fadeIn 1s 0.5s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeIn 1s 0.7s backwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    animation: fadeIn 1s 0.9s backwards;
}

.stat-card {
    text-align: center;
    padding: 25px;
    background: rgba(26, 26, 26, 0.5);
    border: 2px solid var(--border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.stat-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    background: linear-gradient(135deg, var(--secondary), var(--green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections */
section {
    padding: 100px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.centered {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 27, 141, 0.1);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 8vw, 70px);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
}

/* Shop Section */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 12px 30px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 50px;
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-tab:hover,
.filter-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--purple));
    border-color: transparent;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 27, 141, 0.3);
}

.product-image {
    position: relative;
    width: 100%;
    padding-top: 125%;
    overflow: hidden;
    background: var(--bg-dark);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--accent), var(--green));
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 12px;
    border-radius: 6px;
    text-transform: uppercase;
    z-index: 2;
}

.product-info {
    padding: 25px;
}

.product-name {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 8px;
}

.product-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--primary);
}

.add-to-cart {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary), var(--purple));
    border: none;
    border-radius: 8px;
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 27, 141, 0.4);
}

/* Product Options */
.product-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.option-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.option-values {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.option-btn {
    padding: 8px 16px;
    background: var(--bg-dark);
    border: 2px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.option-btn:hover,
.option-btn.active {
    border-color: var(--primary);
    background: rgba(255, 27, 141, 0.2);
}

/* Features */
.features {
    background: var(--bg-card);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-dark);
    border: 2px solid var(--border);
    border-radius: 16px;
    transition: 0.3s;
}

.feature-box:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 15px;
}

/* About */
.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text h3 {
    font-size: 28px;
    margin: 30px 0 15px;
}

.about-features {
    display: grid;
    gap: 12px;
    margin: 25px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.about-feature span:first-child {
    color: var(--green);
    font-size: 20px;
}

.stats-card {
    padding: 40px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stats-item {
    text-align: center;
}

.stats-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    margin-bottom: 8px;
}

.stats-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Tracking */
.tracking {
    background: var(--bg-card);
}

.tracking-container {
    max-width: 800px;
    margin: 0 auto;
}

.tracking-form {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.tracking-input {
    flex: 1;
    padding: 18px 24px;
    background: var(--bg-dark);
    border: 2px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 16px;
    font-family: 'Rubik', sans-serif;
}

.tracking-input:focus {
    outline: none;
    border-color: var(--primary);
}

.tracking-result {
    background: var(--bg-dark);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 40px;
}

.order-status-card {
    margin-bottom: 40px;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.status-badge {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--green), var(--secondary));
    color: var(--bg-dark);
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
}

.order-info {
    display: grid;
    gap: 12px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.info-label {
    color: var(--text-muted);
}

.info-value {
    font-weight: 600;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-step {
    display: flex;
    gap: 20px;
    opacity: 0.3;
    transition: 0.3s;
}

.timeline-step.active {
    opacity: 1;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-step.active .timeline-icon {
    background: linear-gradient(135deg, var(--primary), var(--purple));
    border-color: transparent;
}

.timeline-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    padding: 30px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 16px;
    text-align: center;
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.social-btn {
    padding: 10px 20px;
    background: var(--bg-dark);
    border: 2px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: 0.3s;
}

.social-btn:hover {
    border-color: var(--primary);
    background: rgba(255, 27, 141, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 16px 20px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 15px;
    font-family: 'Rubik', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
.footer {
    background: var(--bg-card);
    padding: 60px 20px 30px;
    border-top: 2px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    height: 80px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid var(--border);
    color: var(--text-muted);
    font-size: 14px;
}

/* ============================================================
   MODAL BASE
   ============================================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 3000;
    overflow-y: auto;
    padding: 20px;
    backdrop-filter: blur(8px);
}

.modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px;
}

.modal-content {
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,27,141,0.1);
    border: 2px solid var(--border);
    color: var(--text);
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: rotate(90deg);
}

/* ============================================================
   CHECKOUT MODAL — BRANDED REDESIGN
   ============================================================ */
.checkout-modal-content {
    padding: 0;
    overflow: hidden;
    max-width: 680px;
    border: 2px solid var(--primary);
    box-shadow: 0 0 60px rgba(255, 27, 141, 0.25), 0 0 120px rgba(176, 38, 255, 0.1);
}

/* Header */
.checkout-modal-header {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a0a12 50%, #0a0a1a 100%);
    padding: 32px 36px 28px;
    border-bottom: 2px solid var(--border);
    position: relative;
    overflow: hidden;
}

.checkout-modal-header::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,27,141,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.checkout-modal-content .modal-close {
    top: 18px;
    right: 18px;
}

.checkout-brand-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 27, 141, 0.15);
    border: 1px solid rgba(255, 27, 141, 0.4);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--primary);
}

.checkout-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px;
    letter-spacing: 4px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 60%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Step Indicator */
.checkout-steps-indicator {
    display: flex;
    align-items: center;
    gap: 0;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.35;
    transition: opacity 0.3s;
}

.step-indicator.active {
    opacity: 1;
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
    flex-shrink: 0;
}

.step-indicator.active .step-dot {
    background: linear-gradient(135deg, var(--primary), var(--purple));
    border-color: transparent;
}

.step-indicator span {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.step-indicator-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin: 0 16px;
    min-width: 40px;
}

/* Form Body */
.checkout-step {
    display: none;
    padding: 30px 36px 36px;
}

.checkout-step.active {
    display: block;
}

.checkout-section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.checkout-section-icon {
    font-size: 18px;
}

/* Input Groups */
.checkout-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.input-group label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-dark);
    border: 2px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 15px;
    font-family: 'Rubik', sans-serif;
    transition: 0.3s;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 27, 141, 0.04);
    box-shadow: 0 0 0 3px rgba(255, 27, 141, 0.1);
}

.input-group input::placeholder {
    color: #444;
}

.input-group select option {
    background: var(--bg-card);
    color: var(--text);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-row-three {
    grid-template-columns: 1fr 1fr 1fr;
}

.full-width {
    grid-column: 1 / -1;
}

/* Delivery note */
.checkout-delivery-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(0, 245, 255, 0.06);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

.delivery-icon {
    font-size: 18px;
    flex-shrink: 0;
}

/* Continue Button */
.checkout-continue-btn {
    width: 100%;
}

/* ── Step 2: Order Summary ── */
.order-summary-styled {
    background: var(--bg-dark);
    border: 2px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 24px;
}

.checkout-items-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-muted);
}

.checkout-item span:last-child {
    color: var(--text);
    font-weight: 600;
    white-space: nowrap;
    margin-left: 12px;
}

.summary-divider {
    height: 2px;
    background: var(--border);
    margin: 16px 0 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.summary-row span:last-child {
    color: var(--text);
    font-weight: 600;
}

.summary-row-total {
    font-size: 20px;
    font-weight: 800;
    padding-top: 12px;
    border-top: 2px solid var(--border);
    margin-top: 4px;
    color: var(--text) !important;
}

.summary-row-total span {
    color: var(--text) !important;
}

.total-amount {
    color: var(--primary) !important;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px !important;
    letter-spacing: 1px;
}

/* PayFast Block */
.payfast-block {
    background: linear-gradient(135deg, rgba(255,27,141,0.06), rgba(176,38,255,0.06));
    border: 2px solid rgba(255, 27, 141, 0.25);
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 24px;
}

.payfast-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 10px;
}

.payfast-description {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.payfast-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.payfast-badge {
    padding: 6px 14px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

/* Checkout Actions */
.checkout-actions {
    display: flex;
    gap: 14px;
}

.checkout-back-btn {
    flex: 0 0 auto;
    min-width: 110px;
}

.checkout-pay-btn {
    flex: 1;
}

/* ── Success Modal ── */
.success-content {
    text-align: center;
}

.success-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.success-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.success-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 16px;
}

.success-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.success-actions .btn {
    flex: 1;
}

/* Responsive checkout modal */
@media (max-width: 600px) {
    .checkout-modal-header {
        padding: 24px 20px 20px;
    }
    .checkout-step {
        padding: 20px 20px 24px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .form-row-three {
        grid-template-columns: 1fr;
    }
    .checkout-title {
        font-size: 34px;
    }
    .checkout-actions {
        flex-direction: column;
    }
    .checkout-back-btn {
        min-width: unset;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 82px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 82px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px;
        transition: 0.3s;
        border-top: 2px solid var(--border);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .tracking-form {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .checkout-actions,
    .success-actions {
        flex-direction: column;
    }
}