/*
Theme Name: MJ IT Solutions - Ultimate Wholesale Pro
Theme URI: https://mjitsolutionsllc.com
Author: Manus AI
Author URI: https://manus.im
Description: The ultimate professional WordPress theme for Amazon wholesale businesses. Features full responsiveness, interactive product pages, and high-fidelity Amazon-themed animations.
Version: 2.7.0
License: GNU General Public License v2 or later
Text Domain: mjitsolutionsllc-theme
*/

:root {
    --amazon-orange: #FF9900;
    --amazon-orange-hover: #e68a00;
    --amazon-black: #131A22;
    --amazon-dark-blue: #232F3E;
    --amazon-navy: #37475A;
    --amazon-white-bg: #ffffff;
    --amazon-white: #ffffff;
    --text-color: #333333;
    --transition-fast: 0.2s;
    --transition-med: 0.4s;
    --transition-slow: 0.8s;
    --container-width: 1240px;
    --border-radius: 16px;
    --box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    --premium-gradient: linear-gradient(135deg, #232F3E 0%, #131A22 100%);
    --orange-gradient: linear-gradient(135deg, #FF9900 0%, #FFB84D 100%);
}

/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--amazon-dark-blue);
}

a {
    color: var(--amazon-orange);
    text-decoration: none;
    transition: all var(--transition-fast) ease;
}

a:hover {
    color: var(--amazon-orange-hover);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

/* --- Creative Professional Loading Animation --- */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--amazon-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

#loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
}

.loader-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: var(--amazon-orange);
    border-radius: 50%;
    animation: loader-spin 2s linear infinite;
}

.loader-circle:nth-child(2) {
    width: 80%;
    height: 80%;
    border-top-color: #fff;
    animation-duration: 1.5s;
    animation-direction: reverse;
}

.loader-circle:nth-child(3) {
    width: 60%;
    height: 60%;
    border-top-color: var(--amazon-orange);
    animation-duration: 1s;
}

.loader-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: #fff;
    z-index: 1;
}

.logo-m { color: var(--amazon-orange); }

.loader-text-glitch {
    margin-top: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: 5px;
    position: relative;
}

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

.loader-text-glitch::before,
.loader-text-glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--amazon-black);
}

.loader-text-glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.loader-text-glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9, 2px 2px #ff00c1;
    animation: glitch-anim2 1s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(31px, 9999px, 94px, 0); }
    20% { clip: rect(62px, 9999px, 42px, 0); }
    40% { clip: rect(16px, 9999px, 78px, 0); }
    60% { clip: rect(1px, 9999px, 13px, 0); }
    80% { clip: rect(53px, 9999px, 86px, 0); }
    100% { clip: rect(91px, 9999px, 98px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    20% { clip: rect(30px, 9999px, 20px, 0); }
    40% { clip: rect(80px, 9999px, 60px, 0); }
    60% { clip: rect(10px, 9999px, 40px, 0); }
    80% { clip: rect(50px, 9999px, 70px, 0); }
    100% { clip: rect(90px, 9999px, 30px, 0); }
}

/* --- Pro Mouse Cursor --- */
#custom-cursor {
    width: 12px;
    height: 12px;
    background: var(--amazon-orange);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

#cursor-follower {
    width: 45px;
    height: 45px;
    border: 1.5px solid var(--amazon-orange);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1), width 0.3s, height 0.3s, background 0.3s;
}

.cursor-active #custom-cursor {
    transform: translate(-50%, -50%) scale(0.5);
}

.cursor-active #cursor-follower {
    width: 80px;
    height: 80px;
    background: rgba(255, 153, 0, 0.15);
    border-color: transparent;
}

/* --- Mobile Menu Toggle --- */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Header */
.site-header {
    background: var(--premium-gradient);
    padding: 20px 0;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

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

.site-title {
    margin: 0;
}

.site-title a {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    transition: all 0.3s ease;
}

.site-title a:hover {
    transform: scale(1.05);
}

.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    margin-left: 35px;
}

.main-navigation a {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--amazon-orange);
    transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.main-navigation a:hover::after,
.main-navigation li.current-menu-item a::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 200px 0;
    background: var(--amazon-dark-blue);
    color: #fff;
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    animation: slideInUp 0.8s ease-out;
}

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

.hero-section h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #fff;
    text-transform: uppercase;
    animation: fadeInDown 1s ease-out;
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 45px;
    color: rgba(255,255,255,0.9);
    animation: fadeInUp 1s ease-out 0.2s both;
}

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

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

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-gradient);
    color: #fff;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: 10px 5px;
    position: relative;
    overflow: hidden;
}

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

.button:hover::before {
    left: 100%;
}

.button:hover {
    background-color: var(--amazon-orange-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.5);
    color: #fff;
}

.button:active {
    transform: translateY(-2px);
}

.button.secondary {
    background-color: var(--amazon-navy);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.button.secondary:hover {
    background-color: var(--amazon-dark-blue);
}

/* Sections */
section {
    padding: 140px 0;
}

.section-title {
    font-size: 3.2rem;
    margin-bottom: 80px;
    text-align: center;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 6px;
    background: var(--amazon-orange);
    margin: 25px auto 0;
    border-radius: 3px;
    animation: scaleX 0.8s ease-out 0.3s both;
}

@keyframes scaleX {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

/* Grid & Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 50px;
}

.card {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--amazon-orange);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border-color: var(--amazon-orange);
}

.card-img-wrapper {
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover img {
    transform: scale(1.15);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--amazon-dark-blue);
}

.card-description {
    color: var(--amazon-dark-blue);
    font-size: 0.95rem;
    line-height: 1.8;
    flex-grow: 1;
}

/* Product Specific */
.product-card {
    padding: 25px;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 2px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 153, 0, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

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

.product-card:hover {
    border-color: var(--amazon-orange);
    box-shadow: 0 20px 50px rgba(255, 153, 0, 0.15);
    transform: translateY(-15px);
}

.product-card > * {
    position: relative;
    z-index: 1;
}

.product-category {
    font-size: 0.75rem;
    color: var(--amazon-orange);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
    background: rgba(255, 153, 0, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    width: fit-content;
}

.product-name {
    font-size: 1.25rem;
    color: var(--amazon-dark-blue);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.4;
    min-height: 2.8em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-name a {
    color: var(--amazon-dark-blue);
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: var(--amazon-orange);
}

.product-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.6;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 2rem;
    color: var(--amazon-orange);
    font-weight: 800;
    margin: 15px 0 10px 0;
    letter-spacing: -1px;
}

.product-stock {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-stock .in-stock {
    color: #27ae60;
    background: rgba(39, 174, 96, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
}

.product-stock .out-of-stock {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
}

.add-to-cart,
.button.product_type_simple,
.button.product_type_variable {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    background: var(--amazon-orange);
    border: 2px solid var(--amazon-orange);
    border-radius: 8px;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-top: auto;
}

.add-to-cart:hover,
.button.product_type_simple:hover,
.button.product_type_variable:hover {
    background: var(--amazon-orange-hover);
    border-color: var(--amazon-orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.3);
}

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

.add-to-cart:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* WooCommerce Product Grid Adjustments */
.cart-menu-item { margin-left: 20px; position: relative; }
.cart-contents { display: flex; align-items: center; background: var(--amazon-orange); color: #fff !important; padding: 5px 12px; border-radius: 20px; text-decoration: none; transition: all 0.3s ease; }
.cart-contents:hover { background: var(--amazon-orange-hover); transform: translateY(-2px); }
.cart-icon { font-size: 1.2rem; margin-right: 5px; }
.cart-count { background: #fff; color: var(--amazon-orange); font-weight: 800; font-size: 0.75rem; min-width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; border-radius: 50%; padding: 2px; }

.single_add_to_cart_button.loading { opacity: 0.7; cursor: wait; }
.single_add_to_cart_button.added { background: #2ecc71 !important; border-color: #27ae60 !important; }

.woocommerce .quantity { display: inline-block; margin-right: 10px; }
.woocommerce .quantity input { width: 60px; padding: 8px; border: 1px solid #ddd; border-radius: 4px; }
.shop-actions .woocommerce { display: inline-block; }

.woocommerce ul.products li.product,
.woocommerce .product-category,
.woocommerce .product-name {
    margin: 0;
}

/* Product Image Wrapper Enhancements */
.product-card .card-img-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
    background: #f5f5f5;
}

.product-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .card-img-wrapper img {
    transform: scale(1.12) rotate(1deg);
}

/* Footer */
.site-footer {
    background-color: var(--amazon-black);
    color: rgba(255,255,255,0.8);
    padding: 100px 0 50px;
    text-align: center;
}

.footer-logo {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out;
}

.footer-nav {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: rgba(255,255,255,0.8);
    margin: 0 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: var(--amazon-orange);
    transform: translateY(-3px);
}

.site-info {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-column-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.two-column-image img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.two-column:hover .two-column-image img {
    transform: scale(1.05);
}

.two-column-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.two-column-content p {
    font-size: 1.1rem;
    color: var(--amazon-dark-blue);
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Services List */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-item:nth-child(even) {
    direction: rtl;
}

.service-item:nth-child(even) > * {
    direction: ltr;
}

.service-content h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--amazon-dark-blue);
}

.service-content ul {
    list-style: none;
    margin: 30px 0;
}

.service-content li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--amazon-dark-blue);
    font-size: 1rem;
    line-height: 1.6;
}

.service-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--amazon-orange);
    font-weight: 800;
    font-size: 1.2rem;
}

.service-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.service-image img {
    width: 100%;
    height: auto;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 80px 0;
}

.stat-card {
    text-align: center;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.stat-card:hover {
    background: var(--amazon-orange);
    color: #fff;
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--amazon-orange);
    margin-bottom: 10px;
}

.stat-card:hover .stat-number {
    color: #fff;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Process Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--amazon-orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 auto 30px;
    transition: all 0.4s ease;
}

.process-step:hover .step-number {
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.4);
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.process-step p {
    color: var(--amazon-dark-blue);
    line-height: 1.8;
}

/* Testimonials */
.testimonial {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--amazon-orange);
    transition: all 0.4s ease;
}

.testimonial:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.testimonial-text {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: var(--amazon-dark-blue);
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--amazon-dark-blue);
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--amazon-orange);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--amazon-dark-blue);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--amazon-orange);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--amazon-orange);
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.1);
}

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

/* Shop styles moved to shop-styles.css */

/* Wholesale CTA Section */
.wholesale-cta {
    background: linear-gradient(135deg, var(--amazon-dark-blue) 0%, var(--amazon-navy) 100%);
    color: #fff;
    padding: 100px 0;
}

.wholesale-cta .two-column-content h2 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.wholesale-cta .two-column-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.wholesale-benefits {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.wholesale-benefits li {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.wholesale-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--amazon-orange);
    font-weight: 800;
    font-size: 1.2rem;
}

.wholesale-cta .button {
    margin-top: 20px;
    background: var(--amazon-orange);
    border-color: var(--amazon-orange);
}

.wholesale-cta .button:hover {
    background: var(--amazon-orange-hover);
    border-color: var(--amazon-orange-hover);
}

.wholesale-cta .two-column-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .hero-section h1 { font-size: 4rem; }
    .section-title { font-size: 2.8rem; }
    .two-column { gap: 40px; }
    .service-item { gap: 40px; }
    .grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 35px; }
    .product-card { padding: 20px; }
    .product-card .card-img-wrapper { height: 240px; }
    .wholesale-cta .two-column-content h2 { font-size: 2.2rem; }
    .wholesale-cta { padding: 80px 0; }
}

@media (max-width: 768px) {
    section { padding: 100px 0; }
    .hero-section { padding: 140px 0; }
    .hero-section h1 { font-size: 3rem; }
    .hero-section p { font-size: 1.2rem; }
    .grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 25px; }
    .two-column { grid-template-columns: 1fr; }
    .service-item { grid-template-columns: 1fr; }
    .service-item:nth-child(even) { direction: ltr; }
    
    .main-navigation {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--amazon-dark-blue);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

    .main-navigation.active {
        left: 0;
    }

    .main-navigation ul {
        flex-direction: column;
    }

    .main-navigation li {
        margin: 15px 0;
    }

    .menu-toggle {
        display: block;
    }

    #custom-cursor, #cursor-follower { display: none; }
    .site-header .container { justify-content: space-between; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: 1fr; }
    .product-card { padding: 18px; }
    .product-card .card-img-wrapper { height: 220px; }
    .product-name { font-size: 1.1rem; }
    .product-price { font-size: 1.6rem; }
    .product-footer { flex-direction: column; align-items: flex-start; }
    .wholesale-cta .two-column-content h2 { font-size: 1.8rem; }
    .wholesale-cta { padding: 60px 0; }
}

@media (max-width: 480px) {
    .hero-section h1 { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .button { padding: 16px 32px; width: 100%; margin-bottom: 15px; }
    .container { padding: 0 15px; }
    .card { padding: 30px 20px; }
    .site-title a { font-size: 1.4rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .two-column-content h2 { font-size: 1.8rem; }
    .service-content h3 { font-size: 1.6rem; }
    .grid { grid-template-columns: 1fr; gap: 20px; }
    .product-card { padding: 15px; }
    .product-card .card-img-wrapper { height: 200px; margin-bottom: 15px; }
    .product-name { font-size: 1rem; }
    .product-price { font-size: 1.5rem; }
    .add-to-cart { padding: 12px 16px; font-size: 0.9rem; }
    .product-footer { flex-direction: column; }
    .no-products-found { padding: 50px 20px; }
    .no-products-found h3 { font-size: 1.4rem; }
    .wholesale-benefits li { font-size: 0.95rem; }
}

/* All shop and archive styles moved to shop-styles.css for better maintenance and zero WooCommerce conflicts. */
