/**
 * Shop Page Styles - Redesigned
 * 
 * @package Party_Collection
 * @since 1.0.0
 */

/* Shop Banner */
.shop-banner {
    background: linear-gradient(135deg, var(--pc-primary) 0%, var(--pc-primary) 100%);
    padding: 80px 0;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.shop-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
}

.shop-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.shop-banner-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.2;
}

.shop-banner-description {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Shop Main */
.shop-main {
    padding: 0 24px;
    max-width: 1440px;
    margin: 0 auto;
}

/* Shop Toolbar */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--pc-border);
}

.shop-toolbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.shop-result-count {
    font-size: 0.938rem;
    color: var(--pc-text-light);
}

.shop-result-count strong {
    color: var(--pc-primary);
    font-weight: 600;
}

.shop-toolbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.shop-ordering select {
    padding: 8px 16px;
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius-md);
    font-size: 0.875rem;
    color: var(--pc-text);
    background-color: white;
    cursor: pointer;
    transition: all 0.25s ease;
}

.shop-ordering select:hover {
    border-color: var(--pc-primary);
}

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

/* Products Grid */
.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

@media (max-width: 1200px) {
    .products {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
}

/* Pagination */
.shop-pagination {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--pc-border);
}

.shop-pagination .woocommerce-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.shop-pagination ul {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-pagination li {
    margin: 0;
}

.shop-pagination a,
.shop-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius-md);
    font-size: 0.938rem;
    color: var(--pc-text);
    text-decoration: none;
    transition: all 0.25s ease;
}

.shop-pagination a:hover {
    border-color: var(--pc-primary);
    color: var(--pc-primary);
    background-color: var(--pc-primary-50);
}

.shop-pagination .current {
    background: linear-gradient(135deg, var(--pc-primary), var(--pc-primary));
    color: white;
    border-color: transparent;
    font-weight: 600;
}

.shop-pagination svg {
    width: 20px;
    height: 20px;
}

/* No Products */
.no-products {
    text-align: center;
    padding: 80px 20px;
}

.no-products-icon {
    margin-bottom: 24px;
    color: var(--pc-border);
}

.no-products-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 12px;
}

.no-products-description {
    font-size: 1.125rem;
    color: var(--pc-text-muted);
    margin: 0 0 32px;
}

/* Responsive */
@media (max-width: 768px) {
    .shop-banner {
        padding: 60px 0;
    }

    .shop-banner-title {
        font-size: 2rem;
    }

    .shop-banner-description {
        font-size: 1rem;
    }

    .shop-toolbar {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .shop-toolbar-left,
    .shop-toolbar-right {
        display: flex;
        justify-content: center;
    }

    .shop-pagination .woocommerce-pagination {
        flex-wrap: wrap;
    }
}

/* Tablet Responsive (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .shop-banner {
        padding: 70px 0;
    }

    .shop-banner-title {
        font-size: 2.5rem;
    }

    .shop-banner-description {
        font-size: 1.125rem;
    }

    .shop-toolbar {
        padding: 16px 0;
    }

    .products {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }
}

/* Mobile Responsive (max-width: 768px) */
@media (max-width: 768px) {
    .shop-main {
        padding: 0 12px;
    }

    .shop-banner {
        padding: 40px 0;
        margin-bottom: 24px;
    }

    .shop-banner-title {
        font-size: 1.75rem;
    }

    .shop-banner-description {
        font-size: 0.9375rem;
        padding: 0 1rem;
    }

    .shop-toolbar {
        padding: 12px 0;
        margin-bottom: 20px;
    }

    .shop-result-count {
        font-size: 0.8125rem;
    }

    .shop-ordering select {
        padding: 6px 12px;
        font-size: 0.8125rem;
    }

    /* Products Grid */
    .products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .products li.product {
        margin-bottom: 0 !important;
    }

    /* Pagination */
    .shop-pagination {
        margin-top: 40px;
        padding-top: 24px;
    }

    .shop-pagination a,
    .shop-pagination span {
        min-width: 36px;
        height: 36px;
        padding: 0 8px;
        font-size: 0.875rem;
    }

    /* No Products */
    .no-products {
        padding: 60px 16px;
    }

    .no-products-title {
        font-size: 1.5rem;
    }

    .no-products-description {
        font-size: 1rem;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .shop-banner {
        padding: 32px 0;
        margin-bottom: 20px;
    }

    .shop-banner-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .shop-banner-description {
        font-size: 0.875rem;
    }

    .products {
        gap: 10px !important;
    }

    .products li.product {
        padding: 0.5rem;
    }

    .products li.product .pc-product-title {
        font-size: 0.875rem !important;
    }

    .products li.product .pc-product-price {
        font-size: 1rem !important;
    }

    .products li.product .pc-add-to-quote-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    .shop-pagination {
        margin-top: 32px;
        padding-top: 20px;
    }

    .shop-pagination a,
    .shop-pagination span {
        min-width: 32px;
        height: 32px;
        font-size: 0.8125rem;
    }
}

/* Large Desktop (min-width: 1400px) */
@media (min-width: 1400px) {
    .shop-main {
        max-width: 1400px;
    }

    .shop-banner {
        padding: 100px 0;
    }

    .shop-banner-title {
        font-size: 3.5rem;
    }

    .products {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 24px !important;
    }
}

/* Product Categories Archive Styles */
.product-categories-archive {
    min-height: calc(100vh - 200px);
}

.product-categories-archive .category-banner {
    position: relative;
    height: 400px;
    margin-bottom: 60px;
}

.product-categories-archive .banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-categories-archive .banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
}

.product-categories-archive .banner-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.product-categories-archive .banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 16px;
}

.product-categories-archive .banner-description {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Categories Grid Section */
.categories-grid-section {
    padding: 40px 0;
}

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

.category-card {
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: var(--pc-radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
}

.category-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

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

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

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

.category-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-product-count {
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: var(--pc-radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pc-primary);
}

.category-subcat-badge {
    background: rgba(249, 115, 22, 0.95);
    padding: 6px 12px;
    border-radius: var(--pc-radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

.category-info {
    padding: 24px;
}

.category-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--pc-text);
    margin: 0 0 8px;
}

.category-description {
    font-size: 0.938rem;
    color: var(--pc-text-muted);
    margin: 0 0 16px;
    line-height: 1.6;
}

.category-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pc-primary);
    font-weight: 600;
    font-size: 0.938rem;
    transition: color 0.2s;
}

.category-action svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s;
}

.category-card:hover .category-action {
    color: var(--pc-primary-dark);
}

.category-card:hover .category-action svg {
    transform: translateX(4px);
}

/* Featured Products Section */
.featured-products-section {
    padding: 60px 0;
    background: var(--pc-background);
}

.featured-products-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 40px;
    color: var(--pc-text);
}

.featured-products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Responsive */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .featured-products-section .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-categories-archive .category-banner {
        height: 280px;
        margin-bottom: 40px;
    }

    .product-categories-archive .banner-title {
        font-size: 2rem;
    }

    .product-categories-archive .banner-description {
        font-size: 1rem;
        padding: 0 16px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-image {
        height: 180px;
    }

    .category-info {
        padding: 20px;
    }

    .category-name {
        font-size: 1.125rem;
    }

    .featured-products-section {
        padding: 40px 0;
    }

    .featured-products-section .section-title {
        font-size: 1.5rem;
    }

    .featured-products-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* ===================================
   Homepage - Clean Style
   =================================== */

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

.pc-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
    text-align: center;
}

.pc-section-subtitle {
    font-size: 1rem;
    color: var(--pc-text-muted);
    line-height: 1.6;
    text-align: center;
}

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

/* Stats Section */
.pc-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

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

.pc-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pc-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pc-primary);
    line-height: 1;
}

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

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

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

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

.pc-collection-card {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: var(--pc-radius-lg);
    overflow: hidden;
    background: var(--pc-background);
}

.pc-collection-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

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

.pc-collection-content {
    padding: 1.25rem;
    background: var(--pc-white);
}

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

/* Features Section */
.pc-features-section {
    padding: 4rem 0;
    background: var(--pc-background);
}

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

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

@media (max-width: 576px) {
    .pc-features-grid {
        grid-template-columns: 1fr;
    }
}

.pc-feature-card {
    background: var(--pc-white);
    padding: 2rem;
    border-radius: var(--pc-radius-lg);
    text-align: center;
}

.pc-feature-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1.25rem;
    background: var(--pc-primary-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

/* Showroom Section */
.pc-showroom-section {
    padding: 4rem 0;
    background: var(--pc-white);
}

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

@media (max-width: 768px) {
    .pc-showroom-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.pc-showroom-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--pc-primary);
    margin-bottom: 0.75rem;
}

.pc-showroom-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 1.25rem 0;
    line-height: 1.3;
}

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

.pc-showroom-stats {
    display: flex;
    gap: 2.5rem;
}

.pc-showroom-stat {
    display: flex;
    flex-direction: column;
}

.pc-showroom-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pc-primary);
}

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

.pc-showroom-images {
    border-radius: var(--pc-radius-lg);
    overflow: hidden;
}

.pc-showroom-image {
    width: 100%;
    height: auto;
    display: block;
}

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

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

.pc-cert-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: var(--pc-white);
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pc-text);
}

/* Process Section */
.pc-process-section {
    padding: 4rem 0;
    background: var(--pc-white);
}

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

@media (max-width: 992px) {
    .pc-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pc-process-grid {
        grid-template-columns: 1fr;
    }
}

.pc-process-card {
    text-align: center;
    padding: 1.5rem;
}

.pc-process-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pc-primary-100);
    margin-bottom: 0.5rem;
}

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

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

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

.pc-brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem 4rem;
}

.pc-brand-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--pc-text-muted);
    opacity: 0.7;
}

/* CTA Section */
.pc-cta-section {
    padding: 5rem 0;
    background: var(--pc-white);
    text-align: center;
}

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

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

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

.pc-btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ===================================
   Homepage Hero Section
   =================================== */
.pc-hero-section {
    position: relative;
    min-height: 80vh;
    background: #0a0a0a;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.pc-hero-bg {
    position: absolute;
    inset: 0;
}

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

.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;
}

.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%);
}

.pc-hero-content-wrapper {
    position: relative;
    width: 100%;
    max-width: var(--pc-container, 1440px);
    margin: 0 auto;
    padding: 0 24px;
}

.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: var(--pc-radius-full);
    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);
}

.pc-badge-divider {
    color: rgba(255, 255, 255, 0.5);
}

.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;
}

.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;
}

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

.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;
}

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

.pc-btn-icon-right {
    width: 1.25rem;
    height: 1.25rem;
}

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

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

/* ===================================
   Featured Products Section
   =================================== */
.pc-products-section {
    padding: 5rem 0;
    background: var(--pc-white);
}

.pc-products-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.pc-products-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--pc-primary);
    margin-bottom: 0.75rem;
}

.pc-products-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
}

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

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

.pc-product-card {
    display: flex;
    flex-direction: column;
    background: var(--pc-white);
    border-radius: var(--pc-radius-md);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pc-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.pc-product-img-wrap {
    position: relative;
    overflow: hidden;
}

.pc-product-img-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.pc-product-card:hover .pc-product-img-placeholder {
    transform: scale(1.06);
}

.pc-product-img-placeholder svg {
    width: 48px;
    height: 48px;
    color: rgba(255, 255, 255, 0.9);
}

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

.pc-product-card:hover .pc-product-img {
    transform: scale(1.06);
}

.pc-product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--pc-white);
    color: var(--pc-text);
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.375rem 0.625rem;
    border-radius: var(--pc-radius-sm);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pc-product-info {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pc-product-name {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--pc-text);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.pc-product-desc {
    font-size: 0.8125rem;
    color: var(--pc-text-muted);
    line-height: 1.5;
    margin: 0 0 auto 0;
    flex: 1;
}

.pc-product-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--pc-primary);
    margin-top: 0.75rem;
    transition: gap 0.2s ease;
}

.pc-product-card:hover .pc-product-cta {
    gap: 0.625rem;
}

.pc-product-arrow {
    transition: transform 0.2s ease;
}

.pc-product-card:hover .pc-product-arrow {
    transform: translateX(3px);
}

@media (max-width: 992px) {
    .pc-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

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

@media (max-width: 576px) {
    .pc-products-section {
        padding: 3.5rem 0;
    }

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

    .pc-product-img {
        height: 160px;
    }

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

    .pc-product-name {
        font-size: 0.9375rem;
    }

    .pc-product-desc {
        font-size: 0.75rem;
    }
}

/* ===================================
   Categories Section
   =================================== */
.pc-categories-section {
    padding: 5rem 0;
    background: var(--pc-background);
}

.pc-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

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

.pc-category-card {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: var(--pc-radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--pc-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.pc-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

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

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

.pc-category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    padding: 2rem 1.25rem 1.25rem;
}

.pc-category-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin: 0 0 0.25rem 0;
}

.pc-category-count {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
}

.pc-categories-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ===================================
   Featured Products Section
   =================================== */
.pc-featured-section {
    padding: 5rem 0;
    background: var(--pc-white);
}

.pc-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

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

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

.pc-product-card {
    display: block;
    text-decoration: none;
    background: var(--pc-white);
    border-radius: var(--pc-radius-md);
    overflow: hidden;
    border: 1px solid var(--pc-border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pc-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.pc-product-image-wrap {
    height: 180px;
    overflow: hidden;
    background: var(--pc-background);
}

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

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

.pc-product-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--pc-background) 0%, var(--pc-border-light) 100%);
}

.pc-product-content {
    padding: 1rem;
}

.pc-product-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--pc-text);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pc-product-price {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: var(--pc-primary) !important;
    display: block !important;
    margin-top: 0.5rem;
}

.pc-product-price .woocommerce-Price-amount {
    color: var(--pc-primary);
}

.pc-product-price del {
    font-size: 0.875rem;
    color: var(--pc-text-muted);
    font-weight: 400;
    margin-right: 0.375rem;
}

.pc-product-price ins {
    text-decoration: none;
}

.pc-products-cta {
    text-align: center;
    margin-top: 2rem;
}

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

.pc-stats-header {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.pc-stats-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--pc-text);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.pc-stats-subtitle {
    font-size: 1rem;
    color: var(--pc-text-light);
    line-height: 1.6;
    margin: 0;
}

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

.pc-stats-item {
    padding: 1.75rem 1.25rem;
    background: var(--pc-white);
    border-radius: var(--pc-radius-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--pc-border-light);
}

.pc-stats-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--pc-primary);
}

.pc-stats-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--pc-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pc-stats-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--pc-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.375rem;
}

.pc-stats-desc {
    font-size: 0.75rem;
    color: var(--pc-text-muted);
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 992px) {
    .pc-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 576px) {
    .pc-stats-section {
        padding: 3rem 0;
    }

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

    .pc-stats-item {
        padding: 1.25rem 1rem;
    }

    .pc-stats-number {
        font-size: 1.75rem;
    }

    .pc-stats-title {
        font-size: 1.5rem;
    }
}

/* ===================================
   About Section
   =================================== */
.pc-about-section {
    padding: 5rem 0;
    background: var(--pc-white);
}

.pc-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    justify-items: stretch;
}

@media (max-width: 768px) {
    .pc-about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.pc-about-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--pc-primary);
    margin-bottom: 0.75rem;
}

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

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

.pc-about-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.pc-about-stat {
    display: flex;
    flex-direction: column;
}

.pc-about-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pc-primary);
}

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

.pc-about-images {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pc-about-image-main {
    width: 100%;
    height: auto;
    border-radius: var(--pc-radius-md);
    display: block;
}

.pc-about-images-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.pc-about-image-thumb {
    width: 100%;
    height: auto;
    border-radius: var(--pc-radius-md);
    display: block;
}

/* ===================================
   Brands Section
   =================================== */
.pc-brands-section {
    padding: 3rem 0;
    background: var(--pc-background);
    text-align: center;
    overflow: hidden;
}

.pc-brands-section .pc-section-title-small {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--pc-text);
    margin: 0 0 2rem 0;
    text-align: center;
}

.pc-brands-carousel {
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
}

.pc-brands-carousel::before,
.pc-brands-carousel::after {
    display: none;
}

.pc-brands-track {
    display: flex;
    width: max-content;
    animation: scroll-logos 20s linear infinite;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.pc-brand-logo {
    height: 40px;
    width: auto;
    margin: 0 2.5rem;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.pc-brand-logo:hover {
    opacity: 1;
}

/* ===================================
   CTA Section
   =================================== */
.pc-cta-section {
    padding: 5rem 0;
    background: var(--pc-primary);
}

.pc-cta-content {
    text-align: center;
}

.pc-cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 0.75rem auto;
    text-align: center;
}

.pc-cta-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 2rem auto;
    text-align: center;
}

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

/* Button Styles */
.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;
    border-radius: var(--pc-radius);
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

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

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

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

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

.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);
}

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

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

.pc-btn-outline-white {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.pc-btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}
