* {
    color: white;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: black;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    position: sticky;
    top: 20px;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.356);
    border-radius: 8px;
    margin: 16px auto;
    border: 1px solid rgba(255,255,255,0.18);
    max-width: 720px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    backdrop-filter: blur(19px);
    -webkit-backdrop-filter: blur(2px);
}

.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-logo-img {
    height: 28px;
    width: 28px;
    border-radius: 4px;
    margin-right: 8px;
}

.navbar-logo-text {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.navbar-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.navbar-links a {
    color: #fff;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    display: inline-block;
}

.navbar-cta {
    background: linear-gradient(259deg, #242424 0%, #101010 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    margin-left: 16px;
    display: inline-block;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    margin: 0 8px;
}

.cart-icon i {
    font-size: 18px;
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

.mobile-cart {
    margin: 16px 0;
}

/* Hamburger Menu (Mobile) */
.navbar-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    z-index: 1200;
    background: none;
    border: none;
    cursor: pointer;
}

.navbar-hamburger .bar {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* Mobile menu overlay */
.navbar-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: rgba(20,20,20,0.98);
    z-index: 1100;
    flex-direction: column;
    align-items: center;
    padding: 80px 0 30px 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    border-radius: 0 0 18px 18px;
}

.navbar-mobile-menu a {
    color: #fff;
    font-size: 1.3rem;
    margin: 18px 0;
    text-decoration: none;
    display: block;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 20px 20px;
}

.navbar-2 {
    background: linear-gradient(259deg, #242424 0%, #101010 100%);
    border-radius: 8px;
    margin: 16px auto;
    margin-top: 8%;
    border: 1px solid rgba(255,255,255,0.18);
    max-width: fit-content;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.navbar-2 p {
    color: white;
    font-size: 0.9rem;
}

.centered-title {
    text-align: center;
    margin: 48px auto 34px auto;
    font-family: "Outfit", "Outfit Placeholder", sans-serif;
    font-size: 3.7rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.06em;
    max-width: 900px;
    margin-top: 0;
    line-height: 60px;
}

.catchy-slang {
    color: #ada9a9;
    text-align: center;
    margin: 30px auto;
    font-size: 1.0rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    max-width: 550px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    /* flex-wrap: wrap; */
}

.btn {
    margin: 10px 0;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-outline {
    background-color: transparent;
    color: rgb(255, 255, 255);
    font-size: 0.9rem;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.3);
    border-image: initial;
    padding: 0.5rem 1rem;
}

.btn-primary {
    background-color: #fff;
    color: #000;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* Tech Stack List */
.tech-stack-list {
    opacity: 0.8;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    font-size: 2.2rem;
    font-weight: bold;
    margin: 1.5rem auto;
    max-width: 1000px;
    overflow-x: auto;
    padding: 1.5rem 0 1.5rem 2rem;
    scrollbar-width: none;
    mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, #000 25%, #000 75%, rgba(0,0,0,0) 100%);
}

.tech-stack-list::-webkit-scrollbar {
    display: none;
}

.tech-stack-list span {
    white-space: nowrap;
    padding: 0.5rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 2rem;
    transition: background 0.2s;
}

.tech-stack-list span:hover {
    background: rgba(0,0,0,0.12);
}

/* Script Store Section */
.script-store {
    padding: 20px 20px;
    background: rgba(255, 255, 255, 0.02);
}

.section-title {
    font-size: 1.9rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.filter-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 0 auto 3rem auto;
    max-width: 1000px;
    overflow-x: auto;
    padding: 1rem 0 1rem 2rem;
    scrollbar-width: none;
    mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, #000 15%, #000 85%, rgba(0,0,0,0) 100%);
}

.filter-container::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex-shrink: 0;
    box-sizing: border-box;
}


.filter-btn.active, .filter-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(19px);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.product-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.product-image-container {
    position: relative;
    margin-bottom: 1rem;
}

.quick-view-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.product-card:hover .quick-view-btn {
    opacity: 1;
}

.quick-view-btn:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.view-full-details {
    padding: 0.75rem;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.view-full-details:hover {
    background: rgba(255,255,255,0.1);
}

.product-category {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-description {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.add-to-cart {
    flex-grow: 1;
    padding: 0.75rem;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: #f0f0f0;
}

.view-details {
    /* padding: 0.75rem; */
    background: black;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.view-details:hover {
    background: rgba(255,255,255,0.1);
}

/* Cart Modal */
.cart-modal {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: rgba(20,20,20,0.98);
    backdrop-filter: blur(10px);
    z-index: 2000;
    padding: 2rem;
    overflow-y: auto;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
}

.cart-modal.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.cart-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.close-cart {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    margin-bottom: 2rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: #aaa;
    font-size: 0.9rem;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #ff5c5c;
    cursor: pointer;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background: #f0f0f0;
}

.empty-cart {
    text-align: center;
    color: #aaa;
    padding: 2rem 0;
}

/* Product Modal */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.product-modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(30,30,30,0.95);
    border-radius: 16px;
    padding: 2rem;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.modal-product-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.modal-product-price {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.modal-product-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal-product-features {
    margin-bottom: 2rem;
}

.modal-product-features h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.modal-product-features ul {
    padding-left: 1.5rem;
}

.modal-product-features li {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.modal-actions {
    display: flex;
    gap: 1rem;
}

/* Footer */
.footer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 3rem 0 1rem;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: #aaa;
}

/* Responsive Styles */
@media screen and (max-width: 900px) {
    
    .navbar-hamburger {
        display: flex;
    }
    
    .centered-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .cart-modal {
        width: 100%;
        right: -100%;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .filter-container {
        padding: 1rem 1rem;
    }
}

@media screen and (max-width: 600px) {
    .centered-title {
        font-size: 2rem;
    }
    
    .tech-stack-list {
        font-size: 1.5rem;
        gap: 1.5rem;
    }
    
    .hero-buttons {
        align-items: center;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .filter-container {
        padding: 1rem 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
    }
}

.product-div {
    display: flex; 
    gap: 1.5rem; 
    align-items: center;
}

.product-div > img {
    width: 80px; 
    height: 80px;
    object-fit: cover; 
    border-radius: 8px;
}


@media screen and (max-width: 500px) {
    .product-div {
        display:grid; 
        gap: 1.5rem;
    }

    .product-div > img {
        width: 100%;
        height: 100%;
    }
}

@media screen and (max-width: 420px) {
    .script-store {
        padding: 20px 10px;
    }

    .hero-buttons {
        display: block;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
    
    .filter-container {
        padding: 1rem 0.25rem;
        gap: 0.75rem;
    }
}

/* Very small screens: more compact filter buttons */
@media screen and (max-width: 320px) {
    .filter-btn {
        padding: 0.45rem 0.8rem;
        font-size: 0.85rem;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

  /* Footer */
  .footer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1rem 0 1rem;
    margin-top: 50px;
  }

  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
  }

  .footer-section h3,
  .footer-section h4 {
    margin-bottom: 1rem;
  }

  .footer-section ul {
    list-style: none;
  }

  .footer-section ul li {
    margin-bottom: 0.5rem;
  }

  .footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-section a:hover {
    color: #fff;
  }

  ul {
    padding: 0;
  }

  .social-links {
    display: flex;
    gap: 1rem;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: #aaa;
  }

/* Currency Switcher Styles */
.currency-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.currency-btn {
    padding: 0.4rem 0.8rem;
    border: 2px solid #667eea;
    background: transparent;
    color: #667eea;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.currency-btn:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.currency-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #764ba2;
}

@media (max-width: 768px) {
    .currency-switcher {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .currency-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
}
