/*
Theme Name: TechSuspended
Theme URI: https://techsuspended.com
Author: TechSuspended Team
Author URI: https://techsuspended.com
Description: A premium WordPress theme for IT companies with full WooCommerce integration, service catalog, and elegant modern design. Features include a custom service builder, add-to-cart functionality, custom amount input, and a complete online shop experience.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: techsuspended
Tags: e-commerce, custom-menu, custom-logo, featured-images, full-width-template, theme-options, translation-ready, blog, portfolio, one-column, two-columns

TechSuspended - IT Company & Services WordPress Theme
*/

/* ==========================================================================
   CSS CUSTOM PROPERTIES / DESIGN TOKENS
   ========================================================================== */

:root {
    /* Primary Colors */
    --ts-primary: #6C63FF;
    --ts-primary-light: #8B85FF;
    --ts-primary-dark: #5A52E0;
    --ts-primary-rgb: 108, 99, 255;

    /* Secondary Colors */
    --ts-secondary: #00D4AA;
    --ts-secondary-light: #33DDBB;
    --ts-secondary-dark: #00B894;

    /* Accent */
    --ts-accent: #FF6B6B;
    --ts-accent-light: #FF8E8E;
    --ts-accent-dark: #E05555;

    /* Neutrals */
    --ts-dark: #0F0E2E;
    --ts-dark-alt: #1A1940;
    --ts-gray-900: #1E1E3F;
    --ts-gray-800: #2D2B55;
    --ts-gray-700: #3D3B6E;
    --ts-gray-600: #5A5888;
    --ts-gray-500: #7E7CA8;
    --ts-gray-400: #A5A3C8;
    --ts-gray-300: #C8C7E0;
    --ts-gray-200: #E4E3F2;
    --ts-gray-100: #F2F1FA;
    --ts-gray-50: #F8F7FF;
    --ts-white: #FFFFFF;

    /* Gradients */
    --ts-gradient-primary: linear-gradient(135deg, #6C63FF 0%, #00D4AA 100%);
    --ts-gradient-dark: linear-gradient(135deg, #0F0E2E 0%, #1A1940 100%);
    --ts-gradient-hero: linear-gradient(135deg, #0F0E2E 0%, #2D2B55 50%, #1A1940 100%);
    --ts-gradient-card: linear-gradient(145deg, rgba(108, 99, 255, 0.05) 0%, rgba(0, 212, 170, 0.05) 100%);
    --ts-gradient-accent: linear-gradient(135deg, #FF6B6B 0%, #6C63FF 100%);

    /* Typography */
    --ts-font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ts-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ts-font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Font Sizes (fluid) */
    --ts-text-xs: clamp(0.694rem, 0.66rem + 0.17vw, 0.8rem);
    --ts-text-sm: clamp(0.833rem, 0.78rem + 0.27vw, 1rem);
    --ts-text-base: clamp(1rem, 0.93rem + 0.36vw, 1.2rem);
    --ts-text-lg: clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
    --ts-text-xl: clamp(1.44rem, 1.29rem + 0.75vw, 1.875rem);
    --ts-text-2xl: clamp(1.728rem, 1.5rem + 1.14vw, 2.344rem);
    --ts-text-3xl: clamp(2.074rem, 1.74rem + 1.67vw, 2.93rem);
    --ts-text-4xl: clamp(2.488rem, 2.01rem + 2.39vw, 3.66rem);
    --ts-text-5xl: clamp(2.986rem, 2.32rem + 3.33vw, 4.575rem);

    /* Spacing */
    --ts-space-xs: 0.25rem;
    --ts-space-sm: 0.5rem;
    --ts-space-md: 1rem;
    --ts-space-lg: 1.5rem;
    --ts-space-xl: 2rem;
    --ts-space-2xl: 3rem;
    --ts-space-3xl: 4rem;
    --ts-space-4xl: 6rem;
    --ts-space-5xl: 8rem;

    /* Border Radius */
    --ts-radius-sm: 6px;
    --ts-radius-md: 12px;
    --ts-radius-lg: 20px;
    --ts-radius-xl: 30px;
    --ts-radius-full: 9999px;

    /* Shadows */
    --ts-shadow-sm: 0 2px 8px rgba(15, 14, 46, 0.06);
    --ts-shadow-md: 0 4px 20px rgba(15, 14, 46, 0.08);
    --ts-shadow-lg: 0 8px 40px rgba(15, 14, 46, 0.12);
    --ts-shadow-xl: 0 16px 60px rgba(15, 14, 46, 0.16);
    --ts-shadow-glow: 0 0 40px rgba(108, 99, 255, 0.3);
    --ts-shadow-glow-green: 0 0 40px rgba(0, 212, 170, 0.3);

    /* Transitions */
    --ts-transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --ts-transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --ts-transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --ts-transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Layout */
    --ts-container-max: 1320px;
    --ts-container-narrow: 900px;
    --ts-header-height: 80px;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--ts-font-body);
    font-size: var(--ts-text-base);
    line-height: 1.7;
    color: var(--ts-gray-800);
    background-color: var(--ts-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: var(--ts-primary);
    transition: color var(--ts-transition-fast);
}

a:hover {
    color: var(--ts-primary-dark);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ts-font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--ts-dark);
}

h1 { font-size: var(--ts-text-5xl); }
h2 { font-size: var(--ts-text-4xl); }
h3 { font-size: var(--ts-text-3xl); }
h4 { font-size: var(--ts-text-2xl); }
h5 { font-size: var(--ts-text-xl); }
h6 { font-size: var(--ts-text-lg); }

p {
    margin-bottom: var(--ts-space-md);
    color: var(--ts-gray-600);
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.ts-container {
    width: 100%;
    max-width: var(--ts-container-max);
    margin: 0 auto;
    padding: 0 var(--ts-space-xl);
}

.ts-container--narrow {
    max-width: var(--ts-container-narrow);
}

.ts-section {
    padding: var(--ts-space-5xl) 0;
}

.ts-section--dark {
    background: var(--ts-gradient-dark);
    color: var(--ts-white);
}

.ts-section--dark h2,
.ts-section--dark h3,
.ts-section--dark h4 {
    color: var(--ts-white);
}

.ts-section--dark p {
    color: var(--ts-gray-400);
}

.ts-section--gray {
    background-color: var(--ts-gray-50);
}

.ts-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--ts-space-4xl);
}

.ts-section-header .ts-label {
    display: inline-block;
    font-size: var(--ts-text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--ts-primary);
    margin-bottom: var(--ts-space-md);
    position: relative;
    padding: 0 var(--ts-space-lg);
}

.ts-section-header .ts-label::before,
.ts-section-header .ts-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--ts-gradient-primary);
}

.ts-section-header .ts-label::before { left: -20px; }
.ts-section-header .ts-label::after { right: -20px; }

.ts-section-header h2 {
    margin-bottom: var(--ts-space-md);
}

.ts-section-header p {
    font-size: var(--ts-text-lg);
}

.ts-grid {
    display: grid;
    gap: var(--ts-space-2xl);
}

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

.ts-flex {
    display: flex;
    align-items: center;
}

.ts-text-center { text-align: center; }
.ts-text-gradient {
    background: var(--ts-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.ts-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--ts-space-sm);
    padding: 14px 32px;
    font-family: var(--ts-font-body);
    font-size: var(--ts-text-sm);
    font-weight: 600;
    border-radius: var(--ts-radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--ts-transition-base);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.ts-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity var(--ts-transition-base);
}

.ts-btn:hover::before {
    opacity: 1;
}

.ts-btn--primary {
    background: var(--ts-gradient-primary);
    color: var(--ts-white);
    box-shadow: 0 4px 20px rgba(var(--ts-primary-rgb), 0.4);
}

.ts-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--ts-primary-rgb), 0.5);
    color: var(--ts-white);
}

.ts-btn--secondary {
    background: transparent;
    color: var(--ts-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.ts-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--ts-white);
}

.ts-btn--outline {
    background: transparent;
    color: var(--ts-primary);
    border-color: var(--ts-primary);
}

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

.ts-btn--dark {
    background: var(--ts-dark);
    color: var(--ts-white);
}

.ts-btn--dark:hover {
    background: var(--ts-gray-900);
    transform: translateY(-2px);
    color: var(--ts-white);
}

.ts-btn--sm {
    padding: 10px 22px;
    font-size: var(--ts-text-xs);
}

.ts-btn--lg {
    padding: 18px 42px;
    font-size: var(--ts-text-base);
}

.ts-btn--icon {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: var(--ts-radius-full);
}

.ts-btn .ts-btn-arrow {
    transition: transform var(--ts-transition-base);
}

.ts-btn:hover .ts-btn-arrow {
    transform: translateX(4px);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */

.ts-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--ts-header-height);
    display: flex;
    align-items: center;
    transition: all var(--ts-transition-base);
    background: transparent;
}

.ts-header--scrolled {
    background: rgba(15, 14, 46, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    height: 70px;
}

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

.ts-logo {
    display: flex;
    align-items: center;
    gap: var(--ts-space-sm);
    font-size: var(--ts-text-xl);
    font-weight: 800;
    color: var(--ts-white);
    text-decoration: none;
    z-index: 1001;
}

.ts-logo:hover {
    color: var(--ts-white);
}

.ts-logo-icon {
    width: 42px;
    height: 42px;
    background: var(--ts-gradient-primary);
    border-radius: var(--ts-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    color: var(--ts-white);
}

.ts-logo span {
    background: var(--ts-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ts-nav {
    display: flex;
    align-items: center;
    gap: var(--ts-space-xl);
}

.ts-nav-menu {
    display: flex;
    align-items: center;
    gap: var(--ts-space-xs);
}

.ts-nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--ts-text-sm);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--ts-radius-full);
    transition: all var(--ts-transition-fast);
    position: relative;
}

.ts-nav-menu a:hover,
.ts-nav-menu .current-menu-item a,
.ts-nav-menu .current_page_item a {
    color: var(--ts-white);
    background: rgba(255, 255, 255, 0.1);
}

.ts-nav-actions {
    display: flex;
    align-items: center;
    gap: var(--ts-space-md);
}

.ts-cart-toggle {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--ts-radius-full);
    color: var(--ts-white);
    cursor: pointer;
    border: none;
    transition: all var(--ts-transition-fast);
}

.ts-cart-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.ts-cart-toggle svg {
    width: 20px;
    height: 20px;
}

.ts-cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: var(--ts-accent);
    color: var(--ts-white);
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--ts-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Toggle */
.ts-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--ts-radius-md);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 1001;
}

.ts-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ts-white);
    border-radius: 2px;
    transition: all var(--ts-transition-base);
}

.ts-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.ts-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Dropdown menus */
.ts-nav-menu li {
    position: relative;
}

.ts-nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--ts-white);
    border-radius: var(--ts-radius-md);
    box-shadow: var(--ts-shadow-xl);
    padding: var(--ts-space-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--ts-transition-base);
    z-index: 100;
}

.ts-nav-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ts-nav-menu .sub-menu a {
    color: var(--ts-gray-700);
    display: block;
    padding: 10px 16px;
    border-radius: var(--ts-radius-sm);
    font-size: var(--ts-text-sm);
}

.ts-nav-menu .sub-menu a:hover {
    color: var(--ts-primary);
    background: var(--ts-gray-50);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.ts-hero {
    min-height: 100vh;
    background: var(--ts-gradient-hero);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: calc(var(--ts-header-height) + var(--ts-space-4xl)) 0 var(--ts-space-4xl);
}

.ts-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.15) 0%, transparent 70%);
    animation: ts-pulse 8s ease-in-out infinite;
}

.ts-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.1) 0%, transparent 70%);
    animation: ts-pulse 10s ease-in-out infinite reverse;
}

.ts-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(108, 99, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 99, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.ts-hero .ts-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--ts-space-4xl);
    align-items: center;
}

.ts-hero-content {
    max-width: 600px;
}

.ts-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--ts-space-sm);
    background: rgba(108, 99, 255, 0.15);
    border: 1px solid rgba(108, 99, 255, 0.3);
    padding: 8px 20px;
    border-radius: var(--ts-radius-full);
    font-size: var(--ts-text-sm);
    color: var(--ts-primary-light);
    font-weight: 500;
    margin-bottom: var(--ts-space-xl);
    animation: ts-fadeInUp 0.8s ease-out;
}

.ts-hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--ts-secondary);
    border-radius: 50%;
    animation: ts-blink 2s ease-in-out infinite;
}

.ts-hero h1 {
    color: var(--ts-white);
    margin-bottom: var(--ts-space-xl);
    animation: ts-fadeInUp 0.8s ease-out 0.1s both;
}

.ts-hero-description {
    font-size: var(--ts-text-lg);
    color: var(--ts-gray-400);
    margin-bottom: var(--ts-space-2xl);
    line-height: 1.8;
    animation: ts-fadeInUp 0.8s ease-out 0.2s both;
}

.ts-hero-actions {
    display: flex;
    gap: var(--ts-space-md);
    flex-wrap: wrap;
    margin-bottom: var(--ts-space-3xl);
    animation: ts-fadeInUp 0.8s ease-out 0.3s both;
}

.ts-hero-stats {
    display: flex;
    gap: var(--ts-space-3xl);
    animation: ts-fadeInUp 0.8s ease-out 0.4s both;
}

.ts-hero-stat {
    text-align: left;
}

.ts-hero-stat-number {
    font-size: var(--ts-text-3xl);
    font-weight: 800;
    color: var(--ts-white);
    line-height: 1;
    margin-bottom: 4px;
}

.ts-hero-stat-label {
    font-size: var(--ts-text-sm);
    color: var(--ts-gray-500);
    font-weight: 500;
}

/* Hero Visual */
.ts-hero-visual {
    position: relative;
    animation: ts-fadeInUp 1s ease-out 0.3s both;
}

.ts-hero-visual-inner {
    position: relative;
    padding: var(--ts-space-xl);
}

.ts-hero-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--ts-radius-lg);
    padding: var(--ts-space-2xl);
    position: relative;
    overflow: hidden;
}

.ts-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--ts-gradient-primary);
}

.ts-hero-code {
    font-family: var(--ts-font-mono);
    font-size: var(--ts-text-sm);
    line-height: 2;
    color: var(--ts-gray-300);
}

.ts-hero-code .code-keyword {
    color: var(--ts-primary-light);
}

.ts-hero-code .code-string {
    color: var(--ts-secondary);
}

.ts-hero-code .code-function {
    color: var(--ts-accent-light);
}

.ts-hero-code .code-comment {
    color: var(--ts-gray-600);
}

.ts-floating-badge {
    position: absolute;
    background: var(--ts-white);
    border-radius: var(--ts-radius-md);
    padding: 12px 20px;
    box-shadow: var(--ts-shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--ts-space-sm);
    font-size: var(--ts-text-sm);
    font-weight: 600;
    color: var(--ts-dark);
    animation: ts-float 6s ease-in-out infinite;
}

.ts-floating-badge--1 {
    top: 10%;
    right: -10px;
    animation-delay: 0s;
}

.ts-floating-badge--2 {
    bottom: 20%;
    left: -10px;
    animation-delay: 2s;
}

.ts-floating-badge--3 {
    bottom: 5%;
    right: 20%;
    animation-delay: 4s;
}

.ts-floating-badge .badge-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--ts-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.ts-floating-badge .badge-icon--green {
    background: rgba(0, 212, 170, 0.1);
    color: var(--ts-secondary);
}

.ts-floating-badge .badge-icon--purple {
    background: rgba(108, 99, 255, 0.1);
    color: var(--ts-primary);
}

.ts-floating-badge .badge-icon--red {
    background: rgba(255, 107, 107, 0.1);
    color: var(--ts-accent);
}

/* ==========================================================================
   SERVICE CARDS
   ========================================================================== */

.ts-service-card {
    background: var(--ts-white);
    border-radius: var(--ts-radius-lg);
    padding: var(--ts-space-2xl);
    position: relative;
    overflow: hidden;
    transition: all var(--ts-transition-base);
    border: 1px solid var(--ts-gray-200);
    group: true;
}

.ts-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--ts-gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--ts-transition-base);
}

.ts-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ts-shadow-xl);
    border-color: transparent;
}

.ts-service-card:hover::before {
    transform: scaleX(1);
}

.ts-service-card-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--ts-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: var(--ts-space-xl);
    background: var(--ts-gradient-card);
    transition: all var(--ts-transition-base);
}

.ts-service-card:hover .ts-service-card-icon {
    background: var(--ts-gradient-primary);
    color: var(--ts-white);
    transform: scale(1.1);
}

.ts-service-card h3 {
    font-size: var(--ts-text-xl);
    margin-bottom: var(--ts-space-md);
}

.ts-service-card p {
    font-size: var(--ts-text-sm);
    line-height: 1.8;
    margin-bottom: var(--ts-space-lg);
}

.ts-service-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--ts-space-sm);
    font-weight: 600;
    font-size: var(--ts-text-sm);
    color: var(--ts-primary);
}

.ts-service-card-link svg {
    transition: transform var(--ts-transition-base);
}

.ts-service-card:hover .ts-service-card-link svg {
    transform: translateX(4px);
}

/* ==========================================================================
   PRICING / SERVICE CATALOG
   ========================================================================== */

.ts-pricing-card {
    background: var(--ts-white);
    border-radius: var(--ts-radius-lg);
    padding: var(--ts-space-2xl);
    border: 1px solid var(--ts-gray-200);
    transition: all var(--ts-transition-base);
    position: relative;
    overflow: hidden;
}

.ts-pricing-card--featured {
    border-color: var(--ts-primary);
    box-shadow: var(--ts-shadow-glow);
}

.ts-pricing-card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--ts-gradient-primary);
}

.ts-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ts-shadow-xl);
}

.ts-pricing-badge {
    display: inline-flex;
    padding: 4px 14px;
    background: var(--ts-gradient-primary);
    color: var(--ts-white);
    font-size: var(--ts-text-xs);
    font-weight: 600;
    border-radius: var(--ts-radius-full);
    margin-bottom: var(--ts-space-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ts-pricing-card h3 {
    font-size: var(--ts-text-xl);
    margin-bottom: var(--ts-space-sm);
}

.ts-pricing-card .ts-price {
    font-size: var(--ts-text-4xl);
    font-weight: 800;
    color: var(--ts-dark);
    margin-bottom: var(--ts-space-lg);
}

.ts-pricing-card .ts-price span {
    font-size: var(--ts-text-base);
    font-weight: 500;
    color: var(--ts-gray-500);
}

.ts-pricing-features {
    margin-bottom: var(--ts-space-2xl);
}

.ts-pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--ts-space-sm);
    padding: 8px 0;
    font-size: var(--ts-text-sm);
    color: var(--ts-gray-700);
}

.ts-pricing-features li .check-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    background: rgba(0, 212, 170, 0.1);
    color: var(--ts-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Custom Amount Input */
.ts-custom-amount {
    background: var(--ts-gray-50);
    border-radius: var(--ts-radius-md);
    padding: var(--ts-space-xl);
    margin-bottom: var(--ts-space-xl);
    border: 2px solid var(--ts-gray-200);
    transition: border-color var(--ts-transition-fast);
}

.ts-custom-amount:focus-within {
    border-color: var(--ts-primary);
}

.ts-custom-amount label {
    display: block;
    font-size: var(--ts-text-sm);
    font-weight: 600;
    color: var(--ts-dark);
    margin-bottom: var(--ts-space-sm);
}

.ts-amount-input-wrapper {
    display: flex;
    align-items: center;
    gap: var(--ts-space-sm);
}

.ts-amount-input-wrapper .currency-symbol {
    font-size: var(--ts-text-2xl);
    font-weight: 700;
    color: var(--ts-primary);
}

.ts-amount-input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: var(--ts-text-2xl);
    font-weight: 700;
    color: var(--ts-dark);
    font-family: var(--ts-font-heading);
    outline: none;
}

.ts-amount-input::placeholder {
    color: var(--ts-gray-400);
}

.ts-amount-presets {
    display: flex;
    gap: var(--ts-space-sm);
    margin-top: var(--ts-space-md);
    flex-wrap: wrap;
}

.ts-amount-preset {
    padding: 6px 16px;
    border: 1px solid var(--ts-gray-300);
    border-radius: var(--ts-radius-full);
    font-size: var(--ts-text-xs);
    font-weight: 600;
    color: var(--ts-gray-600);
    cursor: pointer;
    transition: all var(--ts-transition-fast);
    background: var(--ts-white);
}

.ts-amount-preset:hover,
.ts-amount-preset.active {
    background: var(--ts-primary);
    color: var(--ts-white);
    border-color: var(--ts-primary);
}

/* ==========================================================================
   SERVICE BUILDER / CART
   ========================================================================== */

.ts-service-builder {
    background: var(--ts-white);
    border-radius: var(--ts-radius-lg);
    overflow: hidden;
    box-shadow: var(--ts-shadow-lg);
    border: 1px solid var(--ts-gray-200);
}

.ts-service-builder-header {
    background: var(--ts-gradient-dark);
    padding: var(--ts-space-2xl);
    color: var(--ts-white);
}

.ts-service-builder-header h3 {
    color: var(--ts-white);
    margin-bottom: var(--ts-space-sm);
}

.ts-service-builder-body {
    padding: var(--ts-space-2xl);
}

.ts-service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--ts-space-lg);
    border: 1px solid var(--ts-gray-200);
    border-radius: var(--ts-radius-md);
    margin-bottom: var(--ts-space-md);
    transition: all var(--ts-transition-fast);
    cursor: pointer;
}

.ts-service-item:hover {
    border-color: var(--ts-primary);
    background: rgba(108, 99, 255, 0.02);
}

.ts-service-item.selected {
    border-color: var(--ts-primary);
    background: rgba(108, 99, 255, 0.05);
    box-shadow: 0 0 0 1px var(--ts-primary);
}

.ts-service-item-info {
    display: flex;
    align-items: center;
    gap: var(--ts-space-md);
}

.ts-service-item-check {
    width: 24px;
    height: 24px;
    border: 2px solid var(--ts-gray-300);
    border-radius: var(--ts-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--ts-transition-fast);
    flex-shrink: 0;
}

.ts-service-item.selected .ts-service-item-check {
    background: var(--ts-primary);
    border-color: var(--ts-primary);
    color: var(--ts-white);
}

.ts-service-item-name {
    font-weight: 600;
    color: var(--ts-dark);
    font-size: var(--ts-text-sm);
}

.ts-service-item-desc {
    font-size: var(--ts-text-xs);
    color: var(--ts-gray-500);
    margin-top: 2px;
}

.ts-service-item-price {
    font-weight: 700;
    color: var(--ts-primary);
    font-size: var(--ts-text-base);
    white-space: nowrap;
}

.ts-service-builder-footer {
    border-top: 1px solid var(--ts-gray-200);
    padding: var(--ts-space-2xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--ts-gray-50);
}

.ts-service-total {
    font-size: var(--ts-text-sm);
    color: var(--ts-gray-600);
}

.ts-service-total-amount {
    font-size: var(--ts-text-2xl);
    font-weight: 800;
    color: var(--ts-dark);
}

/* Add to Cart Button */
.ts-add-to-cart {
    display: inline-flex;
    align-items: center;
    gap: var(--ts-space-sm);
    padding: 14px 32px;
    background: var(--ts-gradient-primary);
    color: var(--ts-white);
    border: none;
    border-radius: var(--ts-radius-full);
    font-weight: 600;
    font-size: var(--ts-text-sm);
    cursor: pointer;
    transition: all var(--ts-transition-base);
    font-family: var(--ts-font-body);
}

.ts-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: var(--ts-shadow-glow);
}

.ts-add-to-cart svg {
    width: 18px;
    height: 18px;
}

.ts-add-to-cart.added {
    background: var(--ts-secondary);
}

/* ==========================================================================
   MINI CART (SLIDE-OUT)
   ========================================================================== */

.ts-mini-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 14, 46, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--ts-transition-base);
}

.ts-mini-cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.ts-mini-cart {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 420px;
    max-width: 100%;
    background: var(--ts-white);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform var(--ts-transition-base);
    display: flex;
    flex-direction: column;
}

.ts-mini-cart.active {
    transform: translateX(0);
}

.ts-mini-cart-header {
    padding: var(--ts-space-xl) var(--ts-space-2xl);
    border-bottom: 1px solid var(--ts-gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ts-mini-cart-header h3 {
    font-size: var(--ts-text-lg);
}

.ts-mini-cart-close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--ts-gray-100);
    border-radius: var(--ts-radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--ts-gray-600);
    transition: all var(--ts-transition-fast);
}

.ts-mini-cart-close:hover {
    background: var(--ts-gray-200);
}

.ts-mini-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: var(--ts-space-xl) var(--ts-space-2xl);
}

.ts-mini-cart-item {
    display: flex;
    gap: var(--ts-space-md);
    padding: var(--ts-space-md) 0;
    border-bottom: 1px solid var(--ts-gray-100);
}

.ts-mini-cart-item-img {
    width: 64px;
    height: 64px;
    border-radius: var(--ts-radius-md);
    background: var(--ts-gray-100);
    flex-shrink: 0;
    overflow: hidden;
}

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

.ts-mini-cart-item-details {
    flex: 1;
}

.ts-mini-cart-item-name {
    font-weight: 600;
    font-size: var(--ts-text-sm);
    color: var(--ts-dark);
    margin-bottom: 4px;
}

.ts-mini-cart-item-price {
    font-weight: 700;
    color: var(--ts-primary);
    font-size: var(--ts-text-sm);
}

.ts-mini-cart-item-qty {
    display: flex;
    align-items: center;
    gap: var(--ts-space-sm);
    margin-top: var(--ts-space-sm);
}

.ts-mini-cart-item-qty button {
    width: 28px;
    height: 28px;
    border: 1px solid var(--ts-gray-300);
    background: var(--ts-white);
    border-radius: var(--ts-radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--ts-gray-600);
    transition: all var(--ts-transition-fast);
}

.ts-mini-cart-item-qty button:hover {
    border-color: var(--ts-primary);
    color: var(--ts-primary);
}

.ts-mini-cart-item-qty span {
    font-weight: 600;
    font-size: var(--ts-text-sm);
    min-width: 24px;
    text-align: center;
}

.ts-mini-cart-footer {
    border-top: 1px solid var(--ts-gray-200);
    padding: var(--ts-space-xl) var(--ts-space-2xl);
}

.ts-mini-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--ts-space-lg);
}

.ts-mini-cart-total-label {
    font-size: var(--ts-text-base);
    font-weight: 500;
    color: var(--ts-gray-600);
}

.ts-mini-cart-total-amount {
    font-size: var(--ts-text-xl);
    font-weight: 800;
    color: var(--ts-dark);
}

.ts-mini-cart-actions {
    display: flex;
    flex-direction: column;
    gap: var(--ts-space-sm);
}

.ts-mini-cart-empty {
    text-align: center;
    padding: var(--ts-space-4xl) var(--ts-space-xl);
}

.ts-mini-cart-empty svg {
    width: 80px;
    height: 80px;
    color: var(--ts-gray-300);
    margin-bottom: var(--ts-space-xl);
}

.ts-mini-cart-empty p {
    color: var(--ts-gray-500);
}

/* ==========================================================================
   FEATURES / WHY US
   ========================================================================== */

.ts-feature-card {
    text-align: center;
    padding: var(--ts-space-2xl);
    border-radius: var(--ts-radius-lg);
    transition: all var(--ts-transition-base);
}

.ts-feature-card:hover {
    background: var(--ts-white);
    box-shadow: var(--ts-shadow-lg);
}

.ts-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--ts-space-xl);
    background: var(--ts-gradient-card);
    border-radius: var(--ts-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transition: all var(--ts-transition-base);
}

.ts-feature-card:hover .ts-feature-icon {
    background: var(--ts-gradient-primary);
    transform: scale(1.1) rotate(-5deg);
}

.ts-feature-card h4 {
    font-size: var(--ts-text-lg);
    margin-bottom: var(--ts-space-md);
}

.ts-feature-card p {
    font-size: var(--ts-text-sm);
}

/* Counter / Stats */
.ts-stats-section {
    padding: var(--ts-space-4xl) 0;
    background: var(--ts-gradient-dark);
    position: relative;
    overflow: hidden;
}

.ts-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--ts-space-2xl);
    text-align: center;
}

.ts-stat-item {
    padding: var(--ts-space-xl);
}

.ts-stat-number {
    font-size: var(--ts-text-4xl);
    font-weight: 800;
    background: var(--ts-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: var(--ts-space-sm);
}

.ts-stat-label {
    font-size: var(--ts-text-sm);
    color: var(--ts-gray-400);
    font-weight: 500;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.ts-testimonial-card {
    background: var(--ts-white);
    border-radius: var(--ts-radius-lg);
    padding: var(--ts-space-2xl);
    border: 1px solid var(--ts-gray-200);
    transition: all var(--ts-transition-base);
    position: relative;
}

.ts-testimonial-card:hover {
    box-shadow: var(--ts-shadow-lg);
    transform: translateY(-4px);
}

.ts-testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: var(--ts-space-lg);
    color: #FFB800;
    font-size: 16px;
}

.ts-testimonial-text {
    font-size: var(--ts-text-base);
    color: var(--ts-gray-700);
    line-height: 1.8;
    margin-bottom: var(--ts-space-xl);
    font-style: italic;
}

.ts-testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--ts-space-md);
}

.ts-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--ts-radius-full);
    background: var(--ts-gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ts-white);
    font-weight: 700;
    font-size: var(--ts-text-lg);
}

.ts-testimonial-name {
    font-weight: 700;
    color: var(--ts-dark);
    font-size: var(--ts-text-sm);
}

.ts-testimonial-role {
    font-size: var(--ts-text-xs);
    color: var(--ts-gray-500);
}

/* ==========================================================================
   TEAM SECTION
   ========================================================================== */

.ts-team-card {
    text-align: center;
    background: var(--ts-white);
    border-radius: var(--ts-radius-lg);
    overflow: hidden;
    border: 1px solid var(--ts-gray-200);
    transition: all var(--ts-transition-base);
}

.ts-team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ts-shadow-xl);
}

.ts-team-card-img {
    width: 100%;
    height: 300px;
    background: var(--ts-gradient-card);
    position: relative;
    overflow: hidden;
}

.ts-team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ts-team-card-img .ts-team-overlay {
    position: absolute;
    inset: 0;
    background: rgba(108, 99, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--ts-space-md);
    opacity: 0;
    transition: opacity var(--ts-transition-base);
}

.ts-team-card:hover .ts-team-overlay {
    opacity: 1;
}

.ts-team-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--ts-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ts-white);
    transition: all var(--ts-transition-fast);
}

.ts-team-social-link:hover {
    background: var(--ts-white);
    color: var(--ts-primary);
}

.ts-team-card-info {
    padding: var(--ts-space-xl);
}

.ts-team-card h4 {
    font-size: var(--ts-text-lg);
    margin-bottom: 4px;
}

.ts-team-card .ts-team-role {
    color: var(--ts-primary);
    font-size: var(--ts-text-sm);
    font-weight: 500;
}

/* ==========================================================================
   BLOG CARDS
   ========================================================================== */

.ts-blog-card {
    background: var(--ts-white);
    border-radius: var(--ts-radius-lg);
    overflow: hidden;
    border: 1px solid var(--ts-gray-200);
    transition: all var(--ts-transition-base);
}

.ts-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ts-shadow-xl);
}

.ts-blog-card-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.ts-blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ts-transition-slow);
}

.ts-blog-card:hover .ts-blog-card-img img {
    transform: scale(1.05);
}

.ts-blog-card-content {
    padding: var(--ts-space-xl);
}

.ts-blog-card-meta {
    display: flex;
    align-items: center;
    gap: var(--ts-space-md);
    margin-bottom: var(--ts-space-md);
    font-size: var(--ts-text-xs);
    color: var(--ts-gray-500);
}

.ts-blog-card-category {
    padding: 4px 12px;
    background: rgba(108, 99, 255, 0.1);
    color: var(--ts-primary);
    border-radius: var(--ts-radius-full);
    font-weight: 600;
}

.ts-blog-card h3 {
    font-size: var(--ts-text-lg);
    margin-bottom: var(--ts-space-md);
}

.ts-blog-card h3 a {
    color: var(--ts-dark);
    transition: color var(--ts-transition-fast);
}

.ts-blog-card h3 a:hover {
    color: var(--ts-primary);
}

/* ==========================================================================
   PARTNERS / TECH STACK
   ========================================================================== */

.ts-partners {
    padding: var(--ts-space-3xl) 0;
    border-bottom: 1px solid var(--ts-gray-200);
}

.ts-partners-label {
    text-align: center;
    font-size: var(--ts-text-sm);
    font-weight: 500;
    color: var(--ts-gray-500);
    margin-bottom: var(--ts-space-xl);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ts-partners-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--ts-space-4xl);
    flex-wrap: wrap;
}

.ts-partner-logo {
    font-size: var(--ts-text-xl);
    font-weight: 700;
    color: var(--ts-gray-400);
    opacity: 0.6;
    transition: all var(--ts-transition-fast);
    white-space: nowrap;
}

.ts-partner-logo:hover {
    opacity: 1;
    color: var(--ts-primary);
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.ts-cta {
    padding: var(--ts-space-5xl) 0;
    background: var(--ts-gradient-dark);
    position: relative;
    overflow: hidden;
}

.ts-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(108, 99, 255, 0.15), transparent 60%);
}

.ts-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.ts-cta h2 {
    color: var(--ts-white);
    margin-bottom: var(--ts-space-xl);
}

.ts-cta p {
    font-size: var(--ts-text-lg);
    color: var(--ts-gray-400);
    margin-bottom: var(--ts-space-2xl);
}

.ts-cta-actions {
    display: flex;
    justify-content: center;
    gap: var(--ts-space-md);
    flex-wrap: wrap;
}

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

.ts-footer {
    background: var(--ts-dark);
    color: var(--ts-gray-400);
    padding-top: var(--ts-space-5xl);
}

.ts-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--ts-space-3xl);
    padding-bottom: var(--ts-space-4xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ts-footer-brand p {
    color: var(--ts-gray-500);
    font-size: var(--ts-text-sm);
    line-height: 1.8;
    margin: var(--ts-space-xl) 0;
}

.ts-footer-social {
    display: flex;
    gap: var(--ts-space-sm);
}

.ts-footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--ts-radius-full);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ts-gray-500);
    transition: all var(--ts-transition-fast);
}

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

.ts-footer h4 {
    color: var(--ts-white);
    font-size: var(--ts-text-base);
    margin-bottom: var(--ts-space-xl);
}

.ts-footer-links li {
    margin-bottom: var(--ts-space-sm);
}

.ts-footer-links a {
    color: var(--ts-gray-500);
    font-size: var(--ts-text-sm);
    transition: all var(--ts-transition-fast);
    display: inline-flex;
    align-items: center;
    gap: var(--ts-space-sm);
}

.ts-footer-links a:hover {
    color: var(--ts-white);
    transform: translateX(4px);
}

.ts-footer-contact-item {
    display: flex;
    gap: var(--ts-space-md);
    margin-bottom: var(--ts-space-lg);
    font-size: var(--ts-text-sm);
}

.ts-footer-contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: var(--ts-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ts-primary);
}

.ts-footer-bottom {
    padding: var(--ts-space-xl) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--ts-text-xs);
    color: var(--ts-gray-600);
}

.ts-footer-bottom-links {
    display: flex;
    gap: var(--ts-space-xl);
}

.ts-footer-bottom-links a {
    color: var(--ts-gray-600);
    font-size: var(--ts-text-xs);
}

.ts-footer-bottom-links a:hover {
    color: var(--ts-white);
}

/* Newsletter */
.ts-newsletter {
    background: rgba(108, 99, 255, 0.08);
    border: 1px solid rgba(108, 99, 255, 0.15);
    border-radius: var(--ts-radius-lg);
    padding: var(--ts-space-3xl);
    margin-bottom: var(--ts-space-4xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--ts-space-2xl);
}

.ts-newsletter h3 {
    color: var(--ts-white);
    font-size: var(--ts-text-xl);
    margin-bottom: var(--ts-space-sm);
}

.ts-newsletter p {
    color: var(--ts-gray-500);
    font-size: var(--ts-text-sm);
    margin: 0;
}

.ts-newsletter-form {
    display: flex;
    gap: var(--ts-space-sm);
    flex-shrink: 0;
}

.ts-newsletter-input {
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--ts-radius-full);
    color: var(--ts-white);
    font-size: var(--ts-text-sm);
    font-family: var(--ts-font-body);
    min-width: 280px;
    outline: none;
    transition: border-color var(--ts-transition-fast);
}

.ts-newsletter-input::placeholder {
    color: var(--ts-gray-600);
}

.ts-newsletter-input:focus {
    border-color: var(--ts-primary);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.ts-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--ts-space-4xl);
}

.ts-contact-info-card {
    display: flex;
    gap: var(--ts-space-lg);
    padding: var(--ts-space-xl);
    border-radius: var(--ts-radius-md);
    background: var(--ts-gray-50);
    margin-bottom: var(--ts-space-md);
    transition: all var(--ts-transition-fast);
}

.ts-contact-info-card:hover {
    background: var(--ts-white);
    box-shadow: var(--ts-shadow-md);
}

.ts-contact-info-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--ts-gradient-primary);
    border-radius: var(--ts-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ts-white);
    font-size: 22px;
}

.ts-contact-info-card h4 {
    font-size: var(--ts-text-base);
    margin-bottom: 4px;
}

.ts-contact-info-card p {
    font-size: var(--ts-text-sm);
    color: var(--ts-gray-500);
    margin: 0;
}

.ts-contact-form {
    background: var(--ts-white);
    border-radius: var(--ts-radius-lg);
    padding: var(--ts-space-2xl);
    box-shadow: var(--ts-shadow-lg);
    border: 1px solid var(--ts-gray-200);
}

.ts-form-group {
    margin-bottom: var(--ts-space-lg);
}

.ts-form-group label {
    display: block;
    font-size: var(--ts-text-sm);
    font-weight: 600;
    color: var(--ts-dark);
    margin-bottom: var(--ts-space-sm);
}

.ts-form-input,
.ts-form-textarea,
.ts-form-select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--ts-gray-300);
    border-radius: var(--ts-radius-md);
    font-size: var(--ts-text-sm);
    font-family: var(--ts-font-body);
    color: var(--ts-dark);
    transition: border-color var(--ts-transition-fast);
    outline: none;
    background: var(--ts-white);
}

.ts-form-input:focus,
.ts-form-textarea:focus,
.ts-form-select:focus {
    border-color: var(--ts-primary);
    box-shadow: 0 0 0 3px rgba(var(--ts-primary-rgb), 0.1);
}

.ts-form-textarea {
    min-height: 140px;
    resize: vertical;
}

.ts-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--ts-space-md);
}

/* ==========================================================================
   PAGE HEADER / BREADCRUMBS
   ========================================================================== */

.ts-page-header {
    padding: calc(var(--ts-header-height) + var(--ts-space-4xl)) 0 var(--ts-space-4xl);
    background: var(--ts-gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ts-page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(108, 99, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 99, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.ts-page-header .ts-container {
    position: relative;
    z-index: 2;
}

.ts-page-header h1 {
    color: var(--ts-white);
    margin-bottom: var(--ts-space-md);
}

.ts-page-header p {
    font-size: var(--ts-text-lg);
    color: var(--ts-gray-400);
    max-width: 600px;
    margin: 0 auto;
}

.ts-breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--ts-space-sm);
    margin-bottom: var(--ts-space-xl);
    font-size: var(--ts-text-sm);
}

.ts-breadcrumbs a {
    color: var(--ts-gray-500);
}

.ts-breadcrumbs a:hover {
    color: var(--ts-white);
}

.ts-breadcrumbs .separator {
    color: var(--ts-gray-600);
}

.ts-breadcrumbs .current {
    color: var(--ts-primary-light);
}

/* ==========================================================================
   WOOCOMMERCE OVERRIDES
   ========================================================================== */

.woocommerce ul.products li.product {
    border-radius: var(--ts-radius-lg);
    overflow: hidden;
    border: 1px solid var(--ts-gray-200);
    transition: all var(--ts-transition-base);
    background: var(--ts-white);
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-8px);
    box-shadow: var(--ts-shadow-xl);
}

.woocommerce ul.products li.product a img {
    border-radius: 0;
}

.woocommerce ul.products li.product .price {
    color: var(--ts-primary);
    font-weight: 700;
    font-size: var(--ts-text-lg) !important;
}

.woocommerce ul.products li.product .button,
.woocommerce .cart .button,
.woocommerce .checkout .button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: var(--ts-gradient-primary) !important;
    color: var(--ts-white) !important;
    border: none !important;
    border-radius: var(--ts-radius-full) !important;
    padding: 12px 28px !important;
    font-weight: 600 !important;
    font-size: var(--ts-text-sm) !important;
    transition: all var(--ts-transition-base) !important;
    font-family: var(--ts-font-body) !important;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce .cart .button:hover,
.woocommerce .checkout .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
    transform: translateY(-2px);
    box-shadow: var(--ts-shadow-glow) !important;
}

.woocommerce .woocommerce-ordering select,
.woocommerce .quantity .qty {
    border: 1px solid var(--ts-gray-300);
    border-radius: var(--ts-radius-md);
    padding: 10px 14px;
    font-family: var(--ts-font-body);
}

.woocommerce span.onsale {
    background: var(--ts-accent) !important;
    border-radius: var(--ts-radius-full) !important;
    padding: 6px 14px !important;
    min-height: auto !important;
    line-height: 1.4 !important;
    font-weight: 600 !important;
}

.woocommerce .star-rating span::before {
    color: #FFB800 !important;
}

.woocommerce-message,
.woocommerce-info {
    border-top-color: var(--ts-primary) !important;
}

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

.woocommerce table.shop_table {
    border-radius: var(--ts-radius-md);
    overflow: hidden;
    border: 1px solid var(--ts-gray-200);
}

.woocommerce table.shop_table th {
    background: var(--ts-gray-50);
    font-weight: 600;
    color: var(--ts-dark);
}

.woocommerce table.shop_table td {
    border-color: var(--ts-gray-200);
    color: var(--ts-gray-700);
}

.woocommerce-cart .cart-collaterals .cart_totals {
    background: var(--ts-gray-50);
    border-radius: var(--ts-radius-lg);
    padding: var(--ts-space-xl);
}

/* Product Single */
.woocommerce div.product div.images {
    border-radius: var(--ts-radius-lg);
    overflow: hidden;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    border-bottom-color: var(--ts-primary);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--ts-primary);
}

.woocommerce div.product p.price {
    color: var(--ts-primary) !important;
    font-size: var(--ts-text-2xl) !important;
    font-weight: 800 !important;
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

.ts-about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--ts-space-4xl);
    align-items: center;
}

.ts-about-image {
    border-radius: var(--ts-radius-lg);
    overflow: hidden;
    position: relative;
}

.ts-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ts-about-image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--ts-white);
    border-radius: var(--ts-radius-md);
    padding: var(--ts-space-lg) var(--ts-space-xl);
    box-shadow: var(--ts-shadow-lg);
}

.ts-about-image-badge .number {
    font-size: var(--ts-text-3xl);
    font-weight: 800;
    color: var(--ts-primary);
    line-height: 1;
}

.ts-about-image-badge .label {
    font-size: var(--ts-text-sm);
    color: var(--ts-gray-600);
}

/* ==========================================================================
   CATEGORIES PAGE
   ========================================================================== */

.ts-category-card {
    background: var(--ts-white);
    border-radius: var(--ts-radius-lg);
    padding: var(--ts-space-2xl);
    border: 1px solid var(--ts-gray-200);
    text-align: center;
    transition: all var(--ts-transition-base);
    display: block;
}

.ts-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ts-shadow-xl);
    border-color: var(--ts-primary);
}

.ts-category-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--ts-space-lg);
    background: var(--ts-gradient-card);
    border-radius: var(--ts-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transition: all var(--ts-transition-base);
}

.ts-category-card:hover .ts-category-card-icon {
    background: var(--ts-gradient-primary);
    transform: scale(1.1);
}

.ts-category-card h3 {
    font-size: var(--ts-text-lg);
    margin-bottom: var(--ts-space-sm);
    color: var(--ts-dark);
}

.ts-category-card p {
    font-size: var(--ts-text-sm);
    color: var(--ts-gray-500);
    margin: 0;
}

.ts-category-card .count {
    display: inline-block;
    margin-top: var(--ts-space-md);
    padding: 4px 14px;
    background: var(--ts-gray-100);
    border-radius: var(--ts-radius-full);
    font-size: var(--ts-text-xs);
    font-weight: 600;
    color: var(--ts-gray-600);
}

/* ==========================================================================
   SIDEBAR / WIDGETS
   ========================================================================== */

.ts-sidebar .widget {
    background: var(--ts-white);
    border-radius: var(--ts-radius-lg);
    padding: var(--ts-space-xl);
    margin-bottom: var(--ts-space-xl);
    border: 1px solid var(--ts-gray-200);
}

.ts-sidebar .widget-title {
    font-size: var(--ts-text-lg);
    margin-bottom: var(--ts-space-lg);
    padding-bottom: var(--ts-space-md);
    border-bottom: 2px solid var(--ts-gray-200);
    position: relative;
}

.ts-sidebar .widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--ts-gradient-primary);
}

.ts-sidebar .widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--ts-gray-100);
}

.ts-sidebar .widget ul li:last-child {
    border-bottom: none;
}

.ts-sidebar .widget ul li a {
    color: var(--ts-gray-700);
    font-size: var(--ts-text-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ts-sidebar .widget ul li a:hover {
    color: var(--ts-primary);
}

/* Search Widget */
.ts-search-form {
    display: flex;
    gap: var(--ts-space-sm);
}

.ts-search-form input[type="search"] {
    flex: 1;
    padding: 12px 18px;
    border: 1px solid var(--ts-gray-300);
    border-radius: var(--ts-radius-full);
    font-size: var(--ts-text-sm);
    outline: none;
    font-family: var(--ts-font-body);
}

.ts-search-form input[type="search"]:focus {
    border-color: var(--ts-primary);
}

.ts-search-form button {
    padding: 12px 20px;
    background: var(--ts-gradient-primary);
    border: none;
    border-radius: var(--ts-radius-full);
    color: var(--ts-white);
    cursor: pointer;
    transition: all var(--ts-transition-fast);
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */

.ts-404 {
    text-align: center;
    padding: var(--ts-space-5xl) 0;
}

.ts-404-number {
    font-size: clamp(100px, 20vw, 250px);
    font-weight: 900;
    background: var(--ts-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--ts-space-xl);
}

.ts-404 h2 {
    margin-bottom: var(--ts-space-md);
}

.ts-404 p {
    font-size: var(--ts-text-lg);
    margin-bottom: var(--ts-space-2xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */

.ts-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--ts-space-sm);
    padding: var(--ts-space-3xl) 0;
}

.ts-pagination a,
.ts-pagination span {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--ts-radius-md);
    font-weight: 600;
    font-size: var(--ts-text-sm);
    transition: all var(--ts-transition-fast);
    border: 1px solid var(--ts-gray-200);
    color: var(--ts-gray-700);
}

.ts-pagination a:hover {
    border-color: var(--ts-primary);
    color: var(--ts-primary);
}

.ts-pagination .current {
    background: var(--ts-gradient-primary);
    color: var(--ts-white);
    border-color: transparent;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

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

@keyframes ts-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes ts-slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes ts-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

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

.ts-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.ts-animate.ts-visible {
    opacity: 1;
    transform: translateY(0);
}

.ts-animate-delay-1 { transition-delay: 0.1s; }
.ts-animate-delay-2 { transition-delay: 0.2s; }
.ts-animate-delay-3 { transition-delay: 0.3s; }
.ts-animate-delay-4 { transition-delay: 0.4s; }

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

@media (max-width: 1200px) {
    .ts-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .ts-footer-grid { grid-template-columns: 1fr 1fr; }
    .ts-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

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

    .ts-hero .ts-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ts-hero-content {
        max-width: 100%;
    }

    .ts-hero-actions {
        justify-content: center;
    }

    .ts-hero-stats {
        justify-content: center;
    }

    .ts-hero-visual {
        display: none;
    }

    .ts-nav-menu {
        display: none;
    }

    .ts-menu-toggle {
        display: flex;
    }

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

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

    .ts-newsletter {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .ts-grid--2,
    .ts-grid--3,
    .ts-grid--4 {
        grid-template-columns: 1fr;
    }

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

    .ts-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ts-section {
        padding: var(--ts-space-3xl) 0;
    }

    .ts-container {
        padding: 0 var(--ts-space-md);
    }

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

    .ts-hero-stats {
        flex-direction: column;
        gap: var(--ts-space-xl);
    }

    .ts-footer-bottom {
        flex-direction: column;
        gap: var(--ts-space-md);
        text-align: center;
    }

    .ts-pricing-card {
        padding: var(--ts-space-xl);
    }

    .ts-mini-cart {
        width: 100%;
    }

    .ts-newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .ts-newsletter-input {
        min-width: auto;
        width: 100%;
    }
}

/* Mobile Navigation Overlay */
@media (max-width: 992px) {
    .ts-nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15, 14, 46, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--ts-space-lg);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all var(--ts-transition-base);
    }

    .ts-nav-menu.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    .ts-nav-menu a {
        font-size: var(--ts-text-xl);
        padding: 12px 24px;
    }

    .ts-nav-menu .sub-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
    }

    .ts-nav-menu .sub-menu a {
        color: rgba(255, 255, 255, 0.6);
        font-size: var(--ts-text-base);
    }
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: var(--ts-gray-50);
    border-radius: var(--ts-radius-sm);
    box-shadow: var(--ts-shadow-md);
    clip: auto !important;
    clip-path: none;
    color: var(--ts-dark);
    display: block;
    font-size: var(--ts-text-sm);
    font-weight: 600;
    height: auto;
    left: 5px;
    padding: 15px 23px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

:focus-visible {
    outline: 2px solid var(--ts-primary);
    outline-offset: 2px;
}

/* Skip link */
.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 999999;
    padding: 15px 23px;
    background: var(--ts-primary);
    color: var(--ts-white);
    font-size: var(--ts-text-sm);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--ts-radius-sm);
}

.skip-link:focus {
    left: 6px;
    top: 7px;
}

/* ==========================================================================
   LOADING / PRELOADER
   ========================================================================== */

.ts-preloader {
    position: fixed;
    inset: 0;
    background: var(--ts-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.ts-preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.ts-preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(108, 99, 255, 0.2);
    border-top-color: var(--ts-primary);
    border-radius: 50%;
    animation: ts-spin 0.8s linear infinite;
}

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */

.ts-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--ts-gradient-primary);
    color: var(--ts-white);
    border: none;
    border-radius: var(--ts-radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--ts-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--ts-transition-base);
    z-index: 999;
}

.ts-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ts-back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--ts-shadow-glow);
}
