/*
Theme Name: JayJayComplex
Theme URI: https://jayjaycomplex.com
Author: JayJayComplex Team
Author URI: https://jayjaycomplex.com
Description: Professional WordPress theme for JayJayComplex printing business in Douala, Cameroon. Features WooCommerce integration, mobile money payment support, and optimized for the Cameroon market.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jayjaycomplex
Tags: e-commerce, printing, business, responsive, woocommerce, cameroon
*/

/* ========================================
   TABLE OF CONTENTS
   ========================================
   1. CSS Variables & Reset
   2. Base Styles
   3. Header & Navigation
   4. Hero Section
   5. Services Section
   6. Products Section
   7. About Section
   8. Contact Section
   9. Footer
   10. WooCommerce Styles
   11. Responsive Design
   12. Utility Classes
   ======================================== */

/* ========================================
   1. CSS VARIABLES & RESET (v16 App Design)
   ======================================== */
:root {
    /* Core App Colors */
    --jj-dark: #0B0B10;
    --jj-violet: #6E2B88;
    --jj-lime: #C8FF2E;
    --jj-text: #F6F6F6;
    --jj-text-secondary: #B8B8C2;

    /* Mapped Theme Colors */
    --primary-color: var(--jj-lime);
    /* Was Blue/Gold */
    --primary-dark: #b3e629;
    --secondary-color: var(--jj-violet);
    /* Was Orange */
    --secondary-dark: #5a2370;
    --accent-color: var(--jj-lime);
    /* Was Green */

    --dark-bg: var(--jj-dark);
    --gold-color: var(--jj-lime);
    /* Backward compatibility */

    --text-dark: #111827;
    --text-light: var(--jj-text-secondary);

    --bg-light: #16161e;
    /* Slightly lighter dark for cards */
    --bg-white: var(--jj-dark);
    /* Inverting white to dark for main bg */

    --border-color: rgba(255, 255, 255, 0.1);

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);

    --radius-sm: 0.25rem;
    --radius-md: 0.25rem;
    --radius-lg: 0.25rem;
    /* Shallower radius like the app */
    --radius-xl: 0.5rem;

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s ease;

    --container-width: 1200px;
}


/* Smooth Scrolling & Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease-out;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.stagger-delay-1 {
    transition-delay: 0.1s;
}

.stagger-delay-2 {
    transition-delay: 0.2s;
}

.stagger-delay-3 {
    transition-delay: 0.3s;
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--jj-text);
    background-color: var(--jj-dark);
    margin: 0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--jj-text);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

ul,
ol {
    list-style: none;
}

/* ========================================
   2. BASE STYLES
   ======================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-padding {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-blue {
    background: var(--primary-color);
    color: white;
}

.btn-blue:hover {
    background: var(--primary-dark);
}

/* ========================================
   3. HEADER & NAVIGATION
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 0;
    /* Increased padding for better look */
    background: transparent;
    /* Explicitly transparent */
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
    /* Slightly larger scrolled padding */
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img {
    height: 50px;
    width: auto;
}

.site-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-left: 0.5rem;
}

.site-header.scrolled .site-logo .logo-text {
    color: var(--text-dark);
}

.main-navigation {
    display: none;
}

.main-navigation ul {
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    color: white;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.site-header.scrolled .main-navigation a {
    color: var(--text-dark);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.main-navigation a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-icon {
    position: relative;
    color: white;
    font-size: 1.25rem;
}

.site-header.scrolled .cart-icon {
    color: var(--text-dark);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Google Translate Widget */
#google_translate_element {
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;
}

.goog-te-gadget-simple {
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    line-height: 20px !important;
    display: inline-block;
    cursor: pointer;
    zoom: 1;
}

.goog-te-gadget-simple .goog-te-menu-value {
    color: #fff !important;
}

.goog-te-gadget-simple .goog-te-menu-value span {
    color: #fff !important;
    border-left: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.goog-te-gadget-simple .goog-te-menu-value span:first-child {
    border-left: none !important;
}

.goog-te-gadget-icon {
    display: none !important;
}

/* Hide Google Toolbar */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

/* Dark mode adjustments for translate */
.dark-mode .goog-te-gadget-simple {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: var(--transition);
}

.site-header.scrolled .mobile-menu-toggle span {
    background: var(--text-dark);
}

/* ========================================
   4. HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.92) 0%, rgba(249, 115, 22, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 8rem 1rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: #fed7aa;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* ========================================
   5. SERVICES SECTION
   ======================================== */
.services-section {
    background: var(--bg-light);
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.service-icon.blue {
    background: #dbeafe;
    color: var(--primary-color);
}

.service-icon.orange {
    background: #ffedd5;
    color: var(--secondary-color);
}

.service-icon.green {
    background: #d1fae5;
    color: var(--accent-color);
}

.service-icon.purple {
    background: #f3e8ff;
    color: #9333ea;
}

.service-icon.pink {
    background: #fce7f3;
    color: #db2777;
}

.service-icon.teal {
    background: #ccfbf1;
    color: #0d9488;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-features {
    font-size: 0.875rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.service-features i {
    color: var(--accent-color);
}

/* ========================================
   6. PRODUCTS SECTION
   ======================================== */
.products-section {
    background: white;
}

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

.product-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-xl);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-content p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.product-features {
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.product-features i {
    color: var(--accent-color);
    font-size: 0.625rem;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
}

.btn-outline:hover {
    background: var(--bg-light);
}

/* ========================================
   7. ABOUT SECTION
   ======================================== */
.about-section {
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-content h2 span {
    color: var(--primary-color);
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-feature i {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.about-feature h4 {
    font-weight: 700;
    color: var(--text-dark);
}

.about-feature p {
    font-size: 0.875rem;
    margin: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
}

.rating-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.rating-text .rating-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.rating-text .rating-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ========================================
   8. WHY CHOOSE US SECTION
   ======================================== */
.why-us-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
}

.why-us-section .section-title h2,
.why-us-section .section-title p {
    color: white;
}

.why-us-section .section-title p {
    opacity: 0.8;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.why-us-item {
    text-align: center;
    padding: 2rem;
}

.why-us-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #fed7aa;
}

.why-us-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.why-us-item p {
    opacity: 0.8;
}

/* ========================================
   9. CONTACT SECTION
   ======================================== */
.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-info>p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-icon.blue {
    background: #dbeafe;
    color: var(--primary-color);
}

.contact-icon.orange {
    background: #ffedd5;
    color: var(--secondary-color);
}

.contact-icon.green {
    background: #d1fae5;
    color: var(--accent-color);
}

.contact-item h4 {
    font-weight: 700;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.payment-methods {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
}

.payment-methods h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.payment-badge {
    background: white;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--text-light);
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

/* =========================================
   INNER PAGE DESIGN (v12)
   ========================================= */

/* Generic Content Typography */
.entry-content {
    line-height: 1.8;
    color: #444;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: var(--dark-bg);
    margin-top: 40px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.entry-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold-color);
}

.entry-content p {
    margin-bottom: 25px;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.entry-content li {
    margin-bottom: 10px;
}

/* Page Hero (for Pages with Featured Images) */
.page-hero {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    margin-top: -30px;
    /* Pull up under header if needed */
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

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

/* Standard Page Title (No Hero) */
.entry-header h1.entry-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-bg);
    position: relative;
    padding-bottom: 20px;
}

.entry-header h1.entry-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold-color);
}

/* Sidebar Styling */
.widget {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.widget-title {
    font-size: 1.2rem;
    color: var(--dark-bg);
    border-bottom: 2px solid var(--gold-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

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

.widget ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.widget ul li a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.widget ul li a:hover {
    color: var(--gold-color);
    padding-left: 5px;
}

/* WooCommerce Enhancements */
.woocommerce-main {
    padding: 60px 0;
}

/* Buttons */
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
    background: var(--gold-color) !important;
    color: #000 !important;
    border-radius: 5px !important;
    padding: 12px 24px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover {
    background: #cfa830 !important;
    transform: translateY(-2px);
}

/* Notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border-top: 3px solid var(--gold-color) !important;
    background-color: #fcfcfc !important;
    color: #333 !important;
    padding: 15px 15px 15px 50px !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05) !important;
}

.woocommerce-message::before,
.woocommerce-info::before {
    color: var(--gold-color) !important;
}

/* Product Loop Grid */
ul.products li.product {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    padding-bottom: 20px;
}

ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

ul.products li.product .woocommerce-loop-product__title {
    padding: 15px 15px 5px;
    font-size: 1.1rem;
    color: var(--dark-bg);
}

ul.products li.product .price {
    padding: 0 15px;
    color: var(--gold-color);
    font-weight: 700;
    font-size: 1.1rem;
}

ul.products li.product .button {
    margin: 10px 15px !important;
    width: calc(100% - 30px) !important;
    text-align: center !important;
}

/* Single Product */
.product_title.entry-title {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.price {
    font-size: 1.5rem;
    color: var(--gold-color) !important;
    font-weight: 700;
}

.woocommerce-product-details__short-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #666;
}

/* Tables (Cart, Checkout) */
.woocommerce table.shop_table {
    border: none !important;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.woocommerce table.shop_table th {
    background: var(--dark-bg);
    color: #fff;
    padding: 15px !important;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.woocommerce table.shop_table td {
    padding: 20px !important;
    border-bottom: 1px solid #eee !important;
}

/* Pagination */
.woocommerce-pagination .page-numbers {
    border: none !important;
}

.woocommerce-pagination .page-numbers li span.current {
    background: var(--gold-color) !important;
    color: #000 !important;
}

.woocommerce-pagination .page-numbers li a {
    color: var(--dark-bg) !important;
}

.woocommerce-pagination .page-numbers li a:hover {
    background: #eee !important;
    color: #000 !important;
}

/* ========================================
   10. FOOTER
   ======================================== */
.site-footer {
    background: #111827;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary-color);
    color: white;
}

.footer-links h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* ========================================
   11. WOOCOMMERCE STYLES
   ======================================== */
.woocommerce .products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.woocommerce .product {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.woocommerce .product:hover {
    box-shadow: var(--shadow-xl);
}

.woocommerce .product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.woocommerce .product .woocommerce-loop-product__title {
    padding: 1rem 1.5rem 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.woocommerce .product .price {
    padding: 0 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.woocommerce .product .button {
    margin: 1rem 1.5rem 1.5rem;
    width: calc(100% - 3rem);
    text-align: center;
    background: var(--secondary-color);
    color: white;
    padding: 0.75rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
}

.woocommerce .product .button:hover {
    background: var(--secondary-dark);
}

.woocommerce-cart table.cart {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-cart table.cart th,
.woocommerce-cart table.cart td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

.woocommerce-cart .cart-collaterals {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-top: 2rem;
}

.woocommerce-checkout .checkout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.woocommerce-checkout .woocommerce-checkout-review-order {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

/* ========================================
   12. RESPONSIVE DESIGN
   ======================================== */
@media (min-width: 640px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .main-navigation {
        display: block;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .woocommerce-checkout .checkout {
        grid-template-columns: 2fr 1fr;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* ========================================
   13. UTILITY CLASSES
   ======================================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.hidden {
    display: none;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.p-4 {
    padding: 1rem;
}

.p-8 {
    padding: 2rem;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    display: none;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 1rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* Notifications */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
}

.woocommerce-message {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid var(--accent-color);
}

.woocommerce-info {
    background: #dbeafe;
    color: #1e40af;
    border-left: 4px solid var(--primary-color);
}

.woocommerce-error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

/* =========================================
   SINGLE PRODUCT DESIGN (v14)
   ========================================= */

/* Layout: 2 Columns on Desktop */
@media (min-width: 768px) {

    .woocommerce #content div.product,
    .woocommerce div.product,
    .woocommerce-page #content div.product,
    .woocommerce-page div.product {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: start;
    }

    .woocommerce-product-gallery {
        grid-column: 1;
        width: 100% !important;
        /* Override inline styles */
        float: none !important;
        margin: 0 !important;
    }

    .entry-summary {
        grid-column: 2;
        width: 100% !important;
        /* Override inline styles */
        float: none !important;
        padding-top: 10px;
    }

    /* Full width for tabs and related products */
    .woocommerce-tabs,
    .related.products,
    .upsells.products {
        grid-column: 1 / -1;
        margin-top: 60px;
    }
}

/* Product Gallery */
.woocommerce-product-gallery {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.woocommerce-product-gallery img {
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.woocommerce-product-gallery:hover img {
    transform: scale(1.02);
}

/* Product Info (Summary) */
.product_title.entry-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 15px;
    line-height: 1.2;
}

.woocommerce-product-details__short-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* Price */
p.price,
span.price {
    font-size: 2rem !important;
    color: var(--gold-color) !important;
    font-weight: 700;
    margin-bottom: 25px !important;
    display: block;
}

/* Add to Cart Area */
.woocommerce div.product form.cart {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.quantity input {
    height: 50px;
    width: 70px;
    font-size: 1.2rem;
    font-weight: 700;
    border: 2px solid #ddd;
    border-radius: 5px;
    text-align: center;
    color: var(--dark-bg);
}

.single_add_to_cart_button {
    height: 50px;
    padding: 0 40px !important;
    font-size: 1.1rem !important;
    background: var(--gold-color) !important;
    color: #000 !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    border-radius: 5px !important;
    transition: all 0.3s ease !important;
    flex-grow: 1;
    /* Make it fill space */
    max-width: 300px;
}

.single_add_to_cart_button:hover {
    background: #cfa830 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Product Meta (SKU, Categories) */
.product_meta {
    font-size: 0.9rem;
    color: #888;
}

.product_meta>span {
    display: block;
    margin-bottom: 5px;
}

.product_meta a {
    color: var(--dark-bg);
    font-weight: 600;
    text-decoration: none;
}

.product_meta a:hover {
    color: var(--gold-color);
}

/* Tabs */
.woocommerce-tabs ul.tabs {
    padding: 0 0 20px !important;
    margin: 0 !important;
    border-bottom: 1px solid #eee !important;
    background: transparent !important;
    overflow: visible !important;
    list-style: none !important;
    display: flex !important;
    gap: 30px;
}

.woocommerce-tabs ul.tabs li {
    border: none !important;
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce-tabs ul.tabs li a {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #888 !important;
    padding: 10px 0 !important;
    position: relative;
    transition: color 0.3s;
}

.woocommerce-tabs ul.tabs li.active a,
.woocommerce-tabs ul.tabs li a:hover {
    color: var(--dark-bg) !important;
}

.woocommerce-tabs ul.tabs li.active a::after {
    content: '';
    position: absolute;
    bottom: -21px;
    /* Align with border */
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-color);
}

.woocommerce-Tabs-panel {
    padding: 40px 0 !important;
}

.woocommerce-Tabs-panel h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

/* Related Products */
.related.products>h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
}

.related.products>h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold-color);
}

/* v15 Verified Scanned - Safe */

/* =========================================
   APP DESIGN COMPONENTS (v16)
   ========================================= */

/* Stickers */
.sticker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.sticker-lime {
    background-color: var(--jj-lime);
    color: var(--jj-dark);
}

.sticker-violet {
    background-color: var(--jj-violet);
    color: #fff;
}

/* Patterns & Effects */
.hatch-pattern {
    background-image: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 11px);
}

.img-violet-grade {
    filter: contrast(1.1) saturate(0.85);
    border-radius: 8px;
}

/* Typography Overrides */
.headline-display {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.92;
    letter-spacing: -0.02em;
}

.headline-section {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}

/* Button Overrides (Lime Theme) */
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.wp-block-button__link,
.woocommerce button.button,
.woocommerce a.button,
.single_add_to_cart_button {
    background-color: transparent !important;
    border: 2px solid var(--jj-lime) !important;
    color: var(--jj-lime) !important;
    font-family: var(--font-heading) !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    border-radius: 0 !important;
    /* Sharp corners */
    transition: all 0.3s ease !important;
    padding: 12px 24px !important;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.button:hover,
.wp-block-button__link:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.single_add_to_cart_button:hover {
    background-color: var(--jj-lime) !important;
    color: var(--jj-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(200, 255, 46, 0.3) !important;
}

/* Filled Button Variant */
.btn-filled {
    background-color: var(--jj-lime) !important;
    color: var(--jj-dark) !important;
    border: none !important;
}

.btn-filled:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(200, 255, 46, 0.4);
}

/* Card Service */
.card-service {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    background: rgba(110, 43, 136, 0.1);
    /* Violet Tint */
}

.card-service:hover {
    border-color: rgba(200, 255, 46, 0.5);
    /* Lime Border */
    transform: translateY(-5px);
}

/* WooCommerce Overrides for Dark Theme */
.woocommerce ul.products li.product {
    background-color: #16161e !important;
    /* Slightly lighter dark */
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: var(--jj-text) !important;
}

.woocommerce ul.products li.product .price {
    color: var(--jj-lime) !important;
}

.woocommerce-product-gallery {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.product_title.entry-title {
    color: var(--jj-text) !important;
}

/* v17 App Design - Verified Safe */