/**
 * WithMall (WeSh

op) Experience Marketing Page Styles
 * Company: 하얀모자마케팅 (Whitehat Marketing)
 *
 * Created: 2026-01-18
 * Purpose: Centralized CSS for withmall.html (체험단 마케팅)
 */

/* ====================================
   Category Filter Buttons
   ==================================== */
.withmall-filter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.withmall-filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-black);
    background: transparent;
    color: var(--primary-black);
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.withmall-filter-btn:hover,
.withmall-filter-btn.active {
    background: var(--primary-black);
    color: var(--primary-white);
}

/* ====================================
   Brand Partners Section
   ==================================== */
.withmall-brands-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

.withmall-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.withmall-brand-item {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 180px;
}

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

.withmall-brand-item h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--primary-black);
}

.withmall-brand-item p {
    font-size: 0.85rem;
    color: var(--gray-medium);
    margin-top: 0.5rem;
}

/* ====================================
   Category Showcase
   ==================================== */
.withmall-category-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.withmall-category-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.withmall-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.withmall-category-header {
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-black) 0%, #333 100%);
    color: white;
}

.withmall-category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.withmall-category-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.withmall-category-stats {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eee;
}

.withmall-category-stat-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.withmall-category-products {
    padding: 1.5rem 2rem;
}

.withmall-category-products h4 {
    font-size: 0.9rem;
    color: var(--gray-medium);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.withmall-product-tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 0.25rem;
}

/* ====================================
   Achievement Timeline
   ==================================== */
.withmall-timeline {
    position: relative;
    padding: 2rem 0;
}

.withmall-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-black), #ccc);
    transform: translateX(-50%);
}

.withmall-timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 30px);
    margin-bottom: 3rem;
    position: relative;
}

.withmall-timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 30px);
}

.withmall-timeline-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 20px;
    width: 16px;
    height: 16px;
    background: var(--primary-black);
    border-radius: 50%;
    transform: translateX(-50%);
}

.withmall-timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    max-width: 400px;
}

.withmall-timeline-year {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-black);
}

/* ====================================
   SmartStore Link Card
   ==================================== */
.withmall-smartstore-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #03c75a 0%, #00b140 100%);
    border-radius: 16px;
    color: white;
    margin: 3rem 0;
    text-decoration: none;
}

.withmall-smartstore-card:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.withmall-smartstore-icon {
    font-size: 4rem;
}

.withmall-smartstore-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.withmall-smartstore-info p {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.withmall-smartstore-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: white;
    color: #03c75a;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.withmall-smartstore-btn:hover {
    background: #f0f0f0;
}

/* ====================================
   Hero Section
   ==================================== */
.withmall-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 8rem 0;
}

.withmall-hero-container {
    text-align: center;
}

.withmall-hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.withmall-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.withmall-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

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

.withmall-hero .btn-primary {
    background: white;
    color: #1a1a2e;
    padding: 1rem 2rem;
    font-weight: 600;
}

.withmall-hero .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
}

/* ====================================
   Stats Section
   ==================================== */
.withmall-stats-section {
    background: #fff;
    padding: 5rem 0;
}

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

.withmall-stats-subtitle {
    display: block;
    font-size: 1rem;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

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

.withmall-stats-item {
    text-align: center;
    padding: 2.5rem;
    border-radius: 16px;
    color: white;
}

.withmall-stats-item:nth-child(1) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.withmall-stats-item:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.withmall-stats-item:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.withmall-stats-item:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.withmall-stats-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.withmall-stats-item p {
    font-size: 1rem;
    opacity: 0.9;
}

/* ====================================
   SmartStore Section
   ==================================== */
.withmall-smartstore-section {
    padding: 3rem 0;
}

/* ====================================
   Categories Section
   ==================================== */
.withmall-categories-section {
    background: #f8f9fa;
    padding: 6rem 0;
}

.withmall-categories-intro {
    text-align: center;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Category-specific header backgrounds */
.withmall-category-header.beauty {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
}

.withmall-category-header.living {
    background: linear-gradient(135deg, #4facfe 0%, #00c6fb 100%);
}

.withmall-category-header.food {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.withmall-category-header.leisure {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* ====================================
   Process Section
   ==================================== */
.withmall-process-section {
    padding: 6rem 0;
}

.withmall-process-intro {
    text-align: center;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto 3rem;
}

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

.withmall-process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
}

.withmall-process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary-black);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.withmall-process-icon {
    font-size: 3rem;
    margin: 1rem 0;
}

.withmall-process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.withmall-process-step p {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

/* ====================================
   Campaigns Section
   ==================================== */
.withmall-campaigns-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.withmall-campaigns-intro {
    text-align: center;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto 2rem;
}

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

.withmall-campaigns-more {
    text-align: center;
    margin-top: 3rem;
}

.withmall-campaigns-more p {
    color: var(--gray-medium);
    margin-bottom: 1rem;
}

/* ====================================
   Testimonials Section
   ==================================== */
.withmall-testimonials-section {
    padding: 6rem 0;
}

.withmall-testimonials-intro {
    text-align: center;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto 3rem;
}

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

.withmall-testimonial-card {
    padding: 2rem;
}

.withmall-testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.withmall-testimonial-avatar {
    width: 50px;
    height: 50px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.withmall-testimonial-avatar.purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.withmall-testimonial-avatar.pink {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.withmall-testimonial-avatar.blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.withmall-testimonial-avatar.green {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.withmall-testimonial-info h3 {
    margin: 0;
    font-size: 1.1rem;
}

.withmall-testimonial-info p {
    margin: 0;
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.withmall-testimonial-rating {
    color: #ffc107;
    margin-bottom: 1rem;
}

.withmall-testimonial-text {
    line-height: 1.8;
    color: #555;
}

/* ====================================
   Why Section
   ==================================== */
.withmall-why-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 6rem 0;
    color: white;
}

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

.withmall-why-item {
    text-align: center;
    padding: 2rem;
}

.withmall-why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.withmall-why-item h3 {
    margin-bottom: 1rem;
}

.withmall-why-item p {
    opacity: 0.85;
    line-height: 1.8;
}

/* ====================================
   CTA Section
   ==================================== */
.withmall-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 6rem 0;
}

.withmall-cta-container {
    text-align: center;
}

.withmall-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.withmall-cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.withmall-cta-button {
    background: white;
    color: #667eea;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.withmall-cta-button-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2.5rem;
}

/* ====================================
   Real Case Studies Section (2026-01-20)
   ==================================== */
.withmall-case-studies-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 0;
}

.withmall-case-study-card {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.withmall-case-study-card:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.withmall-case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.withmall-case-header h3 {
    font-size: 1.75rem;
    color: var(--primary-black);
    margin: 0;
}

.withmall-case-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

.withmall-case-badge.beauty {
    background: linear-gradient(135deg, #ff6b9d 0%, #c06fbb 100%);
}

.withmall-case-badge.haircare {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.withmall-case-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.withmall-case-stats .stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.withmall-case-stats .stat-item strong {
    font-size: 1.75rem;
    color: var(--accent-color, #1e90ff);
    font-weight: 700;
}

.withmall-case-stats .stat-item span {
    font-size: 0.95rem;
    color: var(--gray-medium);
}

.withmall-influencer-reviews {
    margin-top: 3rem;
}

.withmall-influencer-reviews h4 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-black);
}

.withmall-review-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: background 0.3s ease;
}

.withmall-review-item:hover {
    background: #e9ecef;
}

.withmall-review-placeholder {
    min-width: 200px;
    width: 200px;
    height: 150px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem;
}

.withmall-review-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.review-channel {
    font-weight: 600;
    color: var(--primary-black);
    font-size: 1.05rem;
}

.review-influencer {
    color: var(--gray-medium);
    font-size: 0.95rem;
}

.review-date {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.review-platform {
    color: var(--gray-medium);
    font-size: 0.9rem;
    font-style: italic;
}

.review-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--accent-color, #1e90ff);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.review-link:hover {
    color: #0066cc;
    text-decoration: underline;
}

.withmall-review-img {
    min-width: 200px;
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.withmall-benefits {
    margin-top: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color, #1e90ff);
}

.withmall-benefits h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

.withmall-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.withmall-benefits li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    color: var(--gray-dark);
    line-height: 1.6;
}

.withmall-case-note {
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
}

.withmall-case-note p {
    margin: 0;
    color: #856404;
    line-height: 1.6;
}

/* ====================================
   Advanced Animations (2026-01-21)
   ==================================== */

/* Pulse animation for stats items */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.withmall-stats-item {
    animation: slideInUp 0.6s ease forwards;
    opacity: 0;
}

.withmall-stats-item:nth-child(1) { animation-delay: 0.1s; }
.withmall-stats-item:nth-child(2) { animation-delay: 0.2s; }
.withmall-stats-item:nth-child(3) { animation-delay: 0.3s; }
.withmall-stats-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gradient animation for hero */
.withmall-hero {
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Smooth hover transitions */
.weshop-campaign-card,
.withmall-category-card,
.withmall-brand-item,
.withmall-testimonial-card {
    will-change: transform, box-shadow;
}

/* Enhanced hover effect for campaign cards */
.weshop-campaign-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Sparkle effect on stats */
.withmall-stats-item::before {
    content: '✨';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.withmall-stats-item:hover::before {
    opacity: 1;
}

/* Progress indicator */
.withmall-category-stats {
    position: relative;
}

.withmall-category-stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color, #1e90ff), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.withmall-category-card:hover .withmall-category-stat-item::after {
    transform: scaleX(1);
}

/* Floating animation for icons */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.withmall-process-icon,
.withmall-category-icon,
.withmall-why-icon {
    animation: float 3s ease-in-out infinite;
}

.withmall-process-step:nth-child(1) .withmall-process-icon { animation-delay: 0s; }
.withmall-process-step:nth-child(2) .withmall-process-icon { animation-delay: 0.2s; }
.withmall-process-step:nth-child(3) .withmall-process-icon { animation-delay: 0.4s; }
.withmall-process-step:nth-child(4) .withmall-process-icon { animation-delay: 0.6s; }
.withmall-process-step:nth-child(5) .withmall-process-icon { animation-delay: 0.8s; }

/* Glow effect on hover */
.withmall-filter-btn:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.withmall-filter-btn.active {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}

/* Testimonial card entrance animation */
.withmall-testimonial-card {
    animation: fadeInScale 0.5s ease forwards;
    opacity: 0;
}

.withmall-testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.withmall-testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.withmall-testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.withmall-testimonial-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* SmartStore card pulse on hover */
.withmall-smartstore-card {
    position: relative;
    overflow: hidden;
}

.withmall-smartstore-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: translate(-100%, -100%);
    transition: transform 0.6s ease;
}

.withmall-smartstore-card:hover::before {
    transform: translate(0, 0);
}

/* Enhanced review item hover */
.withmall-review-item {
    position: relative;
    overflow: hidden;
}

.withmall-review-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-color, #1e90ff), transparent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.withmall-review-item:hover::before {
    transform: scaleY(1);
}

/* Smooth transitions for all interactive elements */
* {
    scroll-behavior: smooth;
}

/* ====================================
   Campaign Timeline Styles
   ==================================== */

.withmall-campaign-timeline {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid var(--primary-black);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    position: relative;
}

.withmall-campaign-timeline::before {
    content: '📅';
    position: absolute;
    top: -10px;
    left: -15px;
    background: white;
    padding: 5px;
    border-radius: 50%;
    font-size: 1.25rem;
}

.withmall-campaign-timeline .withmall-timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-bottom: 0 !important;
    justify-content: flex-start !important;
    border-bottom: 1px dashed #dee2e6;
    animation: slideInLeft 0.5s ease forwards;
    opacity: 0;
}

.withmall-campaign-timeline .withmall-timeline-item:last-child {
    border-bottom: none;
}

.withmall-campaign-timeline .withmall-timeline-item:nth-child(1) { animation-delay: 0.1s; }
.withmall-campaign-timeline .withmall-timeline-item:nth-child(2) { animation-delay: 0.2s; }
.withmall-campaign-timeline .withmall-timeline-item:nth-child(3) { animation-delay: 0.3s; }
.withmall-campaign-timeline .withmall-timeline-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.withmall-campaign-timeline .withmall-timeline-date {
    flex-shrink: 0;
    font-weight: 700;
    color: var(--primary-black);
    font-size: 0.95rem;
    min-width: 120px;
    background: white;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.withmall-campaign-timeline .withmall-timeline-text {
    flex: 1;
    color: var(--gray-dark);
    line-height: 1.6;
    font-size: 0.95rem;
}

.withmall-campaign-timeline:hover {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

/* Enhanced results list with timeline */
.weshop-campaign-card:hover .withmall-campaign-timeline {
    border-left-color: var(--accent-color, #1e90ff);
}

/* Override Achievement Timeline styles for Campaign Timeline */
.withmall-campaign-timeline .withmall-timeline-item::after {
    display: none !important;
}

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

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

    .withmall-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .withmall-hero {
        padding: 5rem 0;
    }

    .withmall-hero h1 {
        font-size: 2rem;
    }

    .withmall-hero-subtitle {
        font-size: 1rem;
    }

    .withmall-stats-grid {
        grid-template-columns: 1fr;
    }

    .withmall-process-grid {
        grid-template-columns: 1fr;
    }

    .withmall-timeline::before {
        left: 20px;
    }

    .withmall-timeline-item,
    .withmall-timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .withmall-timeline-item::after {
        left: 20px;
    }

    .withmall-smartstore-card {
        flex-direction: column;
        text-align: center;
    }

    .withmall-campaigns-grid {
        grid-template-columns: 1fr;
    }

    .withmall-cta-section h2 {
        font-size: 1.75rem;
    }

    .withmall-cta-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .withmall-hero h1 {
        font-size: 1.75rem;
    }

    .withmall-stats-item h3 {
        font-size: 2.5rem;
    }

    .withmall-filter-container {
        gap: 0.5rem;
    }

    .withmall-filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}
