/* =============================================
   THEME FR4 - PASTEL CARE
   Style Vert Nature
   ============================================= */

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

:root {
    /* Couleurs Pastel Care - Vert Nature */
    --pc-primary: #2D7D46;
    --pc-primary-dark: #1E5631;
    --pc-primary-light: #C8E6C9;
    --pc-secondary: #00897B;
    --pc-secondary-light: #B2DFDB;
    --pc-accent: #E8F5E9;
    --pc-bg: #FAFFFE;
    --pc-bg-alt: #F1F8F4;

    --pc-white: #ffffff;
    --pc-gray-50: #fafafa;
    --pc-gray-100: #f5f5f5;
    --pc-gray-200: #eeeeee;
    --pc-gray-300: #e0e0e0;
    --pc-gray-400: #bdbdbd;
    --pc-gray-500: #9e9e9e;
    --pc-gray-600: #757575;
    --pc-gray-700: #616161;
    --pc-gray-800: #424242;
    --pc-gray-900: #212121;
    --pc-text: #4A4A4A;

    --pc-success: #4caf50;
    --pc-warning: #ff9800;
    --pc-danger: #f44336;
    --pc-info: #2196f3;

    --pc-shadow-sm: 0 2px 4px rgba(45, 125, 70, 0.08);
    --pc-shadow: 0 4px 12px rgba(45, 125, 70, 0.1);
    --pc-shadow-md: 0 8px 24px rgba(45, 125, 70, 0.12);
    --pc-shadow-lg: 0 12px 40px rgba(45, 125, 70, 0.15);

    --pc-radius-sm: 8px;
    --pc-radius: 12px;
    --pc-radius-lg: 16px;
    --pc-radius-xl: 24px;
    --pc-radius-full: 9999px;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
    background: var(--pc-bg);
    color: var(--pc-text);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* =============================================
   Promo Banner - Gradient Rose/Violet
   ============================================= */

.pc-promo-banner {
    background: linear-gradient(135deg, var(--pc-primary) 0%, var(--pc-secondary) 100%);
    color: var(--pc-white);
    font-size: 0.8125rem;
    font-weight: 500;
    overflow: hidden;
}

.pc-promo-track {
    display: flex;
    align-items: center;
    height: 42px;
    overflow: hidden;
}

.pc-promo-slider {
    display: flex;
    animation: pc-marquee 30s linear infinite;
    white-space: nowrap;
}

.pc-promo-slider:hover {
    animation-play-state: paused;
}

.pc-promo-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 45px;
}

.pc-promo-item svg {
    width: 18px;
    height: 18px;
    opacity: 0.9;
}

@keyframes pc-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-25%); }
}

/* =============================================
   Masthead - Header Principal
   ============================================= */

.pc-masthead {
    background: var(--pc-white);
    z-index: 100;
    box-shadow: var(--pc-shadow);
    position: relative;
}

.pc-masthead::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pc-primary), var(--pc-secondary), var(--pc-primary));
}

.pc-masthead-top {
    border-bottom: 1px solid var(--pc-gray-100);
}

.pc-masthead-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Mobile Menu Button */
.pc-burger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--pc-accent);
    border-radius: var(--pc-radius-full);
    color: var(--pc-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pc-burger-btn:hover {
    background: var(--pc-primary-light);
    transform: scale(1.05);
}

.pc-burger-btn svg {
    width: 22px;
    height: 22px;
}

@media (min-width: 769px) {
    .pc-burger-btn {
        display: none;
    }
}

/* Logo */
.pc-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.pc-brand img {
    height: 50px;
    border-radius: var(--pc-radius);
}

.pc-brand-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--pc-primary) 0%, var(--pc-secondary) 100%);
    border-radius: var(--pc-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pc-white);
    box-shadow: var(--pc-shadow-sm);
}

.pc-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Search Field */
.pc-search-wrapper {
    flex: 1;
    max-width: 700px;
    margin: 0 30px;
    display: none;
}

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

.pc-search-field {
    display: flex;
    align-items: center;
    background: var(--pc-bg-alt);
    border: 2px solid transparent;
    border-radius: var(--pc-radius-full);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 6px rgba(233, 30, 140, 0.08);
}

.pc-search-field:focus-within {
    border-color: var(--pc-primary);
    background: var(--pc-white);
    box-shadow: var(--pc-shadow);
}

.pc-search-cat-wrap {
    position: relative;
    border-right: 1px solid var(--pc-gray-200);
    display: none;
}

@media (min-width: 900px) {
    .pc-search-cat-wrap {
        display: block;
    }
}

.pc-search-cat {
    height: 48px;
    padding: 0 36px 0 18px;
    border: none;
    background: transparent;
    font-size: 0.9rem;
    color: var(--pc-gray-700);
    cursor: pointer;
    appearance: none;
    min-width: 150px;
}

.pc-search-cat:focus {
    outline: none;
}

.pc-search-cat-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    color: var(--pc-primary);
    pointer-events: none;
}

.pc-search-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    height: 48px;
    position: relative;
}

.pc-search-icon {
    width: 20px;
    height: 20px;
    color: var(--pc-primary);
    margin-left: 18px;
    flex-shrink: 0;
}

.pc-search-input {
    flex: 1;
    height: 100%;
    padding: 0 18px 0 12px;
    border: none;
    font-size: 0.95rem;
    outline: none;
    background: transparent;
}

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

/* Header Icons */
.pc-header-icons {
    display: flex;
    gap: 10px;
}

.pc-icon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 14px;
    color: var(--pc-gray-700);
    border-radius: var(--pc-radius-full);
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    cursor: pointer;
}

.pc-icon-btn:hover {
    background: var(--pc-accent);
    color: var(--pc-primary);
    transform: translateY(-2px);
}

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

.pc-icon-label {
    font-size: 0.7rem;
    font-weight: 600;
    display: none;
}

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

.pc-mobile-search-btn {
    display: flex;
}

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

/* Mobile Search Container */
.pc-mobile-search {
    display: none;
    padding: 12px 20px 16px;
    background: var(--pc-bg-alt);
}

.pc-mobile-search.active {
    display: block;
}

.pc-mobile-search-form {
    display: flex;
    align-items: center;
    background: var(--pc-white);
    border-radius: var(--pc-radius-full);
    padding: 0 16px;
    box-shadow: var(--pc-shadow-sm);
    border: 2px solid var(--pc-primary-light);
}

.pc-mobile-search-form svg {
    width: 20px;
    height: 20px;
    color: var(--pc-primary);
}

.pc-mobile-search-input {
    flex: 1;
    padding: 14px 12px;
    border: none;
    background: transparent;
    font-size: 1rem;
    outline: none;
}

/* Navigation Pills */
.pc-nav-bar {
    background: var(--pc-white);
    border-top: 1px solid var(--pc-gray-100);
    display: none;
}

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

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

.pc-nav-pills {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 12px 0;
}

.pc-nav-pills::-webkit-scrollbar {
    display: none;
}

.pc-nav-link {
    display: block;
    padding: 10px 22px;
    color: var(--pc-text);
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    border-radius: var(--pc-radius-full);
    transition: all 0.3s ease;
    background: var(--pc-bg-alt);
}

.pc-nav-link:hover {
    background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
    color: var(--pc-white);
    transform: translateY(-2px);
    box-shadow: var(--pc-shadow-sm);
}

/* =============================================
   Autocomplete Dropdown
   ============================================= */

.autocomplete-dropdown {
    display: none;
    background: var(--pc-white);
    border: 2px solid var(--pc-primary-light);
    border-radius: var(--pc-radius-lg);
    box-shadow: var(--pc-shadow-lg);
    max-height: 400px;
    overflow-y: auto;
    z-index: 9999;
    position: absolute;
}

.autocomplete-dropdown.show {
    display: block;
}

.autocomplete-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--pc-gray-100);
}

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

.autocomplete-item:hover,
.autocomplete-item.selected {
    background: var(--pc-accent);
}

.autocomplete-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: var(--pc-radius);
    background: var(--pc-gray-100);
    border: 2px solid var(--pc-primary-light);
}

.autocomplete-text {
    flex: 1;
    min-width: 0;
}

.autocomplete-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--pc-gray-800);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.autocomplete-name strong {
    color: var(--pc-primary);
}

.autocomplete-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--pc-primary);
    margin-top: 3px;
}

.autocomplete-loading,
.autocomplete-no-results,
.autocomplete-error {
    padding: 20px;
    text-align: center;
    color: var(--pc-gray-500);
    font-size: 0.9rem;
}

.autocomplete-error {
    color: var(--pc-danger);
}

/* =============================================
   Mobile Slide Menu (Bottom Sheet)
   ============================================= */

.pc-slide-menu {
    position: fixed;
    inset: 0;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.pc-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.pc-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--pc-white);
    border-radius: var(--pc-radius-xl) var(--pc-radius-xl) 0 0;
    max-height: 85vh;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.pc-slide-menu.active .pc-slide-content {
    transform: translateY(0);
}

.pc-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--pc-gray-100);
    background: linear-gradient(135deg, var(--pc-accent), var(--pc-bg-alt));
}

.pc-menu-handle {
    width: 40px;
    height: 5px;
    background: var(--pc-gray-300);
    border-radius: var(--pc-radius-full);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.pc-menu-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pc-menu-brand img {
    height: 40px;
    border-radius: var(--pc-radius-sm);
}

.pc-menu-brand svg {
    width: 36px;
    height: 36px;
    color: var(--pc-primary);
}

.pc-menu-brand span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pc-primary);
}

.pc-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pc-white);
    border: none;
    border-radius: var(--pc-radius-full);
    color: var(--pc-gray-600);
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.pc-menu-close svg {
    width: 22px;
    height: 22px;
}

.pc-menu-items {
    padding: 16px 20px 30px;
    overflow-y: auto;
    max-height: calc(85vh - 80px);
}

.pc-menu-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    margin-bottom: 8px;
    border-radius: var(--pc-radius-lg);
    color: var(--pc-text);
    font-weight: 500;
    font-size: 1rem;
    background: var(--pc-bg-alt);
    transition: all 0.2s ease;
}

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

.pc-menu-link-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pc-white);
    border-radius: var(--pc-radius-full);
    color: var(--pc-primary);
}

.pc-menu-link-icon svg {
    width: 20px;
    height: 20px;
}

.pc-menu-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pc-primary-light), transparent);
    margin: 16px 0;
}

/* =============================================
   Container
   ============================================= */

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

.pc-main {
    min-height: calc(100vh - 200px);
    padding: 0;
}

/* =============================================
   Breadcrumb
   ============================================= */

.pc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 0;
    font-size: 0.875rem;
    color: var(--pc-gray-600);
}

.pc-breadcrumb a {
    color: var(--pc-primary);
    font-weight: 600;
    transition: color 0.2s;
}

.pc-breadcrumb a:hover {
    color: var(--pc-secondary);
}

.pc-breadcrumb svg {
    width: 16px;
    height: 16px;
    color: var(--pc-primary-light);
}

/* =============================================
   Products Section
   ============================================= */

.pc-products-section {
    margin-bottom: 50px;
    padding-top: 30px;
}

.pc-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--pc-gray-900);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.pc-section-title::before {
    content: '';
    width: 5px;
    height: 32px;
    background: linear-gradient(180deg, var(--pc-primary), var(--pc-secondary));
    border-radius: 3px;
}

.pc-home-intro {
    color: var(--pc-gray-600);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
    padding: 20px;
    background: var(--pc-accent);
    border-radius: var(--pc-radius-lg);
    border-left: 4px solid var(--pc-primary);
}

/* Sort Bar */
.pc-sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--pc-white);
    border-radius: var(--pc-radius-lg);
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 14px;
    box-shadow: var(--pc-shadow-sm);
    border: 1px solid var(--pc-primary-light);
}

.pc-results-count {
    font-size: 0.9rem;
    color: var(--pc-gray-600);
    font-weight: 500;
}

.pc-sort-select {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.pc-sort-select label {
    font-size: 0.85rem;
    color: var(--pc-gray-600);
    white-space: nowrap;
}

.pc-sort-select select {
    padding: 10px 40px 10px 16px;
    border: 2px solid var(--pc-primary-light);
    border-radius: var(--pc-radius-full);
    font-size: 0.85rem;
    background-color: var(--pc-white);
    appearance: none;
    cursor: pointer;
    min-width: 170px;
    transition: all 0.2s ease;
}

.pc-sort-select select:focus {
    outline: none;
    border-color: var(--pc-primary);
    box-shadow: var(--pc-shadow-sm);
}

.pc-sort-select::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: var(--pc-primary);
    pointer-events: none;
}

/* Products Grid */
.pc-catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

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

/* =============================================
   Product Card - Pastel Care Style
   ============================================= */

.pc-shop-card {
    position: relative;
    background: var(--pc-white);
    border-radius: var(--pc-radius-xl);
    overflow: hidden;
    border: 2px solid var(--pc-gray-100);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pc-shop-card:hover {
    border-color: var(--pc-primary-light);
    box-shadow: var(--pc-shadow-md);
    transform: translateY(-6px);
}

.pc-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.pc-card-photo {
    display: block;
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--pc-bg-alt);
    border-radius: var(--pc-radius-lg) var(--pc-radius-lg) 0 0;
}

.pc-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pc-shop-card:hover .pc-card-photo img {
    transform: scale(1.08);
}

.pc-sale-chip {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
    color: var(--pc-white);
    padding: 6px 14px;
    border-radius: var(--pc-radius-full);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    box-shadow: var(--pc-shadow-sm);
}

.pc-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pc-card-label {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 6px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--pc-gray-800);
}

.pc-card-review {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 4px 0 8px;
    font-size: 0.8rem;
}

.pc-card-review .pc-stars {
    display: flex;
    gap: 2px;
}

.pc-card-review .pc-star {
    color: var(--pc-primary);
    font-size: 0.9rem;
    line-height: 1;
}

.pc-card-review .pc-rating-num {
    font-weight: 600;
    color: var(--pc-gray-700);
}

.pc-card-summary {
    font-size: 0.75rem;
    color: var(--pc-gray-600);
    line-height: 1.5;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pc-card-pricing {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.pc-card-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pc-primary);
}

.pc-card-striked {
    font-size: 0.85rem;
    color: var(--pc-gray-400);
    text-decoration: line-through;
}

.pc-card-buy {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 18px;
    background: linear-gradient(135deg, var(--pc-primary) 0%, var(--pc-secondary) 100%);
    color: var(--pc-white);
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0 0 var(--pc-radius-lg) var(--pc-radius-lg);
}

.pc-card-buy:hover {
    filter: brightness(1.1);
}

.pc-card-buy svg {
    width: 18px;
    height: 18px;
}

/* =============================================
   Pagination
   ============================================= */

.pc-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    padding: 20px;
    flex-wrap: wrap;
}

.pc-page-info {
    font-size: 0.9rem;
    color: var(--pc-gray-600);
    font-weight: 500;
}

.pc-pagination-numbers {
    display: flex;
    gap: 8px;
}

.pc-pagination-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--pc-radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--pc-text);
    background: var(--pc-white);
    border: 2px solid var(--pc-gray-200);
    transition: all 0.2s ease;
}

.pc-pagination-number:hover,
.pc-pagination-number.active {
    background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
    color: var(--pc-white);
    border-color: transparent;
}

/* Buttons */
.pc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--pc-radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.pc-btn-primary {
    background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
    color: var(--pc-white);
    box-shadow: var(--pc-shadow-sm);
}

.pc-btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: var(--pc-shadow);
}

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

.pc-btn-outline:hover {
    background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
    color: var(--pc-white);
    border-color: transparent;
}

/* =============================================
   Reassurance Section
   ============================================= */

.pc-reassurance {
    margin: 50px 0;
    padding: 40px 0;
    background: linear-gradient(135deg, var(--pc-accent), var(--pc-bg-alt));
    border-radius: var(--pc-radius-xl);
}

.pc-reassurance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.pc-reassurance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 20px;
    background: var(--pc-white);
    border-radius: var(--pc-radius-lg);
    box-shadow: var(--pc-shadow-sm);
    transition: all 0.3s ease;
}

.pc-reassurance-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--pc-shadow);
}

.pc-reassurance-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--pc-primary-light), var(--pc-secondary-light));
    border-radius: var(--pc-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pc-primary);
}

.pc-reassurance-icon svg {
    width: 26px;
    height: 26px;
}

.pc-reassurance-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--pc-gray-800);
}

.pc-reassurance-desc {
    font-size: 0.8rem;
    color: var(--pc-gray-500);
}

/* =============================================
   No Results
   ============================================= */

.pc-no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--pc-gray-600);
    background: var(--pc-white);
    border-radius: var(--pc-radius-xl);
    border: 2px dashed var(--pc-primary-light);
}

.pc-no-results a {
    color: var(--pc-primary);
    font-weight: 600;
}

/* =============================================
   Category Page
   ============================================= */

.pc-category-page {
    padding: 20px 0 50px;
}

.pc-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 24px;
    background: linear-gradient(135deg, var(--pc-accent), var(--pc-bg-alt));
    border-radius: var(--pc-radius-xl);
}

.pc-category-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--pc-gray-900);
    margin: 0 0 10px 0;
}

@media (min-width: 768px) {
    .pc-category-title {
        font-size: 1.8rem;
    }
}

.pc-category-desc {
    font-size: 0.95rem;
    color: var(--pc-gray-600);
    margin: 0;
    line-height: 1.6;
}

.pc-category-count {
    background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
    color: var(--pc-white);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--pc-radius-full);
    white-space: nowrap;
}

@media (max-width: 767px) {
    .pc-category-header {
        flex-direction: column;
        gap: 14px;
    }
}

/* =============================================
   Categories Grid
   ============================================= */

.pc-categories-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

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

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

.pc-category-card {
    display: flex;
    flex-direction: column;
    background: var(--pc-white);
    border-radius: var(--pc-radius-xl);
    overflow: hidden;
    border: 2px solid var(--pc-gray-100);
    transition: all 0.3s ease;
}

.pc-category-card:hover {
    border-color: var(--pc-primary-light);
    box-shadow: var(--pc-shadow-md);
    transform: translateY(-4px);
}

.pc-category-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--pc-bg-alt);
}

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

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

.pc-category-card-info {
    padding: 20px;
}

.pc-category-card-info h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--pc-gray-900);
    margin: 0 0 8px 0;
}

.pc-category-card-info p {
    font-size: 0.85rem;
    color: var(--pc-gray-600);
    line-height: 1.5;
    margin: 0;
}

/* =============================================
   Search Page
   ============================================= */

.pc-search-page {
    padding: 30px 0 50px;
}

.pc-search-header {
    margin-bottom: 30px;
}

.pc-search-header h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--pc-gray-900);
    margin: 0 0 10px 0;
}

.pc-search-count {
    font-size: 1rem;
    color: var(--pc-gray-600);
}

.pc-search-error {
    padding: 20px;
    background: #ffebee;
    border-radius: var(--pc-radius-lg);
    color: var(--pc-danger);
    text-align: center;
}

/* =============================================
   Cart Page (Panier)
   ============================================= */

.pc-bag-page {
    padding: 30px 0 60px;
    min-height: 60vh;
}

.pc-bag-container {
    background: var(--pc-white);
    border-radius: var(--pc-radius-xl);
    border: 2px solid var(--pc-primary-light);
    box-shadow: var(--pc-shadow);
    padding: 60px 30px;
    text-align: center;
    max-width: 500px;
    margin: 30px auto 0;
}

.pc-bag-icon {
    color: var(--pc-primary-light);
    margin-bottom: 24px;
}

.pc-bag-icon svg {
    width: 80px;
    height: 80px;
}

.pc-bag-container h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--pc-gray-900);
    margin: 0 0 14px 0;
}

.pc-bag-container p {
    font-size: 1rem;
    color: var(--pc-gray-600);
    margin: 0 0 28px 0;
}

@media (max-width: 767px) {
    .pc-bag-page {
        padding: 20px 0 40px;
    }

    .pc-bag-container {
        margin: 20px 15px 0;
        padding: 40px 20px;
    }

    .pc-bag-icon svg {
        width: 60px;
        height: 60px;
    }

    .pc-bag-container h1 {
        font-size: 1.3rem;
    }
}

/* =============================================
   Account Page (Compte)
   ============================================= */

.pc-profile-page {
    padding: 30px 0 60px;
    min-height: 60vh;
}

.pc-profile-container {
    max-width: 440px;
    margin: 30px auto 0;
}

.pc-profile-form {
    background: var(--pc-white);
    border-radius: var(--pc-radius-xl);
    border: 2px solid var(--pc-primary-light);
    box-shadow: var(--pc-shadow);
    padding: 40px 30px;
    text-align: center;
}

.pc-profile-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--pc-primary-light), var(--pc-secondary-light));
    border-radius: var(--pc-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pc-primary);
}

.pc-profile-icon svg {
    width: 36px;
    height: 36px;
}

.pc-profile-form h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pc-gray-900);
    margin: 0 0 8px 0;
}

.pc-profile-form > p {
    font-size: 0.95rem;
    color: var(--pc-gray-600);
    margin: 0 0 28px 0;
}

.pc-profile-form form {
    text-align: left;
}

.pc-form-group {
    margin-bottom: 20px;
}

.pc-form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pc-gray-700);
    margin-bottom: 8px;
}

.pc-form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--pc-gray-200);
    border-radius: var(--pc-radius-lg);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.pc-form-group input:focus {
    outline: none;
    border-color: var(--pc-primary);
    box-shadow: 0 0 0 4px rgba(233, 30, 140, 0.1);
}

.pc-form-group input::placeholder {
    color: var(--pc-gray-400);
}

.pc-profile-switch {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--pc-gray-100);
}

.pc-profile-switch a {
    color: var(--pc-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
}

.pc-profile-switch a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .pc-profile-page {
        padding: 20px 0 40px;
    }

    .pc-profile-container {
        margin: 20px 15px 0;
    }

    .pc-profile-form {
        padding: 30px 20px;
    }

    .pc-profile-form h1 {
        font-size: 1.3rem;
    }
}

/* =============================================
   Product Page
   ============================================= */

.pc-product-page {
    background: var(--pc-bg);
    padding-bottom: 0;
}

.pc-product-page .pc-breadcrumb {
    padding: 20px 0;
}

.pc-product-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .pc-product-layout {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Product Media */
.pc-product-media {
    position: relative;
}

.pc-product-image-main {
    position: relative;
    background: var(--pc-white);
    border-radius: var(--pc-radius-xl);
    overflow: hidden;
    border: 2px solid var(--pc-primary-light);
}

.pc-product-image-main img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    cursor: zoom-in;
}

.pc-product-discount-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
    color: var(--pc-white);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: var(--pc-radius-full);
    z-index: 2;
    box-shadow: var(--pc-shadow-sm);
}

.pc-product-thumbs {
    display: flex;
    gap: 12px;
    padding: 12px;
}

.pc-thumb {
    width: 72px;
    height: 72px;
    padding: 4px;
    background: var(--pc-white);
    border: 2px solid var(--pc-gray-200);
    border-radius: var(--pc-radius);
    cursor: pointer;
    transition: all 0.2s ease;
}

.pc-thumb:hover,
.pc-thumb.active {
    border-color: var(--pc-primary);
    box-shadow: var(--pc-shadow-sm);
}

.pc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 767px) {
    .pc-product-layout {
        margin-bottom: 0;
    }

    .pc-product-image-main {
        border: none;
        border-radius: 0;
    }

    .pc-product-thumbs {
        position: absolute;
        bottom: 14px;
        left: 14px;
        gap: 10px;
        z-index: 3;
        padding: 0;
    }

    .pc-thumb {
        width: 62px;
        height: 62px;
        padding: 3px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.15);
        border-color: var(--pc-white);
    }
}

/* Product Info */
.pc-product-info {
    position: relative;
}

@media (min-width: 768px) {
    .pc-product-info {
        position: sticky;
        top: 100px;
        height: fit-content;
    }
}

.pc-product-info-inner {
    background: var(--pc-white);
    border-radius: var(--pc-radius-xl);
    border: 2px solid var(--pc-primary-light);
    padding: 28px;
}

@media (min-width: 768px) {
    .pc-product-info-inner {
        padding: 34px;
    }
}

.pc-product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.pc-product-ref {
    font-size: 0.75rem;
    color: var(--pc-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pc-product-stock {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--pc-radius-full);
}

.pc-product-stock.in-stock {
    color: var(--pc-success);
    background: #e8f5e9;
}

.pc-product-stock.low-stock {
    color: var(--pc-danger);
    background: #ffebee;
    animation: pc-pulse 2s infinite;
}

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

@keyframes pc-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.pc-product-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--pc-gray-900);
    line-height: 1.3;
    margin: 0 0 14px 0;
}

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

/* Social Proof */
.pc-product-proof {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, var(--pc-accent), var(--pc-bg-alt));
    padding: 6px 18px;
    border-radius: var(--pc-radius-full);
    border: 1px solid var(--pc-primary-light);
}

.pc-product-proof .pc-stars {
    display: flex;
    gap: 2px;
}

.pc-product-proof .pc-star {
    color: var(--pc-primary);
    font-size: 1.05rem;
    line-height: 1;
}

.pc-product-proof .pc-rating-value {
    font-weight: 700;
    color: var(--pc-gray-800);
    font-size: 0.85rem;
}

.pc-product-proof .pc-separator {
    color: var(--pc-primary-light);
}

.pc-product-proof .pc-sales-info {
    font-size: 0.8rem;
    color: var(--pc-gray-700);
    font-weight: 600;
}

.pc-product-excerpt,
.pc-product-summary {
    font-size: 1rem;
    color: var(--pc-gray-700);
    line-height: 1.85;
    margin: 16px 0;
}

.pc-product-excerpt .check,
.pc-product-summary .check {
    color: var(--pc-primary);
    font-weight: bold;
}

/* Pricing */
.pc-product-pricing {
    background: linear-gradient(135deg, var(--pc-accent), var(--pc-bg-alt));
    border: 2px solid var(--pc-primary-light);
    border-radius: var(--pc-radius-lg);
    padding: 8px 24px;
    margin: 24px 0;
}

.pc-pricing-main {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.pc-product-price {
    font-size: 2.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pc-product-price-old {
    font-size: 1.1rem;
    color: var(--pc-gray-400);
    text-decoration: line-through;
    font-weight: 500;
}

.pc-price-discount-badge {
    background: linear-gradient(135deg, var(--pc-danger), #d32f2f);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--pc-radius-full);
    box-shadow: 0 2px 6px rgba(244, 67, 54, 0.3);
}

.pc-pricing-savings {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed var(--pc-primary-light);
    color: var(--pc-primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.pc-pricing-savings svg {
    flex-shrink: 0;
}

/* Buy Button */
.pc-btn-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 28px;
    background: linear-gradient(135deg, var(--pc-primary) 0%, var(--pc-secondary) 100%);
    color: var(--pc-white);
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    border-radius: var(--pc-radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--pc-shadow);
}

.pc-btn-buy:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: var(--pc-shadow-md);
}

.pc-btn-buy svg {
    width: 22px;
    height: 22px;
}

/* Guarantees */
.pc-product-guarantees {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--pc-gray-100);
}

.pc-guarantee {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
}

.pc-guarantee svg {
    width: 26px;
    height: 26px;
    color: var(--pc-primary);
    flex-shrink: 0;
}

.pc-guarantee div {
    display: flex;
    flex-direction: column;
}

.pc-guarantee strong {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--pc-gray-800);
}

.pc-guarantee span {
    font-size: 0.75rem;
    color: var(--pc-gray-500);
}

@media (max-width: 767px) {
    .pc-product-guarantees {
        flex-direction: column;
        gap: 16px;
    }
}

/* Description Section */
.pc-product-description {
    background: var(--pc-white);
    border-radius: var(--pc-radius-xl);
    border: 2px solid var(--pc-primary-light);
    margin-bottom: 40px;
    box-shadow: var(--pc-shadow);
    overflow: hidden;
}

.pc-description-tabs {
    display: flex;
    background: var(--pc-bg-alt);
    border-bottom: 2px solid var(--pc-primary-light);
}

.pc-description-tab {
    padding: 18px 34px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--pc-gray-600);
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.pc-description-tab.active {
    color: var(--pc-primary);
    background: var(--pc-white);
    border-bottom: 3px solid var(--pc-primary);
    margin-bottom: -2px;
}

.pc-description-tab:hover:not(.active) {
    color: var(--pc-gray-900);
    background: var(--pc-accent);
}

.pc-description-text {
    padding: 34px;
    font-size: 1.05rem;
    color: var(--pc-gray-700);
    line-height: 1.85;
}

@media (min-width: 768px) {
    .pc-description-text {
        padding: 44px 54px;
    }
}

.pc-description-text p {
    margin-bottom: 20px;
}

.pc-description-text strong {
    color: var(--pc-gray-900);
    font-weight: 600;
}

.pc-description-text h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--pc-gray-900);
    margin: 38px 0 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pc-description-text h2:first-of-type {
    margin-top: 0;
}

.pc-description-text h2::before {
    content: '';
    width: 5px;
    height: 26px;
    background: linear-gradient(180deg, var(--pc-primary), var(--pc-secondary));
    border-radius: 3px;
}

.pc-description-text ul {
    margin: 22px 0;
    padding: 0;
    list-style: none;
}

.pc-description-text ul li {
    position: relative;
    padding: 14px 0 14px 40px;
    border-bottom: 1px solid var(--pc-gray-100);
    font-size: 1.05rem;
    line-height: 1.6;
}

.pc-description-text ul li:last-child {
    border-bottom: none;
}

.pc-description-text ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 14px;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--pc-primary-light), var(--pc-secondary-light));
    color: var(--pc-primary);
    border-radius: var(--pc-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Similar Products */
.pc-similar-products {
    margin-bottom: 50px;
    padding-top: 36px;
}

.pc-similar-products h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--pc-gray-900);
    margin: 0 0 24px 0;
    padding-left: 14px;
    border-left: 5px solid var(--pc-primary);
}

/* Mobile Wrapper */
.pc-mobile-padding-wrapper {
    padding: 0 0px;
    margin-top: 15px;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .pc-mobile-padding-wrapper {
        padding: 0;
    }
}

/* Sticky CTA Mobile */
.pc-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--pc-white);
    border-top: 2px solid var(--pc-primary-light);
    box-shadow: 0 -4px 20px rgba(233, 30, 140, 0.15);
    z-index: 100;
    padding: 12px 16px;
}

@media (max-width: 767px) {
    .pc-sticky-cta {
        display: block;
    }
}

.pc-sticky-cta-content {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 500px;
    margin: 0 auto;
}

.pc-sticky-cta-image {
    width: 50px;
    height: 50px;
    border-radius: var(--pc-radius);
    object-fit: cover;
    border: 2px solid var(--pc-primary-light);
}

.pc-sticky-cta-info {
    flex: 1;
    min-width: 0;
}

.pc-sticky-cta-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pc-gray-800);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pc-sticky-cta-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pc-primary);
}

.pc-sticky-cta-btn {
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
    color: var(--pc-white);
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    border-radius: var(--pc-radius-full);
    cursor: pointer;
    white-space: nowrap;
}

/* Image Modal */
.pc-image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pc-image-modal.show {
    display: flex;
}

.pc-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: var(--pc-white);
    cursor: pointer;
    transition: color 0.2s;
}

.pc-modal-close:hover {
    color: var(--pc-primary);
}

.pc-modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--pc-radius-lg);
}

/* =============================================
   Legal Pages
   ============================================= */

.pc-legal-page {
    padding: 40px 0 60px;
}

.pc-legal-page h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pc-gray-900);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 4px solid var(--pc-primary);
}

.pc-legal-content {
    background: var(--pc-white);
    padding: 40px;
    border-radius: var(--pc-radius-xl);
    box-shadow: var(--pc-shadow);
    border: 2px solid var(--pc-primary-light);
}

.pc-legal-content h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--pc-gray-900);
    margin: 35px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--pc-gray-200);
}

.pc-legal-content h2:first-child {
    margin-top: 0;
}

.pc-legal-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--pc-gray-800);
    margin: 25px 0 12px;
}

.pc-legal-content p {
    color: var(--pc-gray-700);
    line-height: 1.8;
    margin-bottom: 15px;
}

.pc-legal-content ul,
.pc-legal-content ol {
    margin: 15px 0 20px 20px;
    color: var(--pc-gray-700);
}

.pc-legal-content li {
    line-height: 1.7;
    margin-bottom: 8px;
    padding-left: 5px;
}

.pc-legal-content ul li::marker {
    color: var(--pc-primary);
}

.pc-legal-content strong {
    color: var(--pc-gray-900);
    font-weight: 600;
}

.pc-legal-content a {
    color: var(--pc-primary);
    text-decoration: underline;
}

.pc-legal-content a:hover {
    color: var(--pc-secondary);
}

.pc-company-info {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, var(--pc-accent), var(--pc-bg-alt));
    border-radius: var(--pc-radius-lg);
    border-left: 5px solid var(--pc-primary);
}

.pc-company-info h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--pc-gray-900);
    margin: 0 0 15px;
    padding: 0;
    border: none;
}

.pc-company-info p {
    margin-bottom: 8px;
    color: var(--pc-gray-700);
}

.pc-company-info a {
    color: var(--pc-primary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .pc-legal-content {
        padding: 25px 20px;
    }

    .pc-legal-page h1 {
        font-size: 1.5rem;
    }

    .pc-legal-content h2 {
        font-size: 1.2rem;
    }

    .pc-company-info {
        padding: 20px;
    }
}

/* =============================================
   404 Page
   ============================================= */

.pc-error-page {
    text-align: center;
    padding: 80px 20px;
    background: var(--pc-white);
    border-radius: var(--pc-radius-xl);
    margin: 40px 0;
    box-shadow: var(--pc-shadow);
    border: 2px solid var(--pc-primary-light);
}

.pc-error-page h1 {
    font-size: 6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 20px 0;
    line-height: 1;
}

.pc-error-page h2 {
    font-size: 1.8rem;
    color: var(--pc-gray-800);
    margin: 0 0 16px 0;
}

.pc-error-page p {
    font-size: 1.1rem;
    color: var(--pc-gray-600);
    margin: 0 0 30px 0;
}

/* =============================================
   Footer - Pastel Care Style
   ============================================= */

.pc-page-footer {
    background: linear-gradient(180deg, var(--pc-accent) 0%, var(--pc-white) 100%);
    padding-top: 50px;
    border-top: 3px solid var(--pc-primary-light);
}

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

.pc-social-bar {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pc-social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pc-white);
    border: 2px solid var(--pc-primary-light);
    border-radius: var(--pc-radius-full);
    color: var(--pc-primary);
    transition: all 0.3s ease;
}

.pc-social-link:hover {
    background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
    color: var(--pc-white);
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: var(--pc-shadow);
}

.pc-social-link svg {
    width: 22px;
    height: 22px;
}

.pc-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 40px;
}

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

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

.pc-footer-group h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pc-gray-900);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pc-footer-group h4::before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
    border-radius: var(--pc-radius-full);
}

.pc-footer-group p {
    font-size: 0.9rem;
    color: var(--pc-gray-600);
    line-height: 1.7;
    margin-bottom: 10px;
}

.pc-footer-group a {
    color: var(--pc-primary);
    transition: color 0.2s;
}

.pc-footer-group a:hover {
    color: var(--pc-secondary);
}

.pc-footer-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pc-footer-group ul li {
    margin-bottom: 12px;
}

.pc-footer-group ul li a {
    font-size: 0.9rem;
    color: var(--pc-gray-600);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pc-footer-group ul li a::before {
    content: '\2192';
    color: var(--pc-primary-light);
    transition: transform 0.2s ease;
}

.pc-footer-group ul li a:hover {
    color: var(--pc-primary);
}

.pc-footer-group ul li a:hover::before {
    transform: translateX(4px);
    color: var(--pc-primary);
}

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

.pc-footer-hours li {
    font-size: 0.85rem;
    color: var(--pc-gray-600);
    padding: 6px 0;
    border-bottom: 1px solid var(--pc-gray-100);
}

.pc-footer-hours li:last-child {
    border-bottom: none;
}

.pc-footer-hours li strong {
    color: var(--pc-gray-800);
}

.pc-footer-end {
    background: linear-gradient(135deg, var(--pc-primary-light), var(--pc-secondary-light));
    padding: 20px;
    text-align: center;
    border-radius: var(--pc-radius-lg) var(--pc-radius-lg) 0 0;
}

.pc-footer-end p {
    font-size: 0.85rem;
    color: var(--pc-gray-700);
    margin: 0;
}
