
html {
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: #e5e7eb;
    background: radial-gradient(circle at top, rgba(168,85,247,0.20), transparent 45%), radial-gradient(circle at bottom, rgba(34,211,238,0.12), transparent 55%), #0b0b14;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-attachment: fixed;
}



.navbar {
    background: rgba(15, 15, 26, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(168, 85, 247, 0.25);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.25);
    padding: 14px 30px;
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #a855f7, #22d3ee, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    color: #9ca3af !important;
    transition: 0.3s;
}

    .nav-link:hover {
        color: #fff !important;
    }

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}


:root {
    --proximatech-dark: #1a1b29;
    --proximatech-blue: #007bff;
    --proximatech-light: #f8f9fa;
    --proximatech-gray: #adb5bd; 
}

.nav-auth-btn {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 20px !important;
    border-radius: 8px !important;
    transition: all 0.3s;
}

.btn-login {
    color: var(--proximatech-light) !important;
}

    .btn-login:hover {
        color: var(--proximatech-blue) !important;
    }

.btn-register-nav {
    background-color: #2b2d42;
    color: white !important;
    margin-left: 10px;
}

    .btn-register-nav:hover {
        background-color: #000;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

.nav-right {
    display: flex;
    align-items: center;
}

.profile-card {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1); 
    background: var(--proximatech-dark); 
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    color: var(--proximatech-light); 
}

.list-group-item {
    background-color: transparent !important;
    color: var(--proximatech-gray) !important;
    border: none !important;
}

    .list-group-item.active {
        background-color: rgba(255, 255, 255, 0.05) !important; 
        color: var(--proximatech-blue) !important; 
        font-weight: 600;
    }

    .list-group-item:not(.active):hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--proximatech-light) !important;
    }

.form-input-tech {
    background-color: rgba(255,255,255,0.05) !important;
    color: #f8fafc !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 10px 15px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease;
}

    .form-input-tech:focus {
        border-color: var(--proximatech-blue) !important;
        background-color: rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1) !important;
    }

    .form-input-tech::placeholder {
        color: #6c757d !important;
    }

.table {
    color: var(--proximatech-light) !important;
}

    .table thead th {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        color: var(--proximatech-gray);
        font-size: 0.85rem;
        text-uppercase: uppercase;
    }

    .table tbody td {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }

.btn-tech-action {
    background-color: var(--proximatech-blue);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    padding: 10px 25px;
    border: none;
    transition: transform 0.2s, background-color 0.2s;
}

    .btn-tech-action:hover {
        background-color: #0056b3;
        transform: translateY(-1px);
        color: white;
    }


.main-logo {
    width: 180px;
    display: block;
    margin: 20px auto;
    filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.6));
    animation: glow 2.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 5px rgba(124,58,237,0.4));
    }

    to {
        filter: drop-shadow(0 0 20px rgba(168,85,247,0.9));
    }
}


.main-hero {
    position: relative;
    width: 100%;
    min-height: 500px;
    padding: 60px;
    margin: 40px 0;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #000;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

    .main-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('/images/tech-bg.png') center/cover no-repeat;
        z-index: 0;
        filter: brightness(0.9);
    }

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 600px;
}

.hero-btn {
    padding: 12px 24px;
    background: #7c3aed;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s ease;
}

    .hero-btn:hover {
        background: #6d28d9;
        transform: translateY(-2px);
    }

.hero-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(168,85,247,0.45), transparent 70%);
    filter: blur(90px);
    z-index: 1;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%) scale(1);
    transition: transform 0.5s ease, background 0.5s ease;
}


.main-hero:hover .hero-glow {
    transform: translate(-50%, -50%) scale(1.5);
    background: radial-gradient(circle, rgba(59,130,246,0.45), transparent 70%);
}
.card,
.category-card,
.product-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    border: 1px solid rgba(168,85,247,0.15);
    transition: all 0.3s ease;
}

    .card:hover,
    .category-card:hover,
    .product-card:hover {
        transform: translateY(-6px) scale(1.02);
        box-shadow: 0 15px 40px rgba(168,85,247,0.25), 0 0 20px rgba(34,211,238,0.15);
    }



.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    padding: 10px 0;
}



.product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

    .product-card img {
        width: 100%;
        height: 180px;
        object-fit: contain;
        padding: 12px;
        background: rgba(255,255,255,0.02);
    }

.product-card-body {
    padding: 15px;
    text-align: left; 
    background: rgba(255, 255, 255, 0.03); 
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff !important; 
    margin-bottom: 5px;
}

.product-card-body p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 15px;
}

.product-price {
    color: #ffffff !important;
    font-size: 1.4rem;
    font-weight: 800;
    margin-top: auto;
    display: block;
    letter-spacing: -0.5px;
    text-shadow: 0 0 8px rgba(34, 211, 238, 0.4);
}

.product-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.product-image-container {
    position: relative;
    height: 220px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 14px 14px 0 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-img-main {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}


.product-card:hover .product-img-main {
    transform: scale(1.1) rotate(-3deg);
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(168, 85, 247, 0.3);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
}

.product-card:hover .product-card-overlay {
    opacity: 1;
}

.overlay-link {
    background: #fff;
    color: #0b0b14;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}


.product-price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(11, 11, 20, 0.8);
    color: #22d3ee;
    padding: 5px 12px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
    border: 1px solid rgba(34, 211, 238, 0.3);
    backdrop-filter: blur(5px);
}

.product-info-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title-modern {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    min-height: 42px; 
}

.product-desc-short {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}


.btn-modern-outline {
    border: 1px solid rgba(168, 85, 247, 0.4);
    background: rgba(168, 85, 247, 0.05);
    color: #f8fafc;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-modern-outline:hover {
        background: linear-gradient(135deg, #a855f7, #22d3ee);
        border-color: transparent;
        color: white;
        box-shadow: 0 5px 15px rgba(168, 85, 247, 0.3);
    }


.empty-state-container {
    text-align: center;
    padding: 80px 20px;
}

.empty-icon-box {
    font-size: 60px;
    color: rgba(168, 85, 247, 0.3);
    margin-bottom: 20px;
}



.btn-primary,
.product-btn {
    background: linear-gradient(135deg,#a855f7,#22d3ee);
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 600;
    color: white;
}



.mini-campaign {
    background: rgba(255,255,255,0.05);
    padding: 14px 20px;
    border-radius: 12px;
    width: 80%;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
}

.mini-add-btn,
.product-card .bi-plus-lg,
.product-card ::before,
.product-card ::after {
    display: none !important;
    content: none !important;
}

.product-card-body .d-flex {
    justify-content: center !important;
}


.footer {
    background: #0c0c18;
    border-top: 1px solid rgba(168,85,247,0.15);
    color: #9ca3af;
    text-align: center;
    padding: 20px;
}



.cart-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 14px;
}

    .cart-table thead th {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #64748b;
        padding: 10px;
    }

    .cart-table tbody tr {
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(148,163,184,0.12);
        border-radius: 14px;
        transition: 0.25s;
    }

        .cart-table tbody tr:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.35);
        }

    .cart-table td {
        padding: 14px;
        color: #e2e8f0;
        font-size: 14px;
    }

.cart-img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(148,163,184,0.15);
}


.actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin: 0 4px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: 0.2s;
}

    .actions a[href*="DecreaseQuantity"] {
        background: #ef4444;
    }

    .actions a[href*="AddToBasket"] {
        background: #22c55e;
    }

    .actions a[href*="DeleteItem"] {
        background: #64748b;
    }

    .actions a:hover {
        transform: scale(1.1);
    }


.cart-summary {
    margin-top: 30px;
    padding: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(148,163,184,0.12);
    border-radius: 16px;
    backdrop-filter: blur(14px);
}

    .cart-summary h4 {
        font-size: 18px;
        font-weight: 600;
    }

        .cart-summary h4 span {
            color: #22d3ee;
            font-weight: 800;
        }

.total-price span {
    color: #a78bfa; 
    font-weight: 600;
}

.empty-cart {
    padding: 70px;
    text-align: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(148,163,184,0.12);
    border-radius: 18px;
}

.empty-icon {
    font-size: 48px;
}



.mini-campaign {
    position: relative;
    width: 100%;
    padding: 18px 24px;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(14px);
    border: 1px solid rgba(168,85,247,0.25);
    box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

 
    .mini-campaign span {
        font-weight: 600;
        color: #f8fafc;
        position: relative;
        z-index: 2;
    }

    
    .mini-campaign a {
        background: linear-gradient(135deg, #a855f7, #22d3ee);
        color: white;
        padding: 8px 16px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 600;
        position: relative;
        z-index: 2;
        transition: 0.25s;
    }

        .mini-campaign a:hover {
            transform: translateY(-2px);
        }

   

    .mini-campaign.headphones {
        background: linear-gradient( 135deg, rgba(34,211,238,0.20), rgba(168,85,247,0.15), rgba(15,15,26,0.8) );
    }

        
        .mini-campaign.headphones::before {
            content: "";
            position: absolute;
            inset: -60px;
            background: radial-gradient(circle, rgba(34,211,238,0.35), transparent 60%);
            filter: blur(40px);
            z-index: 0;
        }

.cart-icon {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(168,85,247,0.25);
    border-radius: 50px;
    color: #f8fafc;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    z-index: 9999;
    transition: 0.25s ease;
    text-decoration: none; 
}

    .cart-icon:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 10px 30px rgba(168,85,247,0.25);
    }

#cartCount {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 999px;
    min-width: 20px;
    text-align: center;
}


#categories {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 35px;
}

.section-title {
    font-size: 30px;
    font-weight: 800;
    color: #f8fafc;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(168,85,247,0.15);
}

    .section-title::after {
        content: "";
        display: block;
        width: 80px;
        height: 3px;
        margin: 10px auto 0;
        border-radius: 10px;
        background: linear-gradient(135deg, #a855f7, #22d3ee);
        box-shadow: 0 0 20px rgba(168,85,247,0.3);
    }

.section-subtitle {
    font-size: 15px;
    color: #94a3b8;
    max-width: 520px;
    margin: 14px auto 0;
    line-height: 1.6;
}

.search-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(168,85,247,0.2);
    border-radius: 14px;
    padding: 6px 10px;
    transition: 0.25s ease;
    max-width: 320px;
}

    .search-wrapper:focus-within {
        border-color: rgba(34,211,238,0.5);
        box-shadow: 0 0 20px rgba(34,211,238,0.15);
    }

.search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: #f8fafc;
    font-size: 14px;
    padding: 8px 10px;
}

    .search-input::placeholder {
        color: #94a3b8;
    }


.search-btn {
    background: linear-gradient(135deg, #a855f7, #22d3ee);
    border: none;
    padding: 8px 12px;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: 0.2s;
}

    .search-btn:hover {
        transform: scale(1.05);
    }

.about-layout {
    display: flex;
    flex-direction: column;
    gap: 25px;
}


.about-header {
    text-align: left;
    margin-bottom: 10px;
}

    .about-header h1 {
        font-size: 30px;
        font-weight: 500; 
        color: #f8fafc;
        margin-bottom: 4px;
    }

    .about-header p {
        color: #94a3b8;
        font-size: 14px;
        margin: 0;
    }


.about-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(168,85,247,0.2);
    border-radius: 16px;
    padding: 22px;
    line-height: 1.7;
}


.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}


.about-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(34,211,238,0.15);
    border-radius: 14px;
    padding: 18px;
    transition: 0.3s;
}

    .about-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(168,85,247,0.12);
    }

    .about-box h4 {
        color: #22d3ee;
        font-weight: 500; 
        margin-bottom: 8px;
    }

body {
    animation: pageFade 0.5s ease-in-out;
}

@keyframes pageFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-btn {
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #a855f7, #22d3ee);
    box-shadow: 0 0 18px rgba(34,211,238,0.25);
    transition: 0.25s ease;
}

    .product-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(168,85,247,0.25);
    }


.ripple {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    transform: scale(0);
    animation: rippleAnim 0.5s linear;
}

@keyframes rippleAnim {
    to {
        transform: scale(12);
        opacity: 0;
    }
}

.mt-100 {
    margin-top: 100px;
}

.text-gradient {
    background: linear-gradient(135deg, #a855f7, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.main-hero {
    min-height: 450px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border-color: rgba(168, 85, 247, 0.2);
    display: flex;
    flex-direction: row !important;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.btn-outline-cyan {
    border: 1px solid #22d3ee;
    color: #22d3ee !important;
    background: transparent;
    border-radius: 12px;
    padding: 12px 22px;
    transition: 0.3s;
}

    .btn-outline-cyan:hover {
        background: rgba(34, 211, 238, 0.1);
        box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
    }


.category-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.btn-primary-sm {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #a855f7, #22d3ee);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}


.product-img-holder {
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
    border-radius: 14px;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(168, 85, 247, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
    backdrop-filter: blur(4px);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-view {
    background: white;
    color: #0b0b14;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
}

.mini-add-btn {
    width: 32px;
    height: 32px;
    background: rgba(34, 211, 238, 0.2);
    color: #22d3ee;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.product-card:hover .mini-add-btn {
    background: #22d3ee;
    color: #0b0b14;
}


.shimmer-bg {
    position: relative;
    overflow: hidden;
}

    .shimmer-bg::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
        animation: shimmer 3s infinite;
    }

@keyframes shimmer {
    to {
        left: 200%;
    }
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    width: 90%; 
    max-width: 1200px; 
    margin: 40px auto; 
}

.category-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-text {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.5em;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    justify-content: center; 
    margin: 0 auto;
}


.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.product-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
    text-align: center;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.product-desc-short {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-bottom: 20px;
    line-height: 1.5;
}




@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr; 
        padding: 0 15px;
    }
}

.new-products-page .product-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(1.05); 
}

.success-box {
    position: fixed;
    left: 20px;
    bottom: 20px;
    padding: 20px 24px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    color: #f8fafc;
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    width: 360px;
    min-height: 70px;
    display: flex;
    align-items: center;
    line-height: 1.4;
    z-index: 9999; 
    animation: slideUp 0.35s ease;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hide-toast {
    opacity: 0;
    transform: translateY(20px);
}

.checkout-title {
    text-align: center;
    margin-top: 40px;
    color: #f8fafc;
    font-weight: 700;
    font-size: 2rem;
}

.checkout-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
    min-height: 100vh;
}

.checkout-card {
    width: 100%;
    max-width: 900px;
    padding: 40px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(168,85,247,0.25);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    color: #fff;
}

    .checkout-card h3 {
        margin-bottom: 5px;
        font-size: 1.5rem;
    }

.checkout-subtitle {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 30px;
}

.checkout-card input, .checkout-card textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid rgba(148,163,184,0.2);
    background: rgba(15,23,42,0.6);
    color: #f8fafc;
    outline: none;
    transition: 0.3s;
    font-size: 15px;
}

    .checkout-card input:focus, .checkout-card textarea:focus {
        border-color: #22d3ee;
        box-shadow: 0 0 10px rgba(34,211,238,0.2);
        background: rgba(15,23,42,0.8);
    }

.row-2, .row-3 {
    display: flex;
    gap: 15px;
}

    .row-2 > * {
        flex: 1;
    }
    .row-3 > * {
        flex: 1;
    }

.address-grid {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
}

.checkout-card textarea {
    resize: none;
    min-height: 80px;
}

.checkout-card button {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    background: linear-gradient(135deg, #a855f7, #22d3ee);
    cursor: pointer;
    transition: 0.3s;
    margin-top: 20px;
}

    .checkout-card button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(168,85,247,0.4);
        filter: brightness(1.1);
    }


.success-page {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-card {
    width: 380px;
    padding: 40px;
    text-align: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(34,211,238,0.3);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    color: #f8fafc;
}

.check-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg,#22c55e,#06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
}

.success-card h1 {
    margin-bottom: 10px;
    font-size: 24px;
}

.success-card p {
    color: #94a3b8;
    margin-bottom: 10px;
}

.msg {
    color: #22d3ee;
    font-weight: 600;
}

.btn-home {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 10px;
    background: linear-gradient(135deg,#a855f7,#22d3ee);
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

    .btn-home:hover {
        transform: translateY(-2px);
    }

.order-box {
    margin-top: 15px;
    padding: 10px;
    border-radius: 10px;
    background: rgba(34,211,238,0.1);
    border: 1px solid rgba(34,211,238,0.3);
    color: #22d3ee;
    font-weight: 600;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}


.category-card {
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
}


.category-icon-box {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
}

.register-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.register-card {
    background: rgb(58 14 137);
    border: none;
    border-radius: 20px !important;
    transition: all 0.3s ease-in-out;
}

    .register-card:hover {
        transform: translateY(-5px);
    }

.tech-logo {
    font-size: 2rem;
    letter-spacing: -1px;
}

.tech-label {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #6c757d;
    margin-bottom: 5px;
    display: block;
}


.btn-tech-action {
    background: linear-gradient(45deg, #212529, #343a40);
    color: white;
    border: none;
    padding: 15px !important;
    border-radius: 12px !important;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s;
}

    .btn-tech-action:hover {
        background: #000;
        color: #00d4ff;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

.login-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

    .login-link:hover {
        text-decoration: underline;
    }

.login-header-text {
    color: #2b2d42;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.form-text-muted {
    font-size: 0.85rem;
    color: #8d99ae;
}

header,
.custom-header {
    position: relative;
    z-index: 9999;
}

.navbar {
    position: relative;
    z-index: 9999;
}

.dropdown-menu {
    position: absolute;
    z-index: 10000 !important;
}

.custom-header {
    position: relative;
    z-index: 9999;
}

.navbar {
    position: relative;
    z-index: 9999;
}

.dropdown-menu {
    z-index: 10000 !important;
}

.main-hero,
.card,
.product-card,
.category-card {
    position: relative;
    z-index: 1;
}

.error {
    color: #f87171;
    font-size: 12px;
    display: block;
    margin-top: 6px;
    margin-bottom: 10px;
    margin-left: 4px;
}

input.error-input {
    border: 1px solid #ff4d4d !important;
    outline: none;
}

input:focus {
    border-color: #00c2ff;
    box-shadow: 0 0 5px rgba(0,194,255,0.5);
}

.login-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    z-index: 9999;
    text-align: center;
}

body.no-scroll::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
}

.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px); 
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.login-card {
    background: #1a1a1a; 
    color: white;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    text-align: center;
    border: 1px solid #333;
    animation: slideUp 0.4s ease-out;
}

.icon-circle {
    background: #00e676; 
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.3);
}

.login-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.login-card p {
    color: #b3b3b3;
    font-size: 16px;
    margin-bottom: 30px;
}

.popup-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-login {
    background: #00e676;
    color: #000;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

    .btn-login:hover {
        background: #00c853;
        transform: translateY(-2px);
    }

.btn-cancel {
    background: transparent;
    border: 1px solid #444;
    color: #999;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}

    .btn-cancel:hover {
        color: white;
        border-color: white;
    }

.close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    background: none;
    border: none;
    color: #666;
    font-size: 28px;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

input,
textarea,
select,
.form-control {
    color: #f8fafc !important;
    background-color: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(168,85,247,0.2) !important;
}

    input::placeholder,
    textarea::placeholder {
        color: #94a3b8 !important;
    }

.product-image {
    position: relative; 
    overflow: hidden; 
}

.stok-rozet {
    position: absolute; 
    top: 15px; 
    left: 15px; 
    z-index: 10; 
    background-color: #f39c12;
    color: white;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.hizli-tukeniyor {
    background-color: #d32f2f !important; 
}

