/**
 * Header & Footer Complete Styles
 * Unified Green Gradient Design System
 * Based on: Minimalism & Swiss Style | B2B Wholesale Theme
 */

/* ============================
   CSS Variables - Unified Green Gradient System
   ============================ */
:root {
    /* Primary Colors - Emerald Green Gradient System */
    --pc-primary: #059669;
    --pc-primary-dark: #047857;
    --pc-primary-darker: #065f46;
    --pc-primary-light: #10b981;
    --pc-primary-lighter: #34d399;
    --pc-primary-50: #ecfdf5;
    --pc-primary-100: #d1fae5;
    --pc-primary-200: #a7f3d0;

    /* Accent Colors - Warm Orange for CTAs */
    --pc-accent: #f97316;
    --pc-accent-dark: #ea580c;
    --pc-accent-light: #fb923c;

    /* Green Gradient Presets - Single Color Gradient */
    --pc-gradient-primary: linear-gradient(135deg, #059669 0%, #10b981 100%);
    --pc-gradient-primary-dark: linear-gradient(135deg, #047857 0%, #059669 100%);
    --pc-gradient-primary-light: linear-gradient(135deg, #34d399 0%, #6ee7b7 100%);
    --pc-gradient-emerald: linear-gradient(135deg, var(--pc-primary-100) 0%, var(--pc-primary-50) 100%);

    /* Green Shadows - Softer Green Tints */
    --pc-shadow-green-sm: 0 2px 8px rgba(5, 150, 105, 0.1);
    --pc-shadow-green: 0 4px 12px rgba(5, 150, 105, 0.12);
    --pc-shadow-green-md: 0 6px 16px rgba(5, 150, 105, 0.15);
    --pc-shadow-green-lg: 0 10px 24px rgba(5, 150, 105, 0.18);

    /* Rating Star Color */
    --pc-rating: #f59e0b;

    /* Text Colors - 清晰的文字层次 */
    --pc-text: #1e293b;
    --pc-text-light: #475569;
    --pc-text-muted: #64748b;
    --pc-text-inverse: #ffffff;

    /* Background Colors */
    --pc-background: #f8fafc;
    --pc-background-alt: #f1f5f9;
    --pc-white: #ffffff;

    /* Border Colors */
    --pc-border: #e5e7eb;
    --pc-border-light: #f3f4f6;

    /* Shadow System - Premium Soft Shadows */
    --pc-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --pc-shadow: 0 2px 4px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --pc-shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    --pc-shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.06);
    --pc-shadow-xl: 0 20px 30px rgba(0, 0, 0, 0.12), 0 8px 12px rgba(0, 0, 0, 0.08);

    /* Spacing System - 4px Base */
    --space-xs: 0.25rem;   /* 4px */
    --space-sm: 0.5rem;     /* 8px */
    --space-md: 1rem;       /* 16px */
    --space-lg: 1.5rem;     /* 24px */
    --space-xl: 2rem;       /* 32px */
    --space-2xl: 3rem;      /* 48px */
    --space-3xl: 4rem;      /* 64px */
    --space-section: 6rem;  /* Section间距 */

    /* Overlay */
    --pc-overlay: rgba(0, 0, 0, 0.5);
    --pc-overlay-light: rgba(0, 0, 0, 0.3);

    /* Typography */
    --pc-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    /* Layout */
    --pc-container: 1440px;

    /* Border Radius */
    --pc-radius-sm: 0.375rem;
    --pc-radius: 0.5rem;
    --pc-radius-md: 0.75rem;
    --pc-radius-lg: 1rem;
    --pc-radius-xl: 1.25rem;
    --pc-radius-2xl: 1.5rem;
    --pc-radius-full: 9999px;

    /* Transitions */
    --pc-transition: all 0.25s ease;
    --pc-transition-fast: all 0.15s ease;
    --pc-transition-slow: all 0.25s ease;

    /* ============================================
       Compatibility Aliases
       ============================================ */
    --pc-primary-500: var(--pc-primary-light);
    --pc-primary-600: var(--pc-primary);
    --pc-primary-700: var(--pc-primary-dark);
    --pc-secondary-500: var(--pc-primary-light);
    --pc-secondary-600: var(--pc-primary);
    --pc-secondary-700: var(--pc-primary-dark);
    --pc-text-primary: var(--pc-text);
    --pc-text-secondary: var(--pc-text-light);
    --pc-text-tertiary: var(--pc-text-muted);
    --pc-bg-primary: var(--pc-white);
    --pc-bg-secondary: var(--pc-background);
    --pc-bg-tertiary: var(--pc-background);
    --pc-border-default: var(--pc-border);
    --pc-border-light: var(--pc-border-light);
}

/* ============================
   Scrollbar & Selection Styling
   ============================ */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--pc-background);
}

::-webkit-scrollbar-thumb {
    background: var(--pc-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--pc-text-muted);
}

::selection {
    background: var(--pc-primary-100);
    color: var(--pc-primary-darker);
}

::-moz-selection {
    background: var(--pc-primary-100);
    color: var(--pc-primary-darker);
}

/* ============================
   SVG Icon Base Styles - Fix oversized icons
   ============================ */
svg {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
}

svg:not([width]):not([height]) {
    width: 1.25rem;
    height: 1.25rem;
}

/* Ensure icons don't overflow */
.pc-icon,
.pc-icon-small,
.pc-icon-arrow,
.pc-search-icon,
.pc-btn-icon,
.pc-nav-arrow,
.pc-hero-badge-icon,
.pc-mobile-nav-link-icon svg,
.pc-social-link svg,
.pc-contact-item svg,
.pc-feature-icon,
.pc-trust-icon,
.pc-shipping-list li svg,
.pc-shipping-destinations li svg,
.pc-oem-list li svg,
.pc-custom-icon svg,
.pc-process-step svg,
.pc-benefit-icon svg,
.pc-cart-header svg,
.pc-faq-icon,
.pc-back-link svg,
.pc-meta-row svg,
.pc-cta-trust span svg,
.pc-mega-menu-close svg,
.pc-mobile-drawer-close svg {
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

/* ============================
   Container
   ============================ */
.pc-container {
    max-width: var(--pc-container);
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 640px) {
    .pc-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ============================
   Mobile Optimization
   ============================ */
@media (max-width: 640px) {
    html {
        font-size: 14px;
    }

    .pc-container {
        padding: 0 1rem;
    }

    .pc-section-title {
        font-size: 1.75rem;
    }

    .pc-hero-title {
        font-size: 2.5rem;
    }

    .pc-hero-subtitle {
        font-size: 1.125rem;
    }

    .pc-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }

    .pc-btn-hero-primary,
    .pc-btn-hero-secondary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .pc-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .pc-hero-buttons > * {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .pc-touch-target {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .pc-hide-mobile {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .pc-hide-desktop {
        display: none !important;
    }
}

/* ============================
   Link & Micro-interaction Styles
   ============================ */
a {
    color: var(--pc-primary);
    text-decoration: none;
    transition: color 0.25s ease;
}

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

.pc-link {
    color: var(--pc-primary);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.pc-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pc-gradient-primary);
    transition: width 0.25s ease;
    border-radius: 1px;
}

.pc-link:hover::after {
    width: 100%;
}

.pc-link:hover {
    color: var(--pc-primary-dark);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid var(--pc-primary-light);
    outline-offset: 2px;
}

/* Image hover zoom */
.pc-img-zoom {
    overflow: hidden;
}

.pc-img-zoom img {
    transition: transform 0.3s ease;
}

.pc-img-zoom:hover img {
    transform: scale(1.03);
}

/* Button bounce animation */
@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(0.95); }
}

.pc-btn:active {
    animation: bounce 0.2s ease;
}

/* Fade in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.pc-fade-in {
    animation: fadeIn 0.3s ease forwards;
}

.site-wrapper > .pc-hero-section .pc-hero-content-wrapper {
    width: 100%;
    max-width: 100% !important;
}

/* ============================
   Site Header - Optimized Structure
   ============================ */
.pc-site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: var(--pc-white);
}

.pc-sticky-header {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ============================
   Top Bar - Premium Modern Style
   ============================ */
.pc-top-bar {
    background: var(--pc-white);
    color: var(--pc-text);
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--pc-border-light);
}

.pc-top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
}

.pc-trust-elements {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.pc-trust-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 500;
    color: var(--pc-text);
    transition: all 0.25s ease;
    letter-spacing: 0.01em;
}

.pc-trust-item:hover {
    color: var(--pc-primary);
}

.pc-trust-item .pc-icon {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--pc-primary);
}

.pc-trust-separator {
    color: var(--pc-border);
    font-weight: 400;
}

.pc-contact-elements {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.pc-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--pc-text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.25s ease;
}

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

.pc-contact-link .pc-icon {
    width: 1rem;
    height: 1rem;
    color: var(--pc-primary);
}

.pc-contact-separator {
    color: var(--pc-border);
}

.pc-language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--pc-text);
}

.pc-language-selector .pc-icon {
    width: 1rem;
    height: 1rem;
    color: var(--pc-text-muted);
}

.pc-language-select {
    background: var(--pc-background);
    color: var(--pc-text);
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius-sm);
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: all 0.25s ease;
}

.pc-language-select:hover {
    background: var(--pc-border-light);
    border-color: var(--pc-border);
}

.pc-language-select option {
    color: var(--pc-text);
    background: var(--pc-white);
}

.pc-icon {
    width: 0.75rem;
    height: 0.75rem;
    flex-shrink: 0;
}

.pc-icon-small {
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
}

.pc-icon-arrow {
    width: 1rem;
    height: 1rem;
    margin-left: 0.25rem;
}

/* Hide classes for responsive */
.pc-hide-mobile {
    display: none;
}

.pc-hide-tablet {
    display: none;
}

.pc-hide-large {
    display: none;
}

@media (min-width: 640px) {
    .pc-hide-mobile {
        display: flex;
    }
}

@media (min-width: 768px) {
    .pc-hide-tablet {
        display: flex;
    }
}

@media (min-width: 1024px) {
    .pc-hide-large {
        display: flex;
    }
}

/* ============================
   Main Header - Premium Modern Style with Sticky
   ============================ */
.pc-main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--pc-border);
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.pc-main-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.pc-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Logo */
.pc-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.pc-logo:hover {
    transform: none;
}

.pc-logo-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pc-logo-badge {
    background: var(--pc-primary);
    color: var(--pc-white);
    padding: 0.375rem 0.75rem;
    border-radius: var(--pc-radius);
    font-weight: 700;
    font-size: 1rem;
}

.pc-logo-text {
    display: flex;
    flex-direction: column;
}

.pc-logo-name {
    font-weight: 800;
    color: var(--pc-text);
    font-size: 1.25rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.pc-logo-subtitle {
    font-size: 0.625rem;
    color: var(--pc-primary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-top: 0.125rem;
}

/* Search Bar */
.pc-header-search {
    flex: 1;
    max-width: none;
    min-width: 200px;
    margin: 0 1rem;
    display: none;
}

@media (min-width: 769px) {
    .pc-header-search {
        display: block;
    }
}

.pc-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.pc-search-input {
    width: 100%;
    padding: 0.75rem 3rem 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 400;
    background: var(--pc-background);
    border: 2px solid var(--pc-border);
    border-radius: var(--pc-radius-md);
    color: var(--pc-text);
    outline: none;
    transition: all 0.25s ease;
}

.pc-search-input::placeholder {
    color: var(--pc-text-muted);
}

.pc-search-input:focus {
    border-color: var(--pc-primary-light);
    background: var(--pc-white);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.pc-search-btn {
    position: absolute;
    right: 0.375rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.5rem;
    background: var(--pc-primary);
    border: none;
    border-radius: var(--pc-radius-sm);
    color: var(--pc-white);
    cursor: pointer;
    transition: all 0.2s ease;
}

.pc-search-btn:hover {
    background: var(--pc-primary-dark);
}

.pc-search-btn svg {
    width: 1rem;
    height: 1rem;
}

.pc-search-clear {
    position: absolute;
    right: 3.5rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.375rem;
    background: transparent;
    border: none;
    color: var(--pc-text-muted);
    cursor: pointer;
    opacity: 0;
    transition: all 0.2s ease;
}

.pc-search-clear.visible {
    opacity: 1;
}

.pc-search-clear:hover {
    color: var(--pc-text);
}

.pc-search-clear svg {
    width: 1rem;
    height: 1rem;
}

/* Header Actions - Override button styles */
.pc-header-actions .pc-btn,
.pc-header-actions .pc-btn-cart,
.pc-header-actions .pc-btn-contact {
    overflow: visible;
}

.pc-header-actions .pc-btn::before {
    display: none;
}
.pc-header-actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .pc-header-actions {
        gap: 0.75rem;
    }
}

/* ====================================
   Unified Button System - Modern Style
   ==================================== */
.pc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--pc-radius);
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.pc-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

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

.pc-btn-primary {
    background: var(--pc-primary);
    color: white;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.25);
}

.pc-btn-primary:hover {
    background: var(--pc-primary-dark);
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.35);
    transform: translateY(-1px);
}

.pc-btn-icon {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
}

/* Primary Button */
.pc-btn-primary {
    background: var(--pc-primary);
    color: white;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.25);
}

.pc-btn-primary:hover {
    background: var(--pc-primary-dark);
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.35);
    transform: translateY(-1px);
}

/* Secondary Button - Outlined */
.pc-btn-secondary {
    background: var(--pc-white);
    color: var(--pc-primary);
    border: 1px solid var(--pc-primary);
}

.pc-btn-secondary:hover {
    background: var(--pc-primary);
    color: var(--pc-white);
    transform: translateY(-1px);
}

/* Outline Button */
.pc-btn-outline {
    background: transparent;
    color: var(--pc-text);
    border: 1px solid var(--pc-border);
}

.pc-btn-outline:hover {
    border-color: var(--pc-text);
    background: var(--pc-background);
}

/* Contact Button - Compact */
.pc-btn.pc-btn-secondary.pc-btn-contact {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    background: transparent;
    border: none;
    color: var(--pc-text);
    transition: all 0.15s ease;
    overflow: visible;
}

.pc-btn.pc-btn-secondary.pc-btn-contact::before {
    display: none;
}

.pc-btn.pc-btn-secondary.pc-btn-contact:hover {
    color: var(--pc-primary);
    background: var(--pc-background-alt);
}

/* Cart Button - Circular Icon Style */
.pc-btn-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    background: var(--pc-white);
    border: 2px solid var(--pc-border);
    color: var(--pc-text);
    border-radius: 50%;
    transition: all 0.15s ease;
    overflow: visible;
}

.pc-btn-cart svg {
    width: 1.125rem;
    height: 1.125rem;
}

.pc-btn-cart:hover {
    background: var(--pc-primary-50);
    border-color: var(--pc-primary);
    color: var(--pc-primary);
}

.pc-cart-badge,
.pc-quote-count {
    position: absolute;
    top: -0.375rem;
    right: -0.375rem;
    background: linear-gradient(135deg, var(--pc-primary) 0%, var(--pc-primary-dark) 100%);
    color: var(--pc-white);
    font-size: 0.625rem;
    font-weight: 700;
    min-width: 1.125rem;
    height: 1.125rem;
    line-height: 1.125rem;
    text-align: center;
    z-index: 20;
    border-radius: 50%;
    padding: 0 0.25rem;
    box-shadow: 0 2px 4px rgba(5, 150, 105, 0.3);
}

/* Sign In Button - Gray Style */
.pc-btn-signin {
    padding: 0.75rem 1.5rem;
    background: var(--pc-gray-100);
    border: 2px solid var(--pc-gray-200);
    color: var(--pc-text);
}

.pc-btn-signin:hover {
    background: var(--pc-gray-200);
    border-color: var(--pc-gray-300);
    color: var(--pc-text);
    transform: none;
    box-shadow: none;
}

/* Mobile Menu Button */
.pc-btn-mobile-menu,
.pc-mobile-menu-btn,
.pc-mobile-menu-toggle {
    display: flex !important;
    padding: 0.625rem;
    background: transparent;
    border: 2px solid var(--pc-border);
    color: var(--pc-text);
    cursor: pointer;
    border-radius: var(--pc-radius-md);
    transition: all 0.25s ease;
    position: relative;
    z-index: 9990;
}

.pc-btn-mobile-menu:hover,
.pc-mobile-menu-btn:hover,
.pc-mobile-menu-toggle:hover {
    background: var(--pc-background);
    border-color: var(--pc-primary);
    color: var(--pc-primary);
}

@media screen and (min-width: 1024px) {
    .pc-btn-mobile-menu,
    .pc-mobile-menu-btn,
    .pc-mobile-menu-toggle {
        display: none !important;
    }
}

.pc-btn-full {
    width: 100%;
}

/* Header CTAs */
.pc-header-ctas {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pc-header-ctas-desktop {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .pc-header-ctas-desktop {
        display: none;
    }
}

@media (min-width: 769px) {
    .pc-header-ctas-mobile {
        display: none;
    }
}

/* ============================
   Navigation Bar - Premium Modern Style
   ============================ */
.pc-navigation-bar-wrapper {
    border-bottom: 1px solid var(--pc-border-light);
    background: var(--pc-white);
    display: none;
}

@media (min-width: 1024px) {
    .pc-navigation-bar-wrapper {
        display: block;
    }
}

.pc-main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 3.5rem;
}

.pc-nav-relative {
    position: relative;
}

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

.pc-nav-item {
    position: relative;
}

.pc-nav-item-has-children {
    position: static;
}

.pc-nav-link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    color: var(--pc-text);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--pc-radius);
    transition: all 0.25s ease;
    position: relative;
}

.pc-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--pc-gradient-primary);
    transition: width 0.25s ease;
    border-radius: 1px;
}

.pc-nav-link:hover {
    background: transparent;
    color: var(--pc-primary);
}

.pc-nav-link:hover::after {
    width: calc(100% - 2rem);
}

.pc-nav-link-dropdown {
    cursor: pointer;
}

.pc-nav-arrow {
    width: 0.875rem;
    height: 0.875rem;
    transition: transform 0.25s ease;
    opacity: 0.5;
}

.pc-nav-item-dropdown:hover .pc-nav-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

/* Quick Links */
.pc-nav-quick-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.pc-quick-link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--pc-text-light);
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}

.pc-quick-link:hover {
    color: var(--pc-primary-dark);
}

.pc-quick-link .pc-icon-small {
    opacity: 0.7;
}

/* ============================
   Mega Menu
   ============================ */
.pc-mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.pc-nav-item-dropdown:hover .pc-mega-menu {
    opacity: 1;
    visibility: visible;
}

.pc-mega-menu-inner {
    background: var(--pc-white);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-top: 4px solid var(--pc-primary);
    border-radius: var(--pc-radius-xl);
    overflow: hidden;
    padding: 1.5rem 2rem;
}

.pc-mega-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--pc-border-light);
}

.pc-mega-menu-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0;
}

.pc-mega-menu-subtitle {
    font-size: 0.875rem;
    color: var(--pc-text-light);
    margin: 0.25rem 0 0 0;
}

.pc-mega-menu-close {
    padding: 0.5rem;
    background: transparent;
    border: none;
    border-radius: var(--pc-radius-full);
    color: var(--pc-text-light);
    cursor: pointer;
    transition: var(--pc-transition);
}

.pc-mega-menu-close:hover {
    background: var(--pc-border-light);
    color: var(--pc-text);
}

.pc-mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.pc-mega-menu-column {
    display: flex;
    flex-direction: column;
}

.pc-mega-category-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid;
}

.pc-mega-category-seasonal {
    color: var(--pc-primary);
    border-color: var(--pc-primary-light);
}

.pc-mega-category-party {
    color: var(--pc-primary);
    border-color: var(--pc-primary-light);
}

.pc-mega-category-color {
    color: var(--pc-primary-dark);
    border-color: var(--pc-primary-100);
}

.pc-mega-category-special {
    color: var(--pc-primary);
    border-color: var(--pc-primary-light);
}

.pc-mega-category-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pc-mega-category-link {
    font-size: 0.875rem;
    color: var(--pc-text-light);
    text-decoration: none;
    transition: var(--pc-transition);
    display: block;
    padding: 0.25rem 0;
}

.pc-mega-category-link:hover {
    color: var(--pc-primary-dark);
}

.pc-mega-menu-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--pc-border-light);
}

.pc-mega-menu-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pc-primary);
    text-decoration: none;
    transition: var(--pc-transition);
}

.pc-mega-menu-view-all:hover {
    color: var(--pc-primary-dark);
}

.pc-mega-menu-trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.75rem;
    color: var(--pc-text-muted);
}

.pc-mega-menu-trust span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ============================
   Mobile Menu
   ============================ */
.pc-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--pc-overlay);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: var(--pc-transition);
}

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

.pc-mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 24rem;
    height: 100%;
    background: var(--pc-white);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 151;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.pc-mobile-drawer.active {
    transform: translateX(0);
}

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

.pc-mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pc-mobile-drawer-close {
    padding: 0.5rem;
    background: transparent;
    border: none;
    border-radius: var(--pc-radius-full);
    color: var(--pc-text-light);
    cursor: pointer;
    transition: var(--pc-transition);
}

.pc-mobile-drawer-close:hover {
    background: var(--pc-border-light);
}

.pc-mobile-drawer-close svg {
    width: 1.5rem;
    height: 1.5rem;
}

.pc-mobile-search {
    padding: 1rem;
    border-bottom: 1px solid var(--pc-border);
}

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

.pc-mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--pc-text);
    text-decoration: none;
    border-radius: var(--pc-radius);
    transition: var(--pc-transition);
}

.pc-mobile-nav-link:hover {
    background: linear-gradient(135deg, var(--pc-primary) 0%, var(--pc-primary-dark) 100%);
    color: var(--pc-white);
}

.pc-mobile-nav-divider {
    height: 1px;
    background: var(--pc-border);
    margin: 0.5rem 0;
}

.pc-mobile-nav-link-icon {
    color: var(--pc-text-light);
}

.pc-mobile-drawer-footer {
    padding: 1rem;
    border-top: 1px solid var(--pc-border);
    background: var(--pc-border-light);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pc-btn-outline {
    background: transparent;
    border: 2px solid var(--pc-primary);
    color: var(--pc-primary);
}

.pc-btn-outline:hover {
    background: var(--pc-primary-50);
}

.pc-btn-outline-secondary {
    background: transparent;
    border: 2px solid var(--pc-border);
    color: var(--pc-text);
}

.pc-btn-outline-secondary:hover {
    background: var(--pc-border-light);
}

.pc-mobile-contact-info {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--pc-border);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pc-mobile-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--pc-text-light);
    text-decoration: none;
    transition: var(--pc-transition);
}

.pc-mobile-contact-link:hover {
    color: var(--pc-primary);
}

/* ============================
   Footer Styles - White Theme
   ============================ */
.pc-footer {
    background: var(--pc-white);
    color: var(--pc-text);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--pc-border-light);
}

.pc-footer-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .pc-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .pc-footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 4rem;
    }
}

.pc-footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pc-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.pc-footer-badge {
    background: var(--pc-gradient-primary);
    color: var(--pc-white);
    padding: 0.625rem 1rem;
    border-radius: var(--pc-radius);
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.pc-footer-site-name {
    font-weight: 700;
    color: var(--pc-text);
    font-size: 1.25rem;
    letter-spacing: -0.01em;
}

.pc-footer-description {
    color: var(--pc-text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.pc-footer-title {
    color: var(--pc-text);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--pc-border-light);
}

.pc-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.pc-footer-link {
    color: var(--pc-text-muted);
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
}

.pc-footer-link:hover {
    color: var(--pc-primary);
    transform: translateX(4px);
}

.pc-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.pc-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--pc-text-muted);
    font-size: 0.9375rem;
}

.pc-contact-item svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: var(--pc-primary);
}

.pc-footer-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.pc-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--pc-background);
    border-radius: var(--pc-radius-full);
    color: var(--pc-text);
    transition: var(--pc-transition);
}

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

.pc-social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.pc-footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--pc-border-light);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .pc-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.pc-footer-copyright {
    color: var(--pc-text-muted);
    font-size: 0.875rem;
}

.pc-footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pc-footer-bottom-link {
    color: var(--pc-text-muted);
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--pc-transition);
}

.pc-footer-bottom-link:hover {
    color: var(--pc-primary);
}

/* ============================
   Hero Section Styles - Front Page
   ============================ */
.site-wrapper > .pc-hero-section {
    min-height: 80vh;
    background: #0a0a0a;
}

.site-wrapper > .pc-hero-section .pc-hero-bg {
    position: absolute;
    inset: 0;
}

.site-wrapper > .pc-hero-section .pc-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-wrapper > .pc-hero-section .pc-hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.site-wrapper > .pc-hero-section .pc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.site-wrapper > .pc-hero-section .pc-hero-content-wrapper {
    position: relative;
    width: 100%;
    max-width: var(--pc-container, 1440px);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.site-wrapper > .pc-hero-section .pc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.site-wrapper > .pc-hero-section .pc-badge-divider {
    color: rgba(255, 255, 255, 0.5);
}

.site-wrapper > .pc-hero-section .pc-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin: 0 0 1.25rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 700px;
}

.site-wrapper > .pc-hero-section .pc-hero-subtitle {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 2rem 0;
    line-height: 1.7;
    max-width: 600px;
}

.site-wrapper > .pc-hero-section .pc-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-wrapper > .pc-hero-section .pc-btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--pc-primary);
    color: white;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--pc-radius);
    text-decoration: none;
    transition: all 0.25s ease;
}

.site-wrapper > .pc-hero-section .pc-btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: white;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--pc-radius);
    text-decoration: none;
    transition: all 0.25s ease;
}

.site-wrapper > .pc-hero-section .pc-btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Stats Bar */
.pc-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--pc-border);
}

.pc-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 1.5rem 0;
}

@media (min-width: 768px) {
    .pc-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pc-stat-item {
    text-align: center;
}

.pc-stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--pc-text);
    margin-bottom: 0.25rem;
}

.pc-stat-label {
    font-size: 0.875rem;
    color: var(--pc-text-muted);
}

/* ============================
   Collections Section
   ============================ */
.pc-collections-section {
    padding: var(--space-section) 0;
    background: var(--pc-white);
}

.pc-section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.pc-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 var(--space-md);
    letter-spacing: -0.02em;
}

.pc-section-description {
    font-size: 1rem;
    color: var(--pc-text-light);
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.7;
}

.pc-collections-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .pc-collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .pc-collections-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pc-collection-card {
    display: block;
    position: relative;
    border-radius: var(--pc-radius-xl);
    overflow: hidden;
    text-decoration: none;
    background: var(--pc-white);
    box-shadow: var(--pc-shadow);
    transition: all 0.25s ease;
}

.pc-collection-card:hover {
    box-shadow: var(--pc-shadow-md);
}

.pc-collection-image-wrapper {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

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

.pc-collection-card:hover .pc-collection-image {
    transform: scale(1.05);
}

.pc-collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.pc-collection-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
}

.pc-collection-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.pc-collection-link {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ============================
   Features Section
   ============================ */
.pc-features-section {
    padding: var(--space-section) 0;
    background: var(--pc-background);
    border-top: none;
}

.pc-features-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--pc-primary-50);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--pc-radius-full);
    margin-bottom: var(--space-lg);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--pc-primary);
    letter-spacing: 0.02em;
}

.pc-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .pc-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pc-features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pc-feature-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--pc-radius-lg);
    background: var(--pc-white);
    border: 1px solid var(--pc-border-light);
    transition: all 0.25s ease;
}

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

.pc-feature-icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: var(--pc-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--pc-shadow-sm);
}

.pc-feature-icon-primary {
    background: var(--pc-primary);
}

.pc-feature-icon-secondary {
    background: var(--pc-primary-dark);
}

.pc-feature-icon-accent {
    background: var(--pc-primary);
}

.pc-feature-icon-dark {
    background: var(--pc-text);
}

.pc-feature-icon {
    width: 2rem;
    height: 2rem;
    color: var(--pc-white);
}

.pc-feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--pc-text);
    margin: 0 0 0.5rem;
}

.pc-feature-description {
    font-size: 0.875rem;
    color: var(--pc-text-light);
    margin: 0;
    line-height: 1.5;
}

.pc-feature-rating {
    display: flex;
    justify-content: center;
    gap: 0.125rem;
}

.pc-star {
    color: var(--pc-rating, #f59e0b);
    font-size: 1rem;
}

.pc-feature-highlight {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pc-primary);
}

/* Trust Grid */
.pc-trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--pc-border);
}

@media (min-width: 768px) {
    .pc-trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pc-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.pc-trust-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: var(--pc-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pc-trust-icon-primary {
    background: var(--pc-primary-100);
}

.pc-trust-icon-secondary {
    background: var(--pc-primary-50);
}

.pc-trust-icon-accent {
    background: var(--pc-primary-100);
}

.pc-trust-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.pc-trust-icon-primary .pc-trust-icon {
    color: var(--pc-primary);
}

.pc-trust-icon-secondary .pc-trust-icon {
    color: var(--pc-primary);
}

.pc-trust-icon-accent .pc-trust-icon {
    color: var(--pc-primary-light);
}

.pc-trust-content {
    flex: 1;
}

.pc-trust-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pc-text);
    margin: 0 0 0.25rem;
}

.pc-trust-description {
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    margin: 0;
}

/* ============================
   CTA Section
   ============================ */
.pc-cta-section {
    padding: 7rem 0;
    background: var(--pc-gradient-primary);
    color: var(--pc-white);
    position: relative;
    overflow: hidden;
}

.pc-cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.pc-cta-circle {
    position: absolute;
    border: 4px solid white;
    border-radius: 50%;
}

.pc-cta-circle-1 {
    width: 8rem;
    height: 8rem;
    top: 2.5rem;
    left: 2.5rem;
}

.pc-cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.pc-cta-title {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 700;
    margin: 0 0 var(--space-lg);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.pc-cta-description {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 32rem;
    margin: 0 auto var(--space-xl);
    line-height: 1.6;
}

.pc-cta-circle-2 {
    width: 12rem;
    height: 12rem;
    bottom: 2.5rem;
    right: 2.5rem;
}

.pc-cta-circle-3 {
    width: 6rem;
    height: 6rem;
    top: 50%;
    left: 25%;
}

.pc-cta-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.pc-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: var(--pc-radius-full);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.pc-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
}

@media (max-width: 768px) {
    .pc-cta-title {
        font-size: 2rem;
    }
}

.pc-cta-description {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 42rem;
    margin: 0 auto 2rem;
}

.pc-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.pc-btn-cta-primary {
    background: var(--pc-white);
    color: var(--pc-primary);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--pc-radius-lg);
    text-decoration: none;
    box-shadow: var(--pc-shadow-green);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.pc-btn-cta-primary {
    position: relative;
    overflow: hidden;
}

.pc-btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: left 0.5s ease;
}

.pc-btn-cta-primary:hover {
    background: var(--pc-gradient-primary);
    color: var(--pc-white);
}

.pc-btn-cta-primary:hover::before {
    left: 100%;
}

.pc-btn-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: var(--pc-white);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--pc-radius-lg);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.25s ease;
}

.pc-btn-cta-secondary:hover {
    background: var(--pc-white);
    color: var(--pc-primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pc-btn-cta-outline {
    background: transparent;
    color: var(--pc-white);
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--pc-radius-lg);
    text-decoration: none;
    border: 1px solid var(--pc-white);
    transition: var(--pc-transition);
}

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

.pc-cta-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
    .pc-cta-trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pc-cta-trust-item {
    text-align: center;
}

.pc-cta-trust-number {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.pc-cta-trust-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ============================
   Wholesale Badge
   ============================ */
.pc-wholesale-badge {
    display: inline-flex;
    align-items: center;
    background: var(--pc-primary);
    border-radius: 9999px;
    padding: 2px 8px 2px 2px;
    flex-shrink: 0;
}

.pc-wholesale-badge-text {
    background: var(--pc-text);
    color: var(--pc-white);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    white-space: nowrap;
    line-height: 1.4;
    letter-spacing: 0.025em;
}

/* ============================
   Utility Classes
   ============================ */
.text-center {
    text-align: center;
}

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

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

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

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

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

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

.border-t {
    border-top: 1px solid var(--pc-border);
}

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

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

/* Shipping Page */
.pc-shipping-hero {
    position: relative;
    background: var(--pc-white);
    padding: 4rem 0;
    border-bottom: 1px solid var(--pc-border-light);
    overflow: hidden;
}

.pc-shipping-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1530103862676-de3c9a59af57?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
}

.pc-shipping-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(243, 244, 246, 0.4) 100%);
}

.pc-shipping-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 1rem;
}

.pc-shipping-subtitle {
    font-size: 1.25rem;
    color: var(--pc-text-muted);
    margin: 0;
}

.pc-shipping-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pc-shipping-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pc-shipping-card {
    border-radius: var(--pc-radius-xl);
    padding: 2rem;
    border: 2px solid;
}

.pc-shipping-card-primary {
    background: var(--pc-primary-50);
    border-color: var(--pc-primary-100);
}

.pc-shipping-card-secondary {
    background: var(--pc-white);
    border-color: var(--pc-border);
}

.pc-shipping-card-tertiary {
    background: var(--pc-white);
    border-color: var(--pc-border);
}

.pc-shipping-icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: var(--pc-white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pc-shipping-card-primary .pc-shipping-icon-wrapper svg {
    color: var(--pc-primary);
    width: 2rem;
    height: 2rem;
}

.pc-shipping-card-secondary .pc-shipping-icon-wrapper svg {
    color: var(--pc-primary);
    width: 2rem;
    height: 2rem;
}

.pc-shipping-card-tertiary .pc-shipping-icon-wrapper svg {
    color: var(--pc-primary);
    width: 2rem;
    height: 2rem;
}

.pc-shipping-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 0.5rem;
}

.pc-shipping-card-desc {
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    margin: 0 0 1rem;
}

.pc-shipping-list {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

.pc-shipping-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    padding: 0.25rem 0;
}

.pc-shipping-list li svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.pc-shipping-card-primary .pc-shipping-list li svg {
    color: var(--pc-primary);
}

.pc-shipping-card-secondary .pc-shipping-list li svg {
    color: var(--pc-primary);
}

.pc-shipping-card-tertiary .pc-shipping-list li svg {
    color: var(--pc-primary);
}

.pc-shipping-card-note {
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.pc-process-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .pc-process-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pc-process-step-item {
    text-align: center;
}

.pc-process-step-number {
    width: 4rem;
    height: 4rem;
    background: var(--pc-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.pc-process-step-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pc-text);
    margin: 0 0 0.5rem;
}

.pc-process-step-desc {
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    margin: 0;
    line-height: 1.5;
}

.pc-shipping-destinations {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
}

.pc-shipping-destinations li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    padding: 0.5rem 0;
}

.pc-shipping-destinations li svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--pc-primary);
    flex-shrink: 0;
}

.pc-shipping-cta {
    background: var(--pc-primary);
    padding: 4rem 0;
}

/* FAQ Page */
.pc-faq-hero {
    position: relative;
    background: linear-gradient(135deg, var(--pc-white) 0%, var(--pc-background) 100%);
    padding: 4rem 0;
    border-bottom: 1px solid var(--pc-border-light);
    overflow: hidden;
}

.pc-faq-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1530103862676-de3c9a59af57?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
}

.pc-faq-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(243, 244, 246, 0.4) 100%);
}

.pc-faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 1rem;
}

.pc-faq-subtitle {
    font-size: 1.25rem;
    color: var(--pc-text-muted);
    margin: 0 0 2rem;
}

.pc-faq-search-wrapper {
    position: relative;
    max-width: 32rem;
    margin: 0 auto;
}

.pc-faq-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    font-size: 1rem;
    border: 2px solid var(--pc-border);
    border-radius: var(--pc-radius-full);
    background: white;
    color: var(--pc-text);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pc-faq-search-input:focus {
    outline: none;
    border-color: var(--pc-primary);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.pc-faq-search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: var(--pc-text-muted);
}

.pc-faq-tabs-section {
    background: var(--pc-background);
    border-bottom: 1px solid var(--pc-border);
    padding: 1.5rem 0;
}

.pc-faq-tabs {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pc-faq-tab {
    padding: 0.5rem 1.5rem;
    border-radius: var(--pc-radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.25s ease;
    background: var(--pc-border-light);
    color: var(--pc-text-light);
}

.pc-faq-tab:hover {
    background: var(--pc-border);
}

.pc-faq-tab-active {
    background: var(--pc-primary);
    color: var(--pc-white);
}

.pc-faq-tab-active:hover {
    background: var(--pc-primary-dark);
}

.pc-faq-content-section {
    padding: 5rem 0;
    background: var(--pc-white);
}

.pc-faq-content-wrapper {
    max-width: 48rem;
    margin: 0 auto;
}

.pc-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pc-faq-item {
    background: white;
    border-radius: var(--pc-radius-xl);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.pc-faq-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}

.pc-faq-toggle:hover {
    background: var(--pc-background);
}

.pc-faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pc-text);
}

.pc-faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--pc-primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.pc-faq-icon-open {
    transform: rotate(180deg);
}

.pc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.pc-faq-answer-open {
    max-height: 500px;
}

.pc-faq-answer p {
    padding: 0 1.5rem 1.25rem;
    margin: 0;
    font-size: 0.875rem;
    color: var(--pc-text-light);
    line-height: 1.6;
}

.pc-faq-contact {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--pc-text-muted);
}

.pc-faq-contact .pc-link-primary {
    color: var(--pc-primary);
    text-decoration: none;
    font-weight: 500;
}

.pc-faq-contact .pc-link-primary:hover {
    text-decoration: underline;
}

/* 404 Page */
.pc-404-page {
    min-height: 100vh;
    background: var(--pc-background);
}

.pc-404-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
}

.pc-404-content {
    max-width: 32rem;
    text-align: center;
}

.pc-404-icon {
    width: 8rem;
    height: 8rem;
    background: var(--pc-primary-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.pc-404-icon svg {
    width: 4rem;
    height: 4rem;
    color: var(--pc-primary);
}

.pc-404-title {
    font-size: 6rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0;
    line-height: 1;
}

.pc-404-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--pc-text);
    margin: 0.5rem 0 1rem;
}

.pc-404-description {
    font-size: 1.125rem;
    color: var(--pc-text-muted);
    margin: 0 0 2rem;
}

.pc-404-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.pc-btn-404-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--pc-primary);
    color: white;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--pc-radius-full);
    text-decoration: none;
    transition: all 0.25s ease;
}

.pc-btn-404-primary:hover {
    background: var(--pc-primary-dark);
}

.pc-btn-404-primary svg {
    width: 1.25rem;
    height: 1.25rem;
}

.pc-btn-404-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--pc-primary);
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--pc-primary);
    border-radius: var(--pc-radius-full);
    text-decoration: none;
    transition: all 0.25s ease;
}

.pc-btn-404-secondary:hover {
    background: linear-gradient(135deg, var(--pc-primary) 0%, var(--pc-primary-dark) 100%);
    color: var(--pc-white);
}

.pc-btn-404-secondary svg {
    width: 1.25rem;
    height: 1.25rem;
}

.pc-404-search {
    margin-bottom: 3rem;
}

.pc-404-search-label {
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    margin: 0 0 1rem;
}

.pc-404-search-form {
    position: relative;
    max-width: 24rem;
    margin: 0 auto;
}

.pc-404-search-input {
    width: 100%;
    padding: 0.875rem 3.5rem 0.875rem 1.5rem;
    font-size: 1rem;
    border: 2px solid var(--pc-border);
    border-radius: var(--pc-radius-full);
    background: white;
    color: var(--pc-text);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pc-404-search-input:focus {
    outline: none;
    border-color: var(--pc-primary);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.pc-404-search-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background: var(--pc-primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.pc-404-search-btn:hover {
    background: var(--pc-primary-dark);
}

.pc-404-search-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.pc-404-quick-links {
    padding-top: 3rem;
    border-top: 1px solid var(--pc-border);
}

.pc-404-quick-links-label {
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    margin: 0 0 1rem;
}

.pc-404-quick-links-list {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pc-404-quick-links-list a {
    font-size: 0.875rem;
    color: var(--pc-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.pc-404-quick-links-list a:hover {
    text-decoration: underline;
}

/* Search Results Page */
.pc-search-results-page {
    min-height: 60vh;
    background: var(--pc-background);
}

.pc-search-results-header {
    background: linear-gradient(135deg, var(--pc-white) 0%, var(--pc-background) 100%);
    padding: 3rem 0;
    border-bottom: 1px solid var(--pc-border-light);
}

.pc-search-results-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 0.5rem;
}

.pc-search-results-count {
    font-size: 1.125rem;
    color: var(--pc-text-muted);
    margin: 0;
}

.pc-search-results-content {
    padding: 3rem 0;
}

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

@media (min-width: 640px) {
    .pc-products-grid {
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .pc-products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.pc-load-more-wrapper {
    text-align: center;
    margin-top: 3rem;
}

.pc-load-more-btn,
body .pc-load-more-btn,
.site-wrapper .pc-load-more-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    background: linear-gradient(135deg, #059669, #047857) !important;
    padding: 0.75rem 2rem !important;
    border-radius: 9999px !important;
    border: none !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: white !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 4px 6px rgba(5, 150, 105, 0.3) !important;
}

.pc-load-more-btn:hover,
body .pc-load-more-btn:hover,
.site-wrapper .pc-load-more-btn:hover {
    background: linear-gradient(135deg, #047857, #065f46) !important;
    box-shadow: 0 6px 12px rgba(5, 150, 105, 0.4) !important;
    transform: translateY(-2px) !important;
}

.pc-load-more-btn svg,
.pc-load-more-btn span,
body .pc-load-more-btn svg,
body .pc-load-more-btn span {
    color: white !important;
    fill: white !important;
}

.pc-load-more-text {
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    margin: 1rem 0 0;
}

.pc-no-products {
    text-align: center;
    padding: 4rem 1rem;
    max-width: 32rem;
    margin: 0 auto;
}

.pc-no-products-icon {
    width: 6rem;
    height: 6rem;
    background: var(--pc-primary-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pc-no-products-icon svg {
    width: 3rem;
    height: 3rem;
    color: #f59e0b;
}

.pc-no-products-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--pc-text);
    margin: 0 0 0.75rem;
}

.pc-no-products-text {
    font-size: 1rem;
    color: var(--pc-text-muted);
    margin: 0 0 1.5rem;
}

.pc-no-products-suggestions {
    text-align: left;
}

.pc-no-products-suggestions-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--pc-text-muted);
    margin: 0 0 0.5rem;
}

.pc-no-products-suggestions-list {
    margin: 0;
    padding-left: 1.5rem;
}

.pc-no-products-suggestions-list li {
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    padding: 0.25rem 0;
}

.pc-mt-6 {
    margin-top: 1.5rem;
}

/* Collection Page - Override any gradient backgrounds */
.pc-collection-page {
    min-height: 100vh;
    background: var(--pc-background) !important;
    background-image: none !important;
}

.pc-collection-page::before,
.pc-collection-page::after {
    display: none !important;
}

.pc-products-section {
    padding: var(--space-section) 0;
    background: var(--pc-white);
}

.pc-category-header {
    position: relative;
    height: 18rem;
    overflow: hidden;
}

.pc-category-header-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--pc-primary-50) 0%, var(--pc-primary-100) 100%);
}

.pc-category-header-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-category-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0;
    letter-spacing: -0.02em;
}

.pc-category-header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pc-category-header-placeholder {
    width: 100%;
    height: 100%;
    background: var(--pc-white);
}

.pc-category-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem 0;
}

.pc-category-header-overlay .pc-container {
    color: white;
}

.pc-category-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.pc-category-description {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0 0 1.5rem;
    max-width: 42rem;
}

.pc-category-actions {
    display: flex;
    gap: 1rem;
}

.pc-btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
}

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

.pc-products-section {
    padding: 3rem 0;
    background: transparent;
}

.pc-controls-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.pc-products-info {
    flex: 1;
    min-width: 200px;
}

.pc-products-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 0.25rem;
}

.pc-product-count {
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    margin: 0;
}

.pc-filter-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pc-filter-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: white;
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius-lg);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}

.pc-filter-toggle svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--pc-text-muted);
}

.pc-filter-toggle:hover,
.pc-filter-toggle.active {
    border-color: var(--pc-primary);
    background: var(--pc-primary-50);
}

.pc-sort-wrapper {
    position: relative;
}

.pc-sort-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: white;
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius-lg);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
}

.pc-sort-dropdown-toggle svg {
    width: 1rem;
    height: 1rem;
    color: var(--pc-text-muted);
}

.pc-sort-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: white;
    border-radius: var(--pc-radius-lg);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    min-width: 12rem;
    z-index: 50;
    display: none;
}

.pc-sort-dropdown.show {
    display: block;
}

.pc-sort-option {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.875rem;
    color: var(--pc-text);
    background: transparent;
    border: none;
    cursor: pointer;
}

.pc-sort-option:hover {
    background: var(--pc-background);
}

.pc-view-mode-toggle {
    display: flex;
    background: var(--pc-white);
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius-lg);
    overflow: hidden;
}

.pc-view-mode-btn {
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

.pc-view-mode-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--pc-text-muted);
}

.pc-view-mode-btn.active {
    background: var(--pc-border-light);
}

.pc-view-mode-btn.active svg {
    color: var(--pc-primary);
}

/* ============================
   Page Common Styles
   ============================ */
.pc-page-hero {
    position: relative;
    background: linear-gradient(135deg, var(--pc-white) 0%, var(--pc-background) 100%);
    padding: 4rem 0;
    border-bottom: 1px solid var(--pc-border-light);
    overflow: hidden;
}

.pc-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1530103862676-de3c9a59af57?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
}

.pc-page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(243, 244, 246, 0.4) 100%);
}

.pc-page-hero-content {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.pc-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a !important;
    margin: 0 0 1rem;
}

.pc-page-hero-content p,
.pc-page-subtitle {
    color: #64748b !important;
}

@media (max-width: 768px) {
    .pc-page-title {
        font-size: 2rem;
    }
}

.pc-page-subtitle {
    font-size: 1.25rem;
    color: var(--pc-text-muted);
    margin: 0;
}

/* Section Styles */
.pc-section {
    padding: 4rem 0;
}

.pc-section-white {
    background: white;
}

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

.pc-section-heading {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 1.5rem;
}

.pc-section-subtitle {
    font-size: 1.125rem;
    color: var(--pc-text-muted);
    max-width: 42rem;
    margin: 0 auto;
}

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

/* Grid Layouts */
.pc-two-column-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
}

.pc-two-column-grid > * {
    height: 100%;
}

@media (min-width: 1024px) {
    .pc-two-column-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.pc-two-column-content {
    order: 2;
}

@media (min-width: 1024px) {
    .pc-two-column-content {
        order: 1;
    }
}

.pc-two-column-image {
    order: 1;
}

@media (min-width: 1024px) {
    .pc-two-column-image {
        order: 2;
    }
}

.pc-three-column-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pc-three-column-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pc-grid-gap-lg {
    gap: 2rem;
}

/* Stats Section */
.pc-stats-section {
    background: var(--pc-white);
    padding: 3rem 0;
}

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

@media (min-width: 768px) {
    .pc-stats-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pc-stat-item-white {
    text-align: center;
}

.pc-stat-number-lg {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.pc-stat-label-lg {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Text Styles */
.pc-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--pc-text);
    margin: 0 0 1rem;
}

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

/* Image Styles */
.pc-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.pc-image-rounded {
    border-radius: var(--pc-radius-xl);
}

.pc-image-shadow {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.pc-image-large {
    height: 24rem;
    object-fit: cover;
}

/* Value Card */
.pc-value-card {
    background: white;
    padding: 2rem;
    border-radius: var(--pc-radius-xl);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--pc-border-light);
}

.pc-value-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--pc-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pc-value-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.pc-value-icon-primary {
    background: linear-gradient(135deg, var(--pc-primary-light) 0%, var(--pc-primary) 100%);
    color: var(--pc-white);
}

.pc-value-icon-secondary {
    background: linear-gradient(to bottom right, var(--pc-primary), var(--pc-primary-dark));
    color: white;
}

.pc-value-icon-accent {
    background: linear-gradient(to bottom right, var(--pc-primary-light), var(--pc-primary));
    color: white;
}

.pc-value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 0.75rem;
}

.pc-value-description {
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* CTA Box */
.pc-cta-box {
    background: linear-gradient(to right, var(--pc-primary), var(--pc-primary), var(--pc-primary));
    border-radius: var(--pc-radius-xl);
    padding: 3rem;
    text-align: center;
    color: white;
}

.pc-cta-box-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin: 0 0 1rem;
}

.pc-cta-box-description {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 42rem;
    margin: 0 auto 2rem;
}

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

/* Buttons */
.pc-btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--pc-background);
    color: var(--pc-text);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 2px solid var(--pc-border);
    border-radius: var(--pc-radius-full);
    text-decoration: none;
    transition: all 0.25s ease;
}

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

.pc-btn-primary-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--pc-primary-dark);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--pc-radius-full);
    text-decoration: none;
    transition: var(--pc-transition);
}

.pc-btn-primary-dark:hover {
    background: var(--pc-primary-darker);
}

/* Cards */
.pc-card {
    background: white;
    border-radius: var(--pc-radius-xl);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.pc-card-sticky {
    position: sticky;
    top: 6rem;
}

.pc-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 1.5rem;
}

.pc-card-title-sm {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 1.5rem;
}

/* Alert */
.pc-alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: var(--pc-radius-lg);
    margin-bottom: 1.5rem;
}

.pc-alert-success {
    background: var(--pc-primary-100);
    border: 1px solid var(--pc-primary-200);
    color: var(--pc-primary-dark);
}

.pc-alert-success svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

/* Form Styles */
.pc-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.pc-form-grid-2 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .pc-form-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pc-form-group {
    display: flex;
    flex-direction: column;
}

.pc-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--pc-text);
    margin-bottom: 0.5rem;
}

.pc-required {
    color: #ef4444;
}

.pc-input,
.pc-select,
.pc-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius);
    background: var(--pc-white);
    color: var(--pc-text);
    transition: all 0.25s ease;
}

.pc-input:focus,
.pc-select:focus,
.pc-textarea:focus {
    outline: none;
    border-color: var(--pc-primary);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
    background: var(--pc-white);
}

.pc-input::placeholder,
.pc-textarea::placeholder {
    color: var(--pc-text-muted);
    opacity: 0.7;
}

.pc-textarea {
    resize: vertical;
    min-height: 8rem;
    line-height: 1.6;
}

.pc-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Contact Info */
.pc-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.pc-contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--pc-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pc-contact-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.pc-contact-icon-primary {
    background: var(--pc-primary-100);
    color: var(--pc-primary);
}

.pc-contact-icon-secondary {
    background: var(--pc-primary-50);
    color: var(--pc-primary);
}

.pc-contact-icon-accent {
    background: var(--pc-primary-100);
    color: var(--pc-primary-light);
}

.pc-contact-content {
    flex: 1;
}

.pc-contact-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pc-text);
    margin: 0 0 0.25rem;
}

.pc-contact-note {
    font-size: 0.75rem;
    color: var(--pc-text-muted);
    margin: 0.25rem 0 0;
}

.pc-contact-text {
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    margin: 0;
    line-height: 1.5;
}

.pc-link {
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--pc-transition);
}

.pc-link-primary {
    color: var(--pc-primary);
}

.pc-link-primary:hover {
    color: var(--pc-primary-dark);
    text-decoration: underline;
}

/* Social Section */
.pc-social-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--pc-border);
}

.pc-social-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pc-text);
    margin: 0 0 1rem;
}

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

.pc-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--pc-border-light);
    border-radius: var(--pc-radius-full);
    color: var(--pc-text);
    transition: var(--pc-transition);
}

.pc-social-link:hover {
    background: var(--pc-primary-100);
    color: var(--pc-primary);
}

.pc-social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* OEM/ODM Page */
.pc-oem-hero {
    position: relative;
    background: linear-gradient(135deg, var(--pc-white) 0%, var(--pc-background) 100%);
    padding: 4rem 0;
    border-bottom: 1px solid var(--pc-border-light);
    overflow: hidden;
}

.pc-oem-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1530103862676-de3c9a59af57?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
}

.pc-oem-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(243, 244, 246, 0.4) 100%);
}

.pc-oem-card {
    background: white;
    border-radius: var(--pc-radius-xl);
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 2px solid;
}

.pc-oem-card-primary {
    background: linear-gradient(to bottom right, var(--pc-primary-50), var(--pc-primary-100));
    border-color: var(--pc-primary-200);
}

.pc-oem-card-secondary {
    background: linear-gradient(to bottom right, var(--pc-primary-100), var(--pc-primary-100));
    border-color: var(--pc-primary-100);
}

.pc-oem-icon-wrapper {
    width: 4rem;
    height: 4rem;
    background: white;
    border-radius: var(--pc-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pc-oem-icon-wrapper svg {
    width: 2rem;
    height: 2rem;
}

.pc-oem-card-primary .pc-oem-icon-wrapper svg {
    color: var(--pc-primary);
}

.pc-oem-card-secondary .pc-oem-icon-wrapper svg {
    color: var(--pc-primary);
}

.pc-oem-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 0.75rem;
}

.pc-oem-description {
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    margin: 0 0 1rem;
    line-height: 1.6;
}

.pc-oem-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pc-oem-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    padding: 0.25rem 0;
}

.pc-oem-list li svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.pc-oem-card-primary .pc-oem-list li svg {
    color: var(--pc-primary);
}

.pc-oem-card-secondary .pc-oem-list li svg {
    color: var(--pc-primary);
}

.pc-custom-card {
    background: white;
    border-radius: var(--pc-radius-xl);
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pc-custom-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--pc-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.pc-custom-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.pc-custom-icon-primary {
    background: var(--pc-primary-100);
    color: var(--pc-primary);
}

.pc-custom-icon-secondary {
    background: var(--pc-primary-100);
    color: var(--pc-primary);
}

.pc-custom-icon-accent {
    background: var(--pc-primary-50);
    color: var(--pc-primary);
}

.pc-custom-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pc-text);
    margin: 0 0 0.5rem;
}

.pc-custom-description {
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Process Grid */
.pc-process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .pc-process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .pc-process-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.pc-process-step {
    text-align: center;
}

.pc-process-number {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to right, var(--pc-primary), var(--pc-primary));
    color: white;
    border-radius: var(--pc-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.pc-process-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pc-text);
    margin: 0 0 0.25rem;
}

.pc-process-description {
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    margin: 0;
}

/* OEM CTA */
.pc-oem-cta {
    background: linear-gradient(to right, var(--pc-primary), var(--pc-primary), var(--pc-primary));
    padding: 4rem 0;
}

/* Product Detail Page */
.pc-product-breadcrumb {
    background: white;
    border-bottom: 1px solid var(--pc-border);
    padding: 1.5rem 0;
}

.pc-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--pc-primary);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.pc-back-link:hover {
    color: var(--pc-primary-dark);
    text-decoration: underline;
}

.pc-back-link svg {
    width: 1rem;
    height: 1rem;
}

.pc-product-section {
    padding: 5rem 0 6rem;
    background: linear-gradient(180deg, var(--pc-white) 0%, var(--pc-background) 100%);
}

.pc-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

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

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

@media (min-width: 1200px) {
    .pc-product-grid {
        grid-template-columns: 55% 45%;
        gap: 5rem;
    }
}

.pc-product-gallery {
    position: relative;
}

.pc-product-main-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: linear-gradient(145deg, var(--pc-background) 0%, var(--pc-border) 100%);
    border-radius: 2rem;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.pc-product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pc-product-main-image:hover img {
    transform: scale(1.08);
}

.pc-sale-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: var(--pc-gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 3rem;
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow:
        0 10px 25px rgba(220, 38, 38, 0.4),
        0 0 0 4px rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.pc-product-thumbnails {
    display: flex;
    gap: 1.25rem;
    margin-top: 2rem;
    overflow-x: auto;
    padding: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--pc-border) transparent;
}

.pc-product-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.pc-product-thumbnails::-webkit-scrollbar-track {
    background: transparent;
}

.pc-product-thumbnails::-webkit-scrollbar-thumb {
    background: var(--pc-border);
    border-radius: 3px;
}

.pc-thumbnail {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--pc-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pc-thumbnail:hover {
    border-color: var(--pc-primary);
}

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

.pc-product-info-sidebar {
    display: flex;
    flex-direction: column;
    background: var(--pc-white);
    border-radius: 2rem;
    padding: 3rem;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 2rem;
}

@media (max-width: 1200px) {
    .pc-product-info-sidebar {
        position: static;
    }
}

.pc-product-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--pc-gradient-primary);
    color: var(--pc-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
}

.pc-product-category-badge svg {
    width: 14px;
    height: 14px;
}

.pc-product-detail-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--pc-text);
    margin: 0 0 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

@media (min-width: 768px) {
    .pc-product-detail-title {
        font-size: 2.75rem;
    }
}

.pc-product-short-description {
    font-size: 1.0625rem;
    color: var(--pc-text-muted);
    margin: 0 0 2rem;
    line-height: 1.8;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--pc-background);
}

.pc-product-meta-details {
    background: linear-gradient(135deg, var(--pc-background) 0%, var(--pc-background) 100%);
    border-radius: 1.25rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--pc-border);
}

.pc-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--pc-border);
}

.pc-meta-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pc-meta-row:first-child {
    padding-top: 0;
}

.pc-meta-row svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--pc-primary);
    flex-shrink: 0;
}

.pc-meta-label {
    font-size: 0.9375rem;
    color: var(--pc-text-muted);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pc-meta-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pc-text);
}

.pc-meta-value strong {
    color: var(--pc-primary);
    font-weight: 800;
}

.pc-product-description-note {
    font-size: 0.9375rem;
    color: #78716c;
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
    border: 1px solid var(--pc-primary-100);
    border-left: 4px solid var(--pc-primary);
    border-radius: 0 1rem 1rem 0;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    line-height: 1.6;
}

.pc-product-description-note::before {
    content: "💡";
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pc-quantity-selector {
    margin-bottom: 2rem;
}

.pc-quantity-selector label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--pc-text);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pc-quantity-input {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid var(--pc-border);
    border-radius: 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--pc-text);
    transition: all 0.25s ease;
    background: var(--pc-white);
}

.pc-quantity-input:focus {
    outline: none;
    border-color: var(--pc-primary);
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.15);
}

.pc-product-actions {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: auto;
}

.pc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 1rem;
    font-size: 1.0625rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pc-btn-primary {
    background: var(--pc-gradient-primary);
    color: var(--pc-white);
}

.pc-btn-primary:hover {
    background: linear-gradient(135deg, var(--pc-primary-dark) 0%, var(--pc-primary-dark) 100%);
}

.pc-btn-outline-secondary {
    background: var(--pc-white);
    color: var(--pc-text);
    border: 2px solid var(--pc-border);
}

.pc-btn-outline-secondary:hover {
    background: var(--pc-background);
    border-color: var(--pc-primary);
    color: var(--pc-primary);
}

.pc-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

.pc-product-actions-secondary {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.pc-product-actions-secondary .pc-btn {
    flex: 1;
    min-width: 160px;
}

@media (max-width: 600px) {
    .pc-product-info-sidebar {
        padding: 2rem 1.5rem;
    }
    
    .pc-product-actions-secondary {
        flex-direction: column;
    }
    
    .pc-product-actions-secondary .pc-btn {
        width: 100%;
    }
}

.pc-quantity-section {
    margin-bottom: 1.5rem;
}

.pc-quantity-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--pc-text);
    margin-bottom: 0.5rem;
}

.pc-quantity-input {
    width: 100%;
    max-width: 16rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius-lg);
    background: white;
    color: var(--pc-text);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pc-quantity-input:focus {
    outline: none;
    border-color: var(--pc-primary);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.pc-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pc-secondary-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.pc-btn-add-quote {
    background: linear-gradient(to right, var(--pc-primary), var(--pc-primary));
    color: white;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--pc-radius-lg);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
}

.pc-btn-add-quote:hover {
    background: linear-gradient(to right, var(--pc-primary-dark), var(--pc-primary-dark));
}

.pc-btn-add-quote svg {
    width: 1.25rem;
    height: 1.25rem;
}

.pc-btn-outline {
    background: transparent;
    border: 2px solid var(--pc-primary);
    color: var(--pc-primary);
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--pc-radius-lg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
    text-decoration: none;
}

.pc-btn-outline:hover {
    background: var(--pc-primary-50);
}

.pc-btn-outline svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Specs Section */
.pc-specs-section {
    padding: 3rem 0;
    background: var(--pc-background);
}

.pc-specs-card {
    background: white;
    border-radius: var(--pc-radius-xl);
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pc-specs-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 1.5rem;
}

.pc-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .pc-specs-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pc-spec-item {
}

.pc-spec-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pc-text);
    margin: 0 0 0.25rem;
}

.pc-spec-value {
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    margin: 0;
}

/* Related Section */
.pc-related-section {
    padding: var(--space-section) 0;
    background: var(--pc-white);
}

.pc-related-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 var(--space-xl);
    letter-spacing: -0.02em;
}

.pc-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .pc-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pc-related-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pc-related-card {
    background: white;
    border-radius: var(--pc-radius-lg);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.pc-related-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pc-related-image-link {
    display: block;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--pc-border-light);
}

.pc-related-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.pc-related-card:hover .pc-related-image {
    transform: scale(1.05);
}

.pc-related-info {
    padding: 1rem;
}

.pc-related-product-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pc-text);
    margin: 0 0 0.5rem;
    line-height: 1.4;
}

.pc-related-product-title a {
    color: inherit;
    text-decoration: none;
}

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

.pc-related-description {
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    margin: 0 0 0.75rem;
    display: -webkit-box;
    display: box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
}

.pc-related-meta {
    margin-bottom: 1rem;
}

.pc-btn-sm {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
}

/* CTA Section Product */
.pc-cta-section-product {
    padding: 3rem 0;
    background: linear-gradient(to right, var(--pc-primary), var(--pc-primary), var(--pc-primary));
}

.pc-cta-box-product {
    text-align: center;
    color: white;
}

.pc-cta-title-product {
    font-size: 1.875rem;
    font-weight: 700;
    margin: 0 0 1rem;
}

.pc-cta-desc-product {
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0 0 2rem;
}

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

.pc-btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--pc-radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
    text-decoration: none;
}

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

/* Register Page */
.pc-register-page {
    min-height: 100vh;
    background: var(--pc-background);
    padding: 3rem 0;
}

.pc-register-container {
    max-width: 28rem;
    margin: 0 auto;
}

.pc-register-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.pc-register-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.pc-register-logo-badge {
    background: linear-gradient(to bottom right, var(--pc-primary), var(--pc-primary));
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: var(--pc-radius);
    font-weight: 700;
    font-size: 1.25rem;
}

.pc-register-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pc-text);
}

.pc-register-form-card {
    background: white;
    border-radius: var(--pc-radius-xl);
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pc-register-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 0.5rem;
}

.pc-register-subtitle {
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    margin: 0 0 1.5rem;
}

.pc-register-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    padding: 1rem;
    border-radius: var(--pc-radius-lg);
    margin-bottom: 1.5rem;
}

.pc-register-error p {
    margin: 0;
    font-size: 0.875rem;
}

.pc-register-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pc-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.pc-checkbox {
    width: 1rem;
    height: 1rem;
    margin-top: 0.25rem;
    accent-color: var(--pc-primary);
}

.pc-checkbox-label {
    font-size: 0.875rem;
    color: var(--pc-text-muted);
}

.pc-link-primary {
    color: var(--pc-primary);
    text-decoration: none;
}

.pc-link-primary:hover {
    text-decoration: underline;
}

.pc-btn-register {
    background: linear-gradient(to right, var(--pc-primary), var(--pc-primary));
    color: white;
    font-weight: 600;
    padding: 0.875rem 1.5rem;
    border-radius: var(--pc-radius-lg);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.pc-btn-register:hover {
    background: linear-gradient(to right, var(--pc-primary-dark), var(--pc-primary-dark));
}

.pc-register-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.pc-register-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--pc-border);
}

.pc-register-divider span {
    position: relative;
    background: white;
    padding: 0 1rem;
    color: var(--pc-text-muted);
    font-size: 0.875rem;
}

.pc-register-social {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.pc-btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: white;
    border: 2px solid var(--pc-border);
    border-radius: var(--pc-radius-lg);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}

.pc-btn-social:hover {
    background: var(--pc-background);
    border-color: var(--pc-border);
}

.pc-btn-social svg {
    width: 1.25rem;
    height: 1.25rem;
}

.pc-register-login-link {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--pc-text-muted);
}

.pc-register-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    text-align: center;
}

.pc-benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pc-benefit-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.pc-benefit-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.pc-benefit-icon-green {
    background: var(--pc-primary-100);
    color: var(--pc-primary);
}

.pc-benefit-icon-blue {
    background: var(--pc-primary-100);
    color: var(--pc-primary);
}

.pc-benefit-icon-teal {
    background: #ccfbf1;
    color: var(--pc-primary-dark);
}

.pc-benefit-text {
    font-size: 0.75rem;
    color: var(--pc-text-muted);
    margin: 0;
}

/* Blog Page Styles */
.pc-blog-main {
    background: var(--pc-background);
    min-height: 60vh;
}

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

.pc-blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pc-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pc-blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pc-blog-card {
    background: white;
    border-radius: var(--pc-radius-lg);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.pc-blog-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pc-blog-card-image-link {
    display: block;
    overflow: hidden;
}

.pc-blog-card-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pc-blog-card:hover .pc-blog-card-image {
    transform: scale(1.05);
}

.pc-blog-card-content {
    padding: 1.5rem;
}

.pc-blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 0.5rem;
    line-height: 1.4;
}

.pc-blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.pc-blog-card-title a:hover {
    color: var(--pc-primary);
}

.pc-blog-card-meta {
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    margin: 0 0 1rem;
}

.pc-blog-card-excerpt {
    font-size: 0.875rem;
    color: var(--pc-text-light);
    margin: 0 0 1rem;
    line-height: 1.6;
}

.pc-blog-card-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pc-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.pc-blog-card-link:hover {
    color: var(--pc-primary-dark);
    text-decoration: underline;
}

.pc-blog-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.pc-blog-empty {
    text-align: center;
    padding: 3rem 0;
}

.pc-blog-empty-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 1rem;
}

.pc-blog-empty-text {
    font-size: 1rem;
    color: var(--pc-text-muted);
    margin: 0;
}

/* Quote Request Page */
.pc-quote-success {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--pc-white) 0%, var(--pc-background) 100%);
}

.pc-success-card {
    background: white;
    border-radius: var(--pc-radius-xl);
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    max-width: 32rem;
    text-align: center;
}

.pc-success-icon {
    width: 5rem;
    height: 5rem;
    color: var(--pc-primary);
    margin-bottom: 1.5rem;
}

.pc-success-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 1rem;
}

.pc-success-description {
    font-size: 1.125rem;
    color: var(--pc-text-muted);
    margin: 0 0 2rem;
    line-height: 1.6;
}

.pc-success-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.pc-success-note {
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    margin: 0;
}

.pc-quote-header {
    background: linear-gradient(135deg, var(--pc-white) 0%, var(--pc-background) 100%);
    padding: 3rem 0;
    border-bottom: 1px solid var(--pc-border-light);
}

.pc-quote-body {
    padding: 3rem 0;
    background: var(--pc-background);
}

.pc-quote-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .pc-quote-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.pc-quote-form-wrapper {
    min-width: 0;
}

.pc-quote-cart-wrapper {
    min-width: 0;
}

.pc-cart-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.pc-cart-header svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--pc-primary);
}

.pc-cart-empty {
    text-align: center;
    padding: 2rem 0;
}

.pc-cart-empty svg {
    width: 4rem;
    height: 4rem;
    color: #fbbf24;
    margin: 0 auto 1rem;
}

.pc-cart-empty-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--pc-text);
    margin: 0 0 0.5rem;
}

.pc-cart-empty-note {
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    margin: 0 0 1.5rem;
}

.pc-cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pc-cart-items-list {
    max-height: 24rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pc-cart-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--pc-background);
    border-radius: var(--pc-radius-lg);
}

.pc-cart-item-image {
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
    border-radius: var(--pc-radius);
    overflow: hidden;
    background: white;
}

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

.pc-cart-item-details {
    flex: 1;
    min-width: 0;
}

.pc-cart-item-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--pc-text);
    margin: 0 0 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pc-cart-item-qty {
    font-size: 0.75rem;
    color: var(--pc-text-muted);
    margin: 0;
}

.pc-cart-item-price {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pc-primary);
    margin: 0.25rem 0 0;
}

.pc-cart-footer {
    padding-top: 1rem;
    border-top: 1px solid var(--pc-border);
}

.pc-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--pc-text);
}

.pc-cart-badge-lg {
    background: var(--pc-border);
    color: var(--pc-text);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: var(--pc-radius-sm);
}

.pc-cart-note {
    font-size: 0.75rem;
    color: var(--pc-text-muted);
    margin: 0 0 1rem;
}

/* Wholesale Page */
.pc-wholesale-hero {
    position: relative;
    background: linear-gradient(135deg, var(--pc-white) 0%, var(--pc-background) 100%);
    padding: 4rem 0;
    border-bottom: 1px solid var(--pc-border-light);
    overflow: hidden;
}

.pc-wholesale-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1530103862676-de3c9a59af57?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
}

.pc-wholesale-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(243, 244, 246, 0.4) 100%);
}

.pc-hero-content-center {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.pc-wholesale-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 1rem;
}

.pc-wholesale-subtitle {
    font-size: 1.25rem;
    color: var(--pc-text-muted);
    margin: 0 0 2rem;
}

.pc-benefit-card {
    background: white;
    border-radius: var(--pc-radius-xl);
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--pc-border-light);
}

.pc-benefit-card-primary {
    background: linear-gradient(to bottom right, var(--pc-primary-50), var(--pc-primary-100));
    border-color: var(--pc-primary-200);
}

.pc-benefit-card-secondary {
    background: linear-gradient(to bottom right, var(--pc-primary-100), var(--pc-primary-100));
    border-color: var(--pc-primary-100);
}

.pc-benefit-card-accent {
    background: linear-gradient(to bottom right, var(--pc-primary-100), var(--pc-primary-100));
    border-color: var(--pc-primary-100);
}

.pc-benefit-icon-wrapper {
    width: 4rem;
    height: 4rem;
    background: white;
    border-radius: var(--pc-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pc-benefit-icon-wrapper svg {
    width: 2rem;
    height: 2rem;
}

.pc-benefit-card-primary .pc-benefit-icon-wrapper svg {
    color: var(--pc-primary);
}

.pc-benefit-card-secondary .pc-benefit-icon-wrapper svg {
    color: var(--pc-primary);
}

.pc-benefit-card-accent .pc-benefit-icon-wrapper svg {
    color: var(--pc-primary);
}

.pc-benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 0.75rem;
}

.pc-benefit-description {
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Pricing Tiers */
.pc-tiers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .pc-tiers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pc-tier-card {
    background: white;
    border-radius: var(--pc-radius-xl);
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.pc-tier-card-popular {
    background: linear-gradient(to bottom right, var(--pc-primary-50), var(--pc-primary-100));
    border: 2px solid var(--pc-primary-light);
}

.pc-tier-card-secondary {
    background: linear-gradient(to bottom right, var(--pc-primary-100), var(--pc-primary-100));
    border: 2px solid var(--pc-primary-light);
}

.pc-tier-card-accent {
    background: linear-gradient(to bottom right, var(--pc-primary-100), var(--pc-primary-100));
    border: 2px solid var(--pc-primary);
}

.pc-tier-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, var(--pc-primary), var(--pc-primary));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: var(--pc-radius-full);
}

.pc-tier-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 0.5rem;
}

.pc-tier-discount {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
}

.pc-tier-discount-primary {
    color: var(--pc-primary);
}

.pc-tier-discount-secondary {
    color: var(--pc-primary);
}

.pc-tier-discount-accent {
    color: var(--pc-primary);
}

.pc-tier-range {
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    margin: 0 0 1rem;
}

.pc-tier-benefits {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.pc-tier-benefits li {
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pc-tier-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--pc-primary);
    font-weight: 700;
}

/* Wholesale CTA */
.pc-wholesale-cta {
    background: linear-gradient(to right, var(--pc-primary), var(--pc-primary), var(--pc-primary));
    padding: 4rem 0;
}

.pc-cta-content-center {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}

.pc-cta-title-white {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1rem;
}

.pc-cta-desc-white {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2rem;
}

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

.pc-btn-dark:hover {
    background: var(--pc-primary-darker);
}

.pc-btn-lg {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
}

/* Map Section */
.pc-map-section {
    height: 24rem;
    background: var(--pc-border);
}

.pc-map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom right, var(--pc-border-light), var(--pc-border));
}

.pc-map-content {
    text-align: center;
    color: var(--pc-text-muted);
}

.pc-map-content svg {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
}

.pc-map-content p {
    margin: 0;
    font-size: 0.875rem;
}

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

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

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

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

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

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

.border-t {
    border-top: 1px solid var(--pc-border);
}

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

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}


/* ============================
   Catalogs Page Styles
   ============================ */
.pc-catalogs-page {
    min-height: 100vh;
}

.pc-catalogs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pc-catalogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pc-catalogs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pc-catalog-card {
    background: white;
    border-radius: var(--pc-radius-xl);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: var(--pc-transition);
    border: 1px solid var(--pc-border);
}

.pc-catalog-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.pc-catalog-card.pc-catalog-card-custom {
    border: 2px dashed var(--pc-border);
    background: linear-gradient(135deg, var(--pc-background), white);
}

.pc-catalog-cover {
    background: linear-gradient(135deg, var(--pc-text), var(--pc-text));
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.pc-catalog-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(5, 150, 105, 0.2), transparent 60%);
}

.pc-catalog-cover.pc-catalog-cover-seasonal {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.pc-catalog-cover.pc-catalog-cover-seasonal::before {
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent 60%);
}

.pc-catalog-cover.pc-catalog-cover-wedding {
    background: linear-gradient(135deg, #f472b6, #db2777);
}

.pc-catalog-cover.pc-catalog-cover-wedding::before {
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent 60%);
}

.pc-catalog-cover.pc-catalog-cover-baby {
    background: linear-gradient(135deg, #38bdf8, #0284c7);
}

.pc-catalog-cover.pc-catalog-cover-baby::before {
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent 60%);
}

.pc-catalog-cover.pc-catalog-cover-birthday {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.pc-catalog-cover.pc-catalog-cover-birthday::before {
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent 60%);
}

.pc-catalog-cover.pc-catalog-cover-custom {
    background: linear-gradient(135deg, var(--pc-text-muted), var(--pc-text-light));
}

.pc-catalog-cover.pc-catalog-cover-custom::before {
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 60%);
}

.pc-catalog-cover-icon {
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--pc-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.pc-catalog-cover-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
}

.pc-catalog-content {
    padding: 1.5rem;
}

.pc-catalog-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 0.5rem;
}

.pc-catalog-description {
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    margin: 0 0 1rem;
    line-height: 1.5;
}

.pc-catalog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pc-catalog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--pc-text-muted);
    background: var(--pc-border-light);
    padding: 0.375rem 0.75rem;
    border-radius: var(--pc-radius-full);
}

.pc-catalog-meta-item svg {
    width: 1rem;
    height: 1rem;
    color: var(--pc-text-muted);
}

.pc-btn-full {
    width: 100%;
    justify-content: center;
}

.pc-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pc-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pc-features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pc-feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--pc-radius-xl);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--pc-border-light);
}

.pc-feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: var(--pc-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.pc-feature-icon.pc-feature-icon-secondary {
    background: linear-gradient(to bottom right, var(--pc-primary), var(--pc-primary-dark));
    color: white;
}

.pc-feature-icon.pc-feature-icon-accent {
    background: linear-gradient(to bottom right, var(--pc-primary-light), var(--pc-primary));
    color: white;
}

.pc-feature-icon.pc-feature-icon-primary {
    background: linear-gradient(135deg, var(--pc-primary-light) 0%, var(--pc-primary) 100%);
    color: var(--pc-white);
}

.pc-feature-icon svg {
    width: 2rem;
    height: 2rem;
}

.pc-feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--pc-text);
    margin: 0 0 0.5rem;
}

.pc-feature-description {
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    margin: 0;
    line-height: 1.6;
}


/* ============================
   Catalogs Page Styles - Updated
   ============================ */
.pc-catalogs-page {
    min-height: 100vh;
}

.pc-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.pc-trust-badge {
    background: var(--pc-gradient-primary);
    color: var(--pc-white);
    padding: 0.5rem 1rem;
    border-radius: var(--pc-radius-full);
    font-size: 0.75rem;
    font-weight: 500;
}

.pc-catalogs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pc-catalogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pc-catalogs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pc-catalog-card {
    background: white;
    border-radius: var(--pc-radius-xl);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: var(--pc-transition);
    border: 1px solid var(--pc-border);
}

.pc-catalog-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.pc-catalog-card-featured {
    border: 2px solid var(--pc-primary);
}

.pc-catalog-image-wrapper {
    position: relative;
    height: 14rem;
    overflow: hidden;
}

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

.pc-catalog-card:hover .pc-catalog-image {
    transform: scale(1.05);
}

.pc-catalog-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.pc-catalog-category {
    background: rgba(255, 255, 255, 0.9);
    color: var(--pc-primary);
    padding: 0.375rem 0.75rem;
    border-radius: var(--pc-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.pc-catalog-category-featured {
    background: linear-gradient(135deg, var(--pc-primary), var(--pc-primary));
    color: white;
}

.pc-catalog-content {
    padding: 1.5rem;
}

.pc-catalog-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 0.5rem;
}

.pc-catalog-description {
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    margin: 0 0 1rem;
    line-height: 1.5;
}

.pc-catalog-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.pc-catalog-tag {
    background: var(--pc-border-light);
    color: var(--pc-text-muted);
    padding: 0.25rem 0.625rem;
    border-radius: var(--pc-radius-full);
    font-size: 0.7rem;
    font-weight: 500;
}

.pc-catalog-tag-featured {
    background: linear-gradient(135deg, var(--pc-primary-50), var(--pc-primary-100));
    color: var(--pc-primary);
}

.pc-btn-full {
    width: 100%;
    justify-content: center;
}

.pc-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--pc-text);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--pc-radius-full);
    text-decoration: none;
    transition: var(--pc-transition);
}

.pc-btn-secondary:hover {
    background: var(--pc-text);
}

/* Product Features */
.pc-three-column-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pc-three-column-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pc-product-feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--pc-radius-xl);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--pc-border-light);
}

.pc-product-feature-icon {
    width: 4rem;
    height: 4rem;
    background: var(--pc-gradient-primary);
    border-radius: var(--pc-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.pc-product-feature-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--pc-white);
}

.pc-product-feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--pc-text);
    margin: 0 0 0.5rem;
}

.pc-product-feature-description {
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ============================
   Alert Messages / 提示消息
   ============================ */
.pc-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    border-radius: var(--pc-radius-lg);
    font-size: 0.9375rem;
    line-height: 1.5;
    position: relative;
    animation: fadeIn 0.3s ease;
}

.pc-alert-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pc-alert-content {
    flex: 1;
}

.pc-alert-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.pc-alert-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: var(--pc-radius);
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.25s ease;
}

.pc-alert-close:hover {
    opacity: 1;
}

.pc-alert-info {
    background: var(--pc-primary-50);
    color: var(--pc-primary-dark);
    border: 1px solid var(--pc-primary-100);
}

.pc-alert-success {
    background: var(--pc-primary-50);
    color: var(--pc-primary-darker);
    border: 1px solid var(--pc-primary-100);
}

.pc-alert-warning {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

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

/* ============================
   Badge System / 徽章系统
   ============================ */
.pc-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--pc-radius-full);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.pc-badge-primary {
    background: var(--pc-gradient-primary);
    color: var(--pc-white);
}

.pc-badge-secondary {
    background: var(--pc-primary-100);
    color: var(--pc-primary-dark);
}

.pc-badge-success {
    background: var(--pc-primary-100);
    color: var(--pc-primary-darker);
}

.pc-badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.pc-badge-error {
    background: #fee2e2;
    color: #991b1b;
}

.pc-badge-outline {
    background: transparent;
    border: 1.5px solid currentColor;
}

/* Notification Count Badge / 通知数字徽章 */
.pc-badge-count {
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 0.6875rem;
    background: var(--pc-accent);
    color: white;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1;
}

.pc-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pc-accent);
}

/* ============================
   Empty State / 空状态设计
   ============================ */
.pc-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 400px;
    margin: 0 auto;
}

.pc-empty-state-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--pc-text-muted);
    opacity: 0.4;
}

.pc-empty-state-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--pc-text);
    margin-bottom: 0.5rem;
}

.pc-empty-state-text {
    font-size: 0.9375rem;
    color: var(--pc-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pc-empty-state-action {
    margin-top: 1.5rem;
}

/* ============================
   Pagination / 分页器
   ============================ */
.pc-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pc-pagination-item {
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--pc-radius);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--pc-text);
    background: var(--pc-white);
    border: 1px solid var(--pc-border);
    transition: all 0.25s ease;
    cursor: pointer;
    text-decoration: none;
}

.pc-pagination-item:hover {
    border-color: var(--pc-primary);
    color: var(--pc-primary);
    background: var(--pc-primary-50);
}

.pc-pagination-item.active {
    background: var(--pc-gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: var(--pc-shadow-green-sm);
}

.pc-pagination-item.disabled,
.pc-pagination-item[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pc-pagination-ellipsis {
    padding: 0 0.5rem;
    color: var(--pc-text-muted);
}

.pc-pagination-arrow {
    width: 40px;
    padding: 0;
}

/* ============================
   Skeleton Screen / 骨架屏
   ============================ */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.pc-skeleton {
    background: linear-gradient(
        90deg,
        var(--pc-border-light) 25%,
        var(--pc-background) 50%,
        var(--pc-border-light) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--pc-radius);
}

.pc-skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
}

.pc-skeleton-text:last-child {
    width: 70%;
}

.pc-skeleton-title {
    height: 1.5rem;
    width: 60%;
    margin-bottom: 1rem;
}

.pc-skeleton-image {
    aspect-ratio: 1 / 1;
    width: 100%;
}

.pc-skeleton-button {
    height: 44px;
    width: 120px;
}

/* Skeleton Card */
.pc-skeleton-card {
    background: var(--pc-white);
    border-radius: var(--pc-radius-lg);
    overflow: hidden;
    border: 1px solid var(--pc-border-light);
}

.pc-skeleton-card-image {
    aspect-ratio: 1 / 1;
}

.pc-skeleton-card-content {
    padding: 1rem;
}

/* ============================
   Tooltip / 工具提示
   ============================ */
.pc-tooltip {
    position: relative;
    display: inline-flex;
}

.pc-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    padding: 0.5rem 0.75rem;
    background: var(--pc-text);
    color: white;
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: var(--pc-radius);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
    pointer-events: none;
    box-shadow: var(--pc-shadow-lg);
}

.pc-tooltip::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    border: 6px solid transparent;
    border-top-color: var(--pc-text);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
}

.pc-tooltip:hover::after,
.pc-tooltip:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.pc-tooltip-bottom::after {
    bottom: auto;
    top: calc(100% + 8px);
}

.pc-tooltip-bottom::before {
    bottom: auto;
    top: calc(100% + 4px);
    border: 6px solid transparent;
    border-bottom-color: var(--pc-text);
    border-top-color: transparent;
}

/* ============================
   Steps Indicator / 步骤指示器
   ============================ */
.pc-steps {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-step {
    display: flex;
    align-items: center;
}

.pc-step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--pc-border);
    color: var(--pc-text-muted);
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.pc-step.active .pc-step-number {
    background: var(--pc-gradient-primary);
    color: white;
    box-shadow: var(--pc-shadow-green-sm);
}

.pc-step.completed .pc-step-number {
    background: var(--pc-primary);
    color: white;
}

.pc-step.completed .pc-step-number::after {
    content: '✓';
}

.pc-step-label {
    margin-left: 0.625rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--pc-text-muted);
    transition: color 0.25s ease;
}

.pc-step.active .pc-step-label,
.pc-step.completed .pc-step-label {
    color: var(--pc-text);
}

.pc-step-connector {
    width: 60px;
    height: 2px;
    background: var(--pc-border);
    margin: 0 1rem;
    transition: background 0.25s ease;
}

.pc-step.completed + .pc-step-connector,
.pc-step.completed ~ .pc-step-connector {
    background: var(--pc-primary);
}

/* ============================
   Progress Bar / 进度条
   ============================ */
.pc-progress {
    width: 100%;
    height: 8px;
    background: var(--pc-border-light);
    border-radius: 4px;
    overflow: hidden;
}

.pc-progress-bar {
    height: 100%;
    background: var(--pc-gradient-primary);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.pc-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: var(--pc-text-muted);
    margin-top: 0.5rem;
}

/* ============================
   Breadcrumb / 面包屑导航
   ============================ */
.pc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    padding: 1rem 0;
    flex-wrap: wrap;
}

.pc-breadcrumb-separator {
    color: var(--pc-border);
    font-weight: 400;
}

.pc-breadcrumb-link {
    color: var(--pc-text-light);
    transition: color 0.25s ease;
    text-decoration: none;
}

.pc-breadcrumb-link:hover {
    color: var(--pc-primary);
}

.pc-breadcrumb-current {
    color: var(--pc-text);
    font-weight: 500;
}

/* ============================
   Semantic Colors / 语义化色彩
   ============================ */
:root {
    --pc-success: #10b981;
    --pc-success-light: #d1fae5;
    --pc-success-dark: #065f46;

    --pc-warning: #f59e0b;
    --pc-warning-light: #fef3c7;
    --pc-warning-dark: #b45309;

    --pc-error: #ef4444;
    --pc-error-light: #fee2e2;
    --pc-error-dark: #991b1b;

    --pc-info: #3b82f6;
    --pc-info-light: #dbeafe;
    --pc-info-dark: #1d4ed8;
}

/* ============================
   Quantity Selector / 数量选择器
   ============================ */
.pc-quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius);
    overflow: hidden;
    background: var(--pc-white);
}

.pc-quantity-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pc-background);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--pc-text);
    font-size: 1.125rem;
    font-weight: 500;
}

.pc-quantity-btn:hover {
    background: var(--pc-primary-50);
    color: var(--pc-primary);
}

.pc-quantity-btn:active {
    transform: scale(0.95);
}

.pc-quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pc-quantity-input {
    width: 50px;
    height: 36px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--pc-border);
    border-right: 1px solid var(--pc-border);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--pc-text);
    background: var(--pc-white);
}

.pc-quantity-input:focus {
    outline: none;
    background: var(--pc-primary-50);
}

/* ============================
   Wishlist Animation / 心愿单动画
   ============================ */
@keyframes heartBeat {
    0% { transform: scale(1); }
    15% { transform: scale(1.3); }
    30% { transform: scale(1); }
    45% { transform: scale(1.2); }
    60% { transform: scale(1); }
}

.pc-wishlist-btn {
    position: relative;
    transition: all 0.25s ease;
}

.pc-wishlist-btn:hover {
    color: var(--pc-accent);
}

.pc-wishlist-btn.active {
    color: var(--pc-accent);
}

.pc-wishlist-btn.active svg {
    fill: var(--pc-accent);
    animation: heartBeat 0.6s ease;
}

/* Wishlist Toast */
.pc-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--pc-text);
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: var(--pc-radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: var(--pc-shadow-lg);
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pc-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.pc-toast-success {
    background: var(--pc-primary);
}

.pc-toast-error {
    background: var(--pc-error);
}

.pc-toast-icon {
    width: 18px;
    height: 18px;
}

/* ============================
   Cookies Banner / Cookies提示条
   ============================ */
.pc-cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--pc-text);
    color: white;
    padding: 1rem 0;
    z-index: 9998;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.pc-cookies-banner.show {
    transform: translateY(0);
}

.pc-cookies-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pc-cookies-text {
    font-size: 0.875rem;
    line-height: 1.5;
    flex: 1;
    min-width: 280px;
}

.pc-cookies-text a {
    color: var(--pc-primary-light);
    text-decoration: underline;
}

.pc-cookies-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.pc-cookies-btn {
    padding: 0.625rem 1.25rem;
    border-radius: var(--pc-radius);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}

.pc-cookies-btn-accept {
    background: var(--pc-gradient-primary);
    color: white;
}

.pc-cookies-btn-accept:hover {
    box-shadow: var(--pc-shadow-green);
}

.pc-cookies-btn-settings {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pc-cookies-btn-settings:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* ============================
   Read More / 阅读更多展开
   ============================ */
.pc-text-collapsed {
    max-height: 120px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease;
}

.pc-text-collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, var(--pc-white));
    pointer-events: none;
}

.pc-text-collapsed.expanded {
    max-height: none;
}

.pc-text-collapsed.expanded::after {
    display: none;
}

.pc-read-more-btn {
    color: var(--pc-primary);
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.75rem;
    padding: 0.5rem 0;
    transition: color 0.25s ease;
    background: none;
    border: none;
}

.pc-read-more-btn:hover {
    color: var(--pc-primary-dark);
}

.pc-read-more-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.pc-read-more-btn.expanded svg {
    transform: rotate(180deg);
}

/* ============================
   Back to Top / 回到顶部
   ============================ */
.pc-back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--pc-gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--pc-shadow-green);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.pc-back-to-top:hover {
    box-shadow: var(--pc-shadow-green-md);
}

.pc-back-to-top:active {
    transform: translateY(-2px) scale(0.98);
}

.pc-back-to-top svg {
    width: 24px;
    height: 24px;
}

/* ============================
   Search Enhancement / 搜索增强
   ============================ */
.pc-search-highlight {
    background: var(--pc-primary-100);
    color: var(--pc-primary-dark);
    padding: 0 2px;
    border-radius: 2px;
}

.pc-search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--pc-border);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.08);
    margin-top: 0.75rem;
    max-height: 480px;
    overflow-y: auto;
    z-index: 1000;
    animation: fadeIn 0.2s ease;
}

.pc-search-suggestions .pc-suggestions-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--pc-border-light);
    background: linear-gradient(to right, #f0fdf4, #ffffff);
}

.pc-search-suggestions .pc-suggestions-header p {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #059669;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pc-search-suggestions .pc-clear-history {
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.pc-search-suggestions .pc-clear-history:hover {
    color: #ef4444;
    background: #fef2f2;
}

.pc-search-suggestions .pc-search-history {
    padding: 0.5rem;
}

.pc-search-suggestions .pc-history-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.2s ease;
    color: var(--pc-text);
}

.pc-search-suggestions .pc-history-item:hover {
    background: #f0fdf4;
}

.pc-search-suggestions .pc-history-item .pc-history-icon {
    width: 1rem;
    height: 1rem;
    color: #94a3b8;
}

.pc-search-suggestions .pc-history-item span {
    font-size: 0.9375rem;
}

.pc-search-suggestions .pc-popular-searches {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem;
}

.pc-search-suggestions .pc-popular-search-item {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pc-search-suggestions .pc-popular-search-item:hover {
    color: #ffffff;
    background: #059669;
    border-color: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

.pc-search-suggestions .pc-suggestions-list {
    max-height: 320px;
    overflow-y: auto;
}

.pc-search-suggestion-item {
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.pc-search-suggestion-item:last-child {
    border-bottom: none;
}

.pc-search-suggestion-item:hover,
.pc-search-suggestion-item.selected {
    background: linear-gradient(to right, #f0fdf4, #ecfdf5);
    padding-left: 1.5rem;
}

.pc-search-suggestion-item mark {
    background: #fef3c7;
    color: #b45309;
    font-weight: 600;
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
}

.pc-search-no-results {
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.pc-search-no-results svg {
    margin-bottom: 1rem;
    opacity: 0.7;
}

.pc-search-no-results p {
    color: #64748b;
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

.pc-search-no-results p strong {
    color: #334155;
    font-weight: 600;
}

.pc-search-suggestion-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pc-search-suggestion-icon svg {
    width: 24px;
    height: 24px;
    color: #059669;
}

.pc-search-suggestion-text {
    flex: 1;
    min-width: 0;
}

.pc-search-suggestion-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.pc-search-suggestion-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #64748b;
}

.pc-search-suggestion-category {
    color: #059669;
    font-weight: 500;
}

.pc-search-suggestion-price {
    font-size: 0.875rem;
    color: #059669;
    font-weight: 700;
}

/* ============================
   Product Card Actions / 产品卡片悬浮操作
   ============================ */
.pc-product-card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.875rem;
}

.pc-product-card-actions .pc-btn {
    flex: 1;
    padding: 0.625rem 0.75rem;
    font-size: 0.8125rem;
}

.pc-quick-add-btn {
    padding: 0.625rem;
    background: var(--pc-background);
    color: var(--pc-text);
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius);
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-quick-add-btn:hover {
    background: var(--pc-primary);
    color: white;
    border-color: var(--pc-primary);
}

.pc-quick-add-btn svg {
    width: 18px;
    height: 18px;
}

/* ============================
   Loading Spinner / 加载旋转
   ============================ */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.pc-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.pc-spinner-dark {
    border-color: rgba(0, 0, 0, 0.1);
    border-top-color: var(--pc-primary);
}

/* ============================
   Dropdown Menu / 下拉菜单
   ============================ */
.pc-dropdown {
    position: relative;
}

.pc-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    background: white;
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius-lg);
    box-shadow: var(--pc-shadow-lg);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.pc-dropdown.open .pc-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pc-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    color: var(--pc-text);
    text-decoration: none;
    transition: background 0.15s ease;
}

.pc-dropdown-item:hover {
    background: var(--pc-background);
    color: var(--pc-primary);
}

.pc-dropdown-divider {
    height: 1px;
    background: var(--pc-border-light);
    margin: 0.5rem 0;
}

/* ============================
   Factory Audit Section / 工厂认证板块
   ============================ */
.pc-factory-audit-section {
    padding: 5rem 0;
    background: var(--pc-white);
}

.pc-audit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.pc-audit-card {
    background: var(--pc-background);
    border-radius: var(--pc-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--pc-border-light);
}

.pc-audit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pc-shadow-lg);
    border-color: var(--pc-primary-100);
}

.pc-audit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: var(--pc-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

.pc-audit-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 0.75rem;
}

.pc-audit-description {
    font-size: 0.875rem;
    color: var(--pc-text-light);
    line-height: 1.6;
    margin: 0;
}

.pc-audit-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ============================
   Testing Report Section / 测试报告板块
   ============================ */
.pc-testing-section {
    padding: 5rem 0;
    background: var(--pc-background);
}

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

.pc-testing-content {
    padding-right: 2rem;
}

.pc-testing-description {
    font-size: 1rem;
    color: var(--pc-text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.pc-testing-standards {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.pc-standard-badge {
    padding: 0.5rem 1rem;
    background: var(--pc-primary-100);
    color: var(--pc-primary-dark);
    border-radius: var(--pc-radius);
    font-size: 0.875rem;
    font-weight: 600;
}

.pc-testing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.pc-testing-list li {
    font-size: 0.9375rem;
    color: var(--pc-text);
    padding-left: 1.5rem;
    position: relative;
}

.pc-testing-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--pc-primary);
    font-weight: 700;
}

.pc-testing-image {
    border-radius: var(--pc-radius-lg);
    overflow: hidden;
    box-shadow: var(--pc-shadow-lg);
}

.pc-testing-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================
   Low MOQ Section / 低起订量板块
   ============================ */
.pc-moq-section {
    padding: 5rem 0;
    background: var(--pc-white);
}

.pc-moq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.pc-moq-card {
    background: linear-gradient(135deg, var(--pc-primary) 0%, var(--pc-primary-dark) 100%);
    border-radius: var(--pc-radius-lg);
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}

.pc-moq-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pc-shadow-green-lg);
}

.pc-moq-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pc-moq-unit {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.pc-moq-product {
    font-size: 0.9375rem;
    font-weight: 600;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* ============================
   Custom Process Section / 定制流程板块
   ============================ */
.pc-process-section {
    padding: 5rem 0;
    background: var(--pc-background);
}

.pc-process-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    align-items: center;
    margin-top: 3rem;
}

.pc-process-card {
    background: var(--pc-white);
    border-radius: var(--pc-radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    box-shadow: var(--pc-shadow-sm);
    transition: all 0.3s ease;
}

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

.pc-process-number {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pc-gradient-primary);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
}

.pc-process-icon {
    width: 56px;
    height: 56px;
    margin: 1rem auto 1rem;
    background: var(--pc-primary-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pc-primary);
}

.pc-process-icon svg {
    width: 28px;
    height: 28px;
}

.pc-process-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 0.5rem;
}

.pc-process-description {
    font-size: 0.8125rem;
    color: var(--pc-text-light);
    line-height: 1.5;
    margin: 0;
}

.pc-process-arrow {
    color: var(--pc-primary);
    display: flex;
    justify-content: center;
}

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

/* ============================
   Responsive / 响应式
   ============================ */
@media (max-width: 1024px) {
    .pc-audit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .pc-testing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pc-testing-content {
        padding-right: 0;
        order: 1;
    }

    .pc-testing-image {
        order: 2;
    }

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

    .pc-process-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .pc-audit-grid,
    .pc-moq-grid {
        grid-template-columns: 1fr;
    }

    .pc-process-grid {
        grid-template-columns: 1fr;
    }

    .pc-testing-list {
        grid-template-columns: 1fr;
    }

    .pc-factory-audit-section,
    .pc-testing-section,
    .pc-moq-section,
    .pc-process-section {
        padding: 3rem 0;
    }
}

/* ============================
   Category Page Sections / 产品分类页板块
   ============================ */

/* Why Choose Section */
.pc-category-why-section {
    padding: 5rem 0;
    background: var(--pc-white);
}

.pc-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.pc-why-card {
    background: var(--pc-background);
    border-radius: var(--pc-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--pc-border-light);
}

.pc-why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pc-shadow-lg);
    border-color: var(--pc-primary-100);
}

.pc-why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: var(--pc-primary-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pc-primary);
}

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

.pc-why-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 0.75rem;
}

.pc-why-card p {
    font-size: 0.875rem;
    color: var(--pc-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Category MOQ Section */
.pc-category-moq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--pc-primary) 0%, var(--pc-primary-dark) 100%);
    color: white;
}

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

.pc-moq-text .pc-features-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.pc-moq-text .pc-features-badge svg {
    color: white;
}

.pc-moq-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 1rem 0;
    color: white;
}

.pc-moq-text > p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.pc-moq-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.pc-moq-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.pc-moq-list svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.pc-moq-text .pc-btn-primary {
    background: white;
    color: var(--pc-primary);
}

.pc-moq-text .pc-btn-primary:hover {
    background: var(--pc-background);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.pc-moq-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.pc-moq-stat {
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--pc-radius-lg);
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.pc-moq-stat:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.pc-moq-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pc-moq-stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Category Process Section */
.pc-category-process-section {
    padding: 5rem 0;
    background: var(--pc-background);
}

/* Related Categories Section */
.pc-related-categories-section {
    padding: 5rem 0;
    background: var(--pc-white);
}

.pc-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.pc-related-card {
    display: block;
    background: var(--pc-background);
    border-radius: var(--pc-radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: var(--pc-shadow-sm);
}

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

.pc-related-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

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

.pc-related-content {
    padding: 1.25rem;
}

.pc-related-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 0.5rem;
}

.pc-related-count {
    font-size: 0.8125rem;
    color: var(--pc-text-light);
}

/* Responsive */
@media (max-width: 1024px) {
    .pc-why-grid,
    .pc-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pc-moq-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pc-moq-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .pc-why-grid,
    .pc-related-grid {
        grid-template-columns: 1fr;
    }

    .pc-moq-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .pc-category-why-section,
    .pc-category-process-section,
    .pc-related-categories-section {
        padding: 3rem 0;
    }

    .pc-moq-text h2 {
        font-size: 1.5rem;
    }
}

/* ============================
   Showroom Section / 展示厅板块
   ============================ */
.pc-showroom-section {
    padding: 5rem 0;
    background: var(--pc-white);
}

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

.pc-showroom-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--pc-text);
    margin: 0 0 1.5rem;
    line-height: 1.3;
}

.pc-showroom-description {
    font-size: 1rem;
    color: var(--pc-text-light);
    line-height: 1.8;
    margin: 0 0 1.25rem;
}

.pc-showroom-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--pc-border-light);
}

.pc-showroom-stat {
    display: flex;
    flex-direction: column;
}

.pc-showroom-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--pc-primary);
    line-height: 1;
}

.pc-showroom-stat-label {
    font-size: 0.8125rem;
    color: var(--pc-text-light);
    margin-top: 0.25rem;
}

.pc-showroom-images {
    position: relative;
    height: 400px;
}

.pc-showroom-image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 85%;
    border-radius: var(--pc-radius-lg);
    overflow: hidden;
    box-shadow: var(--pc-shadow-lg);
}

.pc-showroom-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pc-showroom-image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 45%;
    border-radius: var(--pc-radius-lg);
    overflow: hidden;
    box-shadow: var(--pc-shadow-md);
    border: 4px solid white;
}

.pc-showroom-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================
   Benefits Grid / 优势网格
   ============================ */
.pc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.pc-benefit-card {
    background: var(--pc-white);
    border-radius: var(--pc-radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--pc-border-light);
    text-align: center;
}

.pc-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pc-shadow-lg);
    border-color: var(--pc-primary-100);
}

.pc-benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--pc-primary) 0%, var(--pc-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

.pc-benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 0.75rem;
}

.pc-benefit-card p {
    font-size: 0.875rem;
    color: var(--pc-text-light);
    line-height: 1.6;
    margin: 0;
}

/* ============================
   Responsive adjustments
   ============================ */
@media (max-width: 1024px) {
    .pc-showroom-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pc-showroom-images {
        height: 300px;
        order: -1;
    }

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

@media (max-width: 768px) {
    .pc-showroom-section,
    .pc-showroom-images {
        padding: 0;
        height: auto;
    }

    .pc-showroom-images {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .pc-showroom-image-main,
    .pc-showroom-image-accent {
        position: relative;
        width: 100%;
        height: 200px;
    }

    .pc-showroom-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .pc-benefits-grid {
        grid-template-columns: 1fr;
    }

    .pc-showroom-title {
        font-size: 1.5rem;
    }
}

/* ============================
   Trusted Brands Section / 受全球品牌信任板块
   ============================ */
.pc-trusted-brands-section {
    padding: 5rem 0;
    background: var(--pc-white);
    border-top: 1px solid var(--pc-border-light);
    border-bottom: 1px solid var(--pc-border-light);
}

.pc-brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem 3rem;
    margin-top: 2.5rem;
}

.pc-brand-item {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--pc-text-light);
    padding: 0.75rem 1.5rem;
    background: var(--pc-background);
    border-radius: var(--pc-radius-lg);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.pc-brand-item:hover {
    opacity: 1;
    color: var(--pc-primary);
    transform: translateY(-2px);
}

/* ============================
   Category FAQ Section / 产品分类FAQ板块
   ============================ */
.pc-category-faq-section {
    padding: 5rem 0;
    background: var(--pc-background);
}

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

.pc-faq-item {
    background: var(--pc-white);
    border-radius: var(--pc-radius-lg);
    padding: 2rem;
    border: 1px solid var(--pc-border-light);
    transition: all 0.3s ease;
}

.pc-faq-item:hover {
    border-color: var(--pc-primary-100);
    box-shadow: var(--pc-shadow-md);
}

.pc-faq-question {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 0.75rem;
    line-height: 1.4;
}

.pc-faq-answer {
    font-size: 0.9375rem;
    color: var(--pc-text-light);
    line-height: 1.7;
    margin: 0;
}

.pc-faq-answer strong {
    color: var(--pc-primary);
}

.pc-faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--pc-border-light);
}

.pc-faq-cta p {
    font-size: 1rem;
    color: var(--pc-text);
    margin: 0 0 1rem;
}

/* ============================
   Category SEO Section / 产品分类SEO内容
   ============================ */
.pc-category-seo-section {
    padding: 4rem 0;
    background: var(--pc-white);
    border-top: 1px solid var(--pc-border-light);
}

.pc-seo-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.9375rem;
    color: var(--pc-text-light);
    line-height: 1.8;
}

.pc-seo-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 1rem;
}

.pc-seo-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 1.5rem 0 0.75rem;
}

.pc-seo-content p {
    margin: 0 0 1rem;
}

.pc-seo-content ul,
.pc-seo-content ol {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
}

.pc-seo-content li {
    margin-bottom: 0.5rem;
}

.pc-seo-content a {
    color: var(--pc-primary);
    text-decoration: none;
}

.pc-seo-content a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .pc-faq-grid {
        grid-template-columns: 1fr;
    }

    .pc-category-faq-section {
        padding: 3rem 0;
    }

    .pc-category-seo-section {
        padding: 2.5rem 0;
    }

    .pc-faq-item {
        padding: 1.5rem;
    }
}
