
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #0a0a0a;
            color: #e0e0e0;
            line-height: 1.6;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .security-banner {
            background-color: #1e1e1e;
            padding: 15px;
            text-align: center;
            border: 1px solid #333;
            margin-bottom: 20px;
            border-radius: 5px;
            position: relative;
        }
        
        .security-banner p {
            font-size: 1.1rem;
            color: #4CAF50;
        }
        
        .security-banner .highlight {
            color: #ff5252;
            font-weight: bold;
        }
        
        .dismiss-btn {
            background: #444;
            color: #ccc;
            border: none;
            padding: 5px 10px;
            border-radius: 3px;
            cursor: pointer;
            margin-left: 10px;
        }
        
        header {
            border-bottom: 1px solid #333;
            padding-bottom: 20px;
            margin-bottom: 30px;
            text-align: center;
        }
        
        h1 {
            color: #8a2be2;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        nav {
            margin: 20px 0;
        }
        
        .nav-table {
            width: 100%;
            border-collapse: collapse;
            background-color: #1e1e1e;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .nav-table th {
            padding: 15px;
            text-align: center;
            border: 1px solid #584e4e;
            background-color: #2d2d2d;
            font-weight: 600;
        }
        
        .nav-table th:hover {
            background-color: #3d3d3d;
            cursor: pointer;
        }
        
        .breadcrumb {
            margin: 20px 0;
            padding: 10px;
            background-color: #1e1e1e;
            border-radius: 5px;
            font-size: 1.1rem;
        }
        
        .breadcrumb span {
            color: #9370db;
            font-weight: bold;
        }
        
        .content {
            margin-bottom: 40px;
        }
        
        .intro {
            margin-bottom: 30px;
            padding: 20px;
            background-color: #1a1a1a;
            border-radius: 8px;
            border-left: 4px solid #8a2be2;
        }
        
        h2 {
            color: #9370db;
            margin: 25px 0 15px;
            border-bottom: 1px solid #333;
            padding-bottom: 10px;
        }
        
        .contact-methods {
            margin: 30px 0;
            padding: 20px;
            background-color: #1a1a1a;
            border-radius: 8px;
        }
        
        .contact-methods ul {
            margin-left: 30px;
            margin-bottom: 15px;
        }
        
        .contact-methods li {
            margin-bottom: 10px;
            color: #ccc;
        }
        
        .contact-methods .not-available {
            color: #ff5252;
            text-decoration: line-through;
        }
        
        .email-section {
            margin: 40px 0;
            text-align: center;
        }
        
        .email-box {
            background-color: #000;
            color: #4CAF50;
            padding: 25px;
            border: 2px solid #333;
            border-radius: 8px;
            font-family: monospace;
            font-size: 1.3rem;
            margin: 20px auto;
            max-width: 500px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .email-box:hover {
            border-color: #8a2be2;
            box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
        }
        
        .email-box.copied {
            background-color: #1a1a1a;
            color: #4CAF50;
            border-color: #4CAF50;
        }
        
        .copy-notification {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            background-color: #4CAF50;
            color: white;
            padding: 5px;
            font-size: 0.9rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .copy-notification.show {
            opacity: 1;
        }
        
        .instructions {
            color: #aaa;
            font-size: 0.9rem;
            margin-top: 10px;
        }

        .container {
            display: flex;
            align-items: center; /* vertically center */
            justify-content: space-between; /* space between text & image */
            max-width: 100%;
            margin: 20px auto;
            padding: 20px;
        }

        .text {
            flex: 1;
            padding-right: 20px;
            align-self: self-start;
        }

        .image {
            flex: 0 0 300px; /* fixed width */
        }

        .images {
            flex: 0 0 50%; /* fixed width */
            align-self: start;
        }

        .image img {
            width: 100%;
            border-radius: 10px;
            object-fit: cover;
        }

        .images img {
            width: 100%;
            border-radius: 10px;
            object-fit: cover;
            padding: 20px;
        }

        .products-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 25px 0;
            padding: 15px;
            background-color: #1e1e1e;
            border-radius: 5px;
        }
        
        .products-header h2 {
            color: #9370db;
        }
        
        .sorting {
            display: flex;
            align-items: center;
        }
        
        .sorting span {
            margin-right: 10px;
            color: #aaa;
        }
        
        .sorting select {
            background-color: #2d2d2d;
            color: #e0e0e0;
            border: 1px solid #444;
            padding: 8px;
            border-radius: 4px;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .product-card {
            display: flex;
            flex-direction: column;  
            justify-content: space-between;
            background-color: #1e1e1e;
            border: 1px solid #333;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            align-items: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .product-card img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;  /* fit image without cropping */
            display: block;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border-color: #8a2be2;
        }
        
        .product-title {
            color: #9370db;
            font-size: 1.3rem;
            margin-bottom: 10px;
            border-bottom: 1px solid #333;
            padding-bottom: 10px;
        }
        
        .product-price {
            color: #4CAF50;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 15px 0;
            text-align: center;
        }
        
        .product-description {
            color: #ccc;
            font-size: 0.9rem;
            margin-bottom: 15px;
            min-height: 80px;
        }
        
        .buy-button {
            background-color: #8a2be2;
            color: white;
            border: none;
            padding: 12px 20px;
            width: 100%;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
            transition: background-color 0.3s ease;
            margin-top: auto; /* ensures it stays at bottom */
        }
        
        .buy-button:hover {
            background-color: #6a1cb9;
        }

        .faq-container {
            margin-bottom: 40px;
        }
        
        .faq-item {
            margin-bottom: 15px;
            border: 1px solid #333;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .faq-question {
            background-color: #2d2d2d;
            padding: 15px;
            cursor: pointer;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question:hover {
            background-color: #3d3d3d;
        }
        
        .faq-answer {
            background-color: #1a1a1a;
            padding: 0 15px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-answer.open {
            padding: 15px;
            max-height: 500px;
        }
        
        .faq-answer ul {
            margin-left: 30px;
            margin-bottom: 15px;
        }
        
        .faq-answer li {
            margin-bottom: 8px;
        }
        
        .expand-icon {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }
        
        .expand-icon.open {
            transform: rotate(45deg);
        }

        .email-section {
            margin: 40px 0;
            text-align: center;
        }
        
        .email-box {
            background-color: #000;
            color: #4CAF50;
            padding: 25px;
            border: 2px solid #333;
            border-radius: 8px;
            font-family: monospace;
            font-size: 1.3rem;
            margin: 20px auto;
            max-width: 500px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .email-box:hover {
            border-color: #8a2be2;
            box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
        }
        
        .email-box.copied {
            background-color: #1a1a1a;
            color: #4CAF50;
            border-color: #4CAF50;
        }
        
        .copy-notification {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            background-color: #4CAF50;
            color: white;
            padding: 5px;
            font-size: 0.9rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .copy-notification.show {
            opacity: 1;
        }
        
        .instructions {
            color: #aaa;
            font-size: 0.9rem;
            margin-top: 10px;
        }

   .tab-headers {
    display: flex;
    gap: 20px;
    cursor: pointer;
}

.tab-link {
    font-weight: normal;
    padding-bottom: 5px;
}

.tab-link.active {
    border-bottom: 2px solid #000;
    font-weight: bold;
}

.tab-content {
    display: none;
    margin-top: 20px;
}

.tab-content.active {
    display: block;
}

.tab-headers {
    display: flex;
    gap: 20px;
    cursor: pointer;
}
.tab-link.active {
    border-bottom: 2px solid #000;
    font-weight: bold;
}
.tab-content { display: none; margin-top: 20px; }
.tab-content.active { display: block; }

.reviews-list {
    margin-bottom: 20px;
}
.review {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}
.review .stars { color: #f39c12; }

.rating span {
    font-size: 20px;
    cursor: pointer;
    color: #ccc;
}
.rating span.active {
    color: #f39c12;
}
form textarea, form input {
    width: 100%;
    padding: 8px;
}
button {
    background: orange;
    border: none;
    padding: 10px 20px;
    color: white;
    cursor: pointer;
}

        .cart-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }
        
        @media (max-width: 900px) {
            .cart-container {
                grid-template-columns: 1fr;
            }
        }
        
        .cart-table {
            width: 100%;
            border-collapse: collapse;
            background-color: #1a1a1a;
            border-radius: 4px;
            overflow: hidden;
        }
        
        .cart-table th {
            background-color: #2c2c2c;
            padding: 15px;
            text-align: left;
            color: #8bc34a;
        }
        
        .cart-table td {
            padding: 15px;
            border-bottom: 1px solid #2c2c2c;
        }
        
        .product-cell {
            display: flex;
            align-items: center;
        }
        
        .remove-btn {
            color: #ff5252;
            background: none;
            border: none;
            font-size: 18px;
            cursor: pointer;
            margin-right: 15px;
            transition: color 0.3s;
        }
        
        .remove-btn:hover {
            color: #ff7b7b;
        }
        
        .quantity {
            display: flex;
            align-items: center;
        }
        
        .quantity-input {
            width: 60px;
            padding: 8px;
            background-color: #2c2c2c;
            border: 1px solid #444;
            border-radius: 4px;
            color: #e0e0e0;
            text-align: center;
        }
        
        .update-cart {
            margin-top: 20px;
            text-align: right;
        }
        
        .update-btn {
            background-color: #2c2c2c;
            color: #8bc34a;
            border: 1px solid #444;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .update-btn:hover {
            background-color: #3c3c3c;
        }
        
        .cart-totals {
            background-color: #1a1a1a;
            padding: 20px;
            border-radius: 4px;
            height: fit-content;
        }
        
        .cart-totals h2 {
            color: #8bc34a;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #2c2c2c;
        }
        
        .totals-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 25px;
        }
        
        .totals-table tr {
            border-bottom: 1px solid #2c2c2c;
        }
        
        .totals-table td {
            padding: 12px 5px;
        }
        
        .totals-table tr:last-child {
            border-bottom: none;
            font-weight: bold;
            font-size: 1.1em;
        }
        
        .checkout-btn {
            display: block;
            width: 100%;
            background-color: #8bc34a;
            color: #121212;
            text-align: center;
            padding: 15px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            transition: background-color 0.3s;
        }
        
        .checkout-btn:hover {
            background-color: #7cb342;
        }
        
        .product-name {
            color: #8bc34a;
            font-weight: bold;
        }
        
        .subtotal {
            color: #8bc34a;
            font-weight: bold;
        }

                .cart-item {
            background-color: #1a1a1a;
            padding: 15px;
            border-radius: 4px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .cart-item::before {
            content: "✓";
            color: #4CAF50;
            margin-right: 10px;
            font-weight: bold;
        }
        
        .view-cart {
            display: inline-block;
            background-color: #2c2c2c;
            color: #8bc34a;
            padding: 8px 15px;
            border-radius: 4px;
            text-decoration: none;
            margin-bottom: 20px;
            transition: background-color 0.3s;
        }
        
        .view-cart:hover {
            background-color: #3c3c3c;
        }
        
        .checkout-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        
        @media (max-width: 768px) {
            .checkout-container {
                grid-template-columns: 1fr;
            }
        }
        
        .billing-details, .order-summary {
            background-color: #1a1a1a;
            padding: 20px;
            border-radius: 4px;
        }
        
        h3 {
            color: #8bc34a;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #2c2c2c;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color: #ccc;
        }
        
        input[type="email"], textarea {
            width: 100%;
            padding: 10px;
            background-color: #2c2c2c;
            border: 1px solid #444;
            border-radius: 4px;
            color: #e0e0e0;
        }
        
        textarea {
            min-height: 100px;
            resize: vertical;
        }
        
        .order-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }
        
        .order-table th, .order-table td {
            padding: 10px;
            text-align: left;
            border-bottom: 1px solid #2c2c2c;
        }
        
        .order-table th {
            color: #8bc34a;
        }
        
        .payment-options {
            margin-top: 20px;
            display: -webkit-inline-box;
            align-items: center;
        }
        
        .payment-option {
            margin-bottom: 15px;
            display: -webkit-inline-box;
            align-items: center;
        }
        
        .payment-option input[type="radio"] {
            margin-right: 10px;
        }
        
        .payment-option label {
            margin-bottom: 0;
            font-weight: normal;
        }
        
        .payment-desc {
            font-size: 12px;
            color: #888;
            margin-top: 5px;
            margin-left: 25px;
        }

        .order-received {
            background-color: #1a1a1a;
            padding: 30px;
            border-radius: 4px;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .order-received h2 {
            color: #8bc34a;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        .order-details {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin: 25px 0;
        }
        
        @media (max-width: 768px) {
            .order-details {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 480px) {
            .order-details {
                grid-template-columns: 1fr;
            }
        }
        
        .detail-box {
            background-color: #2c2c2c;
            padding: 15px;
            border-radius: 4px;
        }
        
        .detail-title {
            color: #8bc34a;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .payment-instructions {
            background-color: #1a1a1a;
            padding: 20px;
            border-radius: 4px;
            margin-bottom: 30px;
        }
        
        .payment-instructions h3 {
            color: #8bc34a;
            margin-bottom: 15px;
        }
        
        .payment-instructions p {
            margin-bottom: 15px;
        }
        
        .crypto-address {
            background-color: #2c2c2c;
            padding: 15px;
            border-radius: 4px;
            margin: 20px 0;
            word-break: break-all;
            font-family: monospace;
            font-size: 14px;
            color: #8bc34a;
        }
        
        .txid-form {
            background-color: #1a1a1a;
            padding: 20px;
            border-radius: 4px;
            margin-bottom: 30px;
        }
        
        .txid-form h3 {
            color: #8bc34a;
            margin-bottom: 15px;
        }
        
        .txid-input {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }
        
        .txid-input input {
            flex: 1;
            padding: 12px;
            background-color: #2c2c2c;
            border: 1px solid #444;
            border-radius: 4px;
            color: #e0e0e0;
        }
        
        .txid-input button {
            background-color: #8bc34a;
            color: #121212;
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .txid-input button:hover {
            background-color: #7cb342;
        }
        
        .order-summary1 {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }
        
        @media (max-width: 768px) {
            .order-summary1 {
                grid-template-columns: 1fr;
            }
        }
        
        .order-details-table, .billing-address {
            background-color: #1a1a1a;
            padding: 20px;
            border-radius: 4px;
        }
        
        .order-details-table h3, .billing-address h3 {
            color: #8bc34a;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #2c2c2c;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
        }
        
        table th, table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #2c2c2c;
        }
        
        table th {
            color: #8bc34a;
        }
        
        .product-name {
            color: #8bc34a;
        }
        
        .billing-address p {
            margin-bottom: 10px;
        }
        
        .email {
            color: #8bc34a;
        }
        
        footer {
            margin-top: 40px;
            text-align: center;
            padding: 20px;
            border-top: 1px solid #333;
            color: #888;
        }
        
        @media (max-width: 768px) {
            .nav-table {
                display: block;
            }
            
            .nav-table th {
                display: block;
                width: 100%;
                margin-bottom: 5px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .email-box {
                font-size: 1.1rem;
                padding: 15px;
            }
        }
