/** PickSVG About Section **/  
.picksvg-about {
    --picksvg-coral: #FF6B6B;
    --picksvg-coral-dark: #E85555;
    --picksvg-teal: #2EC4B6;
    --picksvg-teal-dark: #1A9E92;
    --picksvg-navy: #1A1E2E;
    --picksvg-navy-light: #252A3D;
    --picksvg-cream: #FFF9F5;
    --picksvg-white: #FFFFFF;
    --picksvg-gray-light: #F5F5F7;
    --picksvg-gray: #6B7280;
    --picksvg-gradient-coral: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    --picksvg-gradient-teal: linear-gradient(135deg, #2EC4B6 0%, #56E39F 100%);
    --picksvg-gradient-dark: linear-gradient(135deg, #1A1E2E 0%, #2D3250 100%);
}

.picksvg-about * {
    box-sizing: border-box;
}
.latest-design-row-wrap .picksvg-prod-header {
    display: none;
}
.picksvg-about {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--picksvg-navy);
    line-height: 1.6;
    position: relative;
    margin-bottom: 0px !important;
}

/* Animated Background Shapes */
.picksvg-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.picksvg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: picksvgFloat 20s ease-in-out infinite;
}

.picksvg-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--picksvg-coral);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.picksvg-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--picksvg-teal);
    top: 50%;
    left: -100px;
    animation-delay: -5s;
}

.picksvg-shape-3 {
    width: 500px;
    height: 500px;
    background: #FFE066;
    bottom: -150px;
    right: 20%;
    animation-delay: -10s;
}

@keyframes picksvgFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-5deg); }
    75% { transform: translate(20px, 10px) rotate(3deg); }
}

/* Container */
.picksvg-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Section Styles */
.picksvg-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.picksvg-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--picksvg-navy);
}

.picksvg-section-title .picksvg-highlight {
    position: relative;
    display: inline-block;
}

.picksvg-section-title .picksvg-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--picksvg-gradient-coral);
    z-index: -1;
    border-radius: 4px;
    transform: skewX(-3deg);
}

.picksvg-section-subtitle {
    font-size: 18px;
    color: var(--picksvg-gray);
    line-height: 1.7;
    margin: 0;
}

/* What is PickSVG Section */
.picksvg-what-is-section {
    padding: 100px 0;
    background: var(--picksvg-white);
    position: relative;
    overflow: hidden;
}

.picksvg-uses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.picksvg-use-card {
    background: var(--picksvg-cream);
    padding: 32px;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 16px;
}

.picksvg-use-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--picksvg-gradient-dark);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.picksvg-use-card:hover {
    transform: translateY(-8px);
}

.picksvg-use-card:hover::before {
    opacity: 1;
}

.picksvg-use-card:hover .picksvg-use-icon,
.picksvg-use-card:hover .picksvg-use-title {
    color: var(--picksvg-white);
    position: relative;
    z-index: 1;
}

.picksvg-use-icon {
    font-size: 32px;
    transition: color 0.4s ease;
    line-height: 1;
}

.picksvg-use-title {
    font-size: 18px;
    font-weight: 600;
    transition: color 0.4s ease;
    margin: 0;
}

/* Why PickSVG Section */
.picksvg-why-section {
    padding: 100px 0;
    position: relative;
    background: var(--picksvg-cream);
}

.picksvg-why-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.picksvg-why-intro p {
    font-size: 18px;
    color: var(--picksvg-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.picksvg-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.picksvg-feature-card {
    background: var(--picksvg-white);
    padding: 32px 24px;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.picksvg-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--picksvg-gradient-teal);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.picksvg-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.picksvg-feature-card:hover::before {
    transform: scaleX(1);
}

.picksvg-feature-check {
    width: 32px;
    height: 32px;
    background: var(--picksvg-gradient-teal);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--picksvg-white);
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 700;
}

.picksvg-feature-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--picksvg-navy);
    line-height: 1.5;
    margin: 0;
}

/* Mission Section */
.picksvg-mission-section {
    padding: 100px 0;
    background: var(--picksvg-navy);
    color: var(--picksvg-white);
    position: relative;
    overflow: hidden;
}

.picksvg-mission-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: var(--picksvg-coral);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.2;
}

.picksvg-mission-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: var(--picksvg-teal);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.2;
}

.picksvg-mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.picksvg-mission-card {
    padding: 40px;
    border-radius: 24px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
}

.picksvg-mission-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-10px);
}

.picksvg-mission-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
    line-height: 1;
}

.picksvg-mission-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--picksvg-coral);
}

.picksvg-mission-desc {
    font-size: 16px;
    opacity: 0.85;
    line-height: 1.7;
    margin: 0;
}

.picksvg-mission-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--picksvg-teal);
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    transition: gap 0.3s ease;
}

.picksvg-mission-link:hover {
    gap: 12px;
    color: var(--picksvg-teal);
}

.picksvg-mission-link svg {
    width: 20px;
    height: 20px;
}

/* Category Carousel */

.picksvg-cat-carousel {
    --pcc-coral: #FF6B6B;
    --pcc-coral-dark: #E85555;
    --pcc-coral-light: #FFE8E8;
    --pcc-teal: #2EC4B6;
    --pcc-navy: #1A1E2E;
    --pcc-white: #FFFFFF;
    --pcc-gray: #6B7280;
    --pcc-gray-light: #F8F9FA;
    --pcc-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --pcc-shadow-hover: 0 12px 40px rgba(255, 107, 107, 0.2);
}

.picksvg-cat-carousel * {
    box-sizing: border-box;
}

.picksvg-cat-carousel {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding: 80px 0;
    background: var(--pcc-white);
    overflow: hidden;
}

.picksvg-cat-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
.picksvg-cat-header {
    text-align: center;
    margin-bottom: 50px;
}
@media (max-width: 768px) {
    .picksvg-cat-carousel {
        padding: 60px 15px;
    }
    
    .picksvg-cat-container {
        padding: 0;
    }
    
    .picksvg-cat-carousel-wrapper {
        padding: 0;
    }
    
    .picksvg-cat-track-wrapper {
        overflow: hidden;
        border-radius: 20px;
    }
    
    .picksvg-cat-track {
        gap: 0 !important;
    }
    
    .picksvg-cat-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    .picksvg-cat-nav {
        display: none !important;
    }
}
.picksvg-cat-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--pcc-navy);
    margin: 0 0 16px 0;
}

.picksvg-cat-title span {
    position: relative;
    display: inline-block;
}

.picksvg-cat-title span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    z-index: -1;
    border-radius: 4px;
    transform: skewX(-3deg);
}

/* Carousel Wrapper */
.picksvg-cat-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

/* Navigation Arrows */
.picksvg-cat-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--pcc-white);
    border: 2px solid var(--pcc-coral);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--pcc-coral);
}

.picksvg-cat-nav:hover {
    background: var(--pcc-coral);
    color: var(--pcc-white);
    transform: translateY(-50%) scale(1.05);
}

.picksvg-cat-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.picksvg-cat-nav:disabled:hover {
    background: var(--pcc-white);
    color: var(--pcc-coral);
    transform: translateY(-50%);
}

.picksvg-cat-nav svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.picksvg-cat-prev {
    left: 0;
}

.picksvg-cat-next {
    right: 0;
}

/* Carousel Track */
.picksvg-cat-track-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.picksvg-cat-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Category Card */
.picksvg-cat-card {
    flex: 0 0 calc(25% - 18px);
    min-width: 280px;
    background: var(--pcc-white);
    border-radius: 20px;
    border: 2px solid transparent;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.picksvg-cat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    border: 2px solid var(--pcc-coral);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.picksvg-cat-image {
    width: 100% !important;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.5s ease;
}
.picksvg-cat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--pcc-shadow-hover);
}

.picksvg-cat-card:hover::before {
    opacity: 1;
}

/* Card Image */
.picksvg-cat-image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--pcc-gray-light);
    border-bottom: 1px solid #f0f0f0;
}


.picksvg-cat-card:hover .picksvg-cat-image {
    transform: scale(1.08);
}

/* Product Count Badge */
.picksvg-cat-count-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--pcc-coral);
    color: var(--pcc-white);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
}

/* Card Content */
.picksvg-cat-content {
    padding: 24px;
    text-align: center;
}

.picksvg-cat-name {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--pcc-navy);
    margin: 0 0 8px 0 !important;
    line-height: 1.3 !important;
}

.picksvg-cat-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.picksvg-cat-name a:hover {
    color: var(--pcc-coral);
}

/* Hidden Description */
.picksvg-cat-description {
    display: none;
    font-size: 14px;
    color: var(--pcc-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Shop Now Button */
.picksvg-cat-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--pcc-coral);
    color: var(--pcc-white);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.picksvg-cat-btn:hover {
    background: var(--pcc-coral-dark);
    color: var(--pcc-white);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.picksvg-cat-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.picksvg-cat-btn:hover svg {
    transform: translateX(3px);
}

/* Pagination Dots */
.picksvg-cat-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.picksvg-cat-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--pcc-coral-light);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.picksvg-cat-dot:hover {
    background: var(--pcc-coral);
    opacity: 0.7;
}

.picksvg-cat-dot.active {
    background: var(--pcc-coral);
    width: 32px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .picksvg-cat-carousel {
        padding: 60px 15px 0px 15px;
    }
    
    .picksvg-cat-container {
        padding: 0;
    }
    
    .picksvg-cat-carousel-wrapper {
        padding: 0;
    }
    
    .picksvg-cat-track-wrapper {
        overflow: hidden;
        border-radius: 20px;
    }
    
    .picksvg-cat-track {
        gap: 0 !important;
    }
    
    .picksvg-cat-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    .picksvg-cat-nav {
        display: none !important;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .picksvg-cat-card {
        flex: 0 0 calc(33.333% - 16px);
        min-width: 260px;
    }
}

@media (max-width: 992px) {
    .picksvg-cat-card {
        flex: 0 0 calc(50% - 12px);
        min-width: 240px;
    }
    
    .picksvg-cat-carousel-wrapper {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
   /* .picksvg-cat-carousel {
        padding: 60px 0;
    }*/
    
    .picksvg-cat-card {
        flex: 0 0 calc(100% - 0px);
        min-width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .picksvg-cat-carousel-wrapper {
        padding: 0 0px;
    }
    
    .picksvg-cat-nav {
        width: 40px;
        height: 40px;
    }
    
    .picksvg-cat-track {
        gap: 16px;
    }
    button.picksvg-cat-nav {
        display: none !important;
    }
}

/* PickSVG Product Carousel */

.picksvg-prod-carousel {
    --ppc-coral: #FF6B6B;
    --ppc-coral-dark: #E85555;
    --ppc-coral-light: #FFE8E8;
    --ppc-teal: #2EC4B6;
    --ppc-navy: #1A1E2E;
    --ppc-white: #FFFFFF;
    --ppc-gray: #6B7280;
    --ppc-gray-light: #F8F9FA;
    --ppc-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --ppc-shadow-hover: 0 12px 40px rgba(255, 107, 107, 0.2);
    --ppc-green: #10B981;
}

.picksvg-prod-carousel * {
    box-sizing: border-box;
}

.picksvg-prod-carousel {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding: 0px 0px 0px 0px;
    /*background: var(--ppc-white);*/
    overflow: hidden;
}

.picksvg-prod-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
.picksvg-prod-header {
    text-align: center;
    margin-bottom: 50px;
}

.picksvg-prod-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--ppc-navy);
    margin: 0 0 16px 0;
}

.picksvg-prod-title span {
    position: relative;
    display: inline-block;
}

.picksvg-prod-title span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    z-index: -1;
    border-radius: 4px;
    transform: skewX(-3deg);
}

/* Carousel Wrapper */
.picksvg-prod-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

/* Navigation Arrows */
.picksvg-prod-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--ppc-white);
    border: 2px solid var(--ppc-coral);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--ppc-coral);
}

.picksvg-prod-nav:hover {
    background: var(--ppc-coral);
    color: var(--ppc-white);
    transform: translateY(-50%) scale(1.05);
}

.picksvg-prod-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.picksvg-prod-nav:disabled:hover {
    background: var(--ppc-white);
    color: var(--ppc-coral);
    transform: translateY(-50%);
}

.picksvg-prod-nav svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.picksvg-prod-prev {
    left: 0;
}

.picksvg-prod-next {
    right: 0;
}

/* Carousel Track */
.picksvg-prod-track-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.picksvg-prod-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Product Card */
.picksvg-prod-card {
    flex: 0 0 calc(25% - 18px);
    min-width: 280px;
    background: var(--ppc-white);
    border-radius: 20px;
    border: 2px solid transparent;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.picksvg-prod-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    border: 2px solid var(--ppc-coral);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.picksvg-prod-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--ppc-shadow-hover);
}

.picksvg-prod-card:hover::before {
    opacity: 1;
}

/* Card Image */
.picksvg-prod-image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--ppc-gray-light);
    border-bottom: 1px solid #f0f0f0;
}

.picksvg-prod-image {
    width: 100% !important;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.5s ease;
}

.picksvg-prod-card:hover .picksvg-prod-image {
    transform: scale(1.08);
}

/* Sale Badge */
.picksvg-prod-sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--ppc-green);
    color: var(--ppc-white);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stock Badge */
.picksvg-prod-stock-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--ppc-coral);
    color: var(--ppc-white);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
}

.picksvg-prod-stock-badge.in-stock {
    background: var(--ppc-teal);
}

.picksvg-prod-stock-badge.out-of-stock {
    background: var(--ppc-gray);
}

/* Card Content */
.picksvg-prod-content {
    padding: 24px;
    text-align: center;
}

.picksvg-prod-name {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--ppc-navy);
    margin: 0 0 12px 0 !important;
    line-height: 1.4 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 44px;
}

.picksvg-prod-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.picksvg-prod-name a:hover {
    color: var(--ppc-coral);
}

/* Price */
.picksvg-prod-price {
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 700;
}

.picksvg-prod-price del {
    color: var(--ppc-gray);
    font-size: 14px;
    font-weight: 400;
    margin-right: 8px;
}

.picksvg-prod-price ins {
    color: var(--ppc-coral);
    text-decoration: none;
}

.picksvg-prod-price .woocommerce-Price-amount {
    color: var(--ppc-coral);
}

.picksvg-prod-price del .woocommerce-Price-amount {
    color: var(--ppc-gray);
}

/* Rating */
.picksvg-prod-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 16px;
}

.picksvg-prod-stars {
    display: flex;
    gap: 2px;
}

.picksvg-prod-stars svg {
    width: 16px;
    height: 16px;
}

.picksvg-prod-stars svg.filled {
    fill: #FFB800;
    color: #FFB800;
}

.picksvg-prod-stars svg.empty {
    fill: #E5E7EB;
    color: #E5E7EB;
}

.picksvg-prod-rating-count {
    font-size: 12px;
    color: var(--ppc-gray);
}

/* Shop Now Button */
.picksvg-prod-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--ppc-coral);
    color: var(--ppc-white);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.picksvg-prod-btn:hover {
    background: var(--ppc-coral-dark);
    color: var(--ppc-white);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.picksvg-prod-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.picksvg-prod-btn:hover svg {
    transform: translateX(3px);
}
/* Mobile: force full-width cards with no gap */
@media (max-width: 768px) {
    .picksvg-prod-carousel {
        padding: 0px 0px 0px 0px;
    }
    
    .picksvg-prod-container {
        padding: 0px 20px;
    }
    
    .picksvg-prod-carousel-wrapper {
        padding: 0;
    }
    
    .picksvg-prod-track-wrapper {
        overflow: hidden;
        border-radius: 20px;
    }
    
    .picksvg-prod-track {
        gap: 0 !important;
    }
    
    .picksvg-prod-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    .picksvg-prod-nav {
        display: none !important;
    }
}

/* Pagination Dots */
.picksvg-prod-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.picksvg-prod-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--ppc-coral-light);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.picksvg-prod-dot:hover {
    background: var(--ppc-coral);
    opacity: 0.7;
}

.picksvg-prod-dot.active {
    background: var(--ppc-coral);
    width: 32px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 1200px) {
    .picksvg-prod-card {
        flex: 0 0 calc(33.333% - 16px);
        min-width: 260px;
    }
}

@media (max-width: 992px) {
    .picksvg-prod-card {
        flex: 0 0 calc(50% - 12px);
        min-width: 240px;
    }
    
    .picksvg-prod-carousel-wrapper {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    
    .picksvg-prod-card {
        flex: 0 0 calc(100% - 0px);
        min-width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .picksvg-prod-carousel-wrapper {
        padding: 0px;
    }
    
    .picksvg-prod-nav {
        width: 40px;
        height: 40px;
    }
    
    .picksvg-prod-track {
        gap: 16px;
    }
    
    button.picksvg-prod-nav {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .picksvg-prod-carousel-wrapper {
        padding: 0px;
    }
    
    .picksvg-prod-nav {
        width: 36px;
        height: 36px;
    }
    
    .picksvg-prod-prev {
        left: 0;
    }
    
    .picksvg-prod-next {
        right: 0;
    }
}

/* Animation */
.picksvg-prod-card {
    opacity: 0;
    transform: translateY(30px);
    animation: ppcFadeInUp 0.6s ease forwards;
}

.picksvg-prod-card:nth-child(1) { animation-delay: 0.1s; }
.picksvg-prod-card:nth-child(2) { animation-delay: 0.2s; }
.picksvg-prod-card:nth-child(3) { animation-delay: 0.3s; }
.picksvg-prod-card:nth-child(4) { animation-delay: 0.4s; }
.picksvg-prod-card:nth-child(5) { animation-delay: 0.5s; }
.picksvg-prod-card:nth-child(6) { animation-delay: 0.6s; }
.picksvg-prod-card:nth-child(7) { animation-delay: 0.7s; }
.picksvg-prod-card:nth-child(8) { animation-delay: 0.8s; }

@keyframes ppcFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
    

/* PickSVG Product Carousel */


@media (max-width: 480px) {
    .picksvg-cat-carousel-wrapper {
        padding: 0 0px;
    }
    
    .picksvg-cat-nav {
        width: 36px;
        height: 36px;
    }
    
    .picksvg-cat-prev {
        left: 0;
    }
    
    .picksvg-cat-next {
        right: 0;
    }
}

/* Animation */
.picksvg-cat-card {
    opacity: 0;
    transform: translateY(30px);
    animation: pccFadeInUp 0.6s ease forwards;
}

.picksvg-cat-card:nth-child(1) { animation-delay: 0.1s; }
.picksvg-cat-card:nth-child(2) { animation-delay: 0.2s; }
.picksvg-cat-card:nth-child(3) { animation-delay: 0.3s; }
.picksvg-cat-card:nth-child(4) { animation-delay: 0.4s; }
.picksvg-cat-card:nth-child(5) { animation-delay: 0.5s; }
.picksvg-cat-card:nth-child(6) { animation-delay: 0.6s; }
.picksvg-cat-card:nth-child(7) { animation-delay: 0.7s; }
.picksvg-cat-card:nth-child(8) { animation-delay: 0.8s; }

@keyframes pccFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Category Carousel */


/* Responsive */
@media (max-width: 992px) {
    .picksvg-uses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .picksvg-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .picksvg-mission-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

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

    .picksvg-features-grid {
        grid-template-columns: 1fr;
    }

    .picksvg-what-is-section,
    .picksvg-why-section,
    .picksvg-mission-section {
        padding: 60px 0;
    }

    .picksvg-mission-card {
        padding: 30px;
    }
}

/* Scroll Animations */
.picksvg-animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.picksvg-animate-on-scroll.picksvg-animated {
    opacity: 1;
    transform: translateY(0);
}
/** PickSVG About Section **/    


/* RECENT PURCHASED CAROUSEL */

.picksvg-purchased-carousel {
    --ppc-coral: #FF6B6B;
    --ppc-coral-dark: #E85555;
    --ppc-coral-light: #FFE8E8;
    --ppc-teal: #2EC4B6;
    --ppc-navy: #1A1E2E;
    --ppc-white: #FFFFFF;
    --ppc-gray: #6B7280;
    --ppc-gray-light: #F8F9FA;
    --ppc-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --ppc-shadow-hover: 0 12px 40px rgba(255, 107, 107, 0.2);
    --ppc-green: #10B981;
}

.picksvg-purchased-carousel * {
    box-sizing: border-box;
}

.picksvg-purchased-carousel {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding: 0px 0px 80px 0px;
    background: var(--ppc-white);
    overflow: hidden;
}

.picksvg-purchased-container {
    max-width: 1400px;
    margin: 0 auto;
}

.picksvg-purchased-header {
    text-align: center;
    margin-bottom: 50px;
}

.picksvg-purchased-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--ppc-navy);
    margin: 0 0 16px 0;
}

.picksvg-purchased-title span {
    position: relative;
    display: inline-block;
}

.picksvg-purchased-title span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    z-index: -1;
    border-radius: 4px;
    transform: skewX(-3deg);
}

.picksvg-purchased-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.picksvg-purchased-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--ppc-white);
    border: 2px solid var(--ppc-coral);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--ppc-coral);
}

.picksvg-purchased-nav:hover {
    background: var(--ppc-coral);
    color: var(--ppc-white);
    transform: translateY(-50%) scale(1.05);
}

.picksvg-purchased-nav svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.picksvg-purchased-prev {
    left: 0;
}

.picksvg-purchased-next {
    right: 0;
}

.picksvg-purchased-track-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.picksvg-purchased-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.picksvg-purchased-card {
    flex: 0 0 calc(25% - 18px);
    min-width: 280px;
    background: var(--ppc-white);
    border-radius: 20px;
    border: 2px solid transparent;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.picksvg-purchased-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    border: 2px solid var(--ppc-coral);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.picksvg-purchased-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--ppc-shadow-hover);
}

.picksvg-purchased-card:hover::before {
    opacity: 1;
}

.picksvg-purchased-image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--ppc-gray-light);
    border-bottom: 1px solid #f0f0f0;
}

.picksvg-purchased-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.5s ease;
}

.picksvg-purchased-card:hover .picksvg-purchased-image {
    transform: scale(1.08);
}

.picksvg-purchased-sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--ppc-green);
    color: var(--ppc-white);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.picksvg-purchased-stock-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--ppc-coral);
    color: var(--ppc-white);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
}

.picksvg-purchased-stock-badge.out-of-stock {
    background: var(--ppc-gray);
}

.picksvg-purchased-content {
    padding: 24px;
    text-align: center;
}

.picksvg-purchased-name {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--ppc-navy);
    margin: 0 0 12px 0 !important;
    line-height: 1.4 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 44px;
}

.picksvg-purchased-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.picksvg-purchased-name a:hover {
    color: var(--ppc-coral);
}

.picksvg-purchased-price {
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 700;
}

.picksvg-purchased-price del {
    color: var(--ppc-gray);
    font-size: 14px;
    font-weight: 400;
    margin-right: 8px;
}

.picksvg-purchased-price ins {
    color: var(--ppc-coral);
    text-decoration: none;
}

.picksvg-purchased-price .woocommerce-Price-amount {
    color: var(--ppc-coral);
}

.picksvg-purchased-price del .woocommerce-Price-amount {
    color: var(--ppc-gray);
}

.picksvg-purchased-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 16px;
}

.picksvg-purchased-stars {
    display: flex;
    gap: 2px;
}

.picksvg-purchased-stars svg {
    width: 16px;
    height: 16px;
}

.picksvg-purchased-stars svg.filled {
    fill: #FFB800;
    color: #FFB800;
}

.picksvg-purchased-stars svg.empty {
    fill: #E5E7EB;
    color: #E5E7EB;
}

.picksvg-purchased-rating-count {
    font-size: 12px;
    color: var(--ppc-gray);
}

.picksvg-purchased-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--ppc-coral);
    color: var(--ppc-white);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.picksvg-purchased-btn:hover {
    background: var(--ppc-coral-dark);
    color: var(--ppc-white);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.picksvg-purchased-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.picksvg-purchased-btn:hover svg {
    transform: translateX(3px);
}

.picksvg-purchased-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.picksvg-purchased-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--ppc-coral-light);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.picksvg-purchased-dot:hover {
    background: var(--ppc-coral);
    opacity: 0.7;
}

.picksvg-purchased-dot.active {
    background: var(--ppc-coral);
    width: 32px;
    border-radius: 6px;
}
.picksvg-prod-carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.picksvg-prod-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.picksvg-prod-track {
    display: flex;
    will-change: transform;
}

/* Mobile: force full-width cards with no gap */
@media (max-width: 768px) {
    .picksvg-prod-card {
        min-width: 100%;
        flex: 0 0 100%;
        padding: 0;
        margin: 0;
    }
}
/* Responsive */
@media (max-width: 1200px) {
    .picksvg-purchased-card {
        flex: 0 0 calc(33.333% - 16px);
        min-width: 260px;
    }
}

@media (max-width: 992px) {
    .picksvg-purchased-card {
        flex: 0 0 calc(50% - 12px);
        min-width: 240px;
    }
    
    .picksvg-purchased-carousel-wrapper {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .picksvg-purchased-carousel {
        padding: 60px 15px;
    }
    
    .picksvg-purchased-container {
        padding: 0;
    }
    
    .picksvg-purchased-carousel-wrapper {
        padding: 0;
    }
    
    .picksvg-purchased-track-wrapper {
        overflow: hidden;
        border-radius: 20px;
    }
    
    .picksvg-purchased-track {
        gap: 0 !important;
    }
    
    .picksvg-purchased-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    .picksvg-purchased-nav {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .picksvg-purchased-carousel {
        padding: 40px 10px;
    }
    
    .picksvg-purchased-content {
        padding: 20px 15px;
    }
    
    .picksvg-purchased-name {
        font-size: 15px !important;
        min-height: 42px;
    }
    
    .picksvg-purchased-price {
        font-size: 16px;
    }
    
    .picksvg-purchased-btn {
        padding: 10px 24px;
        font-size: 13px;
    }
}

/* Animation */
.picksvg-purchased-card {
    opacity: 0;
    transform: translateY(30px);
    animation: purchasedFadeInUp 0.6s ease forwards;
}

.picksvg-purchased-card:nth-child(1) { animation-delay: 0.1s; }
.picksvg-purchased-card:nth-child(2) { animation-delay: 0.2s; }
.picksvg-purchased-card:nth-child(3) { animation-delay: 0.3s; }
.picksvg-purchased-card:nth-child(4) { animation-delay: 0.4s; }
.picksvg-purchased-card:nth-child(5) { animation-delay: 0.5s; }
.picksvg-purchased-card:nth-child(6) { animation-delay: 0.6s; }
.picksvg-purchased-card:nth-child(7) { animation-delay: 0.7s; }
.picksvg-purchased-card:nth-child(8) { animation-delay: 0.8s; }

@keyframes purchasedFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RECENT PURCHASED CAROUSEL */