/*
Theme Name: VeeWorks Minimal
Theme URI: http://veeworks.local/
Author: VeeWorks Team
Description: A modern, elegant corporate theme with clean aesthetics and smooth animations.
Version: 3.2
Requires PHP: 7.4
Text Domain: veeworks
*/

/* ===================================
   CSS RESET & BASE
   =================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Brand Color Palette - Teal from Logo */
    --primary: #0d9488;
    /* Teal - extracted from logo */
    --primary-dark: #0f766e;
    --primary-light: #14b8a6;
    --primary-subtle: #f0fdfa;
    --secondary: #06b6d4;
    /* Cyan accent */
    --accent: #0891b2;
    /* Dark Cyan accent */

    /* Neutral Colors */
    --white: #ffffff;
    --black: #0f172a;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Success/Warning/Error */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --rating: #fbbf24;
    /* Star rating gold */

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', var(--font-primary);

    /* Spacing */
    --header-height: 80px;
    --section-padding: 120px;
    --container-max: 1280px;

    /* Border Radius - Modern rounded look */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows - Soft and elegant */
    --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-primary: 0 4px 14px 0 rgb(13 148 136 / 0.3);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background: var(--white);
    color: var(--gray-700);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.menu-open,
body.modal-open {
    overflow: hidden;
}

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

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

/* ===================================
   TYPOGRAPHY
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-fluid {
    width: 100%;
    padding: 0 1.5rem;
}

/* ===================================
   BUTTONS - Modern & Elegant
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 500;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn i {
    font-size: 0.875rem;
    transition: transform var(--transition-normal);
}

.btn:hover i {
    transform: translateX(3px);
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgb(37 99 235 / 0.4);
}

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

/* Secondary Button */
.btn-secondary {
    background: var(--gray-900);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--gray-900);
    border-color: var(--white);
}

/* Outline Dark Button */
.btn-outline-dark {
    background: transparent;
    color: var(--gray-900);
    border: 1.5px solid var(--gray-300);
}

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

/* Ghost Button */
.btn-ghost {
    background: transparent;
    color: var(--primary);
    padding: 0.5rem 1rem;
}

.btn-ghost:hover {
    background: var(--primary-subtle);
}

/* Light Button */
.btn-light {
    background: var(--white);
    color: var(--gray-900);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Small Button */
.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

/* Large Button */
.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* Icon Button */
.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    color: var(--gray-600);
}

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: all var(--transition-normal);
}

.site-header.transparent {
    background: transparent;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 0 var(--gray-200);
}

.site-header.scrolled .nav-menu>li>a,
.site-header.scrolled .header-actions a,
.site-header.scrolled .header-actions button,
.site-header.scrolled .site-logo span {
    color: var(--gray-800);
}

.site-header.scrolled .site-logo span {
    color: var(--primary);
}

.site-header.scrolled .btn-outline {
    color: var(--gray-900);
    border-color: var(--gray-300);
}

.site-header.scrolled .btn-outline:hover {
    background: var(--gray-900);
    color: var(--white);
    border-color: var(--gray-900);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.site-logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-logo span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--white);
    transition: var(--transition-normal);
}

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

/* Main Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu>li {
    position: relative;
}

.nav-menu>li>a {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--white);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.nav-menu>li>a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.site-header.scrolled .nav-menu>li>a:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.nav-menu>li.current-menu-item>a {
    color: var(--primary-light);
}

.site-header.scrolled .nav-menu>li.current-menu-item>a {
    color: var(--primary);
    background: var(--primary-subtle);
}

/* Dropdown Menu */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    list-style: none;
    padding: 0.5rem;
    margin-top: 0.5rem;
    z-index: 100;
}

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

.nav-menu .sub-menu li a {
    display: block;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: var(--gray-700);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

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

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-actions button,
.header-actions>a:not(.btn) {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.header-actions button:hover,
.header-actions>a:not(.btn):hover {
    background: rgba(255, 255, 255, 0.2);
}

.site-header.scrolled .header-actions button,
.site-header.scrolled .header-actions>a:not(.btn) {
    color: var(--gray-600);
    background: var(--gray-100);
}

.site-header.scrolled .header-actions button:hover,
.site-header.scrolled .header-actions>a:not(.btn):hover {
    color: var(--primary);
    background: var(--primary-subtle);
}

.language-toggle {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
}

/* ===================================
   HERO SECTION - Elegant & Modern
   =================================== */
.hero-video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(15, 23, 42, 0.75) 0%,
            rgba(30, 41, 59, 0.6) 50%,
            rgba(15, 23, 42, 0.5) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 680px;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 0.75rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -0.03em;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-300);
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0.5;
}

/* Hero Tabs - Elegant Style */
.hero-tabs {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 2rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-normal);
    border-bottom: 2px solid transparent;
    position: relative;
}

.hero-tab i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.hero-tab:hover,
.hero-tab.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.hero-tab.active {
    border-bottom-color: var(--primary);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    opacity: 0.5;
}

.scroll-indicator span {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.scroll-indicator .mouse {
    width: 22px;
    height: 36px;
    border: 2px solid currentColor;
    border-radius: 11px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    width: 3px;
    height: 6px;
    background: currentColor;
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollMouse 1.5s infinite;
}

@keyframes scrollMouse {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
}

/* ===================================
   SECTION STYLES
   =================================== */
.section {
    padding: var(--section-padding) 0;
}

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

.section-dark {
    background: var(--gray-900);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 580px;
    margin: 0 auto;
}

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

/* Subtle line under heading */
.section-header h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-full);
    margin: 1rem auto 0;
}

/* ===================================
   SERVICES / SOLUTIONS - Card Style
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
    position: relative;
}

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

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--primary-subtle) 0%, var(--white) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===================================
   PRODUCTS SECTION - Horizontal Scroll
   =================================== */
.products-section {
    overflow: hidden;
}

.products-scroller {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0 2rem;
    overflow-x: auto;
    /* Keep overflow for manual scroll capability */
    /* scroll-snap-type removed for smooth auto-scroll */
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
}

.products-scroller:active {
    cursor: grabbing;
}

.products-scroller::-webkit-scrollbar {
    display: none;
}

.product-card-tengen {
    flex: 0 0 300px;
    height: 400px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: center;
    border-radius: var(--radius-xl);
    background: var(--gray-100);
    transition: all var(--transition-normal);
}

.product-card-tengen:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

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

.product-card-tengen:hover img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 50%, transparent 100%);
    color: var(--white);
    transform: translateY(30px);
    opacity: 0;
    transition: all var(--transition-normal);
}

.product-card-tengen:hover .product-overlay {
    transform: translateY(0);
    opacity: 1;
}

.product-overlay h3 {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.product-overlay p {
    font-size: 0.875rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.product-overlay .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
}

/* ===================================
   ABOUT SECTION - Split Layout
   =================================== */
.about-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
    border-radius: 0;
    overflow: hidden;
}

.about-content {
    flex: 1;
    min-width: 400px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.about-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.stat-item h4 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-item span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.about-image {
    flex: 1;
    min-width: 400px;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* ===================================
   NEWS SECTION
   =================================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-200);
}

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

.news-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.news-card-body {
    padding: 1.5rem;
}

.news-date {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.news-title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.news-title a {
    color: inherit;
}

.news-title a:hover {
    color: var(--primary);
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
}

.news-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.news-link:hover i {
    transform: translateX(4px);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   PARTNERS SECTION
   =================================== */
.partners-section {
    background: var(--white);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.partner-logo {
    max-width: 140px;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: var(--transition-normal);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ===================================
   FOOTER - Clean & Modern
   =================================== */
.site-footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 5rem 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--gray-800);
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.8;
    margin: 1.25rem 0 1.5rem;
    color: var(--gray-400);
    text-align: justify;
}

.footer-brand .site-logo span {
    color: var(--white);
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    background: var(--gray-800);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 0.9375rem;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-widget h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget li {
    margin-bottom: 0.625rem;
}

.footer-widget a {
    font-size: 0.9375rem;
    color: var(--gray-400);
    transition: var(--transition-fast);
}

.footer-widget a:hover {
    color: var(--primary-light);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
}

.footer-contact i {
    color: var(--primary-light);
    margin-top: 3px;
    font-size: 0.875rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--gray-500);
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

/* ===================================
   MODAL / POPUP - Modern Style
   =================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--white);
    padding: 2.5rem;
    max-width: 480px;
    width: 90%;
    border-radius: var(--radius-xl);
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-2xl);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--gray-200);
    color: var(--gray-700);
}

/* Contact Form */
.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    font-family: var(--font-primary);
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-subtle);
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

/* ===================================
   SEARCH OVERLAY
   =================================== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

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

.search-form-wrapper {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
}

.search-form-wrapper input {
    width: 100%;
    padding: 1.25rem 0;
    font-size: 1.75rem;
    font-family: var(--font-primary);
    background: none;
    border: none;
    border-bottom: 2px solid var(--gray-300);
    color: var(--gray-900);
    text-align: center;
    transition: var(--transition-fast);
}

.search-form-wrapper input::placeholder {
    color: var(--gray-400);
}

.search-form-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
}

.search-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius-full);
    color: var(--gray-600);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-close:hover {
    background: var(--gray-200);
    color: var(--gray-800);
}

/* ===================================
   PAGE LOADER
   =================================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: var(--radius-full);
    animation: spin 0.8s linear infinite;
}

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

/* ===================================
   ANIMATION CLASSES
   =================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
}

.fade-down {
    opacity: 0;
    transform: translateY(-30px);
}

.fade-left {
    opacity: 0;
    transform: translateX(-30px);
}

.fade-right {
    opacity: 0;
    transform: translateX(30px);
}

.scale-up {
    opacity: 0;
    transform: scale(0.9);
}

/* ===================================
   WOOCOMMERCE OVERRIDES
   =================================== */
.woocommerce-breadcrumb {
    padding: 1rem 0;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.woocommerce-breadcrumb a {
    color: var(--gray-500);
}

.woocommerce-breadcrumb a:hover {
    color: var(--primary);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-normal);
}

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

.product-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    background: var(--gray-50);
    overflow: hidden;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
    transition: transform 0.5s ease;
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: var(--white);
}

.product-badge.sale {
    background: var(--error);
}

.product-badge.new {
    background: var(--success);
}

.product-actions {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-normal);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.product-action-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: none;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--gray-600);
}

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

.product-info {
    padding: 1.25rem;
}

.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.product-title a {
    color: var(--gray-800);
}

.product-title a:hover {
    color: var(--primary);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.product-rating .stars {
    display: flex;
    gap: 0.125rem;
    color: var(--rating);
    font-size: 0.75rem;
}

.product-rating .rating-count {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.price {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
}

.price del {
    font-size: 0.875rem;
    color: var(--gray-400);
    font-weight: 400;
    margin-right: 0.5rem;
}

.price ins {
    text-decoration: none;
    color: var(--primary);
}

.add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    margin-top: 1rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
}

.add-to-cart-btn:hover {
    background: var(--primary-dark);
}

/* ===================================
   MOBILE RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

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

    .about-section {
        flex-direction: column;
    }

    .about-content,
    .about-image {
        min-width: 100%;
    }

    .about-content {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
        --section-padding: 60px;
    }

    .container {
        padding: 0 1rem;
    }

    /* Mobile Navigation */
    .main-navigation {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        transform: translateX(-100%);
        transition: var(--transition-normal);
        overflow-y: auto;
        z-index: 999;
        padding-top: var(--header-height);
    }

    .main-navigation.active {
        transform: translateX(0);
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 1rem;
    }

    .nav-menu>li>a {
        padding: 1rem;
        color: var(--gray-800);
        border-radius: var(--radius-md);
    }

    .nav-menu>li>a:hover {
        background: var(--gray-100);
    }

    .nav-menu .sub-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: var(--gray-50);
        border-radius: var(--radius-md);
        margin: 0.5rem 0;
        padding: 0.5rem;
    }

    .nav-menu>li.menu-item-has-children.active>.sub-menu {
        display: block;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Hero */
    .hero-video-section {
        min-height: 100vh;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .hero-tabs {
        flex-wrap: wrap;
    }

    .hero-tab {
        padding: 0.875rem 1rem;
        font-size: 0.75rem;
        flex: 1;
        min-width: 50%;
    }

    .hero-tab i {
        font-size: 1rem;
    }

    .scroll-indicator {
        display: none;
    }

    /* Products */
    .product-card-tengen {
        flex: 0 0 260px;
        height: 340px;
    }

    /* About */
    .about-content h2 {
        font-size: 2rem;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .stat-item h4 {
        font-size: 2rem;
    }

    /* News */
    .news-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    /* Header Actions */
    .header-actions .btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

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

    .product-actions {
        display: none;
    }

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

    .section-header h2 {
        font-size: 1.75rem;
    }
}



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

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

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

.text-primary {
    color: var(--primary);
}

.text-white {
    color: var(--white);
}

.text-muted {
    color: var(--gray-500);
}

.bg-primary {
    background: var(--primary);
}

.bg-dark {
    background: var(--gray-900);
}

.bg-gray {
    background: var(--gray-50);
}

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

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

.mt-3 {
    margin-top: 1.5rem;
}

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

.mt-5 {
    margin-top: 3rem;
}

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

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

.mb-3 {
    margin-bottom: 1.5rem;
}

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

.mb-5 {
    margin-bottom: 3rem;
}

.py-1 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-2 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-3 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-4 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.gap-3 {
    gap: 1.5rem;
}

.gap-4 {
    gap: 2rem;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

@media (min-width: 768px) {
    .md-hidden {
        display: none !important;
    }

    .md-visible {
        display: block !important;
    }
}

@media (max-width: 767px) {
    .sm-hidden {
        display: none !important;
    }

    .sm-visible {
        display: block !important;
    }
}

/* ===================================
   PAGE HERO (Shop, Search, etc.)
   =================================== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--gray-900) 100%);
    color: var(--white);
    padding: 6rem 0 4rem;
    margin-top: var(--header-height);
}

.page-hero-content {
    max-width: 700px;
}

.page-hero .breadcrumb-nav {
    margin-bottom: 1.5rem;
}

.page-hero .breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.page-hero .breadcrumb-list a {
    color: var(--gray-400);
}

.page-hero .breadcrumb-list a:hover {
    color: var(--primary-light);
}

.page-hero .breadcrumb-list .sep {
    color: var(--gray-600);
    font-size: 0.75rem;
}

.page-hero .page-title {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.page-hero .page-description {
    color: var(--gray-400);
    font-size: 1.0625rem;
    margin-bottom: 0;
}

/* ===================================
   SHOP PAGE LAYOUT
   =================================== */
.shop-page-content {
    padding: 3rem 0 5rem;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* Shop Sidebar */
.shop-sidebar {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: sticky;
    top: calc(var(--header-height) + 1rem);
}

.sidebar-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-header h3 {
    font-size: 1.125rem;
    margin: 0;
}

.sidebar-close {
    display: none;
    width: 32px;
    height: 32px;
    border: none;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    cursor: pointer;
}

.sidebar-content {
    padding: 1rem 0;
}

.filter-section {
    border-bottom: 1px solid var(--gray-100);
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
    margin: 0;
}

.filter-title i {
    font-size: 0.75rem;
    color: var(--gray-400);
    transition: var(--transition-fast);
}

.filter-section.collapsed .filter-title i {
    transform: rotate(-90deg);
}

.filter-section.collapsed .filter-content {
    display: none;
}

.filter-content {
    padding: 0 1.5rem 1.25rem;
}

/* Category List */
.category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-list li {
    margin-bottom: 0.25rem;
}

.category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.category-list a:hover,
.category-list a.active {
    background: var(--primary-subtle);
    color: var(--primary);
}

.category-list .count {
    font-size: 0.75rem;
    color: var(--gray-400);
    background: var(--gray-100);
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-full);
}

/* Price Filter */
.price-filter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-input {
    flex: 1;
}

.price-input label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.price-input input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
}

.price-separator {
    color: var(--gray-400);
    margin-top: 1rem;
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-item {
    padding: 0.375rem 0.75rem;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 0.8125rem;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.tag-item:hover {
    background: var(--primary);
    color: var(--white);
}

/* Checkbox Filter */
.checkbox-filter {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.checkbox-filter input {
    display: none;
}

.checkbox-filter .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition-fast);
}

.checkbox-filter input:checked+.checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-filter input:checked+.checkmark::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.sidebar-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.sidebar-footer .btn {
    width: 100%;
}

/* Shop Tag Tabs */
.shop-tag-tabs-container {
    margin-bottom: 1.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.shop-tag-tabs-container::-webkit-scrollbar {
    display: none;
}

.shop-tag-tabs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.shop-tag-tabs li a {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: var(--gray-100);
    color: var(--gray-600);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.shop-tag-tabs li a:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--primary);
}

.shop-tag-tabs li a.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.2);
    border-color: var(--primary);
}

/* Shop Main Content */
.shop-main {
    min-width: 0;
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.toolbar-left,
.toolbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-toggle {
    display: none;
}

.result-count,
.woocommerce-result-count {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.view-toggle {
    display: flex;
    gap: 0.25rem;
}

.view-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-300);
    background: var(--white);
    border-radius: var(--radius-md);
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition-fast);
}

.view-btn:hover,
.view-btn.active {
    background: var(--gray-900);
    border-color: var(--gray-900);
    color: var(--white);
}

.sort-dropdown select,
.woocommerce-ordering select {
    padding: 0.625rem 2rem 0.625rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    background: var(--white);
    cursor: pointer;
}

/* Active Filters */
.active-filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.active-filters-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: var(--primary-subtle);
    color: var(--primary);
    font-size: 0.8125rem;
    border-radius: var(--radius-full);
}

.filter-tag .remove {
    color: var(--primary);
    opacity: 0.7;
}

.filter-tag .remove:hover {
    opacity: 1;
}

/* List View */
.products-grid.list-view {
    grid-template-columns: 1fr;
}

.products-grid.list-view .product-card {
    display: flex;
    flex-direction: row;
}

.products-grid.list-view .product-image-wrapper {
    width: 200px;
    flex-shrink: 0;
    aspect-ratio: 1;
}

.products-grid.list-view .product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Shop Pagination */
.shop-pagination {
    margin-top: 3rem;
}

.shop-pagination .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.shop-pagination .page-numbers li a,
.shop-pagination .page-numbers li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--gray-600);
    transition: var(--transition-fast);
}

.shop-pagination .page-numbers li a:hover,
.shop-pagination .page-numbers li .current {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* No Products Found */
.no-products-found {
    text-align: center;
    padding: 5rem 2rem;
}

.no-products-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--gray-400);
}

.no-products-found h2 {
    margin-bottom: 0.75rem;
}

.no-products-found p {
    max-width: 400px;
    margin: 0 auto 2rem;
}

/* Sidebar Overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.sidebar-overlay.active {
    display: block;
}

/* ===================================
   SINGLE PRODUCT PAGE
   =================================== */
.product-breadcrumb-section {
    padding: 1.5rem 0;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    margin-top: var(--header-height);
}

.product-breadcrumb-section .breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.product-breadcrumb-section .breadcrumb-list a {
    color: var(--gray-500);
}

.product-breadcrumb-section .breadcrumb-list a:hover {
    color: var(--primary);
}

.product-breadcrumb-section .breadcrumb-list .sep {
    font-size: 0.625rem;
    color: var(--gray-400);
}

.single-product-page {
    padding: 3rem 0 5rem;
}

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

/* Product Gallery */
.product-gallery-section {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

.product-gallery {
    position: relative;
}

.product-gallery .product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
}

.main-image-wrapper {
    position: relative;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 1rem;
}

.main-image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
    padding: 2rem;
}

.main-image-wrapper .zoom-icon {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    opacity: 0;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.main-image-wrapper:hover .zoom-icon {
    opacity: 1;
}

.thumbnail-gallery {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.thumbnail-gallery .thumbnail {
    flex: 0 0 80px;
    height: 80px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-fast);
    background: var(--gray-50);
    padding: 0;
}

.thumbnail-gallery .thumbnail:hover,
.thumbnail-gallery .thumbnail.active {
    border-color: var(--primary);
}

.thumbnail-gallery .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Product Info */
.product-info-section {
    padding-top: 1rem;
}

.product-meta-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.product-categories {
    font-size: 0.8125rem;
    color: var(--primary);
}

.product-categories a {
    color: var(--primary);
}

.product-sku {
    font-size: 0.8125rem;
    color: var(--gray-400);
}

.product-title-single {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.product-rating-single {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.product-rating-single .stars {
    display: flex;
    gap: 0.125rem;
    color: var(--rating);
}

.product-rating-single .rating-text {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.product-price-single {
    margin-bottom: 1.5rem;
}

.product-price-single .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
}

.product-price-single .price del {
    font-size: 1.125rem;
    color: var(--gray-400);
    font-weight: 400;
}

.product-price-single .price ins {
    text-decoration: none;
    color: var(--primary);
}

.product-short-desc {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.product-short-desc p {
    margin-bottom: 0.75rem;
}

.product-short-desc p:last-child {
    margin-bottom: 0;
}

.product-stock-status {
    margin-bottom: 1.5rem;
}

.product-stock-status .in-stock {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--success);
    font-weight: 500;
}

.product-stock-status .out-of-stock {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--error);
    font-weight: 500;
}

/* Price on Request */
.price-on-request {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

/* Add to Cart */
.product-add-to-cart {
    margin-bottom: 1.5rem;
}

.product-add-to-cart .cart {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-add-to-cart .quantity {
    width: auto;
}

.quantity-wrapper-custom {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.quantity-wrapper-custom .qty-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: var(--gray-50);
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition-fast);
}

.quantity-wrapper-custom .qty-btn:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}

.quantity-wrapper-custom input.qty {
    width: 60px;
    height: 44px;
    border: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    -moz-appearance: textfield;
    appearance: textfield;
}

.quantity-wrapper-custom input.qty::-webkit-outer-spin-button,
.quantity-wrapper-custom input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-add-to-cart .single_add_to_cart_button {
    flex: 1;
    min-width: 200px;
}

/* Product Extra Actions */
.product-extra-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.product-extra-actions .action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: none;
    border: none;
    color: var(--gray-600);
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.product-extra-actions .action-btn:hover {
    color: var(--primary);
}

/* Product Meta Bottom */
.product-meta-bottom {
    margin-bottom: 2rem;
}

.product-meta-bottom .meta-item {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.product-meta-bottom .meta-label {
    color: var(--gray-500);
    font-weight: 500;
}

.product-meta-bottom .meta-value {
    color: var(--gray-700);
}

.product-meta-bottom .meta-value a {
    color: var(--primary);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--gray-600);
}

.trust-badges .badge i {
    color: var(--primary);
}

/* Product Tabs */
.product-tabs-section {
    margin-bottom: 4rem;
}

.product-tabs {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.product-tabs .tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.product-tabs .tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
}

.product-tabs .tab-btn:hover {
    color: var(--gray-900);
}

.product-tabs .tab-btn.active {
    color: var(--primary);
    background: var(--white);
}

.product-tabs .tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.product-tabs .tabs-content {
    padding: 2rem;
}

.product-tabs .tab-panel {
    display: none;
}

.product-tabs .tab-panel.active {
    display: block;
}

.product-description {
    line-height: 1.8;
}

.product-description h2,
.product-description h3,
.product-description h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.product-description ul,
.product-description ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.product-description li {
    margin-bottom: 0.5rem;
}

/* Specifications Table */
.specifications-table {
    width: 100%;
    border-collapse: collapse;
}

.specifications-table tr {
    border-bottom: 1px solid var(--gray-200);
}

.specifications-table tr:last-child {
    border-bottom: none;
}

.specifications-table th,
.specifications-table td {
    padding: 1rem;
    text-align: left;
}

.specifications-table th {
    width: 200px;
    font-weight: 500;
    color: var(--gray-600);
    background: var(--gray-50);
}

.specifications-table td {
    color: var(--gray-800);
}

/* Related Products */
.related-products-section {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.related-products-section .section-header {
    margin-bottom: 2rem;
}

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

/* ===================================
   CART PAGE
   =================================== */
.woocommerce-cart-page {
    padding: 5rem 1.5rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.woocommerce-cart-page .woocommerce-cart-form {
    width: 100%;
}

/* WooCommerce Notices */
.woocommerce-cart-page .woocommerce-notices-wrapper {
    margin-bottom: 1.5rem;
}

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

/* Empty Cart Page */
.cart-empty-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1rem;
    background: var(--white);
}

.cart-empty-content {
    text-align: center;
    max-width: 550px;
    padding: 2rem 1rem;
}

/* Animated Cart Icon */
.cart-empty-icon {
    margin-bottom: 2rem;
}

.cart-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-subtle) 0%, var(--white) 100%);
    border-radius: 50%;
    border: 2px dashed var(--primary);
    animation: pulse-border 2s ease-in-out infinite;
}

.cart-icon-wrapper i {
    font-size: 3rem;
    color: var(--primary);
    animation: cart-bounce 2s ease-in-out infinite;
}

.cart-empty-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: var(--gray-300);
    color: var(--gray-600);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes pulse-border {

    0%,
    100% {
        border-color: var(--primary);
        transform: scale(1);
    }

    50% {
        border-color: var(--primary-light);
        transform: scale(1.02);
    }
}

@keyframes cart-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.cart-empty-content h1 {
    font-size: 1.875rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
    font-weight: 700;
}

.cart-empty-content p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Primary Shop Button */
.cart-empty-actions {
    margin-bottom: 1.5rem;
}

.cart-empty-shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 600;
    border-radius: var(--radius-full) !important;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-primary);
}

.cart-empty-shop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgb(13 148 136 / 0.4);
}

.cart-empty-shop-btn .btn-arrow {
    transition: transform 0.3s ease;
    font-size: 0.875rem;
}

.cart-empty-shop-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Secondary Links */
.cart-empty-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.cart-empty-secondary .secondary-link {
    color: var(--gray-500);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.cart-empty-secondary .secondary-link:hover {
    color: var(--primary);
}

.cart-empty-secondary .separator {
    color: var(--gray-300);
}

/* Trust Features - Horizontal Cards */
.cart-empty-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-100);
    flex-wrap: wrap;
}

.cart-empty-features .feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: all 0.2s ease;
}

.cart-empty-features .feature:hover {
    border-color: var(--primary-light);
    background: var(--primary-subtle);
}

.cart-empty-features .feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
}

.cart-empty-features .feature-icon i {
    font-size: 1rem;
    color: var(--primary);
}

.cart-empty-features .feature-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cart-empty-features .feature-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-800);
}

.cart-empty-features .feature-desc {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Responsive */
@media (max-width: 640px) {
    .cart-empty-features {
        flex-direction: column;
        align-items: center;
    }

    .cart-empty-features .feature {
        width: 100%;
        max-width: 280px;
    }

    .cart-empty-secondary {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cart-empty-secondary .separator {
        display: none;
    }
}

.woocommerce-cart-page .cart-layout,
.cart-layout {
    display: grid !important;
    grid-template-columns: 1fr 380px !important;
    gap: 3rem;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
}

/* Reset WooCommerce default table styles */
.woocommerce-cart-page .shop_table,
.woocommerce-cart-page table.shop_table {
    display: none !important;
}

.woocommerce-cart-page .cart-collaterals {
    display: none !important;
}

.cart-items-section {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-width: 0;
}

.cart-summary-section {
    min-width: 0;
    position: sticky;
    top: calc(var(--header-height) + 1rem);
}

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

.cart-header h2 {
    font-size: 1.25rem;
    margin: 0;
}

.cart-header .item-count {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.cart-items {
    padding: 0;
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}

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

.cart-item-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.cart-item-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.cart-item-name a {
    color: var(--gray-900);
}

.cart-item-name a:hover {
    color: var(--primary);
}

.cart-item-price {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-item-subtotal {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    min-width: 100px;
    text-align: right;
}

.cart-item-remove .remove-item {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    background: var(--gray-100);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.cart-item-remove .remove-item:hover {
    color: var(--error);
    background: #fef2f2;
}

.cart-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.coupon-form {
    display: flex;
    gap: 0.5rem;
}

.coupon-form input {
    padding: 0.625rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    width: 180px;
}

/* Cart Summary */
.cart-summary {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

.cart-summary h3 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    font-size: 0.9375rem;
}

.summary-row .label {
    color: var(--gray-600);
}

.summary-row .value {
    font-weight: 500;
    color: var(--gray-900);
}

.summary-row.total-row {
    border-top: 2px solid var(--gray-200);
    margin-top: 0.75rem;
    padding-top: 1rem;
}

.summary-row.total-row .label,
.summary-row.total-row .value {
    font-size: 1.125rem;
    font-weight: 600;
}

.checkout-button {
    margin-top: 1.5rem;
}

.checkout-button .wc-proceed-to-checkout,
.cart-summary .wc-proceed-to-checkout {
    padding: 0;
    margin: 0;
}

.checkout-button .wc-proceed-to-checkout a.checkout-button,
.cart-summary .wc-proceed-to-checkout a.checkout-button,
.wc-proceed-to-checkout a.checkout-button {
    display: block !important;
    width: 100% !important;
    padding: 1rem 2rem !important;
    background: var(--primary) !important;
    color: var(--white) !important;
    text-align: center !important;
    font-weight: 600 !important;
    border-radius: var(--radius-full) !important;
    transition: var(--transition-normal) !important;
    text-decoration: none !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    box-sizing: border-box !important;
}

.checkout-button .wc-proceed-to-checkout a.checkout-button:hover,
.cart-summary .wc-proceed-to-checkout a.checkout-button:hover,
.wc-proceed-to-checkout a.checkout-button:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.continue-shopping {
    margin-top: 1rem;
    text-align: center;
}

.continue-shopping a {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.continue-shopping a:hover {
    color: var(--primary);
}

.cart-trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.cart-trust-badges .badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.6875rem;
    color: var(--gray-500);
    text-align: center;
}

.cart-trust-badges .badge i {
    font-size: 1.25rem;
    color: var(--primary);
}

/* ===================================
   CHECKOUT PAGE
   =================================== */
.woocommerce-checkout-page {
    padding: 3rem 0 5rem;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 3rem;
    align-items: start;
}

.checkout-form-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.checkout-section {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.section-header-checkout {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.section-header-checkout .step-number {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
}

.section-header-checkout h3 {
    font-size: 1rem;
    margin: 0;
}

.checkout-section .woocommerce-billing-fields,
.checkout-section .woocommerce-shipping-fields,
.checkout-section .woocommerce-additional-fields__field-wrapper {
    padding: 1.5rem;
}

/* Checkout Form Fields */
.woocommerce-checkout .form-row {
    margin-bottom: 1rem;
}

.woocommerce-checkout .form-row label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.woocommerce-checkout .form-row .input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.woocommerce-checkout .form-row .input-text:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-subtle);
}

/* Order Summary Box */
.checkout-summary-section {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
}

.order-summary-box {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

.order-summary-box .summary-title {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.order-items {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.order-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
}

.order-item .item-image {
    width: 60px;
    height: 60px;
    position: relative;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

.order-item .item-qty {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-item .item-details {
    flex: 1;
}

.order-item .item-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-800);
    display: block;
    margin-bottom: 0.25rem;
}

.order-item .item-price {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
}

.order-totals .totals-row {
    display: flex;
    justify-content: space-between;
    padding: 0.625rem 0;
    font-size: 0.9375rem;
}

.order-totals .totals-row .label {
    color: var(--gray-600);
}

.order-totals .totals-row .value {
    font-weight: 500;
}

.order-totals .totals-row.total {
    border-top: 2px solid var(--gray-200);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
}

/* Payment Methods */
.payment-methods-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.payment-methods-section h4 {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.wc_payment_methods {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.wc_payment_methods li {
    margin-bottom: 0.5rem;
}

.wc_payment_methods .wc_payment_method label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
}

.wc_payment_methods .wc_payment_method input:checked+label {
    border-color: var(--primary);
    background: var(--primary-subtle);
}

.place-order-btn {
    width: 100%;
    padding: 1rem 2rem;
}

/* Checkout Trust Badges */
.checkout-trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.checkout-trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.checkout-trust-badges .badge i {
    font-size: 1.25rem;
    color: var(--gray-400);
}

/* ===================================
   404 ERROR PAGE
   =================================== */
.error-404-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1rem 4rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.error-404-page .container {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}

.error-content {
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 1rem;
}

.error-animation {
    margin-bottom: 1.5rem;
}

.error-number {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
}

.error-number .digit {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    color: var(--gray-200);
    font-family: var(--font-heading);
}

.error-number .digit.middle {
    color: var(--primary);
}

.error-number .gear-icon {
    width: 90px;
    height: 90px;
    animation: rotate 8s linear infinite;
}

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

    to {
        transform: rotate(360deg);
    }
}

.error-message h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.error-message p {
    font-size: 1rem;
    color: var(--gray-500);
    max-width: 400px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.error-search {
    margin-bottom: 1.5rem;
}

.search-form-404 {
    display: flex;
    gap: 0.5rem;
    max-width: 380px;
    margin: 0 auto;
}

.search-form-404 .search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
}

.search-form-404 .search-input:focus {
    outline: none;
    border-color: var(--primary);
}

.search-form-404 .btn {
    border-radius: var(--radius-full);
    padding: 0.75rem 1.25rem;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.error-actions .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
}

.helpful-links {
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.helpful-links h3 {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
    font-weight: 500;
}

.links-grid {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.help-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    padding: 1rem 1.25rem;
    background: transparent;
    border-radius: var(--radius-lg);
    color: var(--gray-600);
    transition: var(--transition-normal);
    min-width: 80px;
    border: 1px solid var(--gray-200);
}

.help-link i {
    font-size: 1.125rem;
    color: var(--primary);
}

.help-link span {
    font-size: 0.8125rem;
    font-weight: 500;
}

.help-link:hover {
    background: var(--primary-subtle);
    border-color: var(--primary);
    color: var(--primary);
}

.help-link:hover i {
    color: var(--primary);
}

/* Background Decoration - Hidden for flat look */
.error-bg-decoration {
    display: none;
}

/* ===================================
   SEARCH RESULTS PAGE
   =================================== */
.page-hero-search .search-hero-form {
    margin-top: 2rem;
}

.search-form-inline {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
}

.search-form-inline .search-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.9375rem;
    backdrop-filter: blur(10px);
}

.search-form-inline .search-input::placeholder {
    color: var(--gray-400);
}

.search-form-inline .search-input:focus {
    outline: none;
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.15);
}

.search-results-page {
    padding: 3rem 0 5rem;
}

/* Search Tabs */
.search-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
    overflow-x: auto;
}

.search-tabs .tab-item {
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
    background: var(--gray-100);
    border-radius: var(--radius-full);
    white-space: nowrap;
    transition: var(--transition-fast);
}

.search-tabs .tab-item:hover {
    background: var(--gray-200);
}

.search-tabs .tab-item.active {
    background: var(--primary);
    color: var(--white);
}

/* Search Results Grid */
.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.search-result-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-normal);
}

.search-result-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.search-result-card .result-image {
    position: relative;
    height: 180px;
    background: var(--gray-50);
    overflow: hidden;
}

.search-result-card .result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-card .placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--gray-300);
}

.result-type-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    background: var(--gray-900);
    color: var(--white);
}

.result-type-badge.product {
    background: var(--primary);
}

.result-type-badge.post {
    background: var(--success);
}

.result-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.result-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.result-category a {
    color: var(--primary);
}

.result-title {
    font-size: 1.0625rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.result-title a {
    color: var(--gray-900);
}

.result-title a:hover {
    color: var(--primary);
}

.result-excerpt {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.result-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.result-meta {
    font-size: 0.8125rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.result-meta i {
    margin-right: 0.25rem;
}

.result-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
}

.result-link i {
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.result-link:hover i {
    transform: translateX(4px);
}

/* Search Pagination */
.search-pagination {
    margin-top: 3rem;
}

.search-pagination .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.search-pagination .page-numbers li a,
.search-pagination .page-numbers li span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--gray-600);
    transition: var(--transition-fast);
}

.search-pagination .page-numbers li a:hover,
.search-pagination .page-numbers li .current {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 5rem 2rem;
}

.no-results-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--gray-400);
}

.no-results h2 {
    margin-bottom: 0.75rem;
}

.no-results>p {
    max-width: 450px;
    margin: 0 auto 2rem;
}

.no-results-suggestions {
    text-align: left;
    max-width: 400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.no-results-suggestions h3 {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.no-results-suggestions ul {
    margin: 0;
    padding-left: 1.25rem;
}

.no-results-suggestions li {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.no-results-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===================================
   FORM MESSAGE STYLES
   =================================== */
.form-message {
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-message.success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ===================================
   RESPONSIVE - Shop, Product, Cart, etc.
   =================================== */
@media (max-width: 1024px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 320px;
        max-width: 90%;
        z-index: 999;
        border-radius: 0;
        transform: translateX(-100%);
        transition: transform var(--transition-normal);
    }

    .shop-sidebar.active {
        transform: translateX(0);
    }

    .sidebar-close {
        display: flex;
    }

    .filter-toggle {
        display: flex;
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-gallery-section {
        position: static;
    }

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

    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary-section,
    .checkout-summary-section {
        position: static;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 4rem 0 3rem;
    }

    .error-number .digit {
        font-size: 5rem;
    }

    .error-number .gear-icon {
        width: 80px;
        height: 80px;
    }

    .cart-item {
        flex-direction: column;
        gap: 1rem;
    }

    .cart-item-details {
        flex-direction: column;
    }

    .cart-item-actions {
        justify-content: space-between;
    }

    .cart-item-subtotal {
        text-align: left;
    }

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

    .coupon-form {
        width: 100%;
    }

    .coupon-form input {
        flex: 1;
    }

    .search-results-grid {
        grid-template-columns: 1fr;
    }

    .links-grid {
        gap: 0.75rem;
    }

    .help-link {
        padding: 1rem;
        min-width: 80px;
    }
}

@media (max-width: 480px) {
    .product-tabs .tabs-nav {
        overflow-x: auto;
    }

    .product-tabs .tab-btn {
        padding: 0.875rem 1.25rem;
        white-space: nowrap;
    }

    .product-extra-actions {
        flex-wrap: wrap;
    }

    .product-extra-actions .action-btn {
        flex: 1;
        min-width: calc(50% - 0.5rem);
        justify-content: center;
    }

    .trust-badges {
        flex-direction: column;
        text-align: center;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-actions .btn {
        width: 100%;
    }
}

/* ===================================
   UPDATED HEADER STYLES
   =================================== */
.header-action-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--gray-700);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
}

.header-action-btn:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.site-header.transparent .header-action-btn {
    color: var(--white);
}

.site-header.transparent .header-action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.site-header.scrolled .header-action-btn {
    color: var(--gray-700);
}

.site-header.scrolled .header-action-btn:hover {
    background: var(--gray-100);
    color: var(--primary);
}

/* Cart Button */
.cart-btn {
    text-decoration: none;
}

.cart-count,
.wishlist-count {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.625rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.wishlist-count {
    background: var(--primary);
}

.wishlist-header-btn:hover .fa-heart {
    color: var(--primary);
}

/* Hamburger Menu - Hidden on desktop */
.mobile-menu-toggle {
    width: 44px;
    height: 44px;
    display: none !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 10px;
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
}

.hamburger-line {
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.site-header.transparent .hamburger-line {
    background: var(--white);
}

.site-header.scrolled .hamburger-line {
    background: var(--gray-700);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Search Overlay Updates */
.search-overlay .search-form-wrapper form {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-submit-btn {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-submit-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Mobile Navigation Panel */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

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

.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 90vw;
    background: var(--white);
    z-index: 999;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.mobile-nav-panel.active {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-nav-header .site-logo a {
    color: var(--gray-900);
}

.mobile-nav-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition-fast);
}

.mobile-nav-close:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.mobile-nav-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu>li {
    border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-menu>li>a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-800);
    transition: var(--transition-fast);
}

.mobile-nav-menu>li>a:hover {
    color: var(--primary);
    background: var(--gray-50);
}

.mobile-nav-menu .menu-item-has-children {
    position: relative;
}

.mobile-nav-menu .menu-item-has-children>a {
    padding-right: 60px;
}

.mobile-nav-menu .submenu-toggle {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    background: var(--white);
    border-radius: var(--radius-md);
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition-fast);
}

.mobile-nav-menu .submenu-toggle:hover {
    background: var(--gray-100);
    color: var(--gray-700);
}

.mobile-nav-menu .submenu-toggle.active i {
    transform: rotate(45deg);
}

.mobile-nav-menu .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    background: var(--gray-50);
    display: none;
}

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

.mobile-nav-menu .sub-menu li a {
    display: block;
    padding: 0.75rem 1.5rem 0.75rem 2.5rem;
    font-size: 0.9375rem;
    color: var(--gray-600);
    transition: var(--transition-fast);
}

.mobile-nav-menu .sub-menu li a:hover {
    color: var(--primary);
}

.mobile-nav-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-cart-btn,
.mobile-contact-btn {
    width: 100%;
    justify-content: center;
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */
.contact-page-content {
    padding: 4rem 0 6rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Contact Form Section */
.contact-form-section {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

.contact-form-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
}

.contact-form-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-form-card .form-subtitle {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

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

.veeworks-contact-form .form-group {
    margin-bottom: 1.25rem;
}

.veeworks-contact-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.veeworks-contact-form label .required {
    color: var(--error);
}

.veeworks-contact-form input,
.veeworks-contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.veeworks-contact-form input:focus,
.veeworks-contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-subtle);
}

.veeworks-contact-form input::placeholder,
.veeworks-contact-form textarea::placeholder {
    color: var(--gray-400);
}

.veeworks-contact-form button[type="submit"] {
    margin-top: 0.5rem;
}

.cf7-notice {
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.contact-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

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

.contact-card-content h3 {
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.contact-card-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

.contact-card-content a {
    color: var(--gray-600);
}

.contact-card-content a:hover {
    color: var(--primary);
}

/* Contact Social */
.contact-social {
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.contact-social h3 {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.contact-social .social-links {
    display: flex;
    gap: 0.75rem;
}

.contact-social .social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    color: var(--gray-600);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.contact-social .social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Map Section */
.contact-map-section {
    padding-top: 3rem;
    border-top: 1px solid var(--gray-200);
}

.contact-map-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    display: block;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        position: static;
    }

    .contact-info-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .veeworks-contact-form .form-row-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-form-card {
        padding: 1.5rem;
    }

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

    .main-navigation {
        display: none;
    }
}

@media (max-width: 480px) {
    .contact-social .social-links {
        flex-wrap: wrap;
    }
}

/* ===================================
   REQUEST QUOTE PAGE STYLES
   =================================== */
.page-hero-quote {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--gray-900) 100%);
}

.quote-page-content {
    padding: 4rem 0 6rem;
}

.quote-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.quote-form-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
}

.quote-form-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.quote-form-card .form-subtitle {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

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

.quote-form .form-group {
    margin-bottom: 1.25rem;
}

.quote-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.quote-form label .required {
    color: var(--error);
}

.quote-form input,
.quote-form textarea,
.quote-form select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-family: var(--font-primary);
    transition: var(--transition-fast);
    background: var(--white);
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-subtle);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: var(--gray-400);
}

.quote-form .form-checkbox {
    margin-top: 1.5rem;
}

.quote-form .form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 400;
    cursor: pointer;
}

.quote-form .form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.quote-form .form-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

.quote-submit-btn {
    width: 100%;
    margin-top: 1rem;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Quote Sidebar */
.quote-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

.quote-product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

.quote-product-card h3 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.quote-product-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1rem;
    background: var(--gray-50);
}

.quote-product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.quote-product-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.quote-product-category {
    font-size: 0.875rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.quote-product-description {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.quote-info-card {
    background: var(--primary-subtle);
    border: 1px solid var(--primary);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

.quote-info-card h3 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.quote-benefits {
    list-style: none;
}

.quote-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-700);
    padding: 0.5rem 0;
}

.quote-benefits li i {
    color: var(--success);
    font-size: 1rem;
}

.quote-contact-card {
    background: var(--gray-900);
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

.quote-contact-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.quote-contact-card p {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.quote-contact-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quote-contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.quote-contact-link:hover {
    color: var(--primary-light);
}

.quote-contact-link i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

/* Quote Page Responsive */
@media (max-width: 1024px) {
    .quote-layout {
        grid-template-columns: 1fr;
    }

    .quote-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .quote-product-card {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .quote-form .form-row {
        grid-template-columns: 1fr;
    }

    .quote-form-card {
        padding: 1.5rem;
    }

    .quote-sidebar {
        grid-template-columns: 1fr;
    }

    .quote-product-card {
        grid-column: span 1;
    }
}

/* ===================================
   WISHLIST PAGE STYLES
   =================================== */
.page-hero-wishlist {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.wishlist-page-content {
    padding: 4rem 0 6rem;
    min-height: 50vh;
}

.wishlist-empty {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state {
    max-width: 400px;
    margin: 0 auto;
}

.empty-state-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 2.5rem;
    color: var(--gray-400);
}

.empty-state h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.empty-state p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.wishlist-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-normal);
}

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

.wishlist-card-image {
    position: relative;
    aspect-ratio: 1;
    background: var(--gray-50);
}

.wishlist-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist-remove-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: none;
    border-radius: var(--radius-full);
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.wishlist-remove-btn:hover {
    background: var(--error);
    color: var(--white);
}

.wishlist-card-info {
    padding: 1.25rem;
}

.wishlist-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.wishlist-card-title a {
    color: var(--gray-900);
    text-decoration: none;
}

.wishlist-card-title a:hover {
    color: var(--primary);
}

.wishlist-card-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

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

.wishlist-card-actions .btn {
    flex: 1;
    justify-content: center;
}

.wishlist-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.btn-danger {
    color: var(--error);
    border-color: var(--error);
}

.btn-danger:hover {
    background: var(--error);
    color: var(--white);
    border-color: var(--error);
}

/* Wishlist Page Responsive */
@media (max-width: 1200px) {
    .wishlist-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .wishlist-card-info {
        padding: 1rem;
    }

    .wishlist-card-title {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .wishlist-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   WISHLIST, COMPARE & SHARE STYLES
   ================================ */

/* Product Extra Actions */
.product-extra-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin: 1.5rem 0;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    color: var(--gray-700);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.action-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-subtle);
}

.action-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-subtle);
}

.action-btn.active i {
    color: var(--primary);
}

.action-btn i {
    font-size: 1rem;
    transition: var(--transition-fast);
}

.wishlist-btn.active i {
    color: #e74c3c;
}

/* Share Wrapper */
.share-wrapper {
    position: relative;
}

.share-dropdown {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.2s ease;
    z-index: 100;
    margin-bottom: 0.5rem;
}

.share-dropdown::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--white);
}

.share-dropdown::before {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid var(--gray-200);
}

.share-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.share-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.875rem;
    color: var(--gray-700);
    font-size: 0.875rem;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    text-decoration: none;
    width: 100%;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
}

.share-link:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}

.share-link i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.share-link.facebook:hover {
    color: #1877f2;
}

.share-link.twitter:hover {
    color: #1da1f2;
}

.share-link.linkedin:hover {
    color: #0a66c2;
}

.share-link.pinterest:hover {
    color: #e60023;
}

.share-link.whatsapp:hover {
    color: #25d366;
}

.share-link.copy-link:hover {
    color: var(--primary);
}

/* Notification Toast */
.veeworks-notification {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--gray-900);
    color: var(--white);
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    box-shadow: var(--shadow-xl);
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
}

.veeworks-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.veeworks-notification.success {
    background: #10b981;
}

.veeworks-notification.warning {
    background: #f59e0b;
}

.veeworks-notification.error {
    background: #ef4444;
}

.veeworks-notification i {
    font-size: 1.125rem;
}

/* Compare Bar */
.compare-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.compare-bar.show {
    transform: translateY(0);
}

.compare-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.compare-bar-items {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.compare-bar-item {
    position: relative;
    width: 60px;
    height: 60px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.compare-bar-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compare-bar-item .remove-item {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: var(--gray-900);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.compare-bar-item .remove-item:hover {
    background: #ef4444;
}

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

.compare-count {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
}

.compare-view-btn,
.compare-clear-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* Compare Modal */
.compare-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.compare-modal.show {
    opacity: 1;
    visibility: visible;
}

.compare-modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 1000px;
    max-height: 90vh;
    width: 100%;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.compare-modal.show .compare-modal-content {
    transform: scale(1);
}

.compare-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.compare-modal-header h2 {
    font-size: 1.25rem;
    margin: 0;
}

.compare-modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--gray-100);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition-fast);
}

.compare-modal-close:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.compare-modal-body {
    padding: 1.5rem;
    overflow-x: auto;
    max-height: calc(90vh - 80px);
}

.compare-table-wrapper {
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.compare-table th,
.compare-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
    vertical-align: top;
}

.compare-table th {
    background: var(--gray-50);
    min-width: 200px;
}

.compare-table td:first-child,
.compare-table th:first-child {
    text-align: left;
    background: var(--white);
    position: sticky;
    left: 0;
    z-index: 1;
    min-width: 120px;
}

.compare-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.compare-product img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}

.compare-product h4 {
    font-size: 0.9375rem;
    margin: 0;
}

.compare-product h4 a {
    color: var(--gray-900);
    text-decoration: none;
}

.compare-product h4 a:hover {
    color: var(--primary);
}

.compare-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
}

.compare-product .btn-sm {
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
}

/* Responsive */
@media (max-width: 768px) {
    .product-extra-actions {
        flex-direction: column;
    }

    .action-btn {
        width: 100%;
        justify-content: center;
    }

    .share-dropdown {
        left: 0;
        right: 0;
        transform: translateX(0);
        bottom: auto;
        top: 100%;
        margin-top: 0.5rem;
        margin-bottom: 0;
    }

    .share-dropdown::after,
    .share-dropdown::before {
        bottom: auto;
        top: -8px;
        border-top: none;
        border-bottom: 8px solid var(--white);
    }

    .share-dropdown::before {
        top: -9px;
        border-bottom: 9px solid var(--gray-200);
    }

    .compare-bar-content {
        flex-direction: column;
        gap: 1rem;
    }

    .compare-bar-items {
        justify-content: center;
    }

    .compare-bar-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .veeworks-notification {
        left: 1rem;
        right: 1rem;
        transform: translateX(0) translateY(100px);
        width: auto;
    }

    .veeworks-notification.show {
        transform: translateX(0) translateY(0);
    }
}

@media (max-width: 480px) {
    .action-btn .btn-text {
        display: none;
    }

    .action-btn {
        width: auto;
        flex: 1;
        justify-content: center;
        padding: 0.75rem;
    }

    .action-btn i {
        font-size: 1.125rem;
    }

    .compare-bar-item {
        width: 50px;
        height: 50px;
    }
}

/* ==========================================================================
   WooCommerce Button Overrides - Theme Color
   ========================================================================== */

/* Override WooCommerce default purple buttons with theme teal color */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.single_add_to_cart_button,
.button.alt,
.checkout-button,
.wc-block-components-button {
    background-color: var(--primary) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--radius-md) !important;
    font-weight: 600 !important;
    padding: 0.875rem 2rem !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.single_add_to_cart_button:hover,
.button.alt:hover,
.checkout-button:hover,
.wc-block-components-button:hover {
    background-color: var(--primary-dark) !important;
    color: #fff !important;
}

/* Disabled state */
.woocommerce #respond input#submit:disabled,
.woocommerce a.button:disabled,
.woocommerce button.button:disabled,
.woocommerce input.button:disabled,
.single_add_to_cart_button:disabled {
    background-color: var(--gray-400) !important;
    cursor: not-allowed !important;
}

/* Request Quote button specific - matches Add to Cart exactly */
.product-add-to-cart .request-quote-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--primary) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--radius-md) !important;
    font-weight: 600 !important;
    padding: 0.875rem 2rem !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    text-decoration: none;
    flex: 1;
    min-width: 200px;
}

.product-add-to-cart .request-quote-link:hover {
    background-color: var(--primary-dark) !important;
    color: #fff !important;
}

/* Stock Status Styling */
.product-stock-status .on-request {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 500;
}

.product-stock-status .on-request i {
    color: var(--primary);
}

/* ===================================
   WORDPRESS CUSTOMIZER PREVIEW FIXES
   =================================== */

/* When in Customizer preview, add top padding for admin bar */
.customize-partial-edit-shortcuts-shown .site-header,
html.wp-toolbar .site-header {
    top: 32px;
}

.customize-partial-edit-shortcuts-shown .hero-video-section,
.customize-partial-edit-shortcuts-shown .tengen-hero {
    margin-top: 32px;
}

/* Ensure sticky header accounts for admin bar in Customizer */
.customize-partial-edit-shortcuts-shown .site-header.scrolled {
    top: 32px;
}

/* Fix body padding when admin bar is present */
.admin-bar .site-header {
    top: 32px;
}

.admin-bar .hero-video-section,
.admin-bar .tengen-hero {
    margin-top: 0;
}

/* Customizer edit shortcuts styling */
.customize-partial-edit-shortcut-button {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.customize-partial-edit-shortcut-button:hover {
    background: var(--primary-dark) !important;
}

/* Mobile admin bar adjustments */
@media screen and (max-width: 782px) {

    .admin-bar .site-header,
    .customize-partial-edit-shortcuts-shown .site-header {
        top: 46px;
    }

    .customize-partial-edit-shortcuts-shown .hero-video-section,
    .customize-partial-edit-shortcuts-shown .tengen-hero {
        margin-top: 46px;
    }
}

/* ===================================
   HERO HOTSPOTS OVERLAY
   =================================== */
.hero-hotspots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    /* Above video(0) and overlay(1) and particles(2), below content(10) */
    pointer-events: none;
    /* Let clicks pass through unless on hotspot */
}

.hotspot {
    position: absolute;
    width: 24px;
    height: 24px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    pointer-events: auto;
    z-index: 6;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.hotspot-dot {
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.hotspot-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.hotspot-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 1;
    animation: hotspotPulse 2s infinite;
}

@keyframes hotspotPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.hotspot-label {
    position: absolute;
    left: 12px;
    /* Center of dot */
    top: 50%;
    transform: translateY(-50%) translateX(20px);
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    color: var(--gray-900);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 0.875rem;
    font-weight: 600;
}

.hotspot-label i {
    color: var(--primary);
}

.hotspot-label .arrow {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* Active State */
.hotspot.active .hotspot-dot {
    transform: scale(0.8);
    background: #fff;
    box-shadow: 0 0 0 4px var(--primary);
}

.hotspot.active .hotspot-dot::after {
    background: var(--primary);
}

.hotspot.active .hotspot-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(32px);
}

/* Hover State */
.hotspot:hover .hotspot-dot {
    transform: scale(1.1);
}

/* Product Resource Buttons */
.product-resources-buttons {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.resource-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-normal);
    justify-content: center;
    min-width: 160px;
}

.resource-btn i {
    font-size: 1.1rem;
}

.video-btn {
    background-color: #ef4444;
    /* YouTube red-ish */
    color: #ffffff !important;
    box-shadow: 0 4px 6px rgba(239, 68, 68, 0.2);
}

.video-btn:hover {
    background-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(239, 68, 68, 0.3);
}

.catalogue-btn {
    background-color: var(--gray-800);
    color: #ffffff !important;
    box-shadow: 0 4px 6px rgba(31, 41, 55, 0.2);
}

.catalogue-btn:hover {
    background-color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(31, 41, 55, 0.3);
}

/* Video Thumbnail in Gallery */
.thumbnail.video-thumbnail {
    position: relative;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    overflow: hidden;
}

.thumbnail.video-thumbnail .video-placeholder {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
}

.thumbnail.video-thumbnail span {
    font-size: 0.7rem;
    color: #fff;
    font-weight: 500;
    margin-top: -2px;
}

.thumbnail.video-thumbnail:hover .video-placeholder,
.thumbnail.video-thumbnail.active .video-placeholder {
    background: var(--primary);
}

/* Catalogue Action Button */
.catalogue-action-btn {
    color: var(--white) !important;
    background: var(--gray-800);
}

.catalogue-action-btn:hover {
    background: var(--black);
    transform: translateY(-2px);
}

.catalogue-action-btn i {
    font-size: 1.1rem;
}

/* Make Catalogue Button Look Like Wishlist Button */
.catalogue-action-btn {
    background: transparent !important;
    color: var(--gray-600) !important;
    border: none;
    box-shadow: none !important;
    transform: none !important;
}

.catalogue-action-btn:hover {
    background: transparent !important;
    color: var(--primary) !important;
    transform: none !important;
}

.catalogue-action-btn i {
    font-size: 1.1rem;
    /* Same as other action buttons */
}

/* Custom Lightbox */
.veeworks-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.veeworks-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-2xl);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 2rem;
}

/* ===================================
   DOWNLOADS PAGE STYLES
   =================================== */
.downloads-filter-bar {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
    border: 1px solid var(--gray-200);
}

.downloads-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 250px;
}

.filter-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.filter-select,
.filter-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--gray-800);
    background-color: var(--white);
    transition: var(--transition-fast);
}

.filter-select:focus,
.filter-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-subtle);
}

.search-input-wrapper {
    position: relative;
}

.search-submit {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 48px;
    background: transparent;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-submit:hover {
    color: var(--primary);
}

/* Downloads List Table */
.downloads-list-wrapper {
    background: var(--white);
    /* border: 1px solid var(--gray-200); */
    /* border-radius: var(--radius-lg); */
    /* overflow: hidden; */
}

.downloads-table-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr;
    padding: 1.25rem 2rem;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    font-weight: 600;
    color: var(--gray-700);
    text-transform: uppercase;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
}

.download-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--gray-100);
    align-items: center;
    transition: var(--transition-fast);
}

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

.download-item:hover {
    background: var(--gray-50);
}

.doc-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.doc-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-subtle);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.doc-title h3 {
    font-size: 1.05rem;
    margin: 0;
    color: var(--gray-900);
    font-weight: 600;
}

.doc-meta {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

.doc-type {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
}

.download-link .btn {
    padding: 0.5rem 1.25rem;
}

.download-link .btn i {
    font-size: 1rem;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    margin: 0 0.25rem;
    padding: 0 0.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--gray-600);
    transition: var(--transition-fast);
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--primary);
    color: var(--white);
}

.loading-state,
.no-results,
.error-state {
    padding: 4rem;
    text-align: center;
    color: var(--gray-500);
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .downloads-table-header {
        display: none;
    }

    .download-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
        background: var(--white);
        margin-bottom: 1rem;
        border: 1px solid var(--gray-200);
        border-radius: var(--radius-md);
    }

    .col-type,
    .col-download {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .col-type::before {
        content: 'Type';
        font-weight: 600;
        color: var(--gray-500);
        margin-right: 1rem;
    }

    .col-download {
        margin-top: 0.5rem;
    }
}

/* ===================================
   VIDEO PAGE STYLES
   =================================== */

/* Container */
.video-page-container {
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Tabs */
.video-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 2rem;
}

.video-breadcrumbs {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.video-breadcrumbs a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
}

.video-breadcrumbs span {
    color: var(--primary);
}

.video-tabs {
    display: flex;
    gap: 1.5rem;
}

.video-tab {
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-500);
    cursor: pointer;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.video-tab:hover,
.video-tab.active {
    color: var(--primary);
}

.video-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

/* Video Card */
.video-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: block;
    /* Important for filtering */
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000;
    overflow: hidden;
    border-radius: 8px;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    opacity: 0.9;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
    opacity: 0.8;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 2;
}

.video-card:hover .play-button {
    background: var(--primary);
    color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 1.25rem 0.5rem;
}

.video-date {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.video-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.4;
    margin: 0;
}

/* Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 10001;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    z-index: 10002;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-header {
        flex-direction: column;
        align-items: flex-start;
    }

}

/* ===================================
   BLOG / NEWS GRID STYLES (Beautification)
   =================================== */

/* Grid Layout */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Post Card */
.post-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    /* Subtle border */
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

/* Thumbnail */
.post-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.post-thumbnail a {
    display: block;
    width: 100%;
    height: 100%;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.08);
    /* Zoom effect */
}

/* Content Container */
.post-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Meta Data */
.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.post-meta i {
    color: var(--primary);
    font-size: 0.9em;
}

/* Title */
.post-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.post-title a {
    color: var(--gray-900);
    text-decoration: none;
    transition: color 0.2s;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    padding-bottom: 2px;
}

.post-title a:hover {
    color: var(--primary);
    background-size: 100% 2px;
}

/* Excerpt */
.post-excerpt {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Button */
.post-content .btn-primary {
    align-self: flex-start;
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    box-shadow: none;
}

.post-content .btn-primary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Pagination (if not already styled) */
.pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }

    .post-content {
        padding: 1.25rem;
    }
}

/* ===================================
   SINGLE POST STYLES (Premium Layout)
   =================================== */

/* Container Utilities */
.container-medium {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-narrow {
    max-width: 740px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.entry-header {
    text-align: center;
    padding: 4rem 0 2rem;
}

.entry-meta-top {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

.entry-meta-top .entry-category a {
    color: var(--primary);
    text-decoration: none;
    margin-right: 0.5rem;
}

.entry-meta-top .entry-date {
    color: var(--gray-500);
}

.entry-meta-top .entry-date::before {
    content: '•';
    margin: 0 0.5rem;
    color: var(--gray-400);
}

.entry-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--gray-900);
}

.author-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.author-meta img {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    object-fit: cover;
    border: 2px solid var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.author-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-700);
}

.author-name a {
    color: var(--gray-900);
    text-decoration: none;
    font-weight: 600;
}

/* Featured Image */
.entry-featured-image {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.entry-featured-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

/* Content */
.entry-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 3rem;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: var(--gray-900);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.entry-content h2 {
    font-size: 2rem;
}

.entry-content h3 {
    font-size: 1.5rem;
}

.entry-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--gray-800);
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

/* Footer & Tags */
.entry-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid var(--gray-200);
}

.entry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.tags-label {
    font-weight: 600;
    color: var(--gray-900);
    margin-right: 0.5rem;
}

.entry-tags a {
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s;
}

.entry-tags a:hover {
    background: var(--primary);
    color: white;
}

.entry-share {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.share-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.2s;
}

.share-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Author Box */
.entry-author-box {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.entry-author-box .author-avatar img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
}

.author-heading {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.author-bio {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.author-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

/* Post Navigation */
.post-navigation-wrapper .navigation {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.post-navigation-wrapper .nav-links {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.nav-previous,
.nav-next {
    width: 48%;
}

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

.nav-subtitle {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
    letter-spacing: 1px;
}

.nav-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
}

.nav-links a {
    display: block;
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.nav-links a:hover {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .entry-author-box {
        flex-direction: column;
        text-align: center;
    }

    .entry-author-box .author-avatar {
        margin: 0 auto;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-previous,
    .nav-next {
        width: 100%;
        text-align: center;
    }
}

/* Why Choose Us Section - Specific grid for new design */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    /* Maintain primary color as base, or custom */
}

/* Specific icon colors based on the image (Black/Green and Yellow/Teal) */
.feature-item:nth-child(odd) .feature-icon {
    /* Mimic the eye icon colors roughly with gradient text or similar if using font icons */
    color: var(--black);
    /* Base color */
}

.feature-item:nth-child(even) .feature-icon {
    color: var(--warning);
    /* Yellowish/Orange base */
}

.feature-item h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0;
    color: var(--gray-900);
}

.features-description {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    color: var(--gray-600);
    font-size: 1.125rem;
    line-height: 1.6;
}

.features-description p {
    margin-bottom: 1.5rem;
}
