/* Basic Reset and Matrix Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', monospace;
}

body, html {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #000000;
    color: #00FF41;
    overflow-x: hidden;
    position: relative;
}

/* Payment page should have white background */
body.payment-page,
body.payment-page html {
    background: #ffffff !important;
    color: #2c3e50 !important;
}

body.payment-page .main-content {
    background: #ffffff !important;
    color: #2c3e50 !important;
}

body.payment-page .navbar {
    background: #ffffff !important;
    border-bottom: 1px solid #e0e0e0;
}

body.payment-page .store-name {
    color: #2c3e50 !important;
    text-shadow: none !important;
    animation: none !important;
    font-weight: 600 !important;
}

body.payment-page .menu-icon {
    color: #2c3e50 !important;
}

/* Payment page should have white background */
body.payment-page,
body.payment-page html {
    background: #ffffff !important;
    color: #2c3e50 !important;
}

body.payment-page .main-content {
    background: #ffffff !important;
}

/* Enhanced Matrix Rain Animation */
.matrix-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    background: #000000;
    margin: 0;
    padding: 0;
}

canvas {
    display: block;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
}

/* Main Content Layout */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Age Verification */
.age-verification {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.age-question {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #00FF41;
    text-shadow: 0 0 20px #00FF41;
    animation: glowPulse 2s infinite;
    margin-bottom: 1rem;
}

.age-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.matrix-button-yes {
    /* Uses default matrix-button styles */
}

.matrix-button-no {
    background: rgba(0, 0, 0, 0.7);
    color: #FF0040;
    border: 2px solid #FF0040;
    padding: 2rem 4rem;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: glowPulseRed 2s infinite;
    font-family: 'Courier New', monospace;
}

.matrix-button-no::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 64, 0.1);
    animation: scanline 2s linear infinite;
}

.matrix-button-no:hover {
    background: rgba(255, 0, 64, 0.2);
    box-shadow: 
        0 0 20px rgba(255, 0, 64, 0.3),
        0 0 40px rgba(255, 0, 64, 0.2),
        0 0 60px rgba(255, 0, 64, 0.1);
    transform: translateY(-2px) scale(1.05);
    letter-spacing: 6px;
}

.matrix-button-no:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 0, 64, 0.2),
        transparent
    );
    animation: shine 1s linear;
}

@keyframes glowPulseRed {
    0%, 100% { 
        text-shadow: 0 0 10px #FF0040;
        box-shadow: 0 0 10px rgba(255, 0, 64, 0.3);
    }
    50% { 
        text-shadow: 
            0 0 20px #FF0040,
            0 0 30px #FF0040;
        box-shadow: 
            0 0 20px rgba(255, 0, 64, 0.5),
            0 0 40px rgba(255, 0, 64, 0.3);
    }
}

.age-message {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #FF0040;
    text-shadow: 0 0 10px #FF0040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    min-height: 2rem;
}

.age-message.show {
    opacity: 1;
    visibility: visible;
}

/* Terms modal (landing page — Yes button) */
.terms-modal[hidden] {
    display: none !important;
}

.terms-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    box-sizing: border-box;
}

.terms-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(4px);
}

.terms-modal-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 36rem;
    max-height: min(92vh, 46rem);
    display: flex;
    flex-direction: column;
    background: rgba(0, 12, 4, 0.95);
    border: 2px solid #00FF41;
    border-radius: 6px;
    box-shadow:
        0 0 24px rgba(0, 255, 65, 0.25),
        0 0 60px rgba(0, 255, 65, 0.12),
        inset 0 0 40px rgba(0, 255, 65, 0.04);
    overflow: hidden;
    animation: termsModalIn 0.35s ease-out;
}

@keyframes termsModalIn {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(8px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.terms-modal-title {
    flex-shrink: 0;
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    padding: 1.25rem 1.5rem 1rem;
    margin: 0;
    color: #00FF41;
    text-shadow: 0 0 16px rgba(0, 255, 65, 0.6);
    border-bottom: 1px solid rgba(0, 255, 65, 0.25);
    font-family: 'Courier New', monospace;
}

.terms-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(200, 255, 210, 0.92);
    text-align: left;
    font-family: 'Courier New', monospace;
}

.terms-modal-body p {
    margin: 0 0 1rem;
}

.terms-modal-body p:last-child {
    margin-bottom: 0;
}

.terms-modal-body strong {
    color: #00FF41;
    font-weight: 700;
}

.terms-tos-doc-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #00FF41;
    margin: 0 0 0.75rem;
    text-shadow: 0 0 12px rgba(0, 255, 65, 0.45);
}

.terms-tos-meta {
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0 0 1.25rem !important;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 255, 65, 0.15);
    opacity: 0.95;
}

.terms-tos-rule {
    border: none;
    border-top: 1px solid rgba(0, 255, 65, 0.18);
    margin: 1.15rem 0;
}

.terms-modal-lead {
    font-size: 0.88rem;
    line-height: 1.55;
    opacity: 0.95;
    margin-bottom: 1rem !important;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 255, 65, 0.15);
}

.terms-tos-heading {
    font-size: 0.82rem;
    margin: 1.35rem 0 0.45rem;
    color: #00FF41;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

.terms-tos-heading:first-of-type {
    margin-top: 0;
}

.terms-tos-list {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
    color: rgba(200, 255, 210, 0.92);
}

.terms-tos-list li {
    margin-bottom: 0.45rem;
}

.terms-tos-link {
    color: #7dff9a;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.terms-tos-link:hover {
    color: #b8ffcc;
}

.terms-modal-note {
    font-size: 0.88rem;
    opacity: 0.9;
}

.terms-modal-actions {
    flex-shrink: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    padding: 1rem 1.25rem 1.35rem;
    border-top: 1px solid rgba(0, 255, 65, 0.2);
    background: rgba(0, 0, 0, 0.35);
}

.terms-modal-actions .matrix-button,
.terms-modal-actions .matrix-button-no {
    padding: 1rem 1.75rem;
    font-size: 1rem;
    letter-spacing: 0.2em;
    min-width: 8rem;
}

.terms-modal-accept {
    animation: glowPulse 2s infinite;
}

/* Matrix Button Style */
.matrix-button {
    background: rgba(0, 0, 0, 0.7);
    color: #00FF41;
    border: 2px solid #00FF41;
    padding: 2rem 4rem;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: glowPulse 2s infinite;
}

.matrix-button::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 255, 65, 0.1);
    animation: scanline 2s linear infinite;
}

.matrix-button:hover {
    background: rgba(0, 255, 65, 0.2);
    box-shadow: 
        0 0 20px rgba(0, 255, 65, 0.3),
        0 0 40px rgba(0, 255, 65, 0.2),
        0 0 60px rgba(0, 255, 65, 0.1);
    transform: translateY(-2px) scale(1.05);
    letter-spacing: 6px;
}

.matrix-button:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 255, 65, 0.2),
        transparent
    );
    animation: shine 1s linear;
}

/* Animations */
@keyframes glowPulse {
    0%, 100% { 
        text-shadow: 0 0 10px #00FF41;
        box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
    }
    50% { 
        text-shadow: 
            0 0 20px #00FF41,
            0 0 30px #00FF41;
        box-shadow: 
            0 0 20px rgba(0, 255, 65, 0.5),
            0 0 40px rgba(0, 255, 65, 0.3);
    }
}

@keyframes scanline {
    0% { top: -100%; }
    100% { top: 100%; }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Digital Glitch Effect */
.glitch {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    color: #00FF41;
    text-transform: uppercase;
    letter-spacing: 2px;
    pointer-events: none;
    opacity: 0;
    animation: glitchText 3s infinite;
}

@keyframes glitchText {
    0%, 100% { opacity: 0; }
    10%, 90% { opacity: 0; }
    11%, 89% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    12%, 88% { opacity: 0; transform: translate(-49%, -50%) scale(1.1); }
    13%, 87% { opacity: 0.3; transform: translate(-51%, -50%) scale(0.9); }
}

/* Transition Effects */
.transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    background: black;
    transition: opacity 0.5s ease;
}

.transition-overlay.active {
    opacity: 1;
    visibility: visible;
}

.transition-overlay canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Main Content Layout for Store */
.main-content {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.75);
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    backdrop-filter: blur(3px);
}

/* Clean Professional Store Page Styles */
.store-page {
    background: #f8f9fa;
    color: #333;
}

.store-page .navbar {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    grid-template-columns: 1fr auto 1fr;
}

.store-page .nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: flex-end;
}

.store-top-banner {
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    z-index: 999;
    min-height: 38px;
    padding: 0.55rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(90deg, #0e1f14 0%, #1b5e20 55%, #2e7d32 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.store-top-banner-message {
    position: absolute;
    max-width: 1200px;
    width: calc(100% - 2rem);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.store-top-banner-message.is-active {
    opacity: 1;
    transform: translateY(0);
}

/* Cart Icon */
.cart-icon {
    position: relative;
    color: #2c3e50;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    color: #3498db;
}

.support-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    font-size: 1.5rem;
    text-decoration: none;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}
.support-icon:hover {
    color: #3498db;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: #ffffff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    border: 2px solid #ffffff;
}

.cart-plus-notification {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #27ae60;
    color: #ffffff;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(-10px) scale(0.8);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 20;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.4);
    border: 2px solid #ffffff;
}

.cart-plus-notification.show {
    opacity: 1;
    transform: translateY(-20px) scale(1);
}

.cart-plus-notification.fade-out {
    opacity: 0;
    transform: translateY(-30px) scale(0.6);
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 80px;
    right: 20px;
    background: #27ae60;
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.cart-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.store-page .store-name {
    color: #2c3e50;
    text-shadow: none;
    animation: none;
    font-weight: 600;
}

.store-page .menu-icon {
    color: #2c3e50;
}

.store-page .menu-icon:hover {
    color: #3498db;
    text-shadow: none;
}

.store-page .dropdown-menu {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10001;
    pointer-events: none;
}

.store-page .dropdown-menu.active {
    pointer-events: auto;
}

.store-page .dropdown-menu a {
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index: 10002;
}

.store-page .dropdown-menu a {
    color: #2c3e50;
}

.store-page .dropdown-menu a:hover {
    background: #f0f0f0;
    color: #3498db;
    text-shadow: none;
}

.store-page .hero {
    background: #000000;
    color: #ffffff;
    padding: 10.5rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.store-page .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(135, 206, 250, 0.3) 0%,
        rgba(255, 20, 147, 0.4) 25%,
        rgba(138, 43, 226, 0.5) 50%,
        rgba(0, 0, 0, 0.8) 75%,
        rgba(0, 0, 0, 0.9) 100%
    );
    background-size: 200% 100%;
    animation: gradientShift 8s ease infinite;
    z-index: 1;
}

.store-page .hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(135, 206, 250, 0.4) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 1;
}

/* Second rotating gradient layer */
.store-page .hero-bg-layer {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.4) 0%, transparent 70%);
    animation: rotate 15s linear infinite reverse;
    z-index: 1;
    pointer-events: none;
}

.store-page .hero > * {
    position: relative;
    z-index: 2;
}

.store-page .hero-title {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    margin-bottom: 3rem;
}

/* Delivery Banner */
.delivery-banner {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 2rem auto 3rem;
    padding: 2rem 2.5rem;
    overflow: hidden;
    border-radius: 12px;
}

.delivery-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

/* Delivery banner now inherits hero background, so no need for its own background */

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.delivery-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.delivery-text-left,
.delivery-text-right {
    font-size: 1.1rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 1px;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.delivery-badge {
    background: #FFD700;
    color: #000000;
    font-weight: 700;
    font-size: 1.4rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    transform: rotate(-2deg);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    z-index: 3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.delivery-badge:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.5);
}

.delivery-badge .asterisk {
    font-size: 1.2rem;
    vertical-align: super;
    margin-left: 2px;
}

/* Responsive Delivery Banner */
@media screen and (max-width: 968px) {
    .store-top-banner {
        top: 64px;
        min-height: 42px;
    }

    .store-top-banner-message {
        font-size: 0.76rem;
        width: calc(100% - 1.4rem);
        letter-spacing: 0.03em;
    }

    .store-page .hero {
        padding-top: 11.2rem;
    }

    .delivery-banner {
        padding: 1.5rem 2rem;
        margin: 1.5rem auto 2rem;
    }
    
    .delivery-banner-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .delivery-text-left,
    .delivery-text-right {
        font-size: 1rem;
    }
    
    .delivery-badge {
        font-size: 1.2rem;
        padding: 0.875rem 1.5rem;
        transform: rotate(0deg);
    }
}

@media screen and (max-width: 640px) {
    .store-top-banner {
        top: 62px;
        min-height: 46px;
        padding: 0.45rem 0.65rem;
    }

    .store-top-banner-message {
        font-size: 0.69rem;
        width: calc(100% - 0.8rem);
    }

    .store-page .hero {
        padding-top: 11.9rem;
    }

    .delivery-banner {
        padding: 1.25rem 1.5rem;
        margin: 1rem auto 1.5rem;
    }
    
    .delivery-text-left,
    .delivery-text-right {
        font-size: 0.9rem;
    }
    
    .delivery-badge {
        font-size: 1rem;
        padding: 0.75rem 1.25rem;
        letter-spacing: 1px;
    }
}

.store-page .social-link {
    color: #ffffff;
}

.store-page .social-link:hover {
    color: #f0f0f0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.store-page .about-text {
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
}

.store-page .scroll-indicator {
    color: #ffffff;
}

/* Shop Now Button */
.shop-now-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.9);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: visible;
}

.shop-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(135, 206, 250, 0.4) 0%,
        rgba(255, 20, 147, 0.4) 50%,
        rgba(138, 43, 226, 0.4) 100%
    );
    z-index: -1;
    border-radius: 50px;
    animation: gradientShift 8s ease infinite;
    background-size: 200% 100%;
}

.shop-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 1);
}

.store-page .products-section {
    background: #ffffff;
    padding: 4rem 2rem;
}

.store-page .section-title {
    color: #000000;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.store-page .category-btn {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    color: #2c3e50;
    font-weight: 500;
}

.store-page .category-btn:hover {
    background: #f8f9fa;
    border-color: #3498db;
    color: #3498db;
}

.store-page .category-btn.active {
    background: #3498db;
    border-color: #3498db;
    color: #ffffff;
}

.store-page .search-bar {
    background: #ffffff !important;
    border: 2px solid #e0e0e0;
    color: #2c3e50;
}

.store-page .search-bar:focus {
    background: #ffffff !important;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    outline: none;
    color: #2c3e50;
}

.store-page .search-bar::placeholder {
    color: #95a5a6;
}

.store-page .search-icon {
    color: #7f8c8d;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(0, 255, 65, 0.3);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
}

.breadcrumb-item a {
    color: #00FF41;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #00cc33;
    text-decoration: underline;
}

.breadcrumb-item.active span {
    color: #ffffff;
    font-weight: 600;
}

.breadcrumb-separator {
    color: #00FF41;
    margin: 0 0.5rem;
}

/* Category Navigation Links (Hidden but accessible to search engines) */
.category-nav-links {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

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

.category-links-list li {
    display: inline;
    margin-right: 1rem;
}

.category-links-list a {
    color: #00FF41;
    text-decoration: none;
}

.store-page .product-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.store-page .product-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-color: #3498db;
}

.store-page .product-image {
    border: 1px solid #e0e0e0;
}

.store-page .product-title {
    color: #2c3e50;
    text-shadow: none;
    font-weight: 600;
}

.store-page .product-details {
    color: #ffffff;
    text-align: center;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    position: relative;
    z-index: 11;
}

.store-page .buy-now-btn {
    background: #27ae60;
    border: none;
    color: #ffffff;
    font-weight: 600;
}

.store-page .buy-now-btn:hover {
    background: #229954;
    box-shadow: 0 4px 8px rgba(39, 174, 96, 0.3);
}

.store-page .buy-now-btn.disabled {
    background: #95a5a6;
    color: #ffffff;
}

/* Product Card Links */
.store-page .product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    z-index: 1;
}

.store-page .product-card-image-wrap {
    position: relative;
    display: block;
}

.product-badge-new {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 4;
    padding: 0.35rem 0.55rem;
    background: #e74c3c;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 4px;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.product-badge-new--detail {
    z-index: 25;
    top: 12px;
    left: 12px;
    font-size: 0.72rem;
    padding: 0.4rem 0.6rem;
}

/* Store page Add to Cart button in product overlay */
.store-page .product-overlay .store-add-to-cart {
    display: inline-block;
    background: #27ae60;
    color: #ffffff;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    border: none;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 11;
    margin: 0 1rem;
}

.store-page .product-overlay .store-add-to-cart:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(39, 174, 96, 0.3);
}

.store-page .product-overlay .store-add-to-cart i {
    margin-right: 0.5rem;
}

/* Product category line under title (store + catalog) */
.store-page .product-category-label {
    margin: 0.25rem 0 0;
    padding: 0 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #7f8c8d;
    text-align: center;
    line-height: 1.3;
}

/* Store — product rows + carousel */
.store-product-rows {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0.75rem;
}

.store-product-row {
    margin-bottom: 2.25rem;
}

.store-product-row__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.5rem, 3.5vw, 2.35rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: left;
    color: #0a0a0a;
    line-height: 1.2;
}

.store-product-row__carousel {
    display: flex;
    align-items: stretch;
    gap: 0.35rem;
}

.store-product-row__nav {
    flex: 0 0 42px;
    width: 42px;
    min-width: 42px;
    height: 42px;
    align-self: center;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #f5f5f5;
    color: #90a4ae;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    z-index: 2;
}

.store-product-row__nav:hover {
    background: #ffffff;
    color: #212121;
    border-color: #bdbdbd;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.store-product-row__track {
    flex: 1;
    min-width: 0;
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 0.15rem 0 0.35rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.store-product-row__track::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.store-product-row .product-card {
    flex: 0 0 auto;
    width: min(200px, 42vw);
    max-width: 220px;
    scroll-snap-align: start;
    margin: 0;
    padding-bottom: 0.35rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
}

.store-product-row .product-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.store-product-row .product-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.store-product-row .product-card-image-wrap {
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.store-product-row .product-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
}

/* Store: unified black NEW!!! badge (rows + default grid) */
.store-page .product-badge-new {
    background: #111111;
    color: #ffffff;
    font-style: italic;
    letter-spacing: 0.05em;
    font-size: 0.62rem;
    font-weight: 800;
    padding: 0.3rem 0.45rem;
    border-radius: 3px;
    text-transform: none;
}

.product-card-footer--row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.45rem;
    margin-top: 0.4rem;
    padding: 0 0.15rem 0.1rem;
}

.store-product-row .product-card-footer--row .product-title {
    display: block;
    margin: 0;
    font-size: clamp(0.78rem, 1.9vw, 0.9rem);
    font-weight: 600;
    color: #0a0a0a;
    text-align: left;
    line-height: 1.3;
    flex: 1;
    min-width: 0;
}

/* Store carousel: price stays right; strong blue + clear sans for contrast with title */
.store-product-row .product-card-footer--row .product-price {
    display: block;
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(0.9rem, 2.15vw, 1.05rem);
    font-weight: 800;
    color: #27ae60;
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.02em;
    font-variant-numeric: tabular-nums;
    -webkit-font-smoothing: antialiased;
}

.store-product-row__empty {
    flex: 1;
    margin: 0;
    padding: 1.25rem 0.5rem;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.store-product-rows-global-empty {
    text-align: center;
    margin: 1rem auto 2rem;
    max-width: 36rem;
}

.store-spotlight-see-all {
    max-width: 1200px;
    margin: 0 auto 1.75rem;
    padding: 0 1rem 1.25rem;
    border-bottom: 1px solid #cfd8dc;
    text-align: center;
}

.store-spotlight-see-all-text {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c3e50;
}

.store-see-all-btn {
    position: relative;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 10rem;
    padding: 0.75rem 1.75rem;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: #0d2818;
    background: linear-gradient(135deg, #69f0ae 0%, #00e676 55%, #00c853 100%);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 200, 83, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-see-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.35);
    color: #000;
}

.store-name-link {
    text-decoration: none;
    color: inherit;
}

.store-name-link:hover {
    color: #00c853;
}

/* All products catalog page — offset for fixed navbar so title isn’t clipped */
.store-all-products {
    scroll-padding-top: 6.5rem;
}

/* All products catalog page */
.store-all-products-hero {
    background: #ffffff;
    padding: calc(5.85rem + 0.75rem) 1.5rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid #e8f5e9;
}

.store-all-products-title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.85rem, 4.2vw, 2.5rem);
    font-weight: 800;
    color: #0a0a0a;
    text-shadow: none;
    line-height: 1.15;
}

.store-all-products-intro {
    margin: 0 auto;
    max-width: 36rem;
    color: #546e7a;
    font-size: 1rem;
    line-height: 1.5;
}

.store-all-products-layout {
    display: grid;
    grid-template-columns: minmax(200px, 260px) 1fr;
    gap: 2rem;
    max-width: 1320px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
    align-items: start;
}

.store-all-products-sidebar {
    position: sticky;
    top: 6rem;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.25rem 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.store-all-products-sidebar-heading {
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #263238;
}

.store-all-products-cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.store-all-products-cat-list li {
    margin: 0;
    padding: 0;
}

.store-all-products-cat {
    display: block;
    width: 100%;
    text-align: left;
    font-family: inherit;
    font-size: 0.95rem;
    padding: 0.55rem 0.65rem;
    margin-bottom: 0.35rem;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #37474f;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.store-all-products-cat:hover {
    background: rgba(0, 200, 83, 0.1);
    color: #1b5e20;
}

.store-all-products-cat.is-active {
    background: rgba(0, 200, 83, 0.18);
    color: #0d2818;
    font-weight: 700;
}

.store-all-products-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eceff1;
}

.store-all-products-count {
    margin: 0;
    font-size: 0.95rem;
    color: #546e7a;
}

.store-all-products-sort {
    font-family: inherit;
    font-size: 0.9rem;
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #ffffff;
    color: #263238;
    cursor: pointer;
}

.store-all-products-sort:focus {
    outline: none;
    border-color: #00c853;
    box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.15);
}

.store-all-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.1rem 1.25rem;
}

/* Catalog cards: wider image area, shorter card, larger titles; price pinned bottom-left */
.store-all-products-grid .product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.store-all-products-grid .product-card-link {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 100%;
    padding: 0 0.65rem 0.65rem;
    box-sizing: border-box;
}

.store-all-products-grid .product-card-image-wrap {
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
}

.store-all-products-grid .product-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    max-height: 190px;
    object-fit: cover;
}

.store-all-products-grid .product-title {
    font-size: clamp(1.05rem, 2.4vw, 1.35rem);
    font-weight: 700;
    line-height: 1.25;
    color: #0a0a0a;
    margin: 0.5rem 0 0.25rem;
    flex-shrink: 0;
}

.store-all-products-grid .product-category-label {
    font-size: 0.82rem;
    flex-shrink: 0;
}

.store-all-products-grid .product-price,
.store-page.store-all-products .store-all-products-grid .product-card-link .product-price {
    margin-top: auto;
    padding-top: 0.45rem;
    text-align: left;
    align-self: flex-start;
    width: 100%;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.38rem);
    font-weight: 800;
    /* Same bright green as product page / store carousel (override link inherit) */
    color: #27ae60 !important;
    letter-spacing: 0.02em;
    font-variant-numeric: tabular-nums;
    -webkit-font-smoothing: antialiased;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 900px) {
    .store-all-products-layout {
        grid-template-columns: 1fr;
    }

    .store-all-products-sidebar {
        position: static;
    }

    .store-product-row__nav {
        flex-basis: 36px;
        width: 36px;
        min-width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
}

/* Product Page Styles */
.product-page-section {
    padding: 6rem 2rem 4rem;
    background: #ffffff;
    min-height: 100vh;
}

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

.product-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.product-page-image {
    position: sticky;
    top: 6rem;
    height: fit-content;
}

.product-main-image {
    width: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Product Image Gallery */
.product-page-image.has-gallery {
    position: relative;
}

.product-image-gallery {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
}

.gallery-images-container {
    position: relative;
    width: 100%;
    min-height: 500px;
    padding-bottom: 100%; /* Maintain square aspect ratio */
    overflow: hidden;
    pointer-events: none; /* Allow clicks to pass through to buttons */
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    cursor: pointer;
    pointer-events: auto; /* Images are clickable */
}

.gallery-image.active {
    opacity: 1;
    z-index: 1;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    color: #2c3e50;
    font-size: 1.2rem;
    pointer-events: auto;
}

.gallery-nav-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.gallery-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

.gallery-indicator {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.gallery-current {
    color: #3498db;
}

.product-page-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-page-title {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 700;
    margin: 0;
}

.product-page-price-section {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.product-page-price {
    font-size: 2rem;
    color: #27ae60;
    font-weight: 700;
}

.product-page-price-label {
    color: #7f8c8d;
    font-size: 1rem;
}

/* Amount Selector */
.product-amount-selector {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.amount-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.amount-select {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background: #ffffff;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Quantity Selector */
.product-quantity-selector {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quantity-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e0e0e0;
    background: #ffffff;
    border-radius: 8px;
    font-size: 1.2rem;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    border-color: #3498db;
    background: #f0f0f0;
    color: #3498db;
}

.quantity-input {
    width: 80px;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1.1rem;
    text-align: center;
    font-weight: 600;
    color: #2c3e50;
}

.quantity-input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Product Info */
.product-page-info {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    font-size: 0.85rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
}

/* Estimated Delivery */
.estimated-delivery {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.estimated-delivery i {
    font-size: 1.5rem;
    color: #2c3e50;
    width: 28px;
    flex-shrink: 0;
}

.delivery-text {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.delivery-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2c3e50;
    text-transform: none;
    letter-spacing: 0;
}

.delivery-date {
    font-size: 0.95rem;
    font-weight: 400;
    color: #7f8c8d;
}

/* Product Actions */
.product-page-actions {
    margin-top: 1rem;
}

.product-page-actions .buy-now-btn {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
    text-align: center;
}

/* Product Description */
.product-page-description {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.product-page-description h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.product-page-description-content {
    color: #5d6570;
    line-height: 1.75;
    font-size: 1rem;
    font-family: inherit;
}

.product-page-description-content p {
    margin: 0 0 1rem 0;
    color: inherit;
    line-height: inherit;
}

.product-page-description-content p:last-child {
    margin-bottom: 0;
}

.product-page-description-content ul,
.product-page-description-content ol {
    margin: 0 0 1rem 0;
    padding-left: 1.35rem;
    color: inherit;
}

.product-page-description-content li {
    margin-bottom: 0.4rem;
}

.product-page-description-content li:last-child {
    margin-bottom: 0;
}

.product-page-description-content strong,
.product-page-description-content b {
    color: #2c3e50;
    font-weight: 700;
}

.product-page-description-content h3,
.product-page-description-content h4 {
    margin: 1.35rem 0 0.5rem;
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.35;
}

.product-page-description-content > h3:first-child,
.product-page-description-content > h4:first-child,
.product-page-description-content > *:first-child {
    margin-top: 0;
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.detail-item h4 {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-item p {
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

/* Back to Store Button */
.product-page-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.back-to-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-to-store-btn:hover {
    color: #2980b9;
    gap: 0.75rem;
}

/* Add to Cart Button */
.add-to-cart-btn {
    width: 100%;
    padding: 1.25rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.add-to-cart-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

/* Cart Page Styles */
.cart-page-section {
    padding: 6rem 2rem 4rem;
    background: #ffffff;
    min-height: 100vh;
}

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

.cart-page-title {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 2rem;
}

.cart-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: #7f8c8d;
}

.cart-empty i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #bdc3c7;
}

.cart-empty p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.continue-shopping-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.continue-shopping-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

/* Cart Items */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto auto auto;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    align-items: center;
    border: 1px solid #e0e0e0;
    position: relative;
}

@media screen and (max-width: 768px) {
    .cart-item {
        display: flex;
        grid-template-columns: none;
    }
}

.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    background: #e0e0e0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bdc3c7;
    font-size: 2rem;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-title {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
}

.cart-item-amount {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
}

.cart-item-price {
    color: #27ae60;
    font-weight: 600;
    margin: 0;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-quantity .quantity-btn {
    width: 35px;
    height: 35px;
    border: 2px solid #e0e0e0;
    background: #ffffff;
    border-radius: 6px;
    font-size: 1rem;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-item-quantity .quantity-btn:hover {
    border-color: #3498db;
    background: #f0f0f0;
    color: #3498db;
}

.cart-item-quantity .quantity-input {
    width: 60px;
    padding: 0.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
}

.cart-item-total {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 700;
    min-width: 80px;
    text-align: right;
}

.remove-item-btn {
    background: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-item-btn:hover {
    background: #c0392b;
    transform: scale(1.1);
}

/* Cart Summary */
.cart-summary {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

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

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.total-label {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
}

.total-value {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
}

.total-amount {
    font-size: 1.5rem;
    color: #27ae60;
    font-weight: 700;
}

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

.continue-shopping-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 1rem 1.5rem;
    border: 2px solid #3498db;
    border-radius: 8px;
}

.continue-shopping-link:hover {
    background: #3498db;
    color: #ffffff;
}

.checkout-btn {
    flex: 1;
    padding: 1rem 2rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.checkout-btn:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(39, 174, 96, 0.3);
}

/* ============================================
   CHECKOUT PAGE STYLES
   ============================================ */

.checkout-page-section {
    padding: 2rem 1rem;
    min-height: calc(100vh - 200px);
}

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

.checkout-page-title {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

/* Bank transfer order success screen */
.bank-transfer-success-screen {
    max-width: 520px;
    margin: 2rem auto;
}

.bank-transfer-success-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.bank-transfer-success-icon {
    color: #27ae60;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bank-transfer-success-title {
    font-size: 1.75rem;
    color: #2c3e50;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
}

.bank-transfer-success-intro {
    color: #7f8c8d;
    font-size: 1rem;
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
}

.bank-transfer-screenshot-box {
    background: #2c3e50;
    color: #fff;
    border: 3px solid #e74c3c;
    border-radius: 10px;
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
}

.bank-transfer-screenshot-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #f1c40f;
    margin: 0 0 1rem 0;
}

.bank-transfer-order-number {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.02em;
}

.bank-transfer-total {
    font-size: 1.25rem;
    margin: 0;
    opacity: 0.95;
}

.bank-transfer-success-note {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin: 1rem 0 1.5rem 0;
}

.bank-transfer-success-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #27ae60;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.bank-transfer-success-btn:hover {
    background: #229954;
    color: #fff;
}

.checkout-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    margin-top: 2rem;
}

.checkout-main {
    display: contents;
}

/* Left Column: Forms */
.checkout-forms {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.checkout-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.checkout-section:last-of-type {
    border-bottom: none;
}

.checkout-section-title {
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.checkout-section-description {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.checkout-guest-notice {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0.75rem 0;
    font-style: italic;
}

.checkout-form .form-group {
    margin-bottom: 1.5rem;
}

.checkout-form .form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form input[type="tel"],
.checkout-form select,
.checkout-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    color: #2c3e50;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #ffffff;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.checkout-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkout-form .form-row.three-columns {
    grid-template-columns: 2fr 1fr 1fr;
}

.add-apartment-link {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.add-apartment-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

.apartment-field {
    margin-top: 1rem;
}

.checkbox-group {
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: #2c3e50;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #3498db;
}

/* Shipping Options */
.shipping-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.shipping-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
}

.shipping-option:hover {
    border-color: #3498db;
    background: #f8f9fa;
}

.shipping-option input[type="radio"] {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #3498db;
}

.shipping-option-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.shipping-name {
    font-weight: 600;
    color: #2c3e50;
}

.shipping-price {
    font-weight: 600;
    color: #27ae60;
    font-size: 1.1rem;
}

/* Payment Options */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
}

.payment-option:hover {
    border-color: #3498db;
    background: #f8f9fa;
}

.payment-option input[type="radio"] {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #3498db;
}

.payment-option input[type="radio"]:checked + .payment-option-label {
    font-weight: 600;
}

.payment-option-label {
    display: flex;
    align-items: center;
    width: 100%;
}

.payment-name {
    font-weight: 500;
    color: #2c3e50;
}

.crypto-payment-details {
    margin-top: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.crypto-logos {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.crypto-logos i {
    font-size: 2rem;
    color: #7f8c8d;
    transition: color 0.3s ease;
}

.crypto-logos i:hover {
    color: #3498db;
}

.crypto-select-text {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.bank-transfer-details {
    margin-top: 1rem;
    padding: 1.5rem;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
}

.bank-transfer-info {
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.6;
}

.bank-transfer-info strong {
    color: #856404;
    font-weight: 700;
}

.order-note-field {
    margin-top: 1rem;
}

.order-note-field textarea {
    width: 100%;
    min-height: 100px;
    resize: vertical;
}

.terms-notice {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.terms-notice a {
    color: #3498db;
    text-decoration: none;
}

.terms-notice a:hover {
    text-decoration: underline;
}

.checkout-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.return-to-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #ecf0f1;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.return-to-cart-btn:hover {
    background: #bdc3c7;
    color: #ffffff;
}

.place-order-btn {
    flex: 1;
    padding: 1rem 2rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.place-order-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

.place-order-btn:active {
    transform: translateY(0);
}

/* Right Column: Order Summary */
.checkout-summary {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.checkout-summary-title {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
}

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

.order-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.order-item-image {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bdc3c7;
    font-size: 2rem;
}

.order-item-quantity {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #27ae60;
    color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid #ffffff;
}

.order-item-details {
    flex: 1;
    min-width: 0;
}

.order-item-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.order-item-amount {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-bottom: 0.25rem;
}

.order-item-price {
    font-size: 0.95rem;
    color: #2c3e50;
    font-weight: 600;
}

.order-totals {
    padding-top: 1.5rem;
    border-top: 2px solid #e0e0e0;
}

.order-totals .total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.order-totals .total-row:last-child {
    margin-bottom: 0;
}

.order-totals .total-label {
    color: #2c3e50;
    font-weight: 500;
}

.order-totals .total-value {
    color: #2c3e50;
    font-weight: 600;
}

.discount-row .total-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.discount-tag {
    background: #e8f5e9;
    color: #27ae60;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.discount-value {
    color: #27ae60;
}

.shipping-note-row {
    margin-top: -0.35rem;
}

.shipping-note-row .total-label,
.shipping-note-row .total-value {
    color: #1f7a39;
    font-size: 0.88rem;
    font-weight: 600;
}

.total-final {
    padding-top: 1rem;
    border-top: 2px solid #e0e0e0;
    margin-top: 1rem;
}

.total-final .total-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
}

.total-final .total-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
}

.checkout-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.checkout-empty i {
    font-size: 4rem;
    color: #bdc3c7;
    margin-bottom: 1.5rem;
}

.checkout-empty p {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .checkout-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .checkout-summary {
        position: static;
        order: -1;
    }
    
    .checkout-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkout-actions {
        flex-direction: column;
    }
    
    .place-order-btn {
        width: 100%;
    }
}
/* Responsive Product Page */
@media screen and (max-width: 968px) {
    .product-page-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-page-image {
        position: static;
    }

    .gallery-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }

    .gallery-indicator {
        bottom: 10px;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .product-details-grid {
        grid-template-columns: 1fr;
    }

    .cart-item {
        grid-template-columns: 100px 1fr;
        gap: 1rem;
    }

    .cart-item-quantity,
    .cart-item-total,
    .remove-item-btn {
        grid-column: 2;
    }

    .cart-item-quantity {
        justify-self: start;
    }

    .cart-item-total {
        justify-self: end;
    }

    .remove-item-btn {
        justify-self: end;
        margin-top: 0.5rem;
    }
}

/* Mobile Optimizations - Product Page */
@media screen and (max-width: 768px) {
    .product-page-section {
        padding: 1rem;
    }

    .product-page-container {
        padding: 1rem;
    }

    .product-page-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .product-page-image {
        width: 100%;
        max-width: 100%;
        position: static;
        order: 1;
    }

    .product-page-details {
        order: 2;
    }

    .product-main-image {
        width: 100%;
        height: auto;
        min-height: 450px;
        max-width: 100%;
        display: block;
        object-fit: contain;
        background: #f8f9fa;
        padding: 1rem;
        box-sizing: border-box;
    }

    .gallery-images-container {
        width: 100%;
        min-height: 450px;
        padding-bottom: 0;
        background: #f8f9fa;
    }

    .gallery-image {
        width: 100%;
        height: 100%;
        min-height: 450px;
        object-fit: contain;
        padding: 1rem;
        box-sizing: border-box;
    }

    .gallery-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }

    .product-page-title {
        font-size: 1.8rem;
    }

    .product-page-price {
        font-size: 1.5rem;
    }

    .product-page-details {
        gap: 1.5rem;
    }

    .product-amount-selector,
    .product-quantity-selector {
        width: 100%;
    }

    .product-page-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .add-to-cart-btn,
    .buy-now-btn {
        width: 100%;
        padding: 1rem;
    }
}

/* Extra Small Mobile */
@media screen and (max-width: 480px) {
    .product-page-section {
        padding: 0.5rem;
    }

    .product-page-container {
        padding: 0.5rem;
    }

    .product-page-grid {
        gap: 1rem;
    }

    .product-main-image {
        min-height: 400px;
        padding: 0.5rem;
    }

    .gallery-images-container {
        min-height: 400px;
    }

    .gallery-image {
        min-height: 400px;
        padding: 0.5rem;
    }

    .product-page-title {
        font-size: 1.5rem;
    }

    .product-page-price {
        font-size: 1.3rem;
    }

    .gallery-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .cart-item-image {
        height: 200px;
    }

    .remove-item-btn {
        height: 45px;
        font-size: 0.95rem;
    }
}

/* Account Page Styles */
.account-page-section {
    padding: 6rem 2rem 4rem;
    background: #ffffff;
    min-height: 100vh;
}

.account-page-container {
    max-width: 800px;
    margin: 0 auto;
}

.account-page-title {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

/* Registration Form */
.registration-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group .required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    color: #2c3e50;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

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

.form-help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #7f8c8d;
}

.form-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
}

.form-actions {
    margin-top: 2rem;
    text-align: center;
}

.register-btn {
    width: 100%;
    padding: 1.25rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.register-btn:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(39, 174, 96, 0.3);
}

.register-btn:active {
    transform: translateY(0);
}

.form-footer {
    margin-top: 1.5rem;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.form-footer a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Registration Messages */
.registration-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.registration-success i {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.registration-success h2 {
    color: #27ae60;
    margin-bottom: 1rem;
}

.registration-success p {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.continue-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.continue-btn:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(39, 174, 96, 0.3);
}

.registration-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #721c24;
}

.registration-error i {
    font-size: 1.5rem;
    color: #e74c3c;
}

.support-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #155724;
}

.support-success i {
    font-size: 1.5rem;
    color: #27ae60;
}

.support-success.support-success-actions {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
}

.support-success-actions i {
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
}

.support-success-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    color: #155724;
}

.support-success-actions p {
    margin: 0 0 0.5rem 0;
}

.support-success-prompt {
    margin-top: 1rem !important;
    margin-bottom: 1.25rem !important;
    font-weight: 600;
    color: #155724;
}

.support-success-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.support-success-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.support-success-btn:first-child {
    background: #27ae60;
    color: #fff;
    border: 1px solid #219a52;
}

.support-success-btn:first-child:hover {
    background: #219a52;
    color: #fff;
}

.support-success-btn-secondary {
    background: #f8f9fa !important;
    color: #2c3e50 !important;
    border: 1px solid #dee2e6 !important;
}

.support-success-btn-secondary:hover {
    background: #e9ecef !important;
    color: #2c3e50 !important;
}

@media screen and (max-width: 480px) {
    .support-success-buttons {
        flex-direction: column;
    }
    .support-success-btn {
        width: 100%;
        justify-content: center;
    }
}

.support-page-intro {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.support-success + .form-footer {
    text-align: center;
}

/* Support page – faster reply (WhatsApp / Telegram) */
.support-quick-contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.support-quick-contact-text {
    margin: 0 0 1rem 0;
    color: #2c3e50;
    font-size: 1rem;
}

.support-quick-contact-text strong {
    color: #27ae60;
}

.support-quick-contact-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

.support-contact-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    color: #fff;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.support-contact-icon i {
    font-size: 1.5rem;
}

.support-contact-whatsapp {
    background: #25d366;
    border: 1px solid #20bd5a;
}

.support-contact-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.support-contact-telegram {
    background: #0088cc;
    border: 1px solid #0077b5;
}

.support-contact-telegram:hover {
    background: #0077b5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
}

@media screen and (max-width: 480px) {
    .support-quick-contact {
        padding: 1.25rem 1rem;
    }
    .support-quick-contact-icons {
        flex-direction: column;
        align-items: center;
    }
    .support-contact-icon {
        width: 100%;
        max-width: 220px;
        justify-content: center;
    }
}

/* Account Dashboard */
.account-dashboard {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.account-welcome {
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 2rem;
}

.account-welcome h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.account-welcome p {
    color: #7f8c8d;
    font-size: 1rem;
}

/* Account Edit Section */
.account-edit-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.account-edit-section h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.account-edit-form .form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.account-edit-form .form-section:last-of-type {
    border-bottom: none;
}

.account-edit-form .form-section h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.account-edit-form .form-group {
    margin-bottom: 1.5rem;
}

.account-edit-form .form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.account-edit-form input,
.account-edit-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    color: #2c3e50;
    transition: all 0.3s ease;
    font-family: inherit;
}

.account-edit-form input:focus,
.account-edit-form textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.account-edit-form textarea {
    resize: vertical;
    min-height: 80px;
}

.account-edit-form .form-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
}

.update-btn {
    padding: 1rem 2rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.update-btn:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(39, 174, 96, 0.3);
}

/* Password Change Section */
.account-password-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.account-password-section h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.password-change-form .form-group {
    margin-bottom: 1.5rem;
}

.password-change-form .form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.password-change-form input[type="password"] {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    color: #2c3e50;
    transition: all 0.3s ease;
    font-family: inherit;
}

.password-change-form input[type="password"]:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #7f8c8d;
    font-style: italic;
}

.change-password-btn {
    padding: 1rem 2rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.change-password-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

/* Update Messages */
.update-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #155724;
}

.update-success i {
    font-size: 1.5rem;
    color: #27ae60;
}

.update-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #721c24;
}

.update-error i {
    font-size: 1.5rem;
    color: #e74c3c;
}

.account-actions {
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.logout-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
}

/* Login Page Styles */
.login-page-section {
    padding: 6rem 2rem 4rem;
    background: #ffffff;
    min-height: 100vh;
}

.login-page-container {
    max-width: 500px;
    margin: 0 auto;
}

.login-page-title {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.login-form-container {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.login-form .form-group {
    margin-bottom: 0;
}

.login-form .form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    color: #2c3e50;
    transition: all 0.3s ease;
    font-family: inherit;
}

.login-form input[type="password"] {
    padding-right: 3rem; /* Make room for the eye icon */
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Position the form-group containing password field as relative */
.login-form .form-group {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 2.75rem; /* Position after label (label height ~1.5rem + margin-bottom 0.5rem + half input height) */
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
}

.password-toggle .toggle-password {
    position: relative;
    background: none;
    border: none;
    color: #7f8c8d;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1rem;
    transition: color 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.password-toggle .toggle-password:hover {
    color: #3498db;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #2c3e50;
    font-size: 0.95rem;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #3498db;
}

.forgot-password-link {
    color: #3498db;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.forgot-password-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 1.25rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.login-btn:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(39, 174, 96, 0.3);
}

.login-btn:active {
    transform: translateY(0);
}

.login-form .form-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.login-form .form-footer p {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin: 0;
}

.login-form .form-footer a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.login-form .form-footer a:hover {
    text-decoration: underline;
}

.login-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #721c24;
}

.login-error i {
    font-size: 1.5rem;
    color: #e74c3c;
}

/* Responsive Account Page */
@media screen and (max-width: 768px) {
    .account-edit-form .form-row {
        grid-template-columns: 1fr;
    }

    .account-dashboard {
        padding: 1.5rem;
    }

    .account-edit-section,
    .account-password-section {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .update-btn,
    .change-password-btn {
        width: 100%;
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .account-page-container {
        padding: 0 1rem;
    }

    .registration-form {
        padding: 1.5rem;
    }

    .login-page-container {
        padding: 0 1rem;
    }

    .login-form-container {
        padding: 1.5rem;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid #00FF41;
    padding: 1rem 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: flex-end;
}

.menu-icon {
    color: #00FF41;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: flex-end;
    padding-right: 1rem;
}

.menu-icon:hover {
    color: #fff;
    text-shadow: 0 0 10px #00FF41;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 1rem;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid #00FF41;
    border-radius: 4px;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10001;
    pointer-events: none;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu a {
    color: #00FF41;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    cursor: pointer;
    pointer-events: auto !important;
    position: relative;
    z-index: 10002;
    user-select: none;
    -webkit-user-select: none;
}

.dropdown-menu a:hover {
    background: rgba(0, 255, 65, 0.1);
    color: #fff;
    text-shadow: 0 0 10px #00FF41;
}

.dropdown-menu a:hover {
    background: rgba(0, 255, 65, 0.1);
    color: #fff;
    text-shadow: 0 0 10px #00FF41;
}

.store-name {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #00FF41;
    text-shadow: 0 0 10px #00FF41;
    animation: glowPulse 2s infinite;
    text-align: center;
    background: transparent;
    padding: 0.5rem 1rem;
}

.nav-left-space {
    width: 1fr;
}

/* Hero Section with Social Links */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 2rem;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.9));
    position: relative;
}

.hero-title {
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 0 20px #00FF41;
}

.social-links {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.social-link {
    color: #00FF41;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #fff;
    text-shadow: 0 0 15px #00FF41;
    transform: translateY(-3px);
}

/* Products Section */
.products-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 0 10px #00FF41;
}

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

.product-card {
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid #00FF41;
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 255, 65, 0.3);
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 0 5px #00FF41;
}

.product-price {
    font-size: 1.1rem;
    color: #00FF41;
    font-weight: bold;
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: #00FF41;
    font-size: 2rem;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-30px) translateX(-50%); }
    60% { transform: translateY(-15px) translateX(-50%); }
}

/* Search Bar */
.search-container {
    margin: 2rem auto 3rem auto;
    width: 100%;
    max-width: 600px;
    position: relative;
    display: flex;
    justify-content: center;
}

.search-bar {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00FF41;
    border-radius: 25px;
    color: #00FF41;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.search-bar:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
    background: rgba(0, 0, 0, 0.9);
}

/* CRITICAL: Override black background for store page search bar - must come after general rule */
.main-content.store-page input.search-bar,
.main-content.store-page .search-container input.search-bar,
.store-page input.search-bar,
.store-page .search-container input.search-bar,
body.store-page input.search-bar,
body.store-page .search-container input.search-bar {
    background: #ffffff !important;
    background-color: #ffffff !important;
    border: 2px solid #e0e0e0 !important;
    color: #2c3e50 !important;
}

.main-content.store-page input.search-bar:focus,
.main-content.store-page .search-container input.search-bar:focus,
.store-page input.search-bar:focus,
.store-page .search-container input.search-bar:focus,
body.store-page input.search-bar:focus,
body.store-page .search-container input.search-bar:focus,
.main-content.store-page input.search-bar:active,
.main-content.store-page .search-container input.search-bar:active,
.store-page input.search-bar:active,
.store-page .search-container input.search-bar:active,
body.store-page input.search-bar:active,
body.store-page .search-container input.search-bar:active {
    background: #ffffff !important;
    background-color: #ffffff !important;
    border-color: #3498db !important;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1) !important;
    color: #2c3e50 !important;
    outline: none !important;
}

/* Prevent black background on store page search bar */
.main-content.store-page .search-container .search-bar,
.store-page .search-container .search-bar,
body.store-page .search-container .search-bar {
    background: #ffffff !important;
    border: 2px solid #e0e0e0 !important;
    color: #2c3e50 !important;
}

.main-content.store-page .search-container .search-bar:focus,
.store-page .search-container .search-bar:focus,
body.store-page .search-container .search-bar:focus,
.main-content.store-page .search-container .search-bar:active,
.store-page .search-container .search-bar:active,
body.store-page .search-container .search-bar:active {
    background: #ffffff !important;
    border-color: #3498db !important;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1) !important;
    color: #2c3e50 !important;
    outline: none !important;
}

.main-content.store-page .search-container .search-bar::placeholder,
.store-page .search-container .search-bar::placeholder,
body.store-page .search-container .search-bar::placeholder {
    color: #95a5a6 !important;
}

/* Additional override for store page search icon */
.main-content.store-page .search-container .search-icon,
.store-page .search-container .search-icon,
body.store-page .search-container .search-icon {
    color: #7f8c8d !important;
}

.search-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #00FF41;
    font-size: 1.2rem;
}

/* Features Section - Standalone (if needed elsewhere) */
.features-section {
    padding: 4rem 2rem;
    background: #ffffff;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Features Section - Inside Hero (Green Background) */
.hero-features {
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 0 2rem;
    display: block !important;
    visibility: visible !important;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    align-items: start;
    visibility: visible !important;
    opacity: 1 !important;
}

.feature-item {
    text-align: center;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border: 3px solid #2c3e50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: #ffffff;
    transition: all 0.3s ease;
    position: relative;
}

/* Feature icons inside hero (green background) */
.hero-features .feature-icon {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
}

.hero-features .feature-icon i {
    color: #ffffff;
}

.feature-icon i {
    font-size: 2rem;
    color: #2c3e50;
    transition: all 0.3s ease;
    font-weight: 400;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Special styling for specific icons */
.feature-icon .fa-check-square {
    font-size: 1.75rem;
}

.feature-icon .fa-gift {
    font-size: 1.8rem;
    line-height: 1;
}

.feature-icon .fa-comments {
    font-size: 1.8rem;
}

.feature-item:hover .feature-icon {
    border-color: #3498db;
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
}

.feature-item:hover .feature-icon i {
    color: #3498db;
}

/* Hover effects for features inside hero */
.hero-features .feature-item:hover .feature-icon {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.hero-features .feature-item:hover .feature-icon i {
    color: #ffffff;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50 !important;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Feature titles inside hero (green background) */
.hero-features .feature-title {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.feature-description {
    font-size: 0.95rem;
    color: #7f8c8d !important;
    line-height: 1.6;
    margin: 0;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Feature descriptions inside hero (green background) */
.hero-features .feature-description {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Responsive Features */
@media screen and (max-width: 968px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .hero-features {
        margin-top: 3rem;
        padding: 0 1.5rem;
    }
}

@media screen and (max-width: 640px) {
    .features-section {
        padding: 3rem 1.5rem;
    }
    
    .features-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-features {
        margin-top: 2.5rem;
        padding: 0 1rem;
    }
    
    .hero-features .features-container {
        gap: 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 1.75rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
}

/* Category Filters */
.category-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00FF41;
    color: #00FF41;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    position: relative;
    overflow: hidden;
}

.category-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #00FF41;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.category-btn:active::after {
    opacity: 0.1;
}

.category-btn.active {
    background: #00FF41;
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
    font-weight: bold;
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.product-overlay * {
    pointer-events: auto;
}

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

/* Ensure product card link (image) is always clickable, even when overlay is visible */
.store-page .product-card {
    position: relative;
    overflow: hidden;
}

/* Bundle cards — green glow (after overflow rule so glow is not clipped) */
.store-page .product-card[data-category="bundles"] {
    overflow: visible;
    z-index: 1;
    border-color: rgba(39, 174, 96, 0.55);
    box-shadow:
        0 0 20px rgba(39, 174, 96, 0.45),
        0 0 40px rgba(0, 255, 65, 0.18),
        0 2px 8px rgba(0, 0, 0, 0.08);
}

.store-page .product-card[data-category="bundles"]:hover {
    z-index: 2;
    border-color: #27ae60;
    box-shadow:
        0 0 28px rgba(39, 174, 96, 0.6),
        0 0 52px rgba(0, 255, 65, 0.28),
        0 8px 18px rgba(0, 0, 0, 0.12);
}

.store-page .product-card-link {
    position: relative;
    z-index: 1;
    display: block;
}

.store-page .product-overlay {
    z-index: 10;
}

/* Make sure the image itself is clickable */
.store-page .product-card-link img {
    position: relative;
    z-index: 1;
}

.quick-view-btn {
    padding: 0.75rem 1.5rem;
    background: #00FF41;
    color: #000;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.quick-view-btn:hover {
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

/* Buy Now Button */
.buy-now-btn {
    padding: 0.75rem 1.5rem;
    background: #00FF41;
    color: #000;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.buy-now-btn:hover {
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.6);
    transform: translateY(-2px);
    color: #000;
}

.buy-now-btn:active {
    transform: translateY(0);
}

.buy-now-btn:disabled {
    background: #004d14;
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: none;
}

.product-details {
    color: #00FF41;
    text-align: center;
}

/* About text styles */
.about-text {
    max-width: 1000px;
    margin: 3rem auto;
    text-align: center;
    padding: 2rem 4rem;
    animation: fadeIn 1s ease-out;
    position: relative;
}

/* Green lines removed for clean store page */
.store-page .about-text::before {
    display: none;
}

.store-page .about-text::after {
    display: none;
}

.about-text p {
    color: #00FF41;
    line-height: 1.8;
    margin: 1rem 0;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
}

.about-text p:first-child {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

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

/* Mobile Optimizations */
@media screen and (max-width: 768px) {
    .age-question {
        font-size: 1.8rem;
        letter-spacing: 3px;
        padding: 0 1rem;
    }

    .age-buttons {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        max-width: 400px;
        padding: 0 1rem;
    }

    .matrix-button {
        padding: 1.2rem 2rem;
        font-size: 1.3rem;
        letter-spacing: 2px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        border-width: 1px;
        min-height: 60px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
        -webkit-user-select: none;
    }

    .matrix-button-no {
        padding: 1.2rem 2rem;
        font-size: 1.3rem;
        letter-spacing: 2px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        border-width: 1px;
        min-height: 60px;
    }

    .matrix-button:active,
    .matrix-button-no:active {
        transform: scale(0.98);
        transition: all 0.2s ease;
    }

    .matrix-button:active {
        background: rgba(0, 255, 65, 0.15);
    }

    .matrix-button-no:active {
        background: rgba(255, 0, 64, 0.15);
    }

    .matrix-button:hover,
    .matrix-button-no:hover {
        transform: none;
        letter-spacing: inherit;
        box-shadow: none;
    }

    .age-message {
        font-size: 1rem;
        padding: 0 1rem;
        text-align: center;
    }

    .terms-modal-title {
        font-size: 1.1rem;
        letter-spacing: 0.2em;
        padding: 1rem 1rem 0.85rem;
    }

    .terms-modal-body {
        font-size: 0.9rem;
        padding: 1rem 1rem;
    }

    .terms-modal-actions {
        flex-direction: column;
    }

    .terms-modal-actions .matrix-button,
    .terms-modal-actions .matrix-button-no {
        width: 100%;
        max-width: 280px;
    }

    .main-content {
        margin: 0;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 0.3rem;
    }

    .about-text {
        padding: 2rem 1rem;
    }

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

    .navbar {
        padding: 0.75rem 1rem;
    }

    .store-name {
        font-size: 1.2rem;
    }

    .search-container {
        padding: 0 1rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        font-size: 2rem;
    }

    .category-filters {
        gap: 0.5rem;
        margin-bottom: 2rem;
        padding: 0.5rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        white-space: nowrap;
        justify-content: flex-start;
        padding-bottom: 10px;
        mask-image: linear-gradient(to right, transparent, black 10px, black 90%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 10px, black 90%, transparent);
    }

    .category-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        white-space: nowrap;
        flex-shrink: 0;
        transition: all 0.15s ease;
    }

    .category-btn:active {
        transform: scale(0.95);
        background: rgba(0, 255, 65, 0.15);
    }

    .category-btn.active {
        background: #00FF41;
        color: #000;
        box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
        transform: scale(1.05);
    }

    .quick-view-btn {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 24px;
    }

    .product-card:active {
        transform: scale(0.98);
    }

    .category-btn:active,
    .quick-view-btn:active {
        opacity: 0.8;
    }

    .quick-view-btn:disabled {
        background: #004d14;
        cursor: not-allowed;
        opacity: 0.7;
    }

    .navbar {
        transition: transform 0.3s ease-in-out;
        will-change: transform;
    }

    .products-section {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    .product-card, 
    .category-btn,
    .quick-view-btn {
        user-select: none;
        -webkit-user-select: none;
    }

    .product-image {
        background: linear-gradient(45deg, #001a06, #003b0d);
        transition: opacity 0.3s ease;
    }
}

@media screen and (max-width: 480px) {
    .age-question {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .age-buttons {
        gap: 1rem;
    }

    .matrix-button,
    .matrix-button-no {
        padding: 1rem 1.8rem;
        font-size: 1.1rem;
        letter-spacing: 1px;
        width: 90%;
        min-height: 50px;
    }

    @keyframes glowPulse {
        0%, 100% { 
            text-shadow: 0 0 3px #00FF41;
            box-shadow: 0 0 3px rgba(0, 255, 65, 0.2);
        }
        50% { 
            text-shadow: 0 0 5px #00FF41;
            box-shadow: 0 0 5px rgba(0, 255, 65, 0.2);
        }
    }

    @keyframes glowPulseRed {
        0%, 100% { 
            text-shadow: 0 0 3px #FF0040;
            box-shadow: 0 0 3px rgba(255, 0, 64, 0.2);
        }
        50% { 
            text-shadow: 0 0 5px #FF0040;
            box-shadow: 0 0 5px rgba(255, 0, 64, 0.2);
        }
    }

    .age-message {
        font-size: 0.9rem;
    }

    .terms-modal-title {
        font-size: 1rem;
        letter-spacing: 0.12em;
    }

    .terms-modal-body {
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-text p:first-child {
        font-size: 1.2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .category-filters {
        gap: 0.4rem;
        padding: 0.4rem;
    }

    .category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        min-height: 40px;
    }

    .category-btn.active {
        transform: scale(1.02);
    }
}

@media screen and (max-height: 480px) and (orientation: landscape) {
    .container {
        padding: 0.5rem;
    }

    .matrix-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        min-height: 44px;
        width: auto;
        max-width: 250px;
    }
}

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

.site-footer {
    background: #000000;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
    width: 100%;
}

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

.footer-top {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    text-align: center;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    line-height: 1.2;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.footer-social-icon:hover {
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

.footer-nav-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: 3rem;
}

.footer-divider {
    height: 1px;
    background: #ffffff;
    width: 100%;
    margin-bottom: 2rem;
    opacity: 0.3;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #ffffff;
    letter-spacing: 1px;
}

.footer-payment-methods {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.payment-badge {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-transform: uppercase;
}

.payment-badge.bank-transfer {
    background: #1e3a8a;
    border: 1px solid #3b82f6;
}

.payment-badge.crypto {
    background: #f97316;
    border: 1px solid #fb923c;
}

.payment-badge i {
    font-size: 1rem;
}

/* Payment Page - Clean nila.bz Style */
.payment-page {
    background: #ffffff !important;
}

.payment-page .main-content {
    background: #ffffff !important;
}

.payment-page-section {
    padding: 6rem 2rem 4rem 2rem; /* Added top padding to account for fixed navbar */
    background: #ffffff;
    min-height: calc(100vh - 200px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 0; /* Ensure no additional margin */
}

.payment-page-container {
    max-width: 600px;
    width: 100%;
}

.payment-page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
}

.payment-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.payment-total {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.payment-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
}

.payment-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
}

.payment-information {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.payment-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.payment-email-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    color: #2c3e50;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.payment-email-input:focus {
    outline: none;
    border-color: #3498db;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.payment-actions {
    margin-top: 1.5rem;
}

.continue-to-pay-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: #27ae60;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.continue-to-pay-btn:hover:not(:disabled) {
    background: #229954;
}

.continue-to-pay-btn:active:not(:disabled) {
    transform: translateY(1px);
}

.continue-to-pay-btn:disabled {
    cursor: not-allowed;
    opacity: 0.85;
}

.crypto-options-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.crypto-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
}

.crypto-option:hover {
    border-color: #3498db;
    background: #f8f9fa;
    transform: translateX(4px);
}

.crypto-option.active {
    border-color: #3498db;
    background: #e3f2fd;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.crypto-option.processing {
    pointer-events: none;
    opacity: 0.7;
}

.crypto-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.crypto-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.crypto-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.crypto-name {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

.crypto-network {
    font-size: 0.75rem;
    color: #7f8c8d;
    background: #e0e0e0;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
}

.crypto-ticker {
    font-size: 0.875rem;
    color: #7f8c8d;
}

.crypto-loading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #3498db;
    font-weight: 600;
}

.crypto-loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Payment Confirmation Page Styles */
.payment-status {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.status-badge.status-waiting {
    background: #fff3cd;
    color: #856404;
}

.status-badge.status-confirmed,
.status-badge.status-finished {
    background: #d4edda;
    color: #155724;
}

.payment-id {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.payment-amount-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.amount-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.amount-label {
    font-size: 1rem;
    color: #7f8c8d;
}

.amount-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
}

.payment-address-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.payment-address-box {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 1rem;
}

.payment-address {
    flex: 1;
    padding: 1rem;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    word-break: break-all;
    color: #2c3e50;
}

.copy-address-btn {
    padding: 1rem 1.5rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.copy-address-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.payment-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.payment-progress {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #27ae60;
    transition: width 0.3s ease;
}

.payment-instructions {
    margin-bottom: 2rem;
}

.payment-instructions h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.payment-instructions ol {
    padding-left: 1.5rem;
    color: #7f8c8d;
    line-height: 1.8;
}

.payment-instructions li {
    margin-bottom: 0.5rem;
}

.payment-auto-refresh {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.payment-error {
    text-align: center;
    padding: 2rem;
}

.payment-error i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.payment-error p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

/* Responsive Payment Page */
@media screen and (max-width: 768px) {
    .payment-page-section {
        padding: 5rem 1rem 2rem 1rem; /* Added top padding for mobile to account for navbar */
    }
    
    .payment-card {
        padding: 1.5rem;
    }
    
    .payment-amount {
        font-size: 1.75rem;
    }
    
    .payment-address-box {
        flex-direction: column;
    }
    
    .copy-address-btn {
        width: 100%;
    }
}

/* Responsive Footer */
@media screen and (max-width: 968px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-nav-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 640px) {
    .site-footer {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .footer-nav-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo {
        font-size: 2rem;
    }
    
    .footer-payment-methods {
        flex-direction: column;
        width: 100%;
    }
    
    .payment-badge {
        width: 100%;
        justify-content: center;
    }
}

/* Product Reviews Section */
.product-reviews-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e0e0e0;
}

.reviews-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.average-rating-display {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.rating-stars-large {
    display: flex;
    gap: 0.25rem;
    font-size: 2rem;
}

.rating-stars-large .star {
    color: #ffc107;
}

.rating-stars-large .star.filled {
    color: #ffc107;
}

.rating-stars-large .star.half {
    color: #ffc107;
    opacity: 0.5;
}

.rating-text {
    font-size: 1.1rem;
    color: #2c3e50;
}

.rating-text strong {
    font-size: 1.5rem;
    color: #27ae60;
}

.review-count {
    color: #7f8c8d;
    font-weight: normal;
}

.no-reviews-yet {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 2rem;
}

/* Review Form */
.review-form-container {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.review-form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.review-form-group {
    margin-bottom: 1.5rem;
}

.review-label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.star-rating-input {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.star-input {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.star-input:hover,
.star-input.active {
    color: #ffc107;
    transform: scale(1.1);
}

.rating-selected-text {
    display: block;
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

.review-textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: #2c3e50;
    resize: vertical;
    transition: all 0.3s ease;
}

.review-textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.submit-review-btn {
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-review-btn:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(39, 174, 96, 0.3);
}

.submit-review-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
}

.review-login-prompt {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.review-login-prompt p {
    margin: 0;
    color: #856404;
}

.review-login-prompt a {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
}

.review-login-prompt a:hover {
    text-decoration: underline;
}

.review-already-submitted {
    background: #d4edda;
    border: 1px solid #27ae60;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.review-already-submitted p {
    margin: 0;
    color: #155724;
}

.review-already-submitted i {
    color: #27ae60;
    margin-right: 0.5rem;
}

/* Reviews List */
.reviews-list {
    margin-top: 3rem;
}

.reviews-list-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.review-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.review-user-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.review-user-name {
    font-size: 1.1rem;
    color: #2c3e50;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
}

.review-rating .star {
    font-size: 1rem;
    color: #ffc107;
}

.review-rating .star.filled {
    color: #ffc107;
}

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

.review-comment {
    color: #2c3e50;
    line-height: 1.6;
    white-space: pre-wrap;
}

/* Responsive Reviews */
@media screen and (max-width: 768px) {
    .average-rating-display {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .review-form-container {
        padding: 1.5rem;
    }
    
    .review-header {
        flex-direction: column;
    }
    
    .review-item {
        padding: 1rem;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================ */

/* Mobile Navigation & Header */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .store-name {
        font-size: 1.2rem;
    }

    .nav-right {
        gap: 0.75rem;
    }

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

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

    .dropdown-menu {
        right: 0;
        left: auto;
        min-width: 150px;
    }
}

/* Mobile Store Page */
@media screen and (max-width: 768px) {
    .store-page {
        padding: 0.5rem;
    }

    .store-hero {
        padding: 2rem 1rem;
    }

    .store-hero h1 {
        font-size: 1.8rem;
    }

    .store-hero p {
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 1rem;
        padding: 1rem 0.5rem;
    }

    .product-card {
        padding: 0.5rem;
    }

    .product-image {
        width: 100%;
        height: 140px;
        object-fit: cover;
        border-radius: 8px;
    }

    .product-title {
        font-size: 0.9rem;
        margin: 0.5rem 0 0.25rem;
    }

    .product-price {
        font-size: 1rem;
    }

    .product-overlay {
        padding: 0.5rem;
    }

    .add-to-cart-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .category-filters {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 1rem 0.5rem;
    }

    .category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* Mobile Checkout Page */
@media screen and (max-width: 768px) {
    .checkout-wrapper {
        padding: 1rem 0.5rem;
    }

    .checkout-main {
        flex-direction: column;
        gap: 1.5rem;
    }

    .checkout-forms {
        width: 100%;
        order: 1;
    }

    .checkout-summary {
        width: 100%;
        order: 2;
        position: static;
        top: auto;
    }

    .checkout-section {
        padding: 1.5rem 1rem;
    }

    .checkout-section-title {
        font-size: 1.3rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 1rem;
    }

    .checkout-summary-card {
        padding: 1.5rem 1rem;
    }

    .summary-item {
        padding: 0.75rem 0;
    }

    .checkout-total {
        font-size: 1.3rem;
    }

    .checkout-btn {
        padding: 1rem;
        font-size: 1rem;
    }
}

/* Mobile Payment Pages */
@media screen and (max-width: 768px) {
    .payment-page-section {
        padding: 1rem 0.5rem;
    }

    .payment-page-container {
        padding: 1rem;
    }

    .payment-page-title {
        font-size: 1.5rem;
    }

    .payment-card {
        padding: 1.5rem 1rem;
    }

    .payment-address-box {
        flex-direction: column;
        gap: 0.75rem;
    }

    .payment-address {
        font-size: 0.85rem;
        word-break: break-all;
        padding: 0.75rem;
    }

    .copy-address-btn {
        width: 100%;
        padding: 0.75rem;
    }

    .crypto-options-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .crypto-option {
        padding: 1rem;
    }

    .payment-result-box {
        padding: 2rem 1rem;
        margin: 1rem;
    }

    .payment-title {
        font-size: 1.8rem;
    }

    .order-details-section {
        padding: 1.5rem 0;
    }

    .order-number-value {
        font-size: 2rem;
    }
}

/* Mobile Cart Page */
@media screen and (max-width: 768px) {
    .cart-page-section {
        padding: 1rem 0.5rem;
    }

    .cart-page-container {
        padding: 1rem 0.5rem;
    }

    .cart-item {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        position: relative;
    }

    .cart-item-image {
        width: 100%;
        max-width: 100%;
        height: 250px;
        align-self: center;
    }

    .cart-item-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .cart-item-details {
        width: 100%;
    }

    .cart-item-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .cart-item-amount,
    .cart-item-price {
        font-size: 0.9rem;
        margin: 0.25rem 0;
    }

    .cart-item-quantity {
        width: 100%;
        justify-content: center;
        padding: 0.5rem 0;
    }

    .cart-item-quantity .quantity-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        min-width: 40px;
    }

    .cart-item-quantity .quantity-input {
        width: 70px;
        padding: 0.75rem;
        font-size: 1rem;
    }

    .cart-item-total {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
        font-size: 1.3rem;
        border-top: 1px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0;
    }

    .remove-item-btn {
        width: 100%;
        height: 50px;
        font-size: 1rem;
        margin-top: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .remove-item-btn i {
        font-size: 1.2rem;
    }

    .remove-item-btn::after {
        content: 'Remove Item';
        margin-left: 0.5rem;
    }

    .cart-summary {
        margin-top: 1.5rem;
        padding: 1.5rem 1rem;
    }

    .checkout-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .cart-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .continue-shopping-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
    }
}

/* Mobile Forms */
@media screen and (max-width: 768px) {
    .login-form-container,
    .registration-form,
    .account-edit-form {
        padding: 1.5rem 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 1rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .login-btn,
    .register-btn,
    .save-btn {
        width: 100%;
        padding: 1rem;
    }

    .password-toggle {
        right: 8px;
        top: 2.5rem;
    }
}

/* Mobile Account Page */
@media screen and (max-width: 768px) {
    .account-page-section {
        padding: 1rem 0.5rem;
    }

    .account-page-title {
        font-size: 1.8rem;
    }

    .account-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .account-tab {
        width: 100%;
        padding: 0.75rem;
    }

    .account-content {
        padding: 1.5rem 1rem;
    }
}

/* Mobile Product Cards on Store */
@media screen and (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .product-card {
        padding: 0.5rem;
    }

    .product-image {
        height: 120px;
    }

    .product-title {
        font-size: 0.8rem;
    }

    .product-price {
        font-size: 0.9rem;
    }
}

/* Mobile Buttons */
@media screen and (max-width: 768px) {
    .matrix-button,
    .add-to-cart-btn,
    .buy-now-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .quantity-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .quantity-input {
        width: 50px;
        padding: 0.5rem;
    }
}

/* Mobile Text & Typography */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Mobile Spacing */
@media screen and (max-width: 768px) {
    .main-content {
        padding: 0.5rem;
    }

    .section {
        padding: 2rem 1rem;
    }

    .container {
        padding: 1rem;
    }
}

/* Ensure images are responsive */
@media screen and (max-width: 768px) {
    img {
        max-width: 100%;
        height: auto;
    }

    .product-main-image,
    .gallery-image {
        width: 100%;
        height: auto;
        max-width: 100%;
        display: block;
    }

    /* Fix product page image container */
    .product-page-image {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .product-image-gallery {
        width: 100%;
        max-width: 100%;
    }

    /* Ensure store product images are visible */
    .store-page .product-image {
        width: 100%;
        height: auto;
        min-height: 140px;
        object-fit: cover;
        display: block;
    }

    /* Fix any hidden or overflow issues */
    .product-card img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Extra small devices - ensure images are always visible */
@media screen and (max-width: 480px) {
    .product-main-image,
    .gallery-image,
    .product-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .gallery-images-container {
        width: 100%;
        max-width: 100%;
    }
}

/* --- Matrix blog (standalone /blog page) --- */
.matrix-blog-section {
    padding: 6.5rem 1.25rem 3.5rem;
    background: #f5f7f9;
    min-height: 60vh;
}

.matrix-blog-container {
    max-width: 960px;
    margin: 0 auto;
}

.matrix-blog-index-header {
    margin-bottom: 2rem;
    text-align: center;
}

.matrix-blog-shop-wrap {
    margin: 0 0 1.25rem;
}

.matrix-blog-shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.35rem;
    background: #27ae60;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 2px 10px rgba(39, 174, 96, 0.35);
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.matrix-blog-shop-btn:hover {
    background: #229954;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(39, 174, 96, 0.45);
}

.matrix-blog-index-title {
    font-size: 2rem;
    color: #2c3e50;
    margin: 0 0 0.5rem;
    font-weight: 700;
}

.matrix-blog-index-intro {
    color: #7f8c8d;
    margin: 0;
    font-size: 1.05rem;
}

.matrix-blog-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.matrix-blog-card {
    margin: 0;
}

.matrix-blog-card-link {
    display: block;
    background: #ffffff;
    border: 1px solid #e4e8ec;
    border-radius: 10px;
    padding: 1.25rem 1.35rem 1.35rem;
    text-decoration: none;
    color: #2c3e50;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.matrix-blog-card-link:hover {
    border-color: #27ae60;
    box-shadow: 0 4px 14px rgba(39, 174, 96, 0.12);
    transform: translateY(-2px);
}

.matrix-blog-card-num {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    color: #27ae60;
    letter-spacing: 0.12em;
    margin-bottom: 0.45rem;
}

.matrix-blog-card-title {
    font-size: 1.15rem;
    margin: 0 0 0.4rem;
    line-height: 1.35;
    color: #2c3e50;
    font-weight: 700;
}

.matrix-blog-card-date {
    display: block;
    font-size: 0.8rem;
    color: #95a5a6;
    margin-bottom: 0.55rem;
}

.matrix-blog-card-excerpt {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    color: #5d6d7e;
    line-height: 1.55;
}

.matrix-blog-card-cta {
    font-size: 0.85rem;
    font-weight: 700;
    color: #3498db;
}

.matrix-blog-card-link:hover .matrix-blog-card-cta {
    color: #1f6dad;
}

.matrix-blog-back {
    margin: 0 0 1.25rem;
}

.matrix-blog-back-link {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
}

.matrix-blog-back-link:hover {
    text-decoration: underline;
}

.matrix-blog-single-header {
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e4e8ec;
}

.matrix-blog-single-title {
    font-size: 1.9rem;
    color: #2c3e50;
    margin: 0 0 0.35rem;
    line-height: 1.25;
}

.matrix-blog-meta {
    margin: 0;
    font-size: 0.95rem;
    color: #95a5a6;
}

.matrix-blog-content {
    background: #ffffff;
    border: 1px solid #e4e8ec;
    border-radius: 10px;
    padding: 1.5rem 1.35rem 2rem;
    font-size: 1.02rem;
    line-height: 1.75;
    color: #34495e;
}

.matrix-blog-content p {
    margin: 0 0 1rem;
}

.matrix-blog-content h2,
.matrix-blog-content h3,
.matrix-blog-content h4 {
    color: #2c3e50;
    margin: 1.5rem 0 0.75rem;
    line-height: 1.3;
}

.matrix-blog-content ul,
.matrix-blog-content ol {
    margin: 0 0 1rem 1.25rem;
}

.matrix-blog-content figure {
    margin: 1.25rem 0;
}

.matrix-blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

@media screen and (min-width: 768px) {
    .matrix-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

