/*
Theme Name: SYLK Foods
Theme URI: https://sylkfoods.com
Author: SYLK Foods Team
Author URI: https://sylkfoods.com
Description: A modern WordPress theme for SYLK Foods with WooCommerce and Elementor support.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sylk-foods
Tags: e-commerce, modern, dark-mode
*/
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #0a0e0d;
    --surface-color: #1a1a1a;
    --text-color: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-muted-strong: rgba(255, 255, 255, 0.6);
    --primary-color: #FF8C00;
    --border-color: rgba(255, 140, 0, 0.2);
    --card-bg: rgba(255, 140, 0, 0.03);
    --nav-bg: rgba(26, 26, 26, 0.8);
    --mobile-menu-bg: rgba(26, 26, 26, 0.98);
    --input-bg: rgba(10, 14, 13, 0.6);
    --footer-bg: rgba(10, 14, 13, 0.95);
    --chat-window-bg: rgba(10, 14, 13, 0.98);
}

body.light-mode {
    --bg-color: #ffffff;
    --surface-color: #f4f4f4;
    --text-color: #1a1a1a;
    --text-muted: rgba(0, 0, 0, 0.7);
    --text-muted-strong: rgba(0, 0, 0, 0.85);
    --border-color: rgba(255, 140, 0, 0.3);
    --card-bg: rgba(255, 140, 0, 0.05);
    --nav-bg: rgba(255, 255, 255, 0.95);
    --mobile-menu-bg: rgba(255, 255, 255, 0.98);
    --input-bg: rgba(240, 240, 240, 0.8);
    --footer-bg: rgba(245, 245, 245, 0.95);
    --chat-window-bg: #ffffff;
}

body {
    box-sizing: border-box;
    font-family: 'Sora', sans-serif;
    overflow-x: hidden;
    background: var(--bg-color);
    color: var(--text-color);
    transition: background 0.3s ease, color 0.3s ease;
}

html,
body {
    height: 100%;
}

/* Animated Gradient Background */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #1a1a1a 0%, #2e2e2e 50%, #1a1a1a 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

body.light-mode .gradient-bg {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Particle System */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 140, 0, 0.3);
    border-radius: 50%;
    animation: float-particle 20s infinite ease-in-out;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 5%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    padding: 1.2rem 5%;
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
    position: relative;
    /* For absolute centering of menu */
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-symbol {
    position: relative;
    width: 48px;
    height: 48px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-color);
}

.logo-text .orange-text {
    color: #FF8C00;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    align-items: center;
}

.nav-links li {
    display: flex;
    align-items: center;
}

#themeToggle {
    position: relative;
    z-index: 2000;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
    /* Prevent wrapping */
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF8C00, #FFFFFF);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links>li:not(:last-child)>a {
    position: relative;
    top: 5px;
    display: inline-block;
}

body.light-mode .nav-links a::before {
    background: linear-gradient(90deg, #FF8C00, #1a1a1a);
}

.nav-links a:hover,
.nav-links a.active {
    color: #FF8C00;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: #FF8C00;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background: var(--mobile-menu-bg);
    backdrop-filter: blur(20px);
    padding: 8rem 3rem 3rem;
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(255, 140, 0, 0.2);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease;
}

.mobile-menu.active li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.active li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu.active li:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-menu.active li:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-menu.active li:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1rem;
}

.mobile-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 3px;
    background: #FF8C00;
    transition: width 0.3s ease;
}

.mobile-menu a:hover {
    color: #FF8C00;
    padding-left: 2rem;
}

.mobile-menu a:hover::before {
    width: 1rem;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 5% 4rem;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 140, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 140, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.hero-slider {
    position: relative;
    width: 100%;
    max-width: 1400px;
    overflow: hidden;
    z-index: 2;
}

.hero-slides-container {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
    min-width: 100%;
    text-align: center;
    padding: 0 2rem;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    max-width: 1400px;
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 50px;
    color: #FF8C00;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInDown 1s ease;
}

.hero h1 {
    font-size: 6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #FF8C00 30%, #9E9E9E 60%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -3px;
    animation: fadeInUp 1s ease 0.2s backwards, gradientFlow 8s ease infinite;
    text-shadow: 0 0 80px rgba(255, 140, 0, 0.5);
}

body.light-mode .hero h1 {
    background: linear-gradient(135deg, #1a1a1a 0%, #FF8C00 30%, #4a4a4a 60%, #1a1a1a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: none;
}

@keyframes gradientFlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero p {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.cta-button {
    padding: 1.3rem 3rem;
    background: linear-gradient(135deg, #FF8C00 0%, #FFFFFF 100%);
    color: #000000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(255, 140, 0, 0.4);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

body.light-mode .cta-button {
    background: linear-gradient(135deg, #FF8C00 0%, #ffcc80 100%);
    color: #1a1a1a;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 30px 80px rgba(255, 140, 0, 0.6);
}

.cta-secondary {
    background: transparent;
    border: 2px solid rgba(255, 140, 0, 0.5);
    color: #FF8C00;
    box-shadow: none;
}

.cta-secondary:hover {
    background: rgba(255, 140, 0, 0.1);
    border-color: #FF8C00;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    gap: 1rem;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.3);
    border: 2px solid rgba(255, 140, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #FF8C00;
    border-color: #FF8C00;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.6);
}

.slider-dot:hover {
    background: rgba(255, 140, 0, 0.6);
    transform: scale(1.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating 3D Cards */
.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.float-card {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 140, 0, 0.05);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    animation: float3d 20s infinite ease-in-out;
}

.float-card-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.float-card-2 {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.float-card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

/* Floating Food Packages */
.float-food {
    position: absolute;
    opacity: 0.4;
    animation: float3d 25s infinite ease-in-out;
}

.float-food-1 {
    top: 20%;
    right: 8%;
    animation-delay: 2s;
}

.float-food-2 {
    top: 70%;
    left: 12%;
    animation-delay: 7s;
}

.float-food-3 {
    top: 40%;
    left: 5%;
    animation-delay: 12s;
}

.float-food-4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 17s;
}

.float-food-5 {
    top: 35%;
    right: 18%;
    animation-delay: 22s;
}

@keyframes float3d {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(5deg);
    }

    66% {
        transform: translate(-30px, 30px) rotate(-5deg);
    }
}

/* About Section */
.about {
    padding: 10rem 5%;
    position: relative;
    z-index: 1;
}

.about-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.about-content {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 50px;
    color: #FF8C00;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-content h2 {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -2px;
}

body.light-mode .about-content h2 {
    background: linear-gradient(135deg, #1a1a1a 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.about-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF8C00 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

body.light-mode .stat-number {
    background: linear-gradient(135deg, #FF8C00 0%, #1a1a1a 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted-strong);
    font-weight: 400;
}

.about-visual {
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-visual.visible {
    opacity: 1;
    transform: translateX(0);
}

.visual-card {
    background: rgba(255, 140, 0, 0.05);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 30px;
    padding: 4rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.visual-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 140, 0, 0.5);
    box-shadow: 0 30px 80px rgba(255, 140, 0, 0.3);
}

.visual-content {
    position: relative;
    z-index: 1;
}

.visual-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.visual-text {
    font-size: 1.1rem;
    color: var(--text-muted-strong);
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 10rem 5%;
    position: relative;
    z-index: 1;
}

.services-container {
    max-width: 1600px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.services-header h2 {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.services-header p {
    font-size: 1.2rem;
    color: var(--text-muted-strong);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 140, 0, 0.15);
    border-radius: 30px;
    padding: 3.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 140, 0, 0.5);
    box-shadow: 0 30px 80px rgba(255, 140, 0, 0.3);
    background: rgba(255, 140, 0, 0.08);
}

.service-icon {
    margin-bottom: 2rem;
    display: block;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) translateY(-5px);
}

.service-card:hover .service-icon svg {
    filter: drop-shadow(0 10px 20px rgba(255, 140, 0, 0.4));
}

.service-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-muted-strong);
    line-height: 1.7;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.service-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 140, 0, 0.1);
    z-index: 0;
}

/* Global Footer Styles */
.global-footer {
    background: var(--footer-bg);
    border-top: 1px solid rgba(255, 140, 0, 0.2);
    padding: 6rem 5% 2rem;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(20px);
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 140, 0, 0.15);
}

.footer-column .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.footer-brand-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-color);
}

.brand-desc {
    color: var(--text-muted-strong);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 10px;
    display: grid;
    place-items: center;
    align-content: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
    line-height: 0;
    box-sizing: border-box;
    flex-shrink: 0;
    overflow: hidden;
}

.social-links a svg {
    margin: 0;
    padding: 0;
    display: block;
    width: 20px;
    height: 20px;
}

.social-links a:hover {
    background: #FF8C00;
    color: #000;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
    font-size: 2.2rem;
}

.footer-tagline {
    color: var(--text-muted-strong);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 140, 0, 0.05);
    border: 1px solid rgba(255, 140, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(255, 140, 0, 0.15);
    border-color: rgba(255, 140, 0, 0.5);
    color: #FF8C00;
    transform: translateY(-3px);
}

.footer-links {
    /* display: grid removed - it's a list inside a column */
    display: block;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 1rem;
}

.footer-column a {
    color: var(--text-muted-strong);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-column a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #FF8C00, #FFFFFF);
    transition: width 0.3s ease;
}

.footer-column a:hover {
    color: #FF8C00;
    transform: translateX(3px);
}

.footer-column a:hover::before {
    width: 100%;
}

.footer-bottom {
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    color: var(--text-muted-strong);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--text-muted-strong);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #FF8C00;
}

.footer-legal .separator {
    color: rgba(255, 140, 0, 0.3);
    font-size: 0.8rem;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 2000;
}

.chat-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #FF8C00;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.chat-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chat-button:hover::before {
    opacity: 1;
}

.chat-button:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 140, 0, 0.6);
}

.chat-button:active {
    transform: scale(1.05);
}

.chat-button.animating {
    animation: chatButtonRotate 2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

@keyframes chatButtonRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.chat-button-icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.chat-button:hover .chat-button-icon {
    transform: rotate(5deg) scale(1.1);
}

.chat-window {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 380px;
    height: 550px;
    background: var(--chat-window-bg);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    animation: chatOpen 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-window.active {
    display: flex;
}

@keyframes chatOpen {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.chat-header {
    background: rgba(255, 140, 0, 0.1);
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

body.light-mode .chat-header {
    background: rgba(255, 140, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.chat-header-logo {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.chat-header-info {
    flex: 1;
}

.chat-header-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.2rem;
}

.chat-header-status {
    font-size: 0.85rem;
    color: rgba(255, 140, 0, 0.9);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #FF8C00;
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.9);
    }
}

.chat-close {
    background: none;
    border: none;
    color: var(--text-muted-strong);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.chat-close:hover {
    background: rgba(255, 140, 0, 0.1);
    color: #FF8C00;
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(255, 140, 0, 0.05);
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 140, 0, 0.3);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 140, 0, 0.5);
}

.chat-message {
    display: flex;
    gap: 0.8rem;
    animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FF8C00;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message-content {
    flex: 1;
}

.message-text {
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.2);
    padding: 0.9rem 1.1rem;
    border-radius: 12px;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

body.light-mode .message-text {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.message-time {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.4rem;
    padding-left: 0.2rem;
}

.chat-input-area {
    padding: 1.2rem;
    border-top: 1px solid rgba(255, 140, 0, 0.2);
    background: rgba(10, 14, 13, 0.5);
}

body.light-mode .chat-input-area {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.chat-input-wrapper {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.chat-input {
    flex: 1;
    background: rgba(255, 140, 0, 0.05);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 12px;
    padding: 0.9rem 1.1rem;
    color: var(--text-color);
    font-size: 0.95rem;
    font-family: 'Sora', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

body.light-mode .chat-input {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
}

.chat-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

body.light-mode .chat-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.chat-input:focus {
    border-color: rgba(255, 140, 0, 0.5);
    background: rgba(255, 140, 0, 0.08);
}

.chat-send {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #FF8C00;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.chat-send:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.4);
}

.chat-send:active {
    transform: scale(0.95);
}

.chat-quick-questions {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
    background: rgba(10, 14, 13, 0.5);
}

body.light-mode .chat-quick-questions {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.quick-questions-title {
    font-size: 0.8rem;
    color: var(--text-muted-strong);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.quick-questions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
}

.quick-question-btn {
    background: rgba(255, 140, 0, 0.08);
    border: 1px solid rgba(255, 140, 0, 0.25);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    color: var(--text-color);
    font-size: 0.9rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Sora', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

body.light-mode .quick-question-btn {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
}

body.light-mode .quick-question-btn:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: #FF8C00;
}

.quick-question-btn:hover {
    background: rgba(255, 140, 0, 0.15);
    border-color: rgba(255, 140, 0, 0.4);
    transform: translateX(3px);
}

.quick-question-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF8C00;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content h2,
    .services-header h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .cta-group {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content h2,
    .services-header h2 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .chat-widget {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .chat-button {
        width: 60px;
        height: 60px;
    }

    .chat-window {
        width: calc(100vw - 3rem);
        height: 500px;
        right: -1.5rem;
    }
}

@view-transition {
    navigation: auto;
}

/* Team Section */
.team-section {
    padding: 10rem 5%;
    position: relative;
    z-index: 1;
}

.team-header {
    text-align: center;
    margin-bottom: 6rem;
}

.team-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 140, 0, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 140, 0, 0.5);
    box-shadow: 0 20px 50px rgba(255, 140, 0, 0.2);
}

.team-image {
    width: 100%;
    height: 300px;
    background: rgba(255, 140, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.team-role {
    color: #FF8C00;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-muted-strong);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Form */
.contact-section {
    padding: 10rem 5%;
    position: relative;
    z-index: 1;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
}

.contact-info h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF8C00;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--text-muted-strong);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--card-bg);
    border: 1px solid rgba(255, 140, 0, 0.15);
    border-radius: 30px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.form-input,
.form-textarea {
    width: 100%;
    background: var(--input-bg);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 12px;
    padding: 1rem;
    color: var(--text-color);
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input option {
    background: var(--surface-color);
    color: var(--text-color);
}

.form-input:focus,
.form-textarea:focus {
    border-color: #FF8C00;
    background: rgba(255, 140, 0, 0.05);
    outline: none;
}

.form-textarea {
    height: 150px;
    resize: vertical;
}

/* Process Section (Services) */
.process-section {
    padding: 10rem 5%;
    position: relative;
    z-index: 1;
}

.process-steps {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 2px;
    height: 100%;
    background: rgba(255, 140, 0, 0.2);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    position: relative;
}

.step-number {
    width: 100px;
    height: 100px;
    background: var(--bg-color);
    border: 2px solid #FF8C00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #FF8C00;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.2);
}

.step-content {
    padding-top: 1.5rem;
}

.step-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-muted-strong);
    line-height: 1.7;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .process-steps::before {
        left: 30px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .process-step {
        gap: 2rem;
    }
}

/* Fix for select options text color */
.form-input option {
    background: var(--surface-color);
    color: var(--text-color);
}

/* Light Mode Gradient Fixes */
body.light-mode .services-header h2,
body.light-mode .team-header h2,
body.light-mode .contact-info h2 {
    background: linear-gradient(135deg, #1a1a1a 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

body.light-mode .footer-column a::before {
    background: linear-gradient(90deg, #FF8C00, #1a1a1a);
}

/* Shop Icon Animation */
.shop-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    color: var(--text-color) !important;
    /* Override default nav link color */
}

.shop-icon-link:hover {
    color: #FF8C00 !important;
}

.shop-icon-link::before {
    display: none !important;
    /* Remove underline effect for icon */
}

.pendulum-wrapper {
    transform-origin: top center;
    animation: pendulumSwing 3s ease-in-out infinite;
}

@keyframes pendulumSwing {
    0% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(5deg);
    }
}

/* Shop Page Styles */
.shop-section {
    padding: 10rem 5%;
    position: relative;
    z-index: 1;
}

.shop-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
}

.shop-sidebar {
    background: var(--card-bg);
    border: 1px solid rgba(255, 140, 0, 0.15);
    border-radius: 20px;
    padding: 2rem;
    height: fit-content;
    backdrop-filter: blur(10px);
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
    padding-bottom: 0.5rem;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-list li {
    margin-bottom: 0.8rem;
}

.filter-list a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    justify-content: space-between;
}

.filter-list a:hover {
    color: #FF8C00;
}

.filter-count {
    background: rgba(255, 140, 0, 0.1);
    color: #FF8C00;
    padding: 0.1rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
}

.price-range input {
    width: 100%;
    margin-top: 0.5rem;
}

.shop-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.shop-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-mode .shop-header h1 {
    background: linear-gradient(135deg, #1a1a1a 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.shop-sorting select {
    background: var(--input-bg);
    border: 1px solid rgba(255, 140, 0, 0.2);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    outline: none;
    font-family: 'Sora', sans-serif;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 140, 0, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 140, 0, 0.5);
    box-shadow: 0 20px 50px rgba(255, 140, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 250px;
    background: rgba(255, 140, 0, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #FF8C00;
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

.product-actions {
    position: absolute;
    top: 1rem;
    right: -50px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: right 0.3s ease;
}

.product-card:hover .product-actions {
    right: 1rem;
}

.action-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--surface-color);
    border: 1px solid rgba(255, 140, 0, 0.3);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #FF8C00;
    color: #000;
}

.product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.product-rating {
    color: #FFD700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FF8C00;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.add-to-cart-btn {
    background: transparent;
    border: 1px solid #FF8C00;
    color: #FF8C00;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.add-to-cart-btn:hover {
    background: #FF8C00;
    color: #000;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 4rem;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 140, 0, 0.3);
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-link.active,
.page-link:hover {
    background: #FF8C00;
    color: #000;
    border-color: #FF8C00;
}

@media (max-width: 992px) {
    .shop-container {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        margin-bottom: 2rem;
    }
}

/* Shop Icon Handle Fix */
.shop-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    color: var(--text-color) !important;
    position: relative;
    top: -2px;
    /* Slight adjustment to align with text */
}

/* Chat Widget Global Styles (Ensure it works on Shop Page) */
.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    font-family: 'Sora', sans-serif;
}

/* Price Range Slider Dual Handle Simulation (Visual only for now, functional logic handles max) */
.price-range {
    padding: 0 0.5rem;
}

.price-range input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}

.price-range input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #FF8C00;
    cursor: pointer;
    margin-top: -6px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.price-range input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: rgba(255, 140, 0, 0.3);
    border-radius: 2px;
}

/* Shop Icon Styles - Updated */
.shop-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--text-color) !important;
    height: 100%;
}

.pendulum-container {
    position: relative;
    width: 30px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 5px;
}

.pendulum-pivot {
    width: 4px;
    height: 4px;
    background: #FF8C00;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
}

.pendulum-wrapper {
    transform-origin: top center;
    animation: pendulumSwing 3s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: -2px;
    /* Connect to pivot */
}

.pendulum-string {
    width: 1px;
    height: 8px;
    background: rgba(255, 140, 0, 0.6);
}

.shop-bag-svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.shop-icon-link:hover .shop-bag-svg {
    color: #FF8C00;
    filter: drop-shadow(0 0 8px rgba(255, 140, 0, 0.4));
}

/* Dual Range Slider Styles */
.price-slider-container {
    position: relative;
    width: 100%;
    height: 30px;
    margin-top: 1rem;
}

.slider-track {
    width: 100%;
    height: 4px;
    background: rgba(255, 140, 0, 0.2);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 2px;
}

.slider-range {
    height: 100%;
    background: #FF8C00;
    position: absolute;
    border-radius: 2px;
}

.range-input {
    position: relative;
}

.range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: transparent;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    z-index: 2;
    margin: 0;
}

.range-input input::-webkit-slider-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #FF8C00;
    pointer-events: auto;
    -webkit-appearance: none;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--bg-color);
}

.range-input input::-moz-range-thumb {
    height: 16px;
    width: 16px;
    border: none;
    border-radius: 50%;
    background: #FF8C00;
    pointer-events: auto;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--bg-color);
}

.price-values {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* WooCommerce Compatibility Classes */
.woocommerce-products-header__title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-mode .woocommerce-products-header__title {
    background: linear-gradient(135deg, #1a1a1a 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.woocommerce-loop-product__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    text-decoration: none;
    display: block;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FF8C00;
    display: block;
    margin-top: auto;
}

.button.add_to_cart_button {
    background: transparent;
    border: 1px solid #FF8C00;
    color: #FF8C00;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
}

.button.add_to_cart_button:hover {
    background: #FF8C00;
    color: #000;
}

.onsale {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #FF8C00;
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}