/*
Theme Name: benchmark-wp
Description: A modern WordPress theme for Benchmark Wholesale Products by Adrian Chromenko
Author: Adrian Chromenko
Author URI: https://primarydm.com
Version: 1.0.2
License: GPL v2 or later
Text Domain: benchmark-wp
*/

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    position: relative;
}

/* WordPress Admin Bar Adjustments */
@media screen and (max-width: 782px) {
    body.admin-bar {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    html {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}

@media screen and (max-width: 600px) {
    body.admin-bar {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    html {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Global mobile improvements */
    body {
        font-size: 14px;
    }
    
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.3;
    }
    
    .section-title {
        font-size: 1.8rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.4;
        margin-bottom: 2rem;
    }
    
    /* Button improvements */
    .btn, .btn-primary, .btn-secondary, .btn-outline {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        line-height: 1.2;
        min-height: 44px; /* Touch target size */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .btn-large {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
        min-height: 48px;
    }
}

/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

/* Ken Burns Effect - applied per slide when enabled */
.hero-background.ken-burns-slide {
    animation: kenBurns 8s ease-in-out infinite alternate;
}

/* Legacy support for global Ken Burns (from customizer) */
.ken-burns-enabled .hero-background {
    animation: kenBurns 8s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes kenBurnsMobile {
    0% {
        background-size: 130%;
    }
    100% {
        background-size: 140%;
    }
}

.hero-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 1200px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: white;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-top: 0.5rem;
}

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

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-large svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-large:hover svg {
    transform: translateX(5px);
}

.hero-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.hero-arrow {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: all;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.hero-arrow svg {
    width: 24px;
    height: 24px;
}

.hero-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 4;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: white;
    border-color: white;
    transform: scale(1.3);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    z-index: 4;
    cursor: pointer;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

.scroll-arrow svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Hero Slider Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-slider-section {
        height: 80vh;
    }

    .hero-background {
        background-size: cover !important;
        background-position: center;
        width: 100%;
        height: 100%;
    }

    .hero-background.ken-burns-slide {
        animation: kenBurnsMobile 8s ease-in-out infinite alternate;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-arrow {
        width: 50px;
        height: 50px;
    }
    
    .hero-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-navigation {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-slider-section {
        height: 70vh;
    }

    .hero-background {
        background-size: cover !important;
        background-position: center;
        width: 100%;
        height: 100%;
    }

    .hero-background.ken-burns-slide {
        animation: kenBurnsMobile 8s ease-in-out infinite alternate;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .hero-actions {
        gap: 1rem;
    }
    
    .btn-large {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
    
    .hero-arrow {
        width: 40px;
        height: 40px;
    }
    
    .hero-arrow svg {
        width: 16px;
        height: 16px;
    }
    
    .hero-scroll-indicator {
        bottom: 1rem;
        right: 1rem;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem auto;
    background: linear-gradient(135deg, #000000, #333333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.section-icon svg {
    width: 32px;
    height: 32px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}




/* Header and Navigation */
.site-header {
    background: #ffffff;
    color: #1a1a1a;
    padding: 0.75rem 0;
    position: relative;
    z-index: 999;
    transition: all 0.3s ease;
    border-bottom: 1px solid #ccc;
}

.site-header.scrolled {
    padding: 0.5rem 0;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    width: 100%;
    max-width: none;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    color: inherit;
    z-index: 1001;
    transition: all 0.3s ease;
    flex-shrink: 0;
    cursor: pointer;
}

.site-branding:hover {
    color: inherit;
}

.site-logo {
    width: 200px;
    height: calc(100% + 1.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    margin: -0.75rem 0;
}

.site-branding:hover .site-logo {
    /* No hover animation */
}

.site-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-top: 7px;
}

.default-logo {
    width: 100%;
    height: 100%;
    color: #1a1a1a;
    transform: scale(1.3) translateY(7px);
}

.site-branding:hover .default-logo {
    color: #000000;
}

.site-text {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    position: relative;
}

.site-text:after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 0.5px;
    background: rgba(0, 0, 0, 0.2);
}

.site-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.site-branding:hover .site-title {
    color: #000000;
}

.site-tagline {
    font-size: 0.8rem;
    color: #666666;
    font-weight: 400;
    line-height: 1.1;
    margin: 0;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.site-branding:hover .site-tagline {
    color: #333333;
}

.site-text-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.site-text-link:hover {
    text-decoration: none;
}

.site-text-link:hover .site-title {
    color: #000000;
}

.site-text-link:hover .site-tagline {
    color: #333333;
}

/* Dark Header Variant */
.site-header.dark-variant .site-branding {
    background: transparent;
    padding: 0;
    margin: 0;
    box-shadow: none;
}

.site-header.dark-variant .site-logo {
}

.site-header.dark-variant .site-title {
    color: #000000;
}

.site-header.dark-variant .site-tagline {
    color: #666666;
}

.site-header.dark-variant .site-text-link:hover .site-title {
    color: #000000;
}

.site-header.dark-variant .site-text-link:hover .site-tagline {
    color: #333333;
}

.site-header.dark-variant .default-logo {
    color: #000000;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid #000000;
    border-radius: 4px;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    flex-direction: column;
    gap: 4px;
    margin-left: auto;
    margin-right: 0.5rem;
    transition: all 0.2s ease;
}

/* Hide fullscreen menu on desktop */
@media (min-width: 969px) {
    .nav-container.fullscreen-active {
        display: none !important;
    }
    
    .mobile-menu-toggle.fullscreen-active {
        display: none !important;
    }
}

.mobile-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.hamburger {
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-toggle:hover .hamburger {
    background: #000000;
}

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

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

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

/* Navigation Container */
.nav-container {
    position: relative;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: 1rem;
}

/* Full Screen Mobile Menu Overlay */
.nav-container.fullscreen-active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.9);
    padding: 1.5rem;
    margin: 0;
    box-sizing: border-box;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}

.nav-container.fullscreen-active.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* Prevent body overflow when fullscreen menu is active */
body.fullscreen-menu-active {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hide header/navbar when mobile menu is active, but keep mobile toggle visible */
body.fullscreen-menu-active .site-header .site-branding {
    visibility: hidden;
}

body.fullscreen-menu-active .site-header .nav-container:not(.fullscreen-active) .nav-menu {
    visibility: hidden;
}

body.fullscreen-menu-active .mobile-menu-toggle.fullscreen-active {
    visibility: visible !important;
}


.nav-container.fullscreen-active .nav-menu {
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-container.fullscreen-active .nav-menu li {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0.25rem 0;
}

.nav-container.fullscreen-active.show .nav-menu li {
    opacity: 1;
    transform: translateY(0);
}

.nav-container.fullscreen-active.show .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
.nav-container.fullscreen-active.show .nav-menu li:nth-child(2) { transition-delay: 0.2s; }
.nav-container.fullscreen-active.show .nav-menu li:nth-child(3) { transition-delay: 0.3s; }
.nav-container.fullscreen-active.show .nav-menu li:nth-child(4) { transition-delay: 0.4s; }
.nav-container.fullscreen-active.show .nav-menu li:nth-child(5) { transition-delay: 0.5s; }

.nav-container.fullscreen-active .nav-menu li::after {
    display: none;
}

.nav-container.fullscreen-active .nav-menu li a {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    display: block;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.01em;
}

.nav-container.fullscreen-active .nav-menu li a:hover {
    color: #fff4b7;
    transform: scale(1.1);
}

.nav-container.fullscreen-active .nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #fff4b7;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-container.fullscreen-active .nav-menu li a:hover::after {
    width: 80%;
}

/* Enhanced hamburger animation for fullscreen */
.mobile-menu-toggle.fullscreen-active {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.fullscreen-active:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.mobile-menu-toggle.fullscreen-active .hamburger {
    background: #ffffff;
}

/* Close icon animation */
.mobile-menu-toggle.fullscreen-active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

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

.nav-menu li {
    position: relative;
}

.nav-menu li:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 0.5px;
    background: rgba(0, 0, 0, 0.15);
    box-shadow: none;
}

/* Dropdown Menu Styles */
.nav-menu li ul.sub-menu,
.nav-menu li ul.children {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    border: 1px solid #000;
    border-top: 2px solid #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-menu li:hover > ul.sub-menu,
.nav-menu li:hover > ul.children {
    display: block;
}

.nav-menu li ul.sub-menu li,
.nav-menu li ul.children li {
    border-bottom: 1px solid #e5e5e5;
}

.nav-menu li ul.sub-menu li:last-child,
.nav-menu li ul.children li:last-child {
    border-bottom: none;
}

.nav-menu li ul.sub-menu li:after,
.nav-menu li ul.children li:after {
    display: none;
}

.nav-menu li ul.sub-menu a,
.nav-menu li ul.children a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #2d2d2d;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-radius: 0;
}

.nav-menu li ul.sub-menu a:hover,
.nav-menu li ul.children a:hover {
    background: #f0f0f0;
    color: #000;
    padding-left: 1.5rem;
}

.nav-menu li ul.sub-menu a:after,
.nav-menu li ul.children a:after {
    display: none;
}


/* Add dropdown arrow for items with children */
.nav-menu li.menu-item-has-children > a:after,
.nav-menu li.page_item_has_children > a:after {
    content: '';
    width: 10px !important;
    height: 10px !important;
    background-color: transparent !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-left: 0.5rem;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    bottom: 1px !important;
    left: auto !important;
    transform: none !important;
    transition: transform 0.2s ease;
}

.nav-menu li.menu-item-has-children:hover > a:after,
.nav-menu li.page_item_has_children:hover > a:after {
    transform: rotate(180deg) !important;
    background-color: transparent !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23dc2626' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    width: 10px !important;
    height: 10px !important;
}

.nav-menu a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    transition: all 0.2s ease;
    display: block;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

.nav-menu a:hover,
.nav-menu a.current {
    color: #000000;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: #000000;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover:after,
.nav-menu a.current:after {
    width: 70%;
}

/* Main Content */
.site-main {
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
}

.content-area {
    background: white;
    padding: 2.5rem;
    border: 1px solid #000000;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.2s ease;
}

.content-area:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

h1, h2, h3, h4, h5, h6 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2rem;
    color: #34495e;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Hero Section */
.hero-section {
    color: white;
    overflow: hidden;
    position: relative;
}

/* Alternative Hero Section (2-column) */
.hero-section-alt {
    background: #f9f9f9;
    height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    overflow: hidden;
}


.hero-slider-alt {
    position: relative;
    width: 100%;
    height: 650px;
    z-index: 1;
}

.hero-slide-alt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    padding: 0;
}

.hero-slide-alt.active {
    position: relative;
    opacity: 1;
}

.slider-nav-alt {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
    z-index: 10;
}

.slider-arrow-alt {
    background: #ffffff;
    border: 1px solid #ccc;
    color: #ccc;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.slider-arrow-alt:hover {
    background: #ccc;
    color: #ffffff;
    transform: scale(1.1);
}

.slider-arrow-alt svg {
    width: 20px;
    height: 20px;
}

/* Alternative Slider Dots */
.slider-dots-alt {
    position: relative;
    display: block;
    text-align: center;
    padding: 2rem 0 1rem 0;
    z-index: 10;
    clear: both;
}

.slider-dots-alt .container {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.slider-dot-alt {
    width: 16px;
    height: 16px;
    background: transparent;
    border: 1px solid #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.slider-dot-alt.active {
    background: #000000;
    border-color: #000000;
}

.slider-dot-alt:hover {
    background: #000000;
    border-color: #000000;
    transform: scale(1.1);
}

.hero-content-alt {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    align-items: stretch;
    height: 700px;
    width: 100%;
    position: relative;
}

.hero-text-alt {
    background: #ffffff;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #ccc;
    border-right: none;
}

.hero-title-alt {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -1px;
}

.hero-divider {
    width: 80px;
    height: 1px;
    background: #ccc;
    margin-bottom: 1.5rem;
}

.hero-subtitle-alt {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-buttons-alt {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-buttons-alt .btn {
    border-radius: 0;
    padding: 0.85rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.hero-buttons-alt .btn-primary {
    background-color: #000000;
    border-color: #000000;
}

.hero-buttons-alt .btn-primary:hover {
    background-color: #000000;
    border-color: #000000;
}

.hero-buttons-alt .btn-secondary {
    background-color: transparent;
    color: #000000;
    border-color: #000000;
}

.hero-buttons-alt .btn-secondary:hover {
    background-color: #000000;
    color: #ffffff;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
}

.hero-feature:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #e5e5e5;
}

.feature-icon {
    color: #000000;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.hero-image-alt {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    overflow: hidden;
    border: 1px solid #ccc;
    border-left: none;
}

.hero-scroll-button {
    position: absolute;
    left: calc(50% - 25px);
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 50px;
    height: 50px;
    background: #000000;
    border: 1px solid #ffffff;
    z-index: 9999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-scroll-button:hover {
    background: #333333;
    border-color: #ffffff;
}

.hero-scroll-button svg {
    transform: rotate(-45deg);
    width: 20px;
    height: 20px;
    stroke: #ffffff;
    transition: all 0.3s ease;
}

.hero-scroll-button:hover svg {
    stroke: #ffffff;
}

.hero-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.hero-image-alt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center;
    position: relative;
}

@keyframes kenBurnsAlt {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}


.hero-badge {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: linear-gradient(135deg, #000000 0%, #000000 50%, #000000 100%);
    padding: 2px;
    display: none;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 20;
    clip-path: polygon(30px 0%, 100% 0%, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0% 100%, 0% 30px);
    width: 50%;
    min-height: auto;
}

.hero-badge .badge-text {
    background: #ffffff;
    padding: 1.5rem 2rem;
    clip-path: polygon(29px 0%, 100% 0%, 100% calc(100% - 29px), calc(100% - 29px) 100%, 0% 100%, 0% 28px);
}

.badge-icon {
    color: #000000;
    fill: #000000;
    flex-shrink: 0;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
}

.badge-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.badge-subtitle {
    font-size: 0.85rem;
    color: #666666;
    line-height: 1.5;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    min-height: 600px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    padding: 5rem 0;
    background-size: 110%;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    animation: kenBurns 20s linear infinite;
}

@keyframes kenBurns {
    0% {
        background-size: 110%;
    }
    100% {
        background-size: 130%;
    }
}

.hero-slide.active {
    position: relative;
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    display: block;
    position: relative;
    z-index: 3;
}

.hero-text {
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Hero Image */
.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid transparent;
    line-height: 1.2;
}

.btn-primary {
    background-color: #000000;
    color: white;
    border-color: #000000;
}

.btn-primary:hover {
    background-color: #000000;
    border-color: #000000;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: white;
    color: #000000;
    transform: translateY(-2px);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
    z-index: 10;
}

.slider-arrow {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active,
.slider-dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Categories Section */
.categories-section {
    background: #e8e9ea;
    padding: 5rem 0;
    position: relative;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.categories-wrapper {
    text-align: center;
}

.categories-title {
    color: #2c3e50;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.categories-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #000000;
    border-radius: 2px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.category-card {
    background: #ffffff;
    border: 1px solid #ccc;
    padding: 0;
    text-align: center;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #999;
}

.category-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e5e5;
    overflow: hidden;
    transition: all 0.2s ease;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.category-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff4b7;
    border: none;
    padding: 10px;
    transition: all 0.2s ease;
}

.category-icon svg {
    stroke: #000000;
}

.category-card:hover .category-icon {
    background: #000000;
    transform: scale(1.05);
}

.category-card:hover .category-icon svg {
    stroke: #ffffff;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-icon svg {
    width: 100%;
    height: 100%;
    color: #000000;
}

.category-card:hover .category-icon svg {
    color: #ffffff;
}

.category-card:hover .category-icon img {
    filter: invert(1);
}

.category-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    padding: 1rem;
    color: #000000;
    line-height: 1.3;
    text-transform: none;
    letter-spacing: normal;
}

.category-count {
    font-size: 0.85rem;
    color: #666666;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0 1rem 1rem 1rem;
    background: none !important;
    border: none !important;
}

.categories-footer {
    text-align: center;
    margin-top: 3rem;
}

.btn-outline {
    padding: 0.85rem 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-block;
    text-align: center;
    background: #000000;
    color: #ffffff;
    border: 1px solid #000000;
    border-radius: 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.btn-outline:hover {
    background: #000000;
    border-color: #000000;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

/* About Info Section */
.about-info-section {
    background: white;
    padding: 5rem 0;
    position: relative;
}

.about-info-content {
    display: block;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    overflow: hidden;
}

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

.about-text {
    padding: 3rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.2rem;
    color: #555555;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-feature-item {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem auto;
    background: linear-gradient(135deg, #000000, #333333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.about-feature-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.about-feature-item p {
    color: #555555;
    line-height: 1.7;
    font-size: 1rem;
    text-align: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: #e5e5e5;
}

.stat-item:hover {
    transform: translateY(-5px);
}


.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image-wrapper {
    position: relative;
    height: 550px;
}

.about-image-main {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: polygon(100px 0%, 100% 0%, 100% calc(100% - 100px), calc(100% - 100px) 100%, 0% 100%, 0% 100px);
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image-main:hover img {
    transform: scale(1.05);
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 5rem 0;
    position: relative;
    text-align: center;
    border-top: 1px solid #333333;
}

.cta-icon {
    background: linear-gradient(135deg, #ffffff, #f0f0f0) !important;
    color: #1a1a1a !important;
    margin-bottom: 2rem;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #e5e5e5;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary-outline {
    padding: 0.85rem 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-block;
    text-align: center;
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.btn-secondary-outline:hover {
    background: #ffffff;
    color: #2a2a2a;
    border-color: #ffffff;
}

/* Dark variant for light backgrounds */
.btn-secondary-dark {
    color: #2a2a2a;
    border-color: #2a2a2a;
}

.btn-secondary-dark:hover {
    background: #2a2a2a;
    color: #ffffff;
    border-color: #2a2a2a;
}

/* Alternative Hero Section 2 - Full Width Angular */
.hero-section-alt2 {
    position: relative;
    overflow: hidden;
    min-height: 50vh;
}

.hero-slider-alt2 {
    position: relative;
    height: 50vh;
}

.hero-slide-alt2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide-alt2.active {
    opacity: 1;
}

.hero-content-alt2 {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 2rem;
    width: 100%;
    height: 100%;
}

.hero-text-alt2 {
    background: #ffffff;
    padding: 4rem 6rem 4rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
    height: 100%;
    min-height: 50vh;
}


.hero-image-alt2 {
    position: relative;
    overflow: hidden;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 8% 50%);
    height: 100%;
    min-height: 50vh;
}

.hero-image-alt2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100%;
    background: transparent;
    border-left: 1px solid #000000;
    clip-path: polygon(45% 0%, 100% 0%, 100% 100%, 45% 100%, 28% 50%);
    z-index: 2;
}

.hero-image-wrapper-alt2 {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image-wrapper-alt2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 30%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero-image-wrapper-alt2 img {
    width: 110%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: kenBurnsAlt 20s ease-in-out infinite;
}

.hero-title-alt2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #000000 0%, #000000 50%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-alt2 {
    font-size: 1.3rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    min-height: 5rem;
    display: flex;
    align-items: center;
}

.hero-buttons-alt2 {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-buttons-alt2 .btn {
    border-radius: 0;
    padding: 0.85rem 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-buttons-alt2 .btn-primary {
    background-color: #000000;
    border-color: #000000;
    color: #ffffff;
}

.hero-buttons-alt2 .btn-primary:hover {
    background-color: #000000;
    border-color: #000000;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.hero-buttons-alt2 .btn-secondary {
    background-color: transparent;
    color: #000000;
    border-color: #000000;
}

.hero-buttons-alt2 .btn-secondary:hover {
    background-color: #000000;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.hero-badge-alt2 {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: #ffffff;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 20;
    clip-path: polygon(30px 0%, 100% 0%, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0% 100%, 0% 30px);
}

/* Alt2 Slider Navigation */
.slider-nav-alt2 {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.slider-arrow-alt2 {
    background: #ffffff;
    border: 1px solid #000000;
    color: #1a1a1a;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.slider-arrow-alt2:hover {
    background: #000000;
    color: #ffffff;
    transform: scale(1.1);
}

.slider-arrow-alt2 svg {
    width: 20px;
    height: 20px;
}

/* Alt2 Slider Dots */
.slider-dots-alt2 {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot-alt2 {
    width: 16px;
    height: 16px;
    background: transparent;
    border: 1px solid #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.slider-dot-alt2.active {
    background: #000000;
    border-color: #000000;
}

.slider-dot-alt2:hover {
    background: #000000;
    border-color: #000000;
    transform: scale(1.1);
}

/* Responsive for Alt2 */
@media (max-width: 1024px) {
    .hero-content-alt2 {
        grid-template-columns: 50% 50%;
    }
    
    .hero-text-alt2 {
        padding: 3rem 4rem 3rem 6%;
    }
    
    .hero-title-alt2 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle-alt2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-section-alt2 {
        min-height: 60vh;
    }
    
    .hero-slider-alt2 {
        height: 60vh;
    }
    
    .hero-content-alt2 {
        grid-template-columns: 1fr;
        grid-template-rows: 60% 40%;
    }
    
    .hero-text-alt2 {
        padding: 2rem;
        text-align: center;
    }
    
    .hero-image-alt2 {
        clip-path: polygon(0% 20%, 100% 0%, 100% 100%, 0% 100%, 50% 15%);
    }
    
    .hero-title-alt2 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle-alt2 {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons-alt2 {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .hero-buttons-alt2 .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-badge-alt2 {
        position: static;
        margin-top: 1rem;
        left: auto;
        bottom: auto;
    }
}

/* Showcased Category Section */
.showcased-category-section {
    background: #ffffff;
    position: relative;
}

.showcased-category-split {
    display: flex;
    min-height: 50vh;
}

.showcased-category-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.showcased-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showcased-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.showcased-category-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 3rem;
    background: #e8e9ea;
}

.showcased-content-wrapper {
    max-width: 500px;
}

.showcased-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.1);
    color: #333333;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.showcased-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.showcased-divider {
    width: 60px;
    height: 3px;
    background: #000000;
    margin: 1.5rem 0 2rem 0;
    border-radius: 2px;
}

.showcased-description {
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.showcased-features {
    margin-bottom: 2.5rem;
}

.showcased-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-check {
    background: #000000;
    color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.showcased-feature span {
    color: #333333;
    font-size: 0.95rem;
    font-weight: 500;
}

.showcased-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Reversed showcased section styles */
.showcased-reverse {
    flex-direction: row-reverse;
}

.showcased-section-alt .showcased-category-content {
    background: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .showcased-category-split {
        flex-direction: column;
        min-height: auto;
    }
    
    .showcased-category-image {
        height: 50vh;
        min-height: 300px;
    }
    
    .showcased-category-content {
        padding: 3rem 2rem;
    }
    
    .showcased-title {
        font-size: 2rem;
    }
    
    .showcased-actions {
        flex-direction: column;
    }
    
    .showcased-actions .btn {
        justify-content: center;
    }
    
    /* Reversed section mobile styles */
    .showcased-reverse {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .showcased-category-content {
        padding: 2rem 1rem;
    }
    
    .showcased-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .showcased-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .showcased-actions {
        gap: 0.75rem;
    }
    
    .showcased-actions .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .showcased-category-image {
        height: 40vh;
        min-height: 250px;
    }
}

.featured-wrapper {
    text-align: center;
}

.featured-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    position: relative;
    font-weight: 700;
}

.featured-subtitle {
    color: #555555;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.product-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 400px;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #000000;
    background: #e8e9ea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-image {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: transparent;
    margin: 1rem 1rem 0 1rem;
    width: calc(100% - 2rem);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    padding: 10px;
}

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

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
}

.placeholder-image svg {
    width: 80px;
    height: 80px;
    color: #000000;
    opacity: 0.5;
}

.sale-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
}

.product-card-info {
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    border-top: 1px solid #e5e5e5;
    text-align: center;
}

/* Keep original for single product page */
.product-info {
    padding: 1rem 0;
}

.product-card-title {
    font-size: 0.95rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.3;
}

.product-title {
    font-size: 0.95rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.3;
}

.product-rating {
    margin-bottom: 0.75rem;
}

.product-rating .star-rating {
    color: #f39c12;
}

.product-excerpt {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.3rem;
    color: #000000;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-price del {
    color: #95a5a6;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.product-price ins {
    text-decoration: none;
    color: #e74c3c;
}

.product-cta {
    display: inline-block;
    color: #000000;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: center;
}

.product-card:hover .product-cta {
    transform: translateX(5px);
    color: #000000;
}

.featured-footer {
    text-align: center;
    margin-top: 3rem;
}

.btn-primary-outline {
    padding: 0.85rem 2.5rem;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    background: #000000;
    color: white;
    border: 2px solid #000000;
}

.btn-primary-outline:hover {
    background: #000000;
    color: white;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* About Page Styles */
.about-hero-section {
    background: linear-gradient(135deg, #e8e9ea 0%, #f0f1f2 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.about-hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
    width: 100%;
}

.about-hero-text {
    padding-right: 2rem;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #000000 0%, #000000 50%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -1px;
}

.about-hero-subtitle {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.about-hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-hero-image-wrapper {
    position: relative;
    height: 500px;
    clip-path: polygon(100px 0%, 100% 0%, 100% calc(100% - 100px), calc(100% - 100px) 100%, 0% 100%, 0% 100px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.about-hero-image-wrapper img {
    width: 110%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

/* New About Hero Styles */
.about-hero-split {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 400px;
}

.about-hero-left {
    background: white;
    padding: 5rem 0;
    display: flex;
    align-items: center;
    position: relative;
}

.about-hero-left::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #ccc;
}

.about-hero-content-wrapper {
    max-width: 600px;
    margin-left: auto;
    padding: 0 80px;
}

.about-hero-badge {
    display: inline-block;
    background: #fff4b7;
    color: #000;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid #000;
}

.about-hero-divider {
    width: 60px;
    height: 3px;
    background: #000000;
    margin: 1rem auto 1.5rem auto;
}

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

.hero-stat {
    text-align: center;
    padding: 1rem 0;
    border-right: 1px solid #e5e5e5;
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.hero-stat .stat-label {
    font-size: 0.875rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero-right {
    flex: 0 0 55%;
    background: #e5e5e5;
    position: relative;
}

.about-hero-image-container {
    width: 100%;
    height: 100%;
}

.about-hero-image {
    width: 100%;
    height: 100%;
}

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


/* Company Story Section */
.company-story-section {
    background: #ffffff;
    padding: 5rem 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #000000 0%, #000000 50%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.story-subtitle {
    font-size: 1.2rem;
    color: #555555;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.story-paragraphs p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #444444;
}

.story-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-logo-wrapper {
    text-align: center;
    padding: 3rem;
    background: #ffffff;
    border: 1px solid #000000;
    transition: all 0.2s ease;
}

.story-logo-wrapper:hover {
    transform: translateY(-5px);
    border-color: #000000;
    background: #fafafa;
}

.story-logo-wrapper .site-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border: 2px solid #000000;
    border-radius: 50%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    background: #ffffff;
    transition: all 0.2s ease;
}

.story-logo-wrapper .site-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.story-logo-wrapper .site-logo svg {
    width: 100%;
    height: 100%;
}

.story-logo-wrapper:hover .site-logo {
    border-color: #000000;
    background: #000000;
    color: #ffffff;
}

.logo-tagline {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #000000 0%, #000000 50%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-description {
    color: #666666;
    font-style: italic;
    line-height: 1.5;
}

/* Values Section */
.values-section {
    background: #f8f9fa;
    padding: 4rem 0;
    position: relative;
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #000000 0%, #000000 50%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.values-subtitle {
    font-size: 1.2rem;
    color: #666666;
    font-weight: 500;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #ffffff;
    border: 1px solid #000000;
    padding: 2rem;
    text-align: center;
    transition: all 0.2s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: #000000;
    background: #fafafa;
}

.value-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff4b7;
    margin: 0 auto 1.5rem;
    transition: all 0.2s ease;
}

.value-card:hover .value-icon {
    background: #000000;
}

.value-card:hover .value-icon svg {
    stroke: #ffffff;
}

.value-icon svg {
    stroke: #000000;
}

.value-name {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-description {
    color: #666666;
    line-height: 1.6;
}

/* About Stats Section */
.about-stats-section {
    background: #ffffff;
    padding: 4rem 0;
    position: relative;
}

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

.about-stats-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #000000 0%, #000000 50%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.about-stats-subtitle {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.about-stats-paragraphs p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #444444;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
    position: relative;
}

.about-stats-image-wrapper {
    position: relative;
    height: 550px;
    clip-path: polygon(100px 0%, 100% 0%, 100% calc(100% - 100px), calc(100% - 100px) 100%, 0% 100%, 0% 100px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

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

/* Team Section */
.team-section {
    background: white;
    background-image: linear-gradient(
        45deg,
        #cccccc 0%,
        #cccccc 6.25%,
        white 6.25%,
        white 100%
    );
    background-size: 16px 16px;
    padding: 4rem 0;
    position: relative;
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #000000 0%, #000000 50%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.team-subtitle {
    font-size: 1.2rem;
    color: #666666;
    font-weight: 500;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.team-text h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.team-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #444444;
}

.team-image-wrapper {
    position: relative;
    height: 400px;
    clip-path: polygon(100px 0%, 100% 0%, 100% calc(100% - 100px), calc(100% - 100px) 100%, 0% 100%, 0% 100px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Page Styles */
.contact-hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.contact-hero-content {
    display: block;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.contact-hero-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem auto;
    background: linear-gradient(135deg, #000000, #333333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.contact-hero-icon svg {
    width: 40px;
    height: 40px;
}

.contact-hero-text {
    padding-right: 2rem;
}

.contact-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    letter-spacing: -1px;
}

.contact-hero-subtitle {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-quick-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quick-info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff4b7;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.quick-info-item:hover .quick-info-icon {
    background: #000000;
}

.quick-info-item:hover .quick-info-icon svg {
    stroke: #ffffff;
}

.quick-info-icon svg {
    stroke: #000000;
}

.quick-info-text {
    color: #444444;
    line-height: 1.5;
}

.quick-info-text a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
}

.quick-info-text a:hover {
    color: #000000;
    text-decoration: underline;
}

.contact-hero-map-wrapper {
    position: relative;
    height: 400px;
    border: 1px solid #000000;
    overflow: hidden;
}

.contact-hero-map-wrapper iframe {
    width: 100%;
    height: 100%;
}

/* Contact Form Section */
.contact-form-section {
    background: #ffffff;
    padding: 8rem 0 5rem 0;
    position: relative;
    position: relative;
}

.contact-form-content {
    display: block;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem auto;
    background: linear-gradient(135deg, #000000, #333333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.form-icon svg {
    width: 32px;
    height: 32px;
}

.contact-form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.contact-form-subtitle {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-form-text {
    width: 100%;
    max-width: 100%;
}

.contact-form {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: #f8f9fa;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000000;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

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

.form-group button {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Contact Info */
.contact-info-wrapper {
    background: #f8f9fa;
    border: 1px solid #000000;
    padding: 2rem;
    height: fit-content;
}

.contact-info-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #000000 0%, #000000 50%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff4b7;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.contact-info-item:hover .contact-info-icon {
    background: #000000;
}

.contact-info-item:hover .contact-info-icon svg {
    stroke: #ffffff;
}

.contact-info-icon svg {
    stroke: #000000;
}

.contact-info-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-info-details p {
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.contact-info-details a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-details a:hover {
    color: #000000;
    text-decoration: underline;
}

/* Contact Page Responsive Styles */
@media (max-width: 1024px) {
    .contact-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-hero-text {
        padding-right: 0;
    }
    
    .contact-hero-map-wrapper {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 2rem 0;
    }
    
    .contact-hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-quick-info {
        gap: 1rem;
    }
    
    .quick-info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
        background: #f5f5f5;
        border-radius: 8px;
    }
    
    .contact-hero-map-wrapper {
        height: 300px;
        margin-top: 2rem;
    }
    
    .contact-form-section {
        padding: 3rem 0;
    }
    
    .contact-form-title {
        font-size: 2rem;
    }
    
    .contact-form-subtitle {
        font-size: 0.95rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-section {
        padding: 1.5rem 0;
    }
    
    .contact-hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .contact-hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .quick-info-item {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .quick-info-icon {
        width: 35px;
        height: 35px;
    }
    
    .contact-hero-map-wrapper {
        height: 250px;
        margin-top: 1.5rem;
    }
    
    .contact-form-section {
        padding: 2rem 0;
    }
    
    .contact-form-title {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-form-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.95rem;
    }
    
    .form-group button {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

/* FAQ Section */
.faq-section {
    background: #ffffff;
    padding: 4rem 0;
    position: relative;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #000000 0%, #000000 50%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: #666666;
    font-weight: 500;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    padding: 2rem;
    transition: all 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: #000000;
    background: #ffffff;
}

.faq-question {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-answer {
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #ecf0f1;
    margin-top: auto;
}

/* Footer Top Section */
.footer-top {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.footer-title {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ffffff;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

/* Two column layout for Our Products section */
.footer-column .footer-heading + .footer-links {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 400px;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.footer-column .footer-heading + .footer-links li {
    margin-bottom: 0;
    width: 48%;
    break-inside: avoid;
}

/* More specific selector for Our Products */
.footer-column:has(.footer-heading:contains("Our Products")) .footer-links,
.footer-column:nth-child(2) .footer-links {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 400px;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.footer-column:has(.footer-heading:contains("Our Products")) .footer-links li,
.footer-column:nth-child(2) .footer-links li {
    margin-bottom: 0;
    width: 48%;
    break-inside: avoid;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Social Links */
.footer-logo {
    margin: 1.5rem 0;
}

.cars-logo {
    max-width: 150px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.cars-logo:hover {
    opacity: 1;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: #bdc3c7;
    transition: fill 0.3s ease;
}

.social-link:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px);
}

.social-link:hover svg {
    fill: #000000;
}

/* Contact Info */
.footer-contact {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #bdc3c7;
}

.contact-icon {
    width: 20px;
    height: 20px;
    fill: #000000;
    flex-shrink: 0;
}

.contact-item a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #000000;
}

/* Newsletter */
.footer-newsletter {
    margin-top: 2rem;
}

.newsletter-title {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: white;
    font-size: 0.9rem;
}

.newsletter-form input[type="email"]::placeholder {
    color: #95a5a6;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #000000;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: #000000;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    background: #000000;
    padding: 1.5rem 0;
}

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

.footer-copyright p,
.footer-credits p {
    margin: 0;
    color: #95a5a6;
    font-size: 0.9rem;
}

.footer-copyright a,
.footer-credits a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover,
.footer-credits a:hover {
    color: #000000;
}

/* Mobile menu active state - managed via JavaScript */

/* Tablet Design */
@media (max-width: 1024px) and (min-width: 769px) {
    /* Hero Section Tablet */
    .hero-section-alt {
        height: 550px;
        padding: 2rem 0;
    }
    
    .hero-content-alt {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .hero-text-alt {
        padding-right: 1rem;
    }
    
    .hero-title-alt {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle-alt {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons-alt {
        gap: 0.75rem;
        flex-direction: row;
    }
    
    .hero-buttons-alt .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-features {
        display: none;
    }
    
    .hero-image-alt img {
        height: 400px;
    }
    
    /* About Page Tablet */
    .about-hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .about-hero-left {
        padding: 3rem 0;
    }
    
    .about-hero-content-wrapper {
        padding: 0 2rem;
        max-width: 100%;
        text-align: center;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .about-hero-buttons {
        justify-content: center;
    }
    
    .about-hero-right {
        flex: none;
        height: 400px;
    }
    
    .about-hero-image-container {
        height: 400px;
    }
    
    /* Company Story Tablet */
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .story-title {
        font-size: 2rem;
    }
    
    .story-logo-wrapper .site-logo {
        width: 120px;
        height: 120px;
    }
}

/* Mobile Design */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-container {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        border: 1px solid #000000;
        border-top: none;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    /* .nav-container.active styles are now applied via JavaScript */
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }
    
    .nav-menu li {
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 1rem 2rem;
        border-radius: 0;
        margin: 0;
        position: relative;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        color: #1a1a1a;
    }
    
    .nav-menu a:after {
        display: none;
    }
    
    .nav-menu a:hover {
        background: rgba(0,0,0,0.03);
        color: #000000;
    }
    
    /* Mobile dropdown styles */
    .nav-menu li ul.sub-menu,
    .nav-menu li ul.children {
        position: static;
        display: block;
        width: 100%;
        box-shadow: none;
        border: none;
        border-top: none;
        background: rgba(0,0,0,0.02);
        margin-left: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.2s ease;
        opacity: 0;
    }
    
    .nav-menu li.menu-open > ul.sub-menu,
    .nav-menu li.menu-open > ul.children {
        max-height: 500px;
        opacity: 1;
    }
    
    .nav-menu li ul.sub-menu a,
    .nav-menu li ul.children a {
        padding-left: 3rem;
        font-size: 0.9rem;
    }
    
    .nav-menu li ul.sub-menu a:hover,
    .nav-menu li ul.children a:hover {
        padding-left: 3.25rem;
        background: rgba(0,0,0,0.05);
    }
    
    .nav-menu li.menu-item-has-children > a:after,
    .nav-menu li.page_item_has_children > a:after {
        content: '';
        width: 12px !important;
        height: 12px !important;
        background-color: transparent !important;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        margin-left: auto;
        margin-right: 1rem;
        display: inline-block;
        vertical-align: middle;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%) rotate(0deg) !important;
        bottom: auto !important;
        left: auto !important;
        transition: transform 0.3s ease;
    }
    
    .nav-menu li.menu-item-has-children.menu-open > a:after,
    .nav-menu li.page_item_has_children.menu-open > a:after {
        transform: translateY(-50%) rotate(180deg) !important;
    }
    
    /* Hero Section Mobile */
    .hero-slider {
        min-height: 500px;
    }
    
    /* Hero Section Mobile */
    .hero-section-alt {
        height: auto;
        min-height: 600px;
        padding: 4rem 0 2rem 0;
    }
    
    .hero-content-alt {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text-alt {
        padding-right: 0;
        order: 2;
    }
    
    .hero-image-alt {
        order: 1;
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-image-wrapper {
        height: 280px;
        width: 100%;
        clip-path: polygon(60px 0%, 100% 0%, 100% calc(100% - 60px), calc(100% - 60px) 100%, 0% 100%, 0% 60px);
        border-radius: 0;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        position: relative;
    }
    
    .hero-image-alt img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 0;
        position: static;
        left: 0;
        animation: none;
    }
    
    .hero-title-alt {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle-alt {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .hero-buttons-alt {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-bottom: 2rem;
    }
    
    .hero-buttons-alt .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 0.9rem;
        text-align: center;
    }
    
    .hero-features {
        display: none;
    }
    
    
    .hero-image-decoration {
        display: none;
    }
    
    .hero-badge {
        display: none;
    }
    
    /* Hide slider dots on mobile */
    .slider-dots-alt {
        display: none;
    }
    
    /* Position arrows over the image area only on mobile */
    .slider-nav-alt {
        position: absolute;
        top: calc(4rem + 35px); /* Start below the navbar padding + 35px down */
        left: 0;
        right: 0;
        height: 280px; /* Match the image height */
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
        z-index: 20;
        pointer-events: none;
    }
    
    .slider-arrow-alt {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(4px);
        pointer-events: auto;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    
    .slider-arrow-alt svg {
        width: 16px;
        height: 16px;
    }
    
    .hero-slide {
        padding: 3rem 0;
    }
    
    /* About Page Mobile */
    .about-hero-section {
        padding: 0;
    }
    
    .about-hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .about-hero-left {
        padding: 2rem 0;
        order: 2;
    }
    
    .about-hero-left::after {
        display: none;
    }
    
    .about-hero-content-wrapper {
        padding: 0 1.5rem;
        max-width: 100%;
        text-align: center;
        margin-left: 0;
    }
    
    .about-hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin-top: 2rem;
    }
    
    .about-hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .about-hero-divider {
        margin: 1rem auto 1.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        padding-bottom: 0;
        border-bottom: none;
    }
    
    .about-hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-bottom: 0;
    }
    
    .about-hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        text-align: center;
    }
    
    .about-hero-right {
        flex: none;
        height: 300px;
        order: 1;
    }
    
    .about-hero-image-container {
        height: 300px;
    }
    
    .about-hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Company Story Mobile */
    .company-story-section {
        padding: 3rem 0;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .story-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .story-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .story-paragraphs p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .story-logo-wrapper {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .story-logo-wrapper .site-logo {
        width: 100px;
        height: 100px;
    }
    
    .logo-tagline {
        font-size: 1.2rem;
        margin: 1rem 0 0.5rem;
    }
    
    .logo-description {
        font-size: 0.9rem;
    }
    
    /* Founder Quotes Mobile */
    .founder-quotes-section {
        padding: 3rem 0;
        margin-top: 2rem;
    }
    
    .founder-quotes-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .founder-quotes-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-image img {
        height: 300px;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 0.5rem;
        margin: 1rem 3rem;
    }

    .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1.2;
    }

    .hero-buttons .btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem;
    }
    
    .slider-nav {
        padding: 0 1rem;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    /* Category Cards Mobile */
    .categories-section {
        padding: 3rem 0;
    }
    
    /* About Info Mobile */
    .about-info-section {
        padding: 3rem 0;
    }
    
    .about-info-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
.about-text {
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .about-image-wrapper {
        height: 300px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    /* CTA Mobile */
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .categories-title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .category-card {
        padding: 1.5rem 1rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        padding: 12px;
    }
    
    .category-name {
        font-size: 1rem;
    }
    
    .category-count {
        font-size: 0.85rem;
    }
    
    .btn-outline {
        padding: 0.75rem 2rem;
    }
    
    /* Featured Products Mobile */
    .featured-products-section {
        padding: 3rem 0;
    }
    
    .featured-title {
        font-size: 1.8rem;
    }
    
    .featured-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .product-image {
        height: 300px;
    }
    
    .product-card-info {
        padding: 1.5rem 1.8rem;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
    
    .product-price {
        font-size: 1.2rem;
    }
    
    .btn-primary-outline {
        padding: 0.75rem 2rem;
    }
    
    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-column.footer-about {
        grid-column: 1 / -1;
    }
    
    .footer-column:last-child {
        grid-column: 1 / -1;
    }
    
    .footer-title {
        font-size: 1.5rem;
    }
    
    .footer-heading {
        font-size: 1.1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* General Mobile Styles */
    .container {
        padding: 0 15px;
    }
    
    .content-area {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        margin: 1rem 2.5rem;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .hero-graphic {
        width: 200px;
        height: 200px;
    }
    
    /* Site Branding Mobile */
    .site-branding {
        gap: 0.75rem;
    }
    
    .site-logo {
        width: 100px;
        height: 100px;
        padding: 6px;
    }
    
    .site-title {
        font-size: 1.2rem;
    }
    
    .site-tagline {
        font-size: 0.75rem;
        display: none;
    }
    
    .site-header.scrolled .site-logo {
        width: 80px;
        height: 80px;
    }
    
    /* Category Cards Small Mobile */
    .categories-section {
        padding: 2.5rem 0;
    }
    
    /* About Info Small Mobile */
    .about-info-section {
        padding: 2.5rem 0;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    /* CTA Small Mobile */
    .cta-section {
        padding: 2.5rem 0;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .categories-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .categories-title:after {
        width: 40px;
        height: 2px;
    }
    
    /* Categories grid mobile fix */
    .categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .category-card {
        padding: 1rem 0.75rem;
    }
    
    .category-image {
        height: 120px;
        margin-bottom: 0.75rem;
    }
    
    .category-name {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .category-count {
        font-size: 0.8rem;
    }
}

/* Additional mobile styles - separate media query */
@media (max-width: 480px) {
    /* Section padding adjustments */
    .categories-section,
    .about-info-section,
    .cta-section {
        padding: 2rem 0;
    }
    
    /* Make sure text doesn't overflow */
    .category-card,
    .showcased-category-content,
    .about-info-content {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Better touch targets */
    .category-card,
    .hero-arrow {
        min-height: 44px;
        min-width: 44px;
    }

    .hero-dot {
        min-height: 12px;
        min-width: 12px;
        width: 12px;
        height: 12px;
    }
    
    .category-card {
        padding: 1rem 0.75rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        padding: 10px;
    }
    
    .category-name {
        font-size: 0.9rem;
    }
    
    .category-count {
        font-size: 0.75rem;
    }
    
    .btn-outline {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
        width: 90%;
        max-width: 280px;
    }
    
    /* Featured Products Small Mobile */
    .featured-products-section {
        padding: 2.5rem 0;
    }
    
    .featured-title {
        font-size: 1.5rem;
    }
    
    .featured-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto 2rem;
    }
    
    .product-image {
        height: 220px;
    }
    
    .product-excerpt {
        font-size: 0.9rem;
    }
    
    .product-cta {
        font-size: 0.9rem;
    }
    
    .btn-primary-outline {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
        width: 90%;
        max-width: 280px;
    }
    
    /* Hero Section Small Mobile */
    .hero-slider {
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        margin: 1rem 2.5rem;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .slider-dots {
        bottom: 1rem;
    }
    
    /* Footer Small Mobile */
    .footer-top {
        padding: 3rem 0 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-column {
        text-align: center;
    }

    .footer-column .footer-links {
        justify-content: center;
        align-items: center;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        text-align: center;
    }

    .footer-column .footer-links li {
        text-align: center;
        width: 100% !important;
        margin: 0 auto;
    }
    
    .footer-heading:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a:hover {
        transform: none;
        text-decoration: underline;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .newsletter-form input[type="email"] {
        font-size: 1rem;
        padding: 0.85rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
    }
    
    .footer-credits p {
        font-size: 0.85rem;
    }
}

/* Single Product Page Styles */
.product-hero-section {
    background: white;
    padding: 3rem 0;
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.product-hero-content::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #ccc;
    transform: translateX(-50%);
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.product-main-image {
    position: relative;
    background: white;
}

.product-image-wrapper {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.product-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: contain;
}

.product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: #f8f8f8;
    color: #666;
}

.product-placeholder svg {
    width: 100px;
    height: 100px;
}

.product-sale-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #000000;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-thumbnails {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
}

.product-thumbnail {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-thumbnail:hover,
.product-thumbnail.active {
    border-color: #000000;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 1rem 0;
}

.product-breadcrumb {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1rem;
}

.product-breadcrumb a {
    color: #666;
    text-decoration: none;
}

.product-breadcrumb a:hover {
    color: #000000;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
}

.current-page {
    color: #000000;
    font-weight: 500;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #000000 0%, #000000 50%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -1px;
}


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

.rating-count {
    color: #666;
    font-size: 0.875rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
}

.product-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cart {
    margin-bottom: 2rem;
}

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

.product-quantity label {
    font-weight: 600;
}

.product-quantity input[type="number"] {
    width: 80px;
    padding: 0.75rem;
    border: 1px solid #000;
    background: white;
    text-align: center;
    font-weight: 600;
}

.add-to-cart-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.product-meta {
    border-top: 1px solid #e5e5e5;
    padding-top: 1.5rem;
}

.product-meta-item {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #666;
}

/* Product Details Section */
.product-details-section {
    background: white;
    background-image: linear-gradient(
        45deg,
        #cccccc 0%,
        #cccccc 6.25%,
        white 6.25%,
        white 100%
    );
    background-size: 20px 20px;
    padding: 4rem 0;
}

.product-tabs {
    background: white;
    border: 1px solid #000;
    overflow: hidden;
}

.tab-nav {
    display: flex;
    border-bottom: 1px solid #000;
}

.tab-button {
    flex: 1;
    padding: 1rem 2rem;
    background: white;
    border: none;
    border-right: 1px solid #000;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.tab-button:last-child {
    border-right: none;
}

.tab-button:hover {
    background: #f8f8f8;
}

.tab-button.active {
    background: #000000;
    color: white;
}

.tab-content {
    padding: 2rem;
}

.tab-panel {
    display: none;
}

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

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

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

.specs-table tr {
    border-bottom: 1px solid #e5e5e5;
}

.specs-table td {
    padding: 1rem 0;
    vertical-align: top;
}

.specs-table td:first-child {
    width: 200px;
    font-weight: 600;
}

/* Related Products Section */
.related-products-section {
    background: #f8f9fa;
    padding: 4rem 0;
    border-top: 1px solid #000;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #000000 0%, #000000 50%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -1px;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-hero-section {
        padding: 2rem 0;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .tab-nav {
        flex-direction: column;
    }
    
    .tab-button {
        border-right: none;
        border-bottom: 1px solid #000;
    }
    
    .tab-button:last-child {
        border-bottom: none;
    }
    
    .tab-content {
        padding: 1.5rem;
    }
    
    .product-details-section {
        padding: 2rem 0;
    }
    
    .related-products-section {
        padding: 2rem 0;
    }
}

/* Product Inquiry Modal */
.inquiry-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.inquiry-modal-content {
    background: white;
    border: 1px solid #e5e5e5;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.inquiry-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inquiry-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.inquiry-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inquiry-modal-close:hover {
    color: #000000;
}

.product-inquiry-form {
    padding: 2rem;
}

.inquiry-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.inquiry-field {
    flex: 1;
    margin-bottom: 1rem;
}

.inquiry-row .inquiry-field {
    margin-bottom: 0;
}

.inquiry-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.inquiry-field input,
.inquiry-field textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e5e5;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    box-sizing: border-box;
}

.inquiry-field input:focus,
.inquiry-field textarea:focus {
    outline: none;
    border-color: #000000;
}

.inquiry-field textarea {
    resize: vertical;
}

.inquiry-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 0;
    margin-top: 1rem;
}

.inquiry-buttons .btn {
    flex: 1;
}

.product-inquiry-section {
    margin: 2rem 0;
}

/* Modal Mobile Styles */
@media (max-width: 768px) {
    .inquiry-modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .inquiry-modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .product-inquiry-form {
        padding: 1.5rem;
    }
    
    .inquiry-row {
        flex-direction: column;
        gap: 0;
    }
    
    .inquiry-row .inquiry-field {
        margin-bottom: 1rem;
    }
    
    .inquiry-buttons {
        flex-direction: column;
    }
}

/* Product Category Archive Styles */
.category-hero-section {
    background: #f9f9f9;
    padding: 3rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.category-hero-content {
    text-align: center;
}

.category-breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #666;
}

.category-breadcrumb a {
    color: #666;
    text-decoration: none;
}

.category-breadcrumb a:hover {
    color: #000000;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: #999;
}

.current-page {
    color: #000000;
    font-weight: 600;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #000000, #000000);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.category-description {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #666;
}

.category-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.product-count {
    background: #000000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.875rem;
}

.category-products-section {
    background: white;
    padding: 4rem 0;
}

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

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e5e5;
}

.results-count {
    color: #666;
    font-size: 0.95rem;
}

.catalog-ordering select {
    padding: 0.5rem;
    border: 1px solid #e5e5e5;
    background: white;
    font-size: 0.95rem;
}

.category-pagination {
    margin-top: 3rem;
    text-align: center;
}

.category-pagination .page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border: 1px solid #e5e5e5;
    color: #666;
    text-decoration: none;
    background: white;
}

.category-pagination .page-numbers:hover,
.category-pagination .page-numbers.current {
    background: #000000;
    color: white;
    border-color: #000000;
}

.no-products-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
}

.no-products-content svg {
    color: #999;
    margin-bottom: 1rem;
}

.no-products-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.no-products-content p {
    color: #666;
    margin-bottom: 2rem;
}

.related-categories-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e5e5;
}

.related-categories-header {
    text-align: center;
    margin-bottom: 3rem;
}

.related-categories-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #000000, #000000);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.related-categories-subtitle {
    color: #666;
    font-size: 1.125rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.category-card {
    border: 1px solid #e5e5e5;
    background: white;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #000000;
}

.category-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.category-card-content {
    padding: 2rem;
    text-align: center;
}

.category-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.category-card-count {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.category-card-cta {
    display: inline-block;
    color: #000000;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.category-card:hover .category-card-cta {
    border-bottom-color: #000000;
}

/* Mobile Styles for Category Pages */
@media (max-width: 768px) {
    .category-hero-section {
        padding: 2rem 0;
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .category-description {
        font-size: 1rem;
    }
    
    .category-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .category-products-section {
        padding: 3rem 0;
    }
    
    .products-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .related-categories-section {
        margin-top: 3rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-card-content {
        padding: 1.5rem;
    }
}

/* ==========================================
   SHOP PAGE STYLES
   ========================================== */

/* Shop Hero Section */
.shop-hero-section {
    background: #ffffff;
    min-height: 70vh;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.shop-hero-split {
    display: flex;
    align-items: center;
    min-height: 60vh;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.shop-hero-left {
    flex: 1.2;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.shop-hero-content-wrapper {
    width: 100%;
    max-width: 600px;
}

.shop-hero-badge {
    display: inline-block;
    background: #fff4b7;
    color: #000000;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #000000;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.shop-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.shop-hero-divider {
    width: 80px;
    height: 4px;
    background: #000000;
    margin-bottom: 2rem;
}

.shop-hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 90%;
}

.shop-hero-stats {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.shop-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.shop-stat .stat-label {
    font-size: 0.85rem;
    color: #666666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shop-hero-right {
    flex: 1;
    position: relative;
    z-index: 1;
}

.shop-hero-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

.shop-hero-image {
    width: 100%;
    height: 100%;
    position: relative;
    border: 2px solid #000000;
    border-radius: 12px;
    overflow: hidden;
}

.shop-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.shop-hero-pattern {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: #fff4b7;
    border: 2px solid #000000;
    border-radius: 50%;
    z-index: -1;
}

.shop-hero-badge-float {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 200px;
}

.shop-hero-badge-float .badge-subtitle {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #333333;
}

/* Shop Categories Section */
.shop-categories-section {
    background: #f8f9fa;
    padding: 4rem 0;
    position: relative;
}

.shop-categories-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #000000;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Shop Products Section */
.shop-products-section {
    background: #ffffff;
    padding: 4rem 0 6rem 0;
}

/* Shop Layout with Sidebar */
.shop-layout-with-sidebar {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.shop-sidebar-left {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 2rem;
    min-height: calc(100vh - 8rem);
    position: sticky;
    top: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2d2d2d;
    border-bottom: 1px solid #000000;
    padding-bottom: 0.75rem;
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
}

.category-item {
    margin-bottom: 0.5rem;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem;
    text-decoration: none;
    color: #2d2d2d;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    margin-bottom: 0.5rem;
}

.category-link:hover {
    background: #e8e9ea;
    border-color: #000000;
    text-decoration: none;
    color: #2d2d2d;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-item.active .category-link {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.category-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.category-item.active .category-name {
    color: #ffffff;
}

.category-count {
    background: rgba(0, 0, 0, 0.05);
    color: #666666;
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.category-item.active .category-count {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.category-link:hover .category-count {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
    border-color: rgba(0, 0, 0, 0.2);
}

.category-item.active .category-link:hover .category-count {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

/* WooCommerce Sorting Dropdown Styling */
.woocommerce-ordering {
    margin-bottom: 1.5rem;
}

.woocommerce-ordering select,
.woocommerce .orderby {
    background: white;
    border: 2px solid #000;
    border-radius: 6px;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: #2d2d2d;
    min-width: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5rem 1.5rem;
}

.woocommerce-ordering select:hover,
.woocommerce .orderby:hover {
    border-color: #000000;
    background-color: #fff4b7;
}

.woocommerce-ordering select:focus,
.woocommerce .orderby:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Style the result count text */
.woocommerce-result-count {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Single Product Page Button Cursors */
.inquire-button,
.product-inquiry-section button,
.inquiry-modal button {
    cursor: pointer !important;
}

/* Dave Brennan Quotes Section */
.founder-quotes-section {
    background: #e8e9ea;
    padding: 5rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
}

.founder-quotes-section .section-title {
    color: #2d2d2d;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.founder-quotes-section .section-subtitle {
    color: #555;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

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

.quote-box {
    background: linear-gradient(135deg, #e0e1e2 0%, #f0f1f2 100%);
    border: 2px solid #000;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.quote-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: #000000;
}

.quote-box::before {
    display: none;
}

.quote-content {
    position: relative;
    z-index: 1;
}

.quote-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #2d2d2d;
    margin-bottom: 0;
    font-style: italic;
}


/* Mobile responsive for quotes */
@media (max-width: 768px) {
    .quotes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quote-box {
        padding: 1.5rem;
    }
    
    .quote-box::before {
        font-size: 3rem;
        top: -5px;
        left: 15px;
    }
    
    .quote-text {
        font-size: 0.95rem;
    }
}

/* Small Mobile (Phone) */
@media (max-width: 480px) {
    /* About Page Small Mobile */
    .about-hero-left {
        padding: 1.5rem 0;
    }
    
    .about-hero-content-wrapper {
        padding: 0 1rem;
    }
    
    .about-hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .about-hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .about-hero-buttons .btn {
        max-width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .about-hero-right,
    .about-hero-image-container {
        height: 250px;
    }
    
    /* Company Story Small Mobile */
    .company-story-section {
        padding: 2.5rem 0;
    }
    
    .story-title {
        font-size: 1.6rem;
    }
    
    .story-subtitle {
        font-size: 0.9rem;
    }
    
    .story-paragraphs p {
        font-size: 0.9rem;
    }
    
    .story-logo-wrapper .site-logo {
        width: 80px;
        height: 80px;
    }
    
    .logo-tagline {
        font-size: 1.1rem;
    }
    
    .logo-description {
        font-size: 0.85rem;
    }
    
    /* Founder Quotes Small Mobile */
    .founder-quotes-section {
        padding: 2.5rem 0;
    }
    
    .founder-quotes-section .section-title {
        font-size: 1.6rem;
    }
    
    .founder-quotes-section .section-subtitle {
        font-size: 0.9rem;
    }
    
    /* Hero Section Small Mobile */
    .hero-section-alt {
        min-height: 550px;
        padding: 3.5rem 0 1.5rem 0;
    }
    
    .hero-content-alt {
        gap: 1.5rem;
    }
    
    .hero-title-alt {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .hero-subtitle-alt {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons-alt {
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons-alt .btn {
        max-width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .hero-features {
        display: none;
    }
    
    .hero-image-wrapper {
        height: 240px;
        width: 100%;
        clip-path: polygon(50px 0%, 100% 0%, 100% calc(100% - 50px), calc(100% - 50px) 100%, 0% 100%, 0% 50px);
        border-radius: 0;
        overflow: hidden;
        position: relative;
    }
    
    .hero-image-alt img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 0;
    }
    
    .hero-badge {
        display: none;
    }
    
    /* Hide slider dots on small mobile */
    .slider-dots-alt {
        display: none;
    }
    
    /* Position arrows over the image area on small mobile */
    .slider-nav-alt {
        top: calc(3.5rem + 35px); /* Match the smaller top padding + 35px down */
        height: 240px; /* Match the smaller image height */
    }
    
    /* Smaller arrows on phones */
    .slider-arrow-alt {
        width: 36px;
        height: 36px;
    }
    
    .slider-arrow-alt svg {
        width: 14px;
        height: 14px;
    }
}

.shop-products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.shop-products-header .section-title {
    margin-bottom: 0;
}

.products-toolbar {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Filters Toggle Button */
.filters-toggle {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filters-toggle:hover {
    background: #000000;
    transform: translateY(-2px);
}

.filters-toggle svg {
    width: 16px;
    height: 16px;
}

/* Shop Content Wrapper */
.shop-content-wrapper {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

/* Shop Sidebar */
.shop-sidebar {
    width: 280px;
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 0;
    position: sticky;
    top: 2rem;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
    flex-shrink: 0;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
    background: #ffffff;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
}

.sidebar-close {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666666;
    padding: 0;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
}

.sidebar-close:hover {
    color: #000000;
}

/* Filter Sections */
.filter-section {
    border-bottom: 1px solid #e5e5e5;
}

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

.filter-title {
    margin: 0;
    padding: 1.25rem 1.5rem 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* Category Filters */
.category-filter-item {
    border-bottom: 1px solid #f0f0f0;
}

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

.category-filter-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: #666666;
    transition: all 0.2s ease;
    position: relative;
}

.category-filter-link:hover {
    background: #ffffff;
    color: #000000;
    text-decoration: none;
}

.category-filter-item.active .category-filter-link {
    background: #000000;
    color: #ffffff;
    font-weight: 500;
}

.category-filter-item.active .category-filter-link:hover {
    background: #000000;
}

.category-filter-name {
    font-size: 0.9rem;
    flex: 1;
}

.category-filter-count {
    background: #e5e5e5;
    color: #666666;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    min-width: 24px;
    text-align: center;
}

.category-filter-item.active .category-filter-count {
    background: #ffffff;
    color: #000000;
}

/* Mobile Category Dropdown */
.mobile-category-dropdown {
    display: none;
}

.desktop-category-list {
    display: block;
}

.category-dropdown-wrapper {
    position: relative;
    margin: 0 1.5rem;
}

.category-dropdown {
    width: 100%;
    padding: 0.875rem 3rem 0.875rem 1rem;
    background: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333333;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.category-dropdown:hover {
    border-color: #cccccc;
    background: #f9f9f9;
}

.category-dropdown:focus {
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.dropdown-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666666;
    transition: all 0.3s ease;
}

.category-dropdown:focus + .dropdown-arrow {
    color: #000000;
    transform: translateY(-50%) rotate(180deg);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .mobile-category-dropdown {
        display: block;
    }
    
    .desktop-category-list {
        display: none;
    }
}

/* Price Filters */
.price-filter-ranges {
    padding: 0 1.5rem;
}

.price-range-item {
    margin-bottom: 0.5rem;
}

.price-range-item:last-child {
    margin-bottom: 0;
}

.price-range-item a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #666666;
    text-decoration: none;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.price-range-item a:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    text-decoration: none;
}

/* Clear Filters Button */
.clear-filters-btn {
    display: block;
    margin: 0 1.5rem;
    padding: 0.75rem 1rem;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.clear-filters-btn:hover {
    background: #000000;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 38, 38, 0.2);
}

/* Shop Layout */
.shop-content-wrapper {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.shop-sidebar {
    width: 300px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
    background: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

.sidebar-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
}

.sidebar-close {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.sidebar-close:hover {
    background: #e5e5e5;
    color: #000000;
}

.filters-toggle {
    display: none;
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    gap: 0.5rem;
    align-items: center;
    transition: all 0.2s ease;
}

.filters-toggle:hover {
    background: #333333;
}

.filters-toggle svg {
    width: 16px;
    height: 16px;
}

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

/* Mobile Sidebar */
@media (max-width: 968px) {
    .shop-content-wrapper {
        flex-direction: column;
        gap: 0;
    }
    
    .filters-toggle {
        display: flex;
    }
    
    .shop-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 9999;
        border-radius: 0;
        border: none;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }
    
    .shop-sidebar.active {
        transform: translateX(0);
    }
    
    .sidebar-close {
        display: flex;
    }
    
    .sidebar-header {
        position: sticky;
        top: 0;
        z-index: 10;
    }
}

/* Improved Sorting Bar */
.results-count {
    color: #666666;
    font-size: 0.9rem;
    font-weight: 500;
}

.catalog-ordering {
    position: relative;
}

.catalog-ordering select {
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    background: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-width: 200px;
}

.catalog-ordering select:hover {
    border-color: #000000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.catalog-ordering select:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.1);
}

.catalog-ordering::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #666666;
    pointer-events: none;
}

/* Fix WooCommerce Product Grid - Target the actual container */
.woocommerce .products,
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 2rem !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    width: 100% !important;
}

.woocommerce .products li,
.woocommerce ul.products li {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Style our custom product cards */
.product-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #000000;
    background: #e8e9ea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-card .product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.results-count {
    color: #666666;
    font-size: 0.9rem;
}

.catalog-ordering select {
    padding: 0.5rem 1rem;
    border: 1px solid #000000;
    border-radius: 4px;
    background: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.catalog-ordering select:hover {
    background: #f8f9fa;
}

.catalog-ordering select:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.1);
}

/* Custom Tribal Tec Pagination Styles */
.tribal-shop-pagination {
    margin-top: 4rem;
    text-align: center;
    padding: 0 1rem;
}

.tribal-shop-pagination .woocommerce-pagination {
    border-top: 1px solid #e5e5e5;
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tribal-pagination-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0.7rem 1.2rem;
    margin: 0 0.125rem;
    color: #666666 !important;
    text-decoration: none !important;
    border: 1px solid #e5e5e5 !important;
    background: #ffffff !important;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tribal-pagination-btn:hover {
    background: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
}

.tribal-pagination-btn.current {
    background: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
}

.tribal-pagination-btn.prev,
.tribal-pagination-btn.next {
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    background: #f8f9fa !important;
    border-color: #dee2e6 !important;
}

.tribal-pagination-btn.prev:hover,
.tribal-pagination-btn.next:hover {
    background: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
}

.tribal-pagination-btn.prev::after {
    content: ' ←';
    margin-left: 0.5rem;
}

.tribal-pagination-btn.next::before {
    content: '→ ';
    margin-right: 0.5rem;
}

.tribal-pagination-btn.dots {
    border: none !important;
    background: transparent !important;
    color: #999 !important;
    cursor: default;
    font-weight: bold;
    padding: 0.7rem 0.5rem;
}

.tribal-pagination-btn.dots:hover {
    background: transparent !important;
    color: #999 !important;
}

/* Category Pagination */
.tribal-category-pagination {
    margin-top: 3rem;
    text-align: center;
    padding: 0 1rem;
}

.tribal-category-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0.5rem 1rem;
    margin: 0 0.125rem;
    border: 1px solid #e5e5e5 !important;
    color: #666 !important;
    text-decoration: none !important;
    background: #ffffff !important;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tribal-category-btn:hover,
.tribal-category-btn.current {
    background: #000000 !important;
    color: white !important;
    border-color: #000000 !important;
}

/* WooCommerce Pagination Reset - Disable default styles to avoid conflicts */
.woocommerce-pagination,
.wc-block-pagination {
    display: block;
    text-align: center;
    margin-top: 2rem;
    padding: 2rem 0;
    border-top: 1px solid #e5e5e5;
}

.woocommerce nav.woocommerce-pagination ul {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
    display: inline-block;
    margin: 0 2px;
    padding: 0;
}

/* Apply our custom styles to WooCommerce pagination elements */
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0.7rem 1.2rem;
    color: #666666 !important;
    text-decoration: none !important;
    border: 1px solid #e5e5e5 !important;
    background: #ffffff !important;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
}

/* No Products Message */
.no-products-message {
    text-align: center;
    padding: 6rem 2rem;
    grid-column: 1 / -1;
}

.no-products-content svg {
    color: #bdc3c7;
    margin-bottom: 2rem;
}

.no-products-content h3 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 600;
}

.no-products-content p {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Responsive Design for Shop Page */
@media (max-width: 968px) {
    .shop-hero-split {
        flex-direction: column;
        gap: 3rem;
        min-height: auto;
        padding-top: 2rem;
    }
    
    .shop-hero-left {
        order: 2;
        text-align: center;
    }
    
    .shop-hero-right {
        order: 1;
    }
    
    .shop-hero-title {
        font-size: 2.5rem;
    }
    
    .shop-hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .shop-hero-image-container {
        height: 350px;
    }
    
    .shop-hero-badge-float {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 1rem;
        max-width: none;
    }
    
    /* Show filters toggle button */
    .filters-toggle {
        display: flex !important;
    }
    
    /* Hide sidebar by default on mobile */
    .shop-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        height: auto;
        min-height: 100vh;
        z-index: 1000;
        transition: left 0.3s ease;
        border-radius: 0;
        max-height: none;
    }
    
    .shop-sidebar.active {
        left: 0;
    }
    
    .sidebar-close {
        display: flex !important;
    }
    
    /* Content wrapper adjustments */
    .shop-content-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .shop-main-content {
        width: 100%;
    }
    
    /* Sidebar backdrop on mobile */
    .shop-sidebar::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: -1;
    }
    
    /* Shop Layout with Sidebar - Mobile */
    .shop-layout-with-sidebar {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .shop-sidebar-left {
        position: static;
        order: 2;
        min-height: auto;
        height: auto;
    }
    
    .shop-sidebar.active::before {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 768px) {
    .shop-hero-section {
        padding: 2rem 0;
    }
    
    .shop-hero-title {
        font-size: 2rem;
    }
    
    .shop-hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .shop-products-header {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .products-toolbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .products-grid,
    .woocommerce .products,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        max-width: none !important;
        margin: 0 0 2rem !important;
    }
}

@media (max-width: 600px) {
    .products-grid,
    .woocommerce .products,
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        max-width: 400px !important;
        margin: 0 auto 2rem !important;
    }
}

@media (max-width: 480px) {
    .shop-hero-badge-float {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-stat .stat-number {
        font-size: 1.5rem;
    }
}

/* ==========================================
   SINGLE PRODUCT PAGE STYLES
   ========================================== */

/* Product Hero Section */
.product-hero-section {
    background: #ffffff;
    padding: 2rem 0 4rem;
    position: relative;
}

.product-hero-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Product Gallery */
.product-gallery {
    flex: 1;
    max-width: 500px;
}

.product-main-image {
    position: relative;
    margin-bottom: 1.5rem;
    border: 1px solid #000000;
    border-radius: 0;
    overflow: hidden;
    background: #f8f9fa;
}

.product-image-wrapper {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-placeholder {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
}

.product-placeholder svg {
    width: 120px;
    height: 120px;
}

.product-sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #000000;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}

/* Product Thumbnails */
.product-thumbnails {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-thumbnail:hover {
    border-color: #000000;
}

.product-thumbnail.active {
    border-color: #000000;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-info {
    flex: 1;
    max-width: 600px;
}

.product-breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #666666;
}

.product-breadcrumb a {
    color: #666666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-breadcrumb a:hover {
    color: #000000;
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: #999999;
}

.current-page {
    color: #000000;
    font-weight: 500;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

.product-rating .star-rating {
    font-size: 1rem;
}

.rating-count {
    color: #666666;
    font-size: 0.9rem;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1;
}

.product-price del {
    color: #999999;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.product-excerpt {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.product-excerpt p {
    margin-bottom: 1rem;
}

/* Product Inquiry Section */
.product-inquiry-section {
    margin-bottom: 3rem;
}

.inquire-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.inquire-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Product Meta */
.product-meta {
    border-top: 1px solid #e5e5e5;
    padding-top: 2rem;
}

.product-meta-item {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #666666;
}

.product-meta-item strong {
    color: #000000;
    font-weight: 600;
    min-width: 100px;
    display: inline-block;
}

/* Related Products Section */
.related-products-section {
    background: #f8f9fa;
    padding: 4rem 0;
    margin-top: 4rem;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    border-top: 1px solid #000;
}

/* Related Products - White product cards on grey background */
.related-products-section .product-card {
    background: #ffffff;
}

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

.section-header .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-header .section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #000000;
    border-radius: 2px;
}

.section-header .section-subtitle {
    font-size: 1.1rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
}

/* Product Inquiry Modal */
.inquiry-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.inquiry-modal-content {
    background-color: #ffffff;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

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

.inquiry-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e5e5;
}

.inquiry-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
}

.inquiry-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.inquiry-modal-close:hover {
    color: #000000;
}

/* Inquiry Form */
.product-inquiry-form {
    padding: 2rem;
}

.inquiry-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.inquiry-field {
    flex: 1;
    margin-bottom: 1.5rem;
}

.inquiry-row .inquiry-field {
    margin-bottom: 0;
}

.inquiry-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #000000;
    font-size: 0.9rem;
}

.inquiry-field input,
.inquiry-field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    font-family: inherit;
}

.inquiry-field input:focus,
.inquiry-field textarea:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.1);
}

.inquiry-field textarea {
    resize: vertical;
    min-height: 100px;
}

.inquiry-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e5e5;
}

.inquiry-buttons .btn {
    min-width: 120px;
}

/* Responsive Design for Single Product */
@media (max-width: 1024px) {
    .product-hero-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .product-gallery,
    .product-info {
        max-width: none;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-hero-content::after {
        display: none;
    }
    
    .product-main-image img {
        width: 100%;
        max-width: 500px;
        height: auto;
        margin: 0 auto;
        display: block;
    }
    
    .product-thumbnails {
        justify-content: center;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .related-products-section .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 968px) {
    .product-hero-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .product-gallery,
    .product-info {
        max-width: none;
    }
    
    .product-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .product-hero-section {
        padding: 1rem 0 2rem;
    }
    
    .product-hero-content {
        gap: 2rem;
        padding: 0 15px;
    }
    
    .product-gallery {
        width: 100%;
        max-width: 100%;
    }
    
    .product-main-image {
        width: 100%;
        text-align: center;
    }
    
    .product-main-image .product-image-wrapper {
        width: 100%;
        display: block;
        height: auto !important;
    }

    .product-image-wrapper img {
        height: auto !important;
    }
    
    .product-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .product-price {
        font-size: 1.5rem;
    }
    
    .product-main-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .product-thumbnails {
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .product-thumbnail {
        width: 70px;
        height: 70px;
    }
    
    .product-breadcrumb {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .product-excerpt {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .product-meta {
        font-size: 0.9rem;
    }
    
    .related-products-section {
        padding: 2rem 0;
    }
    
    .related-products-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .section-header .section-title {
        font-size: 1.8rem;
    }
    
    .section-header .section-subtitle {
        font-size: 0.95rem;
    }
}
    
    .inquiry-row {
        flex-direction: column;
        gap: 0;
    }
    
    .inquiry-row .inquiry-field {
        margin-bottom: 1.5rem;
    }
    
    .inquiry-buttons {
        flex-direction: column;
    }
    
    .inquiry-modal-content {
        margin: 10px;
        max-height: calc(100vh - 40px);
    }
    
    .inquiry-modal-header,
    .product-inquiry-form {
        padding: 1.5rem;
    }
}

@media (max-width: 600px) {
    .product-thumbnails {
        justify-content: center;
    }
    
    .product-thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .related-products-section .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .product-hero-section {
        padding: 1rem 0;
    }
    
    .product-hero-content {
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .product-gallery {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .product-main-image {
        width: 100%;
        margin: 0;
        text-align: center;
    }
    
    .product-main-image .product-image-wrapper {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        height: auto !important;
    }
    
    .product-main-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    
    .product-title {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .product-price {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .product-breadcrumb {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .product-breadcrumb a,
    .product-breadcrumb span {
        display: inline-block;
        margin-right: 0.25rem;
    }
    
    .product-excerpt {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .product-meta {
        font-size: 0.85rem;
    }
    
    .product-meta-item {
        margin-bottom: 0.5rem;
    }
    
    .inquire-button {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .product-thumbnails {
        gap: 0.4rem;
        margin-top: 1rem;
    }
    
    .product-thumbnail {
        width: 55px;
        height: 55px;
    }
    
    .related-products-section {
        padding: 1.5rem 0;
    }
    
    .section-header .section-title {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }
    
    .section-header .section-subtitle {
        font-size: 0.9rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    /* Custom Pagination Mobile Styles */
    .tribal-shop-pagination {
        margin-top: 2.5rem;
        padding: 0 0.5rem;
    }
    
    .tribal-shop-pagination .woocommerce-pagination {
        padding-top: 1.5rem;
        gap: 0.25rem;
    }
    
    .tribal-pagination-btn {
        min-width: 36px !important;
        height: 36px !important;
        padding: 0.5rem 0.8rem !important;
        margin: 0 0.1rem !important;
        font-size: 0.85rem !important;
    }
    
    .tribal-pagination-btn.prev,
    .tribal-pagination-btn.next {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
    }
    
    .tribal-pagination-btn.prev::after {
        content: '';
        margin-left: 0;
    }
    
    .tribal-pagination-btn.next::before {
        content: '';
        margin-right: 0;
    }
    
    /* Category pagination mobile */
    .tribal-category-pagination {
        margin-top: 2rem;
        padding: 0 0.5rem;
    }
    
    .tribal-category-btn {
        min-width: 36px !important;
        height: 36px !important;
        padding: 0.4rem 0.8rem !important;
        margin: 0 0.1rem !important;
        font-size: 0.85rem !important;
    }
    
    /* WooCommerce default pagination mobile */
    .woocommerce nav.woocommerce-pagination ul li a,
    .woocommerce nav.woocommerce-pagination ul li span {
        min-width: 36px !important;
        height: 36px !important;
        padding: 0.5rem 0.8rem !important;
        font-size: 0.85rem !important;
    }
}

