/* ==================== RESET AND BASE STYLES ==================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'IBM Plex Mono', monospace;
}

body {
    font-family: 'IBM Plex Mono', monospace;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #111111;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    letter-spacing: -0.02em;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #ffffff;
}

p {
    margin-bottom: 1rem;
    font-weight: 300;
}

/* ==================== HEADER STYLES ==================== */

.header {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #333333;
}

.header-content {
    text-align: center;
}

.main-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00ff88;
    margin: 0;
}

/* ==================== ANNOUNCEMENT BANNER ==================== */

.announcement {
    background-color: #222222;
    color: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #333333;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.announcement-icon {
    font-size: 2rem;
    color: #ff5555;
    font-weight: bold;
    flex-shrink: 0;
    text-shadow: 0 0 10px rgba(255, 85, 85, 0.7);
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
}

@keyframes pulse {
    0% {
        text-shadow: 0 0 10px rgba(255, 85, 85, 0.7);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 85, 85, 0.9), 0 0 30px rgba(255, 85, 85, 0.5);
    }
    100% {
        text-shadow: 0 0 10px rgba(255, 85, 85, 0.7);
    }
}

.announcement p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ff9999;
    text-align: center;
    font-weight: 300;
    text-shadow: 0 0 1px rgba(255, 153, 153, 0.3);
    transition: color 0.3s ease;
}

.announcement:hover p {
    color: #ffaaaa;
    text-shadow: 0 0 2px rgba(255, 170, 170, 0.4);
}

/* ==================== NAVIGATION STYLES ==================== */

.navigation {
    background-color: #1a1a1a;
    border-bottom: 1px solid #333333;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 20px;
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
}

.nav-link:hover {
    background-color: #222222;
    color: #00ff88;
    border-bottom-color: #444444;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    position: relative;
    padding-right: 30px;
}

.dropdown-arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: #888888;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    border: 1px solid #333333;
    border-top: none;
    min-width: 220px;
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.dropdown-link:hover {
    background-color: #222222;
    color: #00ff88;
    border-left-color: #00ff88;
    padding-left: 25px;
}

/* ==================== CART NAVIGATION STYLES ==================== */

.nav-cart-item {
    margin-left: auto;
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-right: 25px !important;
}

.cart-icon {
    font-size: 1.2rem;
}

.cart-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.cart-badge {
    position: absolute;
    top: 5px;
    right: 8px;
    background: linear-gradient(135deg, #ff5555, #ff3333);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 6px rgba(255, 85, 85, 0.4);
    animation: badgePulse 2s infinite;
    border: 2px solid #1a1a1a;
}

@keyframes badgePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 85, 85, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(255, 85, 85, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 85, 85, 0);
    }
}

.cart-link:hover .cart-icon {
    animation: cartShake 0.5s ease;
}

@keyframes cartShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

.cart-link:hover .cart-badge {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

/* ==================== MAIN CONTENT STYLES ==================== */

.main-content {
    flex: 1;
    padding: 40px 0;
    background-color: #111111;
}

.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== FLASH MESSAGES ==================== */

.flash-messages {
    padding: 15px 40px;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.flash-message {
    background-color: #4CAF50;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.2);
    animation: fadeIn 0.5s ease;
    text-align: center;
    font-family: 'IBM Plex Mono', monospace;
}

.flash-message.success {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.flash-message.error {
    background: rgba(255, 85, 85, 0.1);
    color: #ff5555;
    border: 1px solid rgba(255, 85, 85, 0.3);
}

.flash-message.info {
    background: rgba(0, 204, 255, 0.1);
    color: #00ccff;
    border: 1px solid rgba(0, 204, 255, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==================== FEEDBACK/REVIEWS PAGE STYLES ==================== */

.feedback-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 20px 50px;
}

.feedback-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.feedback-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
    text-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
    position: relative;
    display: inline-block;
    padding: 0 30px;
}

.feedback-title::before,
.feedback-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00ff88);
    transform: translateY(-50%);
}

.feedback-title::before {
    left: -70px;
    transform: translateY(-50%) scaleX(-1);
}

.feedback-title::after {
    right: -70px;
}

.feedback-subtitle {
    color: #a0a0a0;
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Product info for feedback */
.product-info-feedback {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding: 25px;
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333333;
}

.product-image-feedback {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 204, 255, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    color: #00ff88;
    font-size: 3rem;
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.product-details-feedback h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #00ccff;
}

.rating-overview {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 20px;
}

.average-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background-color: rgba(26, 26, 26, 0.8);
    border-radius: 10px;
    min-width: 150px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00ff88;
    line-height: 1;
}

.rating-count {
    font-size: 0.9rem;
    color: #888888;
    margin-top: 5px;
}

.rating-bars {
    flex: 1;
    min-width: 300px;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.rating-bar span:first-child {
    width: 70px;
    font-size: 0.9rem;
    color: #cccccc;
}

.rating-bar span:last-child {
    width: 40px;
    text-align: right;
    font-weight: 500;
    color: #ffffff;
}

.bar-container {
    flex: 1;
    height: 10px;
    background-color: #333333;
    border-radius: 5px;
    margin: 0 15px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(to right, #00ff88, #00cc66);
    border-radius: 5px;
}

/* Stars for feedback */
.stars {
    display: flex;
    color: #ffaa00;
    margin: 10px 0;
    font-size: 1.2rem;
}

/* Review form */
.review-form-section {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #333333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.review-form-section h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #00ff88;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #cccccc;
    font-size: 0.95rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #333333;
    border-radius: 8px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1rem;
    transition: all 0.3s;
    background-color: #222222;
    color: #ffffff;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.rating-input {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.rating-label {
    font-weight: 500;
    color: #cccccc;
}

.stars-input {
    display: flex;
    direction: row-reverse;
    justify-content: flex-end;
}

.stars-input input {
    display: none;
}

.stars-input label {
    font-size: 1.8rem;
    color: #333333;
    cursor: pointer;
    transition: color 0.2s;
    margin-right: 5px;
}

.stars-input input:checked ~ label,
.stars-input label:hover,
.stars-input label:hover ~ label {
    color: #ffaa00;
}

.submit-btn {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    color: #111111;
    border: none;
    padding: 16px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    width: 100%;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #00cc66, #00aa44);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

/* Reviews list */
.reviews-list {
    margin-top: 40px;
}

.reviews-list h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #00ff88;
    padding-bottom: 10px;
    border-bottom: 1px solid #333333;
}

.review-card {
    background-color: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.review-card:hover {
    border-color: #00ff88;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.1);
    transform: translateY(-3px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 204, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #00ff88;
    font-size: 1.2rem;
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.reviewer-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #ffffff;
}

.review-rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.review-date {
    font-size: 0.9rem;
    color: #888888;
}

.review-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #00ccff;
}

.review-content {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 20px;
}

.review-helpful {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #333333;
}

.helpful-text {
    font-size: 0.9rem;
    color: #888888;
}

.helpful-btn {
    background-color: rgba(34, 34, 34, 0.8);
    border: 1px solid #333333;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #cccccc;
    font-family: 'IBM Plex Mono', monospace;
}

.helpful-btn:hover {
    background-color: rgba(0, 255, 136, 0.1);
    border-color: #00ff88;
    color: #00ff88;
}

.helpful-btn i {
    font-size: 0.8rem;
}

/* Load more button */
.load-more {
    text-align: center;
    margin-top: 30px;
}

.load-more-btn {
    background-color: rgba(26, 26, 26, 0.8);
    color: #00ff88;
    border: 2px solid #00ff88;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.load-more-btn:hover {
    background-color: #00ff88;
    color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

/* ==================== WELCOME SECTION ==================== */

.welcome-section {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
}

.welcome-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #00ff88;
}

.welcome-message {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    margin-top: 30px;
    text-align: left;
}

.about-section h3 {
    color: #00ff88;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.about-section p {
    color: #cccccc;
    line-height: 1.6;
}

/* ==================== UPDATED CATEGORY CARDS IMAGE STYLES ==================== */

.category-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background-color: #222222;
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #444444;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.product-card:hover .category-image {
    transform: scale(1.05);
    border-color: #00ff88;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.1);
}

/* ==================== PRODUCT TAGS STYLES ==================== */

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
    min-height: 32px;
    align-items: center;
    justify-content: flex-start;
}

.product-tag {
    background: rgba(0, 204, 255, 0.1);
    color: #00ccff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'IBM Plex Mono', monospace;
    border: 1px solid rgba(0, 204, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    position: relative;
    overflow: hidden;
}

.product-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 204, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.product-tag:hover::before {
    left: 100%;
}

.product-tag:hover {
    background: rgba(0, 204, 255, 0.2);
    border-color: rgba(0, 204, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 204, 255, 0.2);
}

.product-tag.featured {
    background: rgba(255, 85, 85, 0.1);
    color: #ff5555;
    border-color: rgba(255, 85, 85, 0.3);
}

.product-tag.featured:hover {
    background: rgba(255, 85, 85, 0.2);
    border-color: rgba(255, 85, 85, 0.5);
}

.product-tag.new {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border-color: rgba(0, 255, 136, 0.3);
}

.product-tag.new:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.5);
}

.product-tag.sale {
    background: rgba(255, 170, 0, 0.1);
    color: #ffaa00;
    border-color: rgba(255, 170, 0, 0.3);
}

.product-tag.sale:hover {
    background: rgba(255, 170, 0, 0.2);
    border-color: rgba(255, 170, 0, 0.5);
}

.product-tag.limited {
    background: rgba(170, 0, 255, 0.1);
    color: #aa00ff;
    border-color: rgba(170, 0, 255, 0.3);
}

.product-tag.limited:hover {
    background: rgba(170, 0, 255, 0.2);
    border-color: rgba(170, 0, 255, 0.5);
}

.product-tag.popular {
    background: rgba(255, 0, 170, 0.1);
    color: #ff00aa;
    border-color: rgba(255, 0, 170, 0.3);
}

.product-tag.popular:hover {
    background: rgba(255, 0, 170, 0.2);
    border-color: rgba(255, 0, 170, 0.5);
}

/* ==================== IN STOCK TAG STYLES ==================== */

.product-tag.in-stock {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border-color: rgba(0, 255, 136, 0.3);
    font-weight: 600;
    padding: 4px 10px;
    order: -1; /* Makes it appear first */
}

.product-tag.in-stock:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.5);
}

/* ==================== QUANTITY SELECT STYLES ==================== */

.quantity-select-group {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quantity-label {
    font-weight: bold;
    color: #333;
}

.quantity-select {
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
    background-color: white;
    cursor: pointer;
}

.quantity-select:hover {
    border-color: #999;
}

.quantity-select:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
}

.stock-info {
    color: #666;
    font-size: 12px;
    margin-top: 4px;
}

.pack-size {
    font-size: 12px;
    color: #666;
    margin-left: 5px;
    font-weight: normal;
}

/* ==================== UPDATED HOMEPAGE CATEGORY CARDS ==================== */

.products-section {
    margin: 60px 0;
}

.products-section h3 {
    text-align: center;
    color: #00ff88;
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.products-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
    border-radius: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.product-card {
    background: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    padding: 25px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid #333333;
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, #00ccff);
    border-radius: 12px 12px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 255, 136, 0.15);
    border-color: #00ff88;
}

.product-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 10px;
    background-color: #222222;
    padding: 15px;
    border: 1px solid #444444;
    transition: all 0.3s ease;
}

.product-card:hover .product-image-container {
    border-color: #00ff88;
    background-color: #252525;
}

.product-image {
    width: 100%;
    height: 180px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-details {
    flex-grow: 1;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Category Card Title Styles */
.category-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #00ccff;
    margin-bottom: 12px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 10px;
}

.category-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ccff, transparent);
    border-radius: 1px;
}

.product-card:hover .category-card-title {
    color: #33ccff;
    text-shadow: 0 0 10px rgba(0, 204, 255, 0.3);
}

/* Price Tag for Category Cards */
.category-price-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 204, 255, 0.15));
    color: #00ff88;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 25px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    margin: 10px 0 15px 0;
    font-family: 'IBM Plex Mono', monospace;
    transition: all 0.3s ease;
}

.product-card:hover .category-price-tag {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.25), rgba(0, 204, 255, 0.25));
    border-color: rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.2);
}

/* Category Description */
.category-description {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 15px 0;
    flex-grow: 1;
    padding: 0 5px;
}

/* Browse Link for Category Cards */
.browse-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #222222;
    color: #00ccff;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'IBM Plex Mono', monospace;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.browse-link:hover {
    background: linear-gradient(135deg, #00ccff, #0099cc);
    color: #111111;
    border-color: #00ccff;
    padding-right: 15px;
    padding-left: 25px;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 204, 255, 0.2);
}

.browse-link .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.browse-link:hover .arrow {
    transform: translateX(5px);
}

/* Product Grid for Category Pages */
.product-card-grid {
    background: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid #333333;
    height: 100%;
    text-align: center;
}

.product-card-grid:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 255, 136, 0.1);
    border-color: #00ff88;
}

.product-card-grid .product-image-container {
    margin-bottom: 15px;
}

.product-card-grid .product-image {
    height: 200px;
}

.product-card-grid .product-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #00ccff;
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-card-grid .price-section {
    margin-bottom: 15px;
}

.product-card-grid .price {
    font-size: 1.4rem;
    color: #00ff88;
    font-weight: 800;
    display: inline-block;
    padding: 5px 12px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 6px;
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.product-card-grid .description-section {
    margin-top: 15px;
}

.product-card-grid .product-description {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==================== PRODUCT DETAIL STYLES ==================== */

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    background-color: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
}

.product-image-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #222222;
    border-radius: 8px;
    border: 1px solid #444444;
    padding: 20px;
    min-height: 300px;
}

.product-main-image {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
}

.product-info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-name-large {
    font-size: 1.8rem;
    color: #00ff88;
    margin: 0;
    font-weight: 600;
}

.product-description-large {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

.product-description-large p {
    margin: 0;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    padding: 15px 0;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
}

.price-amount {
    font-size: 1.8rem;
    color: #00ccff;
    font-weight: 600;
    font-family: 'IBM Plex Mono', monospace;
}

.price-currency {
    font-size: 1rem;
    color: #888888;
    font-weight: 300;
}

/* No Products */
.no-products {
    text-align: center;
    padding: 80px 20px;
    background: #1a1a1a;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 600px;
    border: 1px solid #333333;
}

.no-products p {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin: 0;
}

/* ==================== PRODUCT LABELS AND TAGS STYLES ==================== */

/* Uniform label styling for product details */
.product-name h4,
.price-section,
.description-section,
.quantity-input-group small,
.quantity-select-group small {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 600;
    color: #00ccff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Product name label styling */
.product-name h4 {
    font-size: 1rem;
    color: #00ff88;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    margin-bottom: 12px;
    text-align: left;
}

/* Price label styling */
.price-section {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0;
    padding: 10px 0;
    border-top: 1px solid rgba(51, 51, 51, 0.5);
    border-bottom: 1px solid rgba(51, 51, 51, 0.5);
}

.price-section .price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    padding: 6px 14px;
    border-radius: 6px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    margin-left: auto;
    transition: all 0.3s ease;
}

.product-card:hover .price-section .price {
    background: rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.2);
}

/* Description label styling */
.description-section {
    margin: 15px 0 10px 0;
    color: #00ccff;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-description {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    padding: 12px;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 8px;
    border: 1px solid #333333;
    font-weight: 300;
    text-align: left;
}

/* Quantity input group styling (for backward compatibility) */
.quantity-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    justify-content: center;
    padding: 10px 0;
    border-top: 1px solid rgba(51, 51, 51, 0.5);
}

.quantity-input-group small {
    color: #00ccff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.quantity-input {
    width: 100px;
    padding: 10px 15px;
    border: 2px solid #444444;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    background: #222222;
    color: #ffffff;
    font-family: 'IBM Plex Mono', monospace;
    transition: all 0.3s ease;
}

.quantity-input:focus {
    outline: none;
    border-color: #00ff88;
    background: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.2);
}

.quantity-input:hover {
    border-color: #555555;
}

.quantity-input::-webkit-inner-spin-button,
.quantity-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input[type=number] {
    -moz-appearance: textfield;
}

/* Cart Action */
.cart-action {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #333333;
}

.add-cart-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.add-to-cart-button {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    color: #111111;
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    position: relative;
    overflow: hidden;
    font-family: 'IBM Plex Mono', monospace;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart-button:hover {
    background: linear-gradient(135deg, #00cc66, #00aa44);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.25);
}

.add-to-cart-button:active {
    transform: translateY(-1px);
}

.add-to-cart-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.add-to-cart-button:focus:not(:active)::before {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.view-details-btn {
    display: inline-block;
    background-color: #222222;
    color: #00ff88;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.9rem;
    border: 1px solid #333333;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 10px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.view-details-btn:hover {
    background-color: #00ff88;
    color: #111111;
    border-color: #00ff88;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

/* ==================== UPDATED CART PAGE STYLES ==================== */

.page-title {
    text-align: center;
    color: #00ff88;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #333333;
    font-size: 1.8rem;
    font-weight: 700;
}

.cart-container {
    display: block;
    margin-top: 20px;
}

.cart-items {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #333333;
    max-width: 900px;
    margin: 0 auto;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.cart-table thead {
    background: #222222;
    border-bottom: 2px solid #333333;
}

.cart-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #00ccff;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cart-item {
    border-bottom: 1px solid #333333;
}

.cart-item:hover {
    background: rgba(0, 255, 136, 0.05);
}

.cart-table td {
    padding: 20px 15px;
    vertical-align: middle;
}

.cart-product-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 1.1rem;
}

.unit-price, .item-total {
    font-weight: 700;
    color: #00ff88;
    font-size: 1.1rem;
    font-family: 'IBM Plex Mono', monospace;
}

.update-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.update-quantity {
    width: 80px;
    padding: 10px 12px;
    border: 2px solid #444444;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    background: #222222;
    color: #ffffff;
    font-family: 'IBM Plex Mono', monospace;
    transition: all 0.3s ease;
}

.update-quantity:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.2);
}

.update-btn {
    background: #00ccff;
    color: #111111;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.update-btn:hover {
    background: #00aadd;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 204, 255, 0.3);
}

.remove-btn {
    color: #ff5555;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    border: 1px solid #ff5555;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.remove-btn:hover {
    background: #ff5555;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 85, 85, 0.3);
}

.cart-actions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333333;
}

.cart-total {
    background: rgba(0, 255, 136, 0.05);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.total-row:last-child {
    border-bottom: none;
}

.total-label {
    color: #cccccc;
    font-weight: 600;
    font-size: 1rem;
}

.total-value {
    color: #00ccff;
    font-weight: 600;
    font-family: 'IBM Plex Mono', monospace;
}

.total-amount {
    color: #00ff88;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'IBM Plex Mono', monospace;
}

.cart-buttons-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.continue-shopping-btn {
    display: block;
    text-align: center;
    color: #00ccff;
    text-decoration: none;
    font-weight: 600;
    padding: 14px;
    border: 1px solid #00ccff;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.continue-shopping-btn:hover {
    background: #00ccff;
    color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 204, 255, 0.3);
}

.cart-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.clear-cart-link {
    background: #ff5555;
    color: white;
    padding: 14px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    flex: 1;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.clear-cart-link:hover {
    background: #ff3333;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 85, 85, 0.3);
}

.checkout-btn {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    color: #111111;
    padding: 14px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    flex: 2;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #00cc66, #00aa44);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 255, 136, 0.3);
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333333;
    margin: 40px auto;
    max-width: 600px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.empty-cart-icon {
    font-size: 4rem;
    color: #333333;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.empty-cart-title {
    color: #cccccc;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.empty-cart-message {
    color: #888888;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.browse-products-btn {
    display: inline-block;
    background: linear-gradient(135deg, #00ccff, #0099cc);
    color: white;
    padding: 15px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
}

.browse-products-btn:hover {
    background: linear-gradient(135deg, #0099cc, #0077aa);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 204, 255, 0.3);
}

/* ==================== UPDATED DELIVERY PAGE STYLES ==================== */

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

.delivery-section {
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333333;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.delivery-intro {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333333;
}

.delivery-title {
    color: #00ff88;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.delivery-subtitle {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.delivery-form-section {
    margin-bottom: 40px;
}

.form-title {
    color: #00ff88;
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.delivery-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-section {
    background: #222222;
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #333333;
}

.section-title {
    color: #00ccff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #333333;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #cccccc;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 6px;
    padding: 12px 15px;
    color: #ffffff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.2);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #444444;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.shipping-selection {
    margin-bottom: 25px;
}

.selection-title {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.shipping-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option-radio {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-radio:hover {
    border-color: #444444;
    background: #222222;
}

.option-radio input[type="radio"] {
    margin-right: 15px;
    transform: scale(1.2);
}

.option-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.option-name {
    color: #00ccff;
    font-weight: 600;
    font-size: 1.05rem;
}

.option-price {
    color: #00ff88;
    font-weight: 600;
    font-family: 'IBM Plex Mono', monospace;
}

.option-desc {
    color: #888888;
    font-size: 0.9rem;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.payment-radio {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-radio:hover {
    border-color: #444444;
    background: #222222;
}

.payment-radio input[type="radio"] {
    margin-right: 15px;
    transform: scale(1.2);
}

.payment-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.payment-name {
    color: #00ccff;
    font-weight: 600;
    font-size: 1.05rem;
}

.payment-note {
    background: rgba(255, 85, 85, 0.1);
    border: 1px solid rgba(255, 85, 85, 0.3);
    border-radius: 6px;
    padding: 15px;
    margin-top: 15px;
}

.payment-note p {
    color: #ff9999;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.terms-section {
    background: #222222;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #333333;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
}

.terms-checkbox input[type="checkbox"] {
    margin-top: 4px;
    transform: scale(1.2);
}

.terms-text {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.terms-link {
    color: #00ccff;
    text-decoration: none;
    font-weight: 600;
}

.terms-link:hover {
    color: #00ff88;
    text-decoration: underline;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.back-btn {
    color: #00ccff;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 25px;
    border: 1px solid #00ccff;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.back-btn:hover {
    background: #00ccff;
    color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 204, 255, 0.3);
}

.submit-btn {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    color: #111111;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #00cc66, #00aa44);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.3);
}

.important-notes {
    background: rgba(255, 85, 85, 0.05);
    border: 1px solid rgba(255, 85, 85, 0.2);
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
}

.notes-title {
    color: #ff5555;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.notes-list {
    list-style: none;
    padding: 0;
}

.notes-list li {
    color: #ff9999;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.notes-list li:before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: #ff5555;
    font-weight: bold;
}

.notes-list strong {
    color: #ffaaaa;
}

/* ==================== FAQ PAGE STYLES ==================== */

.faq-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 2rem 1rem;
    font-family: 'IBM Plex Mono', monospace;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    background: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    overflow: hidden;
}

.faq-header {
    background: linear-gradient(90deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 3rem 2rem;
    text-align: center;
    border-bottom: 1px solid #333;
}

.faq-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.faq-header h1 i {
    color: #00ff88;
    margin-right: 15px;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #a0a0a0;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-main {
    padding: 2rem;
}

.faq-section {
    margin-bottom: 3rem;
}

.faq-item {
    background: #252525;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #333;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: #00ff88;
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.1);
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #2a2a2a;
}

.question-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    flex: 1;
    letter-spacing: -0.3px;
}

.faq-icon {
    color: #00ff88;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    background-color: #2a2a2a;
    border-top: 1px solid #333;
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 500px;
    padding: 1.5rem 2rem;
}

.faq-toggle:checked ~ .faq-question .faq-icon i {
    transform: rotate(180deg);
}

.faq-answer p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
}

.faq-answer strong {
    color: #ffffff;
    font-weight: 500;
}

.faq-answer a {
    color: #00ff88;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: #33ffaa;
    text-decoration: underline;
}

.faq-footer {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(90deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 8px;
    margin-top: 2rem;
    border: 1px solid #333;
}

.faq-footer p {
    color: #a0a0a0;
    font-size: 1rem;
    margin: 0;
}

.contact-link {
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact-link:hover {
    color: #33ffaa;
    border-bottom-color: #33ffaa;
}

/* ==================== UPDATED FOOTER STYLES ==================== */

.footer {
    background-color: #0a0a0a;
    color: #888888;
    padding: 40px 0 25px;
    margin-top: auto;
    border-top: 1px solid #333333;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 60px;
    }
}

.footer-section {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-section {
        width: auto;
        min-width: 200px;
        text-align: left;
        align-items: flex-start;
    }
}

.footer-title {
    color: #00ff88;
    font-size: 1.3rem;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #00ff88;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .footer-title {
        justify-content: flex-start;
        width: 100%;
    }
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .footer-links {
        gap: 25px;
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .footer-links {
        gap: 30px;
    }
}

.footer-links li {
    text-align: center;
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-links li {
        text-align: center;
    }
}

.footer-links a {
    color: #888888;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-family: 'IBM Plex Mono', monospace;
    padding: 8px 15px;
    border-radius: 6px;
    border: 1px solid transparent;
    background-color: rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.footer-links a:hover {
    color: #00ff88;
    background-color: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.1);
}

@media (min-width: 768px) {
    .footer-links a {
        justify-content: center;
    }
}

.link-icon {
    font-size: 0.9rem;
    color: #00ff88;
    transition: transform 0.3s ease;
}

.footer-links a:hover .link-icon {
    transform: translateX(3px);
}

.footer-bottom {
    width: 100%;
    border-top: 1px solid #333333;
    padding-top: 30px;
    margin-top: 40px;
    text-align: center;
}

.copyright {
    margin: 0 auto;
    width: 100%;
}

.copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: #666666;
    font-family: 'IBM Plex Mono', monospace;
    text-align: center;
    line-height: 1.5;
}

/* ==================== UPDATED ABOUT US PAGE STYLES ==================== */

.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px 50px;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
    text-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
    position: relative;
    display: inline-block;
    padding: 0 30px;
}

.about-title::before,
.about-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00ff88);
    transform: translateY(-50%);
}

.about-title::before {
    left: -70px;
    transform: translateY(-50%) scaleX(-1);
}

.about-title::after {
    right: -70px;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.decoration-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ccff, transparent);
    border-radius: 1px;
}

.decoration-icon {
    font-size: 1.5rem;
    color: #00ccff;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-section {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(34, 34, 34, 0.9));
    border-radius: 15px;
    padding: 35px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00ff88, #00ccff, #00ff88);
    border-radius: 15px 15px 0 0;
}

.about-section:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 12px 35px rgba(0, 255, 136, 0.15);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 204, 255, 0.2);
}

.section-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 204, 255, 0.1));
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 136, 0.3);
    flex-shrink: 0;
}

.section-title {
    font-size: 1.8rem;
    color: #00ccff;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
}

.section-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.section-content strong {
    color: #00ff88;
    font-weight: 600;
    background: rgba(0, 255, 136, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.section-content em {
    color: #ffcc00;
    font-style: italic;
    font-weight: 500;
}

.mission-statement {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 204, 255, 0.05));
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    border: 2px dashed rgba(0, 255, 136, 0.3);
    position: relative;
    overflow: hidden;
}

.mission-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.1), transparent 70%);
    opacity: 0.5;
}

.mission-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: floatElement 3s ease-in-out infinite;
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.mission-title {
    font-size: 2rem;
    color: #00ff88;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mission-text {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 300;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 992px) {
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .trust-badges {
        grid-template-columns: 1fr;
    }
}

.trust-item {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.trust-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.2);
    background: rgba(0, 255, 136, 0.05);
}

.badge-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 204, 255, 0.1));
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.badge-text {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cart-summary-display {
    display: none;
    position: fixed;
    top: 80px;
    right: 20px;
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 15px;
    min-width: 200px;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.cart-summary-display.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-summary-title {
    color: #00ff88;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    border-bottom: 1px solid #333333;
    padding-bottom: 8px;
}

.cart-summary-items {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    max-height: 200px;
    overflow-y: auto;
}

.cart-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #222222;
}

.cart-summary-item:last-child {
    border-bottom: none;
}

.cart-summary-item-name {
    color: #cccccc;
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

.cart-summary-item-quantity {
    background: #222222;
    color: #00ff88;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #333333;
    font-weight: 600;
}

.cart-summary-total-label {
    color: #cccccc;
    font-size: 0.9rem;
}

.cart-summary-total-amount {
    color: #00ff88;
    font-size: 1rem;
}

.cart-summary-actions {
    margin-top: 10px;
    display: flex;
    gap: 8px;
}

.cart-summary-view-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #00ff88;
    color: #111111;
    padding: 8px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.cart-summary-view-btn:hover {
    background: #00cc66;
    transform: translateY(-1px);
}

/* ==================== PGP PAGE STYLES ==================== */

.pgp-harbor {
    font-size: 1.8rem;
    color: #00ff88;
    text-align: center;
    margin: 30px 0 20px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #333333;
    padding-bottom: 15px;
}

.pgp-body {
    background-color: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 25px;
    margin: 20px auto 40px auto;
    max-width: 800px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #66ddff;
    white-space: pre;
    overflow-x: auto;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.pgp-body::before {
    content: 'PGP PUBLIC KEY';
    position: absolute;
    top: -10px;
    left: 20px;
    background-color: #111111;
    color: #00ff88;
    padding: 0 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'IBM Plex Mono', monospace;
}

/* ==================== UPDATED CHECKOUT PAGE LAYOUT ==================== */

.checkout-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}

.order-summary-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.order-summary-section .checkout-section {
    margin-bottom: 0;
    height: 100%;
}

.payment-section {
    width: 100%;
}

.checkout-section {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #333333;
}

.section-title {
    color: #00ccff;
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 600;
    border-bottom: 1px solid #333333;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #222222;
}

.summary-row:last-child {
    border-bottom: none;
}

.total-row {
    background: rgba(0, 255, 136, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.customer-info {
    background: #222222;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #333333;
}

.customer-info p {
    margin: 10px 0;
    color: #cccccc;
}

.customer-info strong {
    color: #00ccff;
    min-width: 80px;
    display: inline-block;
}

.rate-info {
    background: rgba(0, 204, 255, 0.1);
    border: 1px solid rgba(0, 204, 255, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 25px;
    text-align: center;
}

.rate-update {
    color: #00ccff;
    font-size: 0.95rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ==================== UPDATED CRYPTO OPTIONS IN ROW ==================== */

.crypto-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

@media (max-width: 992px) {
    .crypto-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .crypto-options {
        grid-template-columns: 1fr;
    }
}

.crypto-option {
    background: #222222;
    border: 2px solid #333333;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    height: 100%;
}

.crypto-option:hover {
    border-color: #444444;
    background: #252525;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.crypto-option.selected {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.05);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.15);
    transform: translateY(-2px);
}

.crypto-option input[type="radio"] {
    position: absolute;
    top: 20px;
    right: 20px;
    transform: scale(1.3);
    accent-color: #00ff88;
}

.crypto-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
}

.crypto-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.crypto-icon {
    font-size: 2.2rem;
    min-width: 45px;
    text-align: center;
}

.bitcoin-icon {
    color: #f7931a;
}

.litecoin-icon {
    color: #bfbbbb;
}

.monero-icon {
    color: #ff6600;
}

.crypto-info {
    flex: 1;
}

.crypto-name {
    color: #ffffff;
    font-size: 1.3rem;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.crypto-rate {
    color: #00ff88;
    margin: 0;
    font-size: 0.95rem;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 500;
}

.crypto-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.crypto-amount {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 204, 255, 0.1));
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.crypto-option:hover .crypto-amount {
    border-color: rgba(0, 255, 136, 0.4);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 204, 255, 0.15));
}

.amount-label {
    color: #cccccc;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.amount-value {
    color: #00ff88;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'IBM Plex Mono', monospace;
    word-break: break-all;
    line-height: 1.3;
}

.crypto-address {
    background: rgba(0, 204, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(0, 204, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    transition: all 0.3s ease;
}

.crypto-option:hover .crypto-address {
    border-color: rgba(0, 204, 255, 0.4);
    background: rgba(0, 204, 255, 0.15);
}

.address-label {
    color: #00ccff;
    font-size: 0.95rem;
    font-weight: 600;
}

.address-display {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.address-value {
    color: #ffffff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.85rem;
    word-break: break-all;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    text-align: center;
    line-height: 1.4;
}

.qr-code-container {
    text-align: center;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin-top: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.qr-code-image {
    width: 140px;
    height: 140px;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
}

.qr-code-label {
    display: block;
    font-size: 0.8rem;
    color: #888888;
    margin-top: 8px;
    text-align: center;
    font-weight: 500;
}

.payment-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    color: #cccccc;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group input {
    width: 100%;
    background: #222222;
    border: 2px solid #333333;
    border-radius: 8px;
    padding: 12px 15px;
    color: #ffffff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.2);
}

.form-text {
    color: #888888;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.back-btn {
    color: #00ccff;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 25px;
    border: 1px solid #00ccff;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.back-btn:hover {
    background: #00ccff;
    color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 204, 255, 0.3);
}

.submit-btn {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    color: #111111;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #00cc66, #00aa44);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.3);
}

.important-notes {
    background: rgba(255, 85, 85, 0.05);
    border: 1px solid rgba(255, 85, 85, 0.2);
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
}

.notes-title {
    color: #ff5555;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.notes-list {
    list-style: none;
    padding: 0;
}

.notes-list li {
    color: #ff9999;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.notes-list li:before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: #ff5555;
    font-weight: bold;
}

.notes-list strong {
    color: #ffaaaa;
}

/* ==================== UPDATED CONFIRMATION PAGE STYLES ==================== */

.confirmation-container {
    max-width: 1000px;
    margin: 40px auto;
    text-align: center;
}

.confirmation-icon {
    font-size: 5rem;
    margin-bottom: 25px;
}

.confirmation-icon.success {
    color: #00ff88;
}

.confirmation-title {
    color: #00ff88;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.confirmation-subtitle {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.confirmation-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
}

.detail-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #333333;
    text-align: left;
    width: 100%;
}

.detail-title {
    color: #00ccff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333333;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Order Items Table Styles */
.order-items-table {
    margin-top: 15px;
    overflow-x: auto;
}

.items-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.items-table thead {
    background: #222222;
    border-bottom: 2px solid #333333;
}

.items-table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    color: #00ccff;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.items-table tbody tr {
    border-bottom: 1px solid #333333;
    transition: background-color 0.2s ease;
}

.items-table tbody tr:hover {
    background: rgba(0, 255, 136, 0.05);
}

.items-table td {
    padding: 15px;
    vertical-align: middle;
    color: #cccccc;
}

.product-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
}

.product-price,
.product-quantity,
.product-total {
    font-weight: 600;
    font-family: 'IBM Plex Mono', monospace;
    text-align: right;
}

.product-price {
    color: #00ccff;
}

.product-quantity {
    color: #ffffff;
}

.product-total {
    color: #00ff88;
}

/* Order Summary Styles */
.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #222222;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row.total-row {
    border-top: 2px solid #333333;
    padding-top: 15px;
    margin-top: 5px;
    background: rgba(0, 255, 136, 0.05);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.detail-label {
    color: #cccccc;
    font-weight: 600;
}

.detail-value {
    color: #00ff88;
    font-weight: 600;
    font-family: 'IBM Plex Mono', monospace;
}

.total-row .detail-label,
.total-row .detail-value {
    font-weight: 700;
    font-size: 1.1em;
    color: #00ff88;
}

.status-pending {
    color: #ffaa00;
    background: rgba(255, 170, 0, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Shipping Information Styles */
.shipping-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

/* Next Steps Styles */
.next-steps {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.next-steps li {
    color: #cccccc;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    text-align: left;
    line-height: 1.5;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

/* Transaction Hash Styles */
.tx-hash {
    background: #222222;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #333333;
    word-break: break-all;
    margin-top: 10px;
}

.tx-hash code {
    color: #00ccff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.9rem;
}

.tx-hash small {
    color: #888888;
    display: block;
    margin-top: 5px;
    font-size: 0.8rem;
}

.confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.home-btn, .back-btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Mono', monospace;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 200px;
}

.back-btn {
    background-color: #222222;
    color: #00ccff;
    border: 1px solid #00ccff;
}

.back-btn:hover {
    background: #00ccff;
    color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 204, 255, 0.3);
}

.home-btn {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    color: #111111;
}

.home-btn:hover {
    background: linear-gradient(135deg, #00cc66, #00aa44);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.3);
}

.confirmation-note {
    background: rgba(0, 204, 255, 0.1);
    border: 1px solid rgba(0, 204, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
}

.confirmation-note p {
    color: #00ccff;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.confirmation-note strong {
    color: #00ff88;
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 768px) {
    .main-title {
        font-size: 1.4rem;
    }
    
    .announcement-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .announcement-icon {
        font-size: 1.8rem;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-link {
        width: 100%;
        justify-content: center;
        padding: 15px;
    }
    
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-toggle {
        width: 100%;
        justify-content: center;
        padding-right: 15px;
    }
    
    .dropdown-arrow {
        right: 20px;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        border-top: 1px solid #333333;
        box-shadow: none;
        display: none;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-link {
        padding: 12px 30px;
        background-color: #222222;
    }
    
    .nav-cart-item {
        margin-left: 0;
        width: 100%;
        order: 1;
    }
    
    .cart-link {
        justify-content: center;
        padding: 15px !important;
    }
    
    .cart-badge {
        top: 10px;
        right: 50%;
        margin-right: -40px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .product-card {
        padding: 20px;
    }
    
    .category-image {
        height: 180px;
        padding: 8px;
    }
    
    .category-card-title {
        font-size: 1.2rem;
    }
    
    .category-price-tag {
        font-size: 1rem;
        padding: 6px 14px;
    }
    
    .delivery-section {
        padding: 20px;
    }
    
    .delivery-title {
        font-size: 1.5rem;
    }
    
    .delivery-subtitle {
        font-size: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .back-btn, .submit-btn {
        width: 100%;
        text-align: center;
    }
    
    .pgp-body {
        padding: 20px 15px;
        font-size: 0.8rem;
    }
    
    .pgp-harbor {
        font-size: 1.5rem;
        margin: 20px 0 15px 0;
    }
    
    .crypto-options {
        grid-template-columns: 1fr;
    }
    
    .qr-code-image {
        width: 120px;
        height: 120px;
    }
    
    .order-summary-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-container {
        padding: 20px 15px 40px;
    }
    
    .about-title {
        font-size: 2.5rem;
        padding: 0 20px;
    }
    
    .about-title::before,
    .about-title::after {
        width: 40px;
    }
    
    .about-title::before {
        left: -50px;
    }
    
    .about-title::after {
        right: -50px;
    }
    
    .decoration-line {
        width: 60px;
    }
    
    .about-section {
        padding: 25px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-icon {
        font-size: 2rem;
        width: 60px;
        height: 60px;
    }
    
    .section-content {
        font-size: 1rem;
    }
    
    .mission-statement {
        padding: 30px 20px;
    }
    
    .mission-icon {
        font-size: 3rem;
    }
    
    .mission-title {
        font-size: 1.6rem;
    }
    
    .mission-text {
        font-size: 1.1rem;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Feedback page responsive */
    .feedback-container {
        padding: 20px 15px 40px;
    }
    
    .feedback-title {
        font-size: 2rem;
    }
    
    .product-info-feedback {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .product-image-feedback {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .rating-overview {
        justify-content: center;
        gap: 20px;
    }
    
    .rating-bars {
        min-width: 100%;
    }
    
    .review-form-section {
        padding: 20px;
    }
    
    .review-helpful {
        flex-direction: column;
        align-items: flex-start;
    }
    
    /* Product labels responsive */
    .product-name h4,
    .price-section,
    .description-section,
    .quantity-input-group small,
    .quantity-select-group small {
        font-size: 0.85rem;
    }
    
    .price-section .price {
        font-size: 1.2rem;
        padding: 5px 12px;
    }
    
    .product-description {
        font-size: 0.9rem;
        padding: 10px;
    }
    
    .product-tag {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    
    .quantity-input-group,
    .quantity-select-group {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    
    .quantity-input-group small,
    .quantity-select-group small {
        align-self: flex-start;
    }
    
    .quantity-input,
    .quantity-select {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.2rem;
    }
    
    .announcement p {
        font-size: 0.9rem;
    }
    
    .announcement-icon {
        font-size: 1.5rem;
    }
    
    .nav-link {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .main-content {
        padding: 20px 0;
    }
    
    .welcome-section h2 {
        font-size: 1.8rem;
    }
    
    .cart-label {
        font-size: 0.8rem;
    }
    
    .cart-icon {
        font-size: 1rem;
    }
    
    .cart-badge {
        font-size: 0.6rem;
        min-width: 18px;
        height: 18px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        padding: 15px;
    }
    
    .category-image {
        height: 160px;
        padding: 6px;
    }
    
    .category-card-title {
        font-size: 1.1rem;
    }
    
    .category-price-tag {
        font-size: 0.9rem;
        padding: 5px 12px;
    }
    
    .category-description {
        font-size: 0.9rem;
    }
    
    .product-detail-container {
        padding: 15px;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-image-section {
        min-height: 200px;
    }
    
    .product-main-image {
        max-height: 200px;
    }
    
    .product-name-large {
        font-size: 1.4rem;
    }
    
    .price-amount {
        font-size: 1.4rem;
    }
    
    .add-to-cart-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .quantity-input,
    .quantity-select {
        width: 90px;
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .cart-table {
        display: block;
        overflow-x: auto;
    }
    
    .update-form {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .update-quantity {
        width: 60px;
    }
    
    .empty-cart {
        padding: 40px 15px;
    }
    
    .empty-cart-icon {
        font-size: 2.5rem;
    }
    
    .empty-cart-title {
        font-size: 1.2rem;
    }
    
    .empty-cart-message {
        font-size: 1rem;
    }
    
    .browse-products-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .delivery-section {
        padding: 15px;
    }
    
    .delivery-title {
        font-size: 1.3rem;
    }
    
    .delivery-subtitle {
        font-size: 1rem;
    }
    
    .form-title {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .pgp-body {
        padding: 15px 10px;
        font-size: 0.75rem;
    }
    
    .pgp-harbor {
        font-size: 1.3rem;
    }
    
    .checkout-container {
        gap: 20px;
    }
    
    .checkout-section {
        padding: 20px;
    }
    
    .confirmation-title {
        font-size: 2rem;
    }
    
    .confirmation-details {
        grid-template-columns: 1fr;
    }
    
    .confirmation-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .home-btn, .back-btn {
        width: 100%;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .back-btn, .submit-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .checkout-section {
        padding: 15px;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .confirmation-title {
        font-size: 1.8rem;
    }
    
    .confirmation-subtitle {
        font-size: 1rem;
    }
    
    .crypto-option {
        padding: 15px;
    }
    
    .crypto-icon {
        font-size: 1.5rem;
    }
    
    .crypto-name {
        font-size: 1.1rem;
    }
    
    .amount-value {
        font-size: 1.1rem;
    }
    
    .address-display {
        flex-direction: column;
    }
    
    .qr-code-image {
        width: 100px;
        height: 100px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-section {
        padding: 20px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .section-icon {
        font-size: 1.8rem;
        width: 50px;
        height: 50px;
    }
    
    .mission-icon {
        font-size: 2.5rem;
    }
    
    .mission-title {
        font-size: 1.4rem;
    }
    
    .mission-text {
        font-size: 1rem;
    }
    
    .trust-item {
        padding: 20px 10px;
    }
    
    .badge-icon {
        font-size: 2rem;
        width: 60px;
        height: 60px;
    }
    
    .badge-text {
        font-size: 0.9rem;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
    
    /* Feedback page small screens */
    .feedback-title {
        font-size: 1.5rem;
    }
    
    .feedback-subtitle {
        font-size: 1rem;
    }
    
    .product-image-feedback {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
    
    .product-details-feedback h2 {
        font-size: 1.5rem;
    }
    
    .rating-number {
        font-size: 2.5rem;
    }
    
    .rating-bar span:first-child {
        width: 60px;
        font-size: 0.8rem;
    }
    
    .rating-bar span:last-child {
        width: 30px;
        font-size: 0.8rem;
    }
    
    .bar-container {
        margin: 0 10px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .reviewer-details h4 {
        font-size: 1rem;
    }
    
    .review-title {
        font-size: 1.1rem;
    }
    
    /* Product labels small screens */
    .product-name h4 {
        font-size: 0.9rem;
    }
    
    .price-section .price {
        font-size: 1.1rem;
        padding: 4px 10px;
    }
    
    .product-tag {
        font-size: 0.65rem;
        padding: 3px 8px;
    }
    
    .add-to-cart-button {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
}

/* ==================== SUPPORT PAGE STYLES ==================== */

.support-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.support-header {
    text-align: center;
    margin-bottom: 50px;
}

.support-title {
    font-size: 2.5rem;
    color: #00ff88;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.support-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
    border-radius: 2px;
}

.support-subtitle {
    color: #cccccc;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.support-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.support-section {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #333333;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.support-section:hover {
    border-color: #00ff88;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 255, 136, 0.15);
}

.support-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 204, 255, 0.1));
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 136, 0.3);
    flex-shrink: 0;
    color: #00ff88;
}

.support-details {
    flex: 1;
}

.support-method-title {
    font-size: 1.5rem;
    color: #00ccff;
    margin-bottom: 15px;
    font-weight: 600;
}

.support-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(26, 26, 26, 0.8);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #333333;
}

.contact-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-label {
    color: #00ccff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    min-width: 120px;
}

.contact-value {
    color: #00ff88;
    font-weight: 500;
    font-family: 'IBM Plex Mono', monospace;
    text-decoration: none;
    transition: all 0.3s ease;
    word-break: break-all;
}

.contact-value:hover {
    color: #33ffaa;
    text-decoration: underline;
}

.support-notes {
    background: rgba(255, 85, 85, 0.05);
    border: 1px solid rgba(255, 85, 85, 0.2);
    border-radius: 12px;
    padding: 30px;
    margin-top: 20px;
}

.notes-title {
    color: #ff5555;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.notes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notes-list li {
    color: #ff9999;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.notes-list li:before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: #ff5555;
    font-weight: bold;
}

/* ==================== TELEGRAM LINK STYLES ==================== */

.tele {
    text-decoration: none;
    color: whitesmoke;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background-color: #333333;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #444444;
}

/* Selection color */
::selection {
    background-color: rgba(0, 255, 136, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background-color: rgba(0, 255, 136, 0.3);
    color: #ffffff;
}