/* === START: ADD THIS FONT IMPORT AT THE VERY TOP === */
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@600;700&display=swap');

/* Basic Reset & Body Styles */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #1a1a1e;
    color: #e0e0e0;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background pattern for the entire body */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('ps_buttons_pattern.png');
    background-repeat: repeat;
    background-size: 200px;
    opacity: 0.1;
    filter: blur(0.8px);
    z-index: -2;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* SEO Optimization Rule: Hide H1 visually but keep it readable for search engines */
.main-seo-title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Header & Navigation */
header {
    background-color: #0d1b2a;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background-image: url('head_banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 180px;
    padding-top: 20px;
    padding-bottom: 20px;
    z-index: 1;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.header-logo {
    flex-shrink: 0;
    margin-right: 20px;
    z-index: 2;
}

.header-logo img {
    height: 180px;
    width: auto;
    border-radius: 50%;
    border: 3px solid #E33A3A;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

nav {
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    flex-grow: 1;
}

nav ul li {
    margin: 0 10px;
    white-space: nowrap;
}

nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
    padding: 5px 0;
}

nav ul li a:hover {
    color: #E33A3A;
}

/* Shop and Admin Specific Styles */
:root {
    --bg-dark-charcoal: #1a1a1a;
    --accent-red: #E33A3A;
    --accent-orange: #FFB800; /* Adjusted for better visibility */
    --accent-green: #2ECC71;
    --text-white: #FFFFFF;
    --text-gray: #a0aec0;
    --bg-dark-gray: #1f2937;
}

.header-cart-button {
    position: relative;
    padding: 8px;
    border-radius: 50%;
    color: #e0e0e0;
    transition: background-color 0.3s ease;
    cursor: pointer;
    background-color: rgba(15, 52, 96, 0.5);
    z-index: 3;
    border: none;
}
.header-cart-button:hover {
    background-color: var(--accent-red);
}
#cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--accent-red);
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 9999px;
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: flex-end;
    z-index: 50;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
#cart-modal.visible {
    visibility: visible;
    opacity: 1;
}
#cart-panel {
    width: 100%;
    max-width: 400px;
    background-color: var(--bg-dark-charcoal);
    height: 100%;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}
#cart-modal.visible #cart-panel {
    transform: translateX(0);
}
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #4a5568;
}
.cart-title {
    font-size: 1.5rem;
    font-weight: bold;
}
.close-cart-button {
    padding: 8px;
    border-radius: 9999px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}
.close-cart-button:hover {
    background-color: #4a5568;
}
.cart-items-container {
    flex-grow: 1;
    padding: 24px;
    overflow-y: auto;
}
.cart-footer {
    padding: 24px;
    border-top: 1px solid #4a5568;
}
.cart-subtotal-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.cart-subtotal-text {
    font-size: 1.125rem;
    color: #a0aec0;
}
.cart-subtotal-value {
    font-size: 1.5rem;
    font-weight: bold;
}
.checkout-button {
    width: 100%;
    background-color: var(--accent-red);
    color: var(--text-white);
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 8px;
    text-transform: uppercase;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}
.checkout-button:hover {
    background-color: #c53030;
}
.cart-item-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #4a5568;
}
.cart-item-details {
    display: flex;
    align-items: center;
    gap: 16px;
}
.cart-item-image {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
}
.cart-item-name {
    font-weight: bold;
}
.cart-item-price {
    font-size: 0.875rem;
    color: #a0aec0;
}
.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}
.quantity-change-btn {
    background-color: #4a5568;
    color: #fff;
    border: none;
    padding: 4px;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.quantity-change-btn:hover {
    background-color: #2d3748;
}
.remove-item-btn {
    background: none;
    border: none;
    color: #e53e3e;
    padding: 4px;
    cursor: pointer;
}
.remove-item-btn:hover {
    color: #c53030;
}

/* shop page hero and products sections */
.shop-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
}
.shop-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('http://googleusercontent.com/image_collection/image_retrieval/9526395235065469695');
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.shop-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
}
.shop-hero-content {
    position: relative;
    z-index: 10;
    padding: 32px;
}
.shop-hero-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 16px;
    color: var(--accent-orange);
    text-shadow: 0 0 10px rgba(255, 127, 0, 0.5);
}
.shop-hero-text {
    font-size: 1.125rem;
    color: #d1d5db;
    max-width: 48rem;
    margin: 0 auto 32px;
}
.shop-button {
    background-color: var(--accent-red);
    color: var(--text-white);
    font-weight: bold;
    padding: 12px 32px;
    border-radius: 8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px 0 rgba(227, 58, 58, 0.5);
    text-decoration: none;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}
.shop-button:hover {
    background-color: var(--accent-orange);
    box-shadow: 0 0 15px 0 rgba(255, 127, 0, 0.5);
}
.products-section {
    padding: 48px 10px; /* Reduced padding for tighter side margins */
}
.products-title {
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 16px;
    color: var(--accent-red);
    font-family: 'Orbitron', sans-serif;
}
.product-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}
.filter-btn {
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    border: 2px solid #4a5568;
    background: none;
    color: var(--text-gray);
    transition: all 0.3s;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
}
.filter-btn:hover,
.filter-btn.active {
    border-color: var(--accent-orange);
    background-color: rgba(255, 127, 0, 0.1);
    color: var(--text-white);
}

/* === START: NEW PRODUCT GRID & CARD STYLES (FINAL) === */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px; /* Reduced gap for compact look */
    max-width: 1200px;
    margin: 0 auto;
}

.product-loading {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-gray);
}

/* NEW Card Base */
.product-card {
    background-color: #2a2a2e;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #4a5568;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

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

/* NEW Image Container for Overlays */
.product-image-container {
    position: relative;
    width: 100%;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* NEW Price Banner Overlay */
.price-banner {
    position: absolute;
    bottom: 8px;
    left: -2px;
    background-color: var(--accent-red);
    color: var(--text-white);
    padding: 4px 12px 4px 10px;
    font-size: 0.6rem;
    font-weight: bold;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.4);
}

/* NEW Share Button Overlay */
.share-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--text-white);
    border-radius: 6px;
    padding: 4px 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: background-color 0.2s ease;
}
.share-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
}
.share-text {
    font-size: 0.4rem;
    font-weight: bold;
    text-transform: uppercase;
}
.share-icon {
    width: 12px;
    height: 12px;
}

/* NEW Text Info Section */
.product-info {
    padding: 12px;
    flex-grow: 1; /* Allows this section to grow if needed */
}

/* NEW Product Name Style (Corrected Specificity & Font Size) */
#product-grid .product-name {
    font-family: 'Teko', sans-serif !important;
    font-size: 1.5rem !important; /* <-- REDUCED FONT SIZE */
    font-weight: 700 !important;
    color: var(--accent-orange) !important;
    text-transform: uppercase !important;
    line-height: 1.1 !important;
    margin: 0 0 8px 0 !important;
    letter-spacing: 0.01em !important;
    background: none !important;
    padding: 0 !important;

    /* Enforce 2-line limit */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.6rem * 1.1 * 2) !important; /* <-- UPDATED MIN-HEIGHT */
}

/* NEW Product Description Style */
.product-description {
    font-size: 0.5rem;
    color: var(--text-gray);
    line-height: 1.4;
    margin: 0;

    /* Enforce 3-line limit */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* NEW Add to Cart Button Style */
.add-to-cart-btn {
    background-color: var(--accent-red);
    color: var(--text-white);
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    text-align: center;
    padding: 10px 16px; /* Thinner button */
    border: none;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s ease;
    margin-top: auto; /* Pushes button to the bottom */
}
.add-to-cart-btn:hover {
    background-color: #c53030;
}

/* === END: NEW PRODUCT GRID & CARD STYLES (FINAL) === */

.services-section {
    background-color: rgba(31, 41, 55, 0.5);
    padding: 64px 0;
}
.services-text {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 48rem;
    margin: 0 auto 48px;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}
.service-card {
    background-color: var(--bg-dark-charcoal);
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #4a5568;
}
.service-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--accent-orange);
    font-family: 'Orbitron', sans-serif;
    border-bottom: 2px solid var(--accent-red);
    padding-bottom: 5px;
    margin-bottom: 15px;
    text-align: center;
}
.service-card-text {
    color: var(--text-gray);
    text-align: center;
}
.footer-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--text-white);
}
.footer-text {
    margin-bottom: 0.5rem;
}
.footer-tagline {
    font-style: italic;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #d1d5db;
}
.footer-copyright {
    font-size: 0.875rem;
}
/* Main Content - Coming Soon Page */
.coming-soon {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
    position: relative;
    z-index: 1;
}

.coming-soon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.coming-soon .container {
    position: relative;
    z-index: 2;
}

.coming-soon h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5em;
    font-weight: bold;
    color: #FF7F00;
    margin-bottom: 25px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.testing-small-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8em;
    font-weight: bold;
    color: var(--accent-orange);
    margin-bottom: 50px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

.coming-soon p {
    font-size: 1.25em;
    margin-bottom: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

/* NEW: Homepage Hub Section Styles */
.hub-section {
    padding: 30px 0;
    margin-bottom: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.hub-section h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-red);
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
}
.featured-products-grid, .services-hub-grid, .contact-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.hub-product-card, .hub-card {
    background-color: #0f3460;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}
.hub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}
.hub-product-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}
.hub-product-info {
    padding: 0 5px;
}
.hub-product-name, .hub-card h4 {
    font-weight: bold;
    color: var(--text-white);
    margin-bottom: 5px;
}
.hub-product-price {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-green);
    font-size: 0.7em;
    margin-bottom: 10px;
}
.hub-link-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--accent-orange);
    color: var(--text-white);
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
}
.hub-link-button:hover {
    background-color: var(--accent-red);
}
.hub-link-text {
    color: var(--accent-green);
    text-decoration: none;
    transition: color 0.3s;
}
.hub-link-text:hover {
    color: var(--accent-orange);
}


.social-links {
    margin-top: 30px;
}

.social-links p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.social-links a {
    color: #2ECC71;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.2s ease;
}

.social-links a:hover {
    color: #FF7F00;
}

/* Bottom Banner Styling */
.bottom-banner {
    width: 100%;
    display: block;
    overflow: hidden;
    line-height: 0;
    margin-top: auto;
}

.bottom-banner img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 150px;
    object-fit: cover;
    object-position: center bottom;
}


/* Footer */
footer {
    background-color: #0d1b2a;
    color: #a4a4a4;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* General Content Page Styling */
.content-page {
    flex-grow: 1;
    padding: 40px 20px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.content-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

body.ps-games-bg {
    /* ... */
}


.content-page h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.2em;
    color: #E33A3A;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.content-page h3 {
    font-family: 'Orbitron', sans-serif;
    color: #2ECC71;
    font-size: 1.9em;
    margin-top: 40px;
    margin-bottom: 15px;
    border-bottom: 2px solid #E33A3A;
    padding-bottom: 5px;
}

.content-page p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #f0f0f0;
}

.content-page ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.content-page ul li {
    margin-bottom: 8px;
    font-size: 1em;
}

.content-page a {
    color: #2ECC71;
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-page a:hover {
    color: #FF7F00;
}

.contact-info ul,
.location-info ul {
    list-style: none;
    padding: 0;
    margin-left: 0;
}

.contact-info li,
.location-info li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.contact-info strong {
    color: #FF7F00;
}

address {
    font-style: normal;
    margin-bottom: 20px;
    line-height: 1.8;
}

.online-note {
    font-size: 0.9em;
    font-style: italic;
    color: #a4a4a4;
    margin-top: 10px;
}


.social-icons a {
    display: inline-block;
    background-color: #E33A3A;
    color: #e0e0e0;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.social-icons a:hover {
    background-color: #FF7F00;
    transform: translateY(-2px);
}

.qr-code-section {
    text-align: center;
    margin: 40px auto;
    padding: 20px;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-code-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.qr-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.amharic-address,
footer p:last-child {
    font-family: 'Roboto', sans-serif;
    margin-top: 5px;
    font-size: 0.9em;
}

/* Jailbreak Page Specific Styles */
.status-bar {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 30px;
}

.status-bar #date,
.status-bar #clock {
    font-size: 1.5em;
    color: #E33A3A;
    display: block;
}

.status-bar p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2em;
    color: #FF7F00;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin: 10px 0 0;
}

.jailbreak-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.jailbreak-button {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    background-color: #0f3460;
    color: #fff;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    font-size: 1.1em;
    border-radius: 10px;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    min-width: 180px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

.jailbreak-button:hover {
    background-color: #E33A3A;
    transform: translateY(-3px);
}

.large-button {
    min-width: 250px;
}

.credits {
    margin-top: 30px;
    font-size: 0.9em;
    color: #a4a4a4;
}

.testing-label {
    margin-top: 60px;
    text-align: center;
}

.testing-label h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 5em;
    color: #E33A3A;
    text-shadow: 2px 2px 8px rgba(255, 0, 0, 0.5);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile Grid Fixes and Shop Page Polish */
@media (max-width: 768px) {
    header {
        min-height: 150px;
        padding-top: 15px;
        padding-bottom: 15px;
        flex-direction: column;
        align-items: center;
    }
    .header-logo {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .header-logo img {
        height: 110px;
    }
    nav ul {
        justify-content: center;
        width: 100%;
        margin-top: 10px;
    }
    nav ul li {
        margin: 0 8px;
    }
    .coming-soon h2 {
        font-size: 2.5em;
    }
    .coming-soon p {
        font-size: 1em;
    }
    .content-page h1 {
        font-size: 2em;
    }
    .content-page h3 {
        font-size: 1.5em;
    }
    .content-page p,
    .content-page ul li,
    .contact-info li,
    .location-info li {
        font-size: 0.95em;
    }
    .social-icons a {
        padding: 8px 15px;
        font-size: 0.9em;
    }
    .bottom-banner img {
        max-height: 80px;
    }
    .qr-code-section {
        margin: 20px auto;
        padding: 15px;
    }
    .jailbreak-buttons {
        gap: 10px;
    }
    .jailbreak-button {
        min-width: 140px;
        padding: 12px 20px;
        font-size: 1em;
    }
    .large-button {
        min-width: 200px;
        font-size: 1em;
    }
    .status-bar #date,
    .status-bar #clock {
        font-size: 1.2em;
    }
    .status-bar h1 {
        font-size: 1.8em;
    }
    .testing-label h1 {
        font-size: 2.5em;
    }

    /* === START: NEW MOBILE STYLES (FINAL) === */
    .product-grid, .service-grid {
        grid-template-columns: repeat(2, 1fr); /* Two items per line */
        gap: 10px; /* Even tighter gap for mobile */
    }
    .product-image {
        height: 150px; /* Adjusted image height for mobile */
    }
    
    #product-grid .product-name {
        font-size: 1.2rem !important; /* <-- REDUCED FONT SIZE FOR MOBILE */
        min-height: calc(1.2rem * 1.1 * 2) !important; /* <-- UPDATED MIN-HEIGHT FOR MOBILE */
    }
    
    .product-description {
        font-size: 0.65rem;
    }
    .add-to-cart-btn {
        font-size: 0.59rem;
    }
    /* === END: NEW MOBILE STYLES (FINAL) === */

    .service-card {
        padding: 15px;
    }
    .service-card-title {
        font-size: 1rem;
    }
    .service-card-text {
        font-size: 0.5rem;
    }

    /* FIX: Homepage Hub Grid on Mobile (2 items per line) */
    .featured-products-grid, .services-hub-grid, .contact-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}
