/* ============================================
   BRP SAMPLES PROGRAM
   ============================================ */

.samples-landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Hero Section - Light/Transparent */
.samples-hero {
    background: transparent;
    color: #1a1a1a;
    text-align: center;
    padding: 10px 0px;
    position: relative;
}

.samples-hero-content {
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.samples-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #99401E;
    padding: 0;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    position: relative;
    overflow: visible;
}

.samples-hero-badge::before {
    content: '\2728';
    transform: translateY(-50%);
    font-size: 1rem;
    line-height: 1;
    animation: sparkle 2s ease-in-out infinite;
}

.samples-hero-badge::after {
    content: '\2728';
    transform: translateY(-50%);
    font-size: 1rem;
    line-height: 1;
    animation: sparkle 2s ease-in-out infinite 1s;
}

.samples-hero-badge svg {
    display: none;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0) scale(0.8);
    }
    50% {
        opacity: 1;
        transform: translateY(-3px) scale(1.2);
    }
}

.samples-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-top: 20px;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.samples-hero-subtitle {
    font-size: 1.375rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #4a4a4a;
}

.samples-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #99401E, #7A3318);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(153, 64, 30, 0.4);
}

.samples-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(153, 64, 30, 0.5);
    background: linear-gradient(135deg, #B34E24, #99401E);
}

.samples-hero-cta svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.samples-hero-note {
    margin-top: 24px;
    font-size: 0.9375rem;
    color: #666;
}

/* Highlights Section - White Cards on Transparent Background */
.samples-highlights {
    padding: 40px 0px;
    background: transparent;
}

.samples-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    
    margin: 0 auto;
}

.samples-highlight-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

.samples-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B6F47, #D4A574);
}

.samples-highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.samples-highlight-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    padding: 16px;
    background: linear-gradient(135deg, #8B6F47, #6B5436);
    border-radius: 16px;
    fill: white;
}

.samples-highlight-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.samples-highlight-card p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

/* How It Works Section - Light Background with White Cards */
.samples-how-it-works {
    padding: 40px 0px 0px 0px;
    background: #f8f6f4;
}

.samples-section-header {
    text-align: center;
    margin: 0 auto 60px;
}

.samples-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.samples-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #8B6F47, #D4A574);
    margin: 16px auto 0;
    border-radius: 2px;
}

.samples-section-subtitle {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.samples-steps {
    display: grid;
    gap: 32px;
   
    margin: 0 auto;
}

.samples-step {
    background: white;
    border-radius: 16px;
    padding: 32px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.samples-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.samples-step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #8B6F47, #6B5436);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.samples-step-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    margin-bottom: 12px;
}

.samples-step-content p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.samples-step-content strong {
    color: #8B6F47;
    font-weight: 600;
}

/* Shipping Fees Callout */
.samples-shipping-callout {
    background: linear-gradient(135deg, #8B6F47 0%, #6B5436 100%);
    border-radius: 16px;
    padding: 48px 40px;
    margin: 80px 24px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 24px rgba(139, 111, 71, 0.3);
    border: 2px solid #79604F;
}

.samples-shipping-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.samples-shipping-icon {
    width: 40px;
    height: 40px;
    fill: #fff;
}

.samples-shipping-callout h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0;
}

.samples-shipping-intro {
    text-align: center;
    color: #fff;
    font-size: 1.0625rem;
    margin-bottom: 32px;
    line-height: 1.7;
    opacity: 0.95;
}

.samples-shipping-table {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.samples-shipping-table table {
    width: 100%;
    border-collapse: collapse;
}

.samples-shipping-table thead {
    background: rgba(0,0,0,0.5);
    color: white;
}

.samples-shipping-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.samples-shipping-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
    color: #1a1a1a;
        background: white;

}

.samples-shipping-table tbody tr:last-child td {
    border-bottom: none;
}

.samples-shipping-table tbody tr:hover {
    background: #fafafa;
}

.samples-shipping-table .price {
    font-weight: 700;
    color: #8B6F47;
    font-size: 1.125rem;
}

.samples-shipping-note {
    text-align: center;
    color: #fff;
    font-size: 0.9375rem;
    margin-top: 24px;
    font-weight: 500;
    opacity: 0.95;
}

/* What You Can Sample Section - White Cards on Transparent */
.samples-products {
    padding: 20px 24px;
    background: transparent;
}

.samples-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;

    margin: 0 auto;
}

.samples-product-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

.samples-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B6F47, #D4A574);
}

.samples-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.samples-product-icon {
    width: 48px;
    height: 48px;
    fill: #8B6F47;
    margin-bottom: 16px;
}

.samples-product-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.samples-product-card p {
    font-size: 0.9375rem;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Tips Section - Light Background with White Cards */
.samples-tips {
    padding: 80px 24px;
    background: #f8f6f4;
}

.samples-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;

    margin: 0 auto;
}

.samples-tip-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
    border-left: 4px solid #8B6F47;
    transition: all 0.3s ease;
}

.samples-tip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.samples-tip-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.samples-tip-icon {
    width: 24px;
    height: 24px;
    fill: #8B6F47;
}

.samples-tip-card p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

/* Mid-Page CTA - White Card */
.samples-mid-cta {
    background: white;
    color: #1a1a1a;
    padding: 60px 40px;
    text-align: center;
    border-radius: 16px;
    margin: 80px 24px;
    
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
}

.samples-mid-cta-content {
    position: relative;
    z-index: 1;
   
    margin: 0 auto;
}

.samples-mid-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #1a1a1a;
}

.samples-mid-cta p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #4a4a4a;
}

/* Final CTA Section - White Card */
.samples-final-cta {
    background: white;
    padding: 60px 40px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    margin: 60px 24px 0;
    border: 1px solid rgba(0,0,0,0.06);
}

.samples-final-cta-content {
    
    margin: 0 auto;
}

.samples-final-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.samples-final-cta p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 40px;
    line-height: 1.7;
}

.samples-final-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.samples-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.samples-btn-primary {
    background: linear-gradient(135deg, #8B6F47, #6B5436);
    color: white;
    box-shadow: 0 4px 16px rgba(107, 84, 54, 0.3);
}

.samples-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 84, 54, 0.4);
}

.samples-btn-secondary {
    background: white;
    color: #8B6F47;
    border: 2px solid #8B6F47;
}

.samples-btn-secondary:hover {
    background: #8B6F47;
    color: white;
}

.samples-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.samples-contact-note {
    margin-top: 32px;
    font-size: 1rem;
    color: #666;
}

.samples-contact-note a {
    color: #8B6F47;
    text-decoration: none;
    font-weight: 600;
}

.samples-contact-note a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .samples-hero {
        padding: 10px 20px;
    }
    
    .samples-hero h1 {
        font-size: 2.25rem;
    }
    
    .samples-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .samples-hero-cta {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .samples-highlights,
    .samples-how-it-works,
    .samples-products,
    .samples-tips,
    .samples-mid-cta,
    .samples-final-cta {
        padding: 30px 0px;
    }
    
    .samples-section-title {
        font-size: 2rem;
    }
    
    .samples-highlights-grid,
    .samples-product-grid {
        grid-template-columns: 1fr;
    }
    
    .samples-step {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .samples-step-number {
        margin: 0 auto 16px;
    }
    
    .samples-shipping-callout {
        padding: 32px 24px;
        margin: 60px 20px;
    }
    
    .samples-shipping-table th,
    .samples-shipping-table td {
        padding: 12px 16px;
        font-size: 0.9375rem;
    }
    
    .samples-mid-cta {
        margin: 60px 20px;
        padding: 40px 24px;
    }
    
    .samples-mid-cta h2,
    .samples-final-cta h2 {
        font-size: 2rem;
    }
    
    .samples-final-cta {
        padding: 40px 24px;
    }
    
    .samples-final-cta-buttons {
        flex-direction: column;
    }
    
    .samples-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Social Share Widget */
.samples-share-widget {
    margin-top: 32px;
    padding: 20px;
    background: rgba(139, 111, 71, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.samples-share-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #4a4a4a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.samples-share-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.samples-share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.samples-share-btn svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.samples-share-facebook {
    background: #1877f2;
}

.samples-share-facebook svg {
    fill: white;
}

.samples-share-facebook:hover {
    background: #145dbf;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.samples-share-twitter {
    background: #1DA1F2;
}

.samples-share-twitter svg {
    fill: white;
}

.samples-share-twitter:hover {
    background: #1a8cd8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.4);
}

.samples-share-pinterest {
    background: #E60023;
}

.samples-share-pinterest svg {
    fill: white;
}

.samples-share-pinterest:hover {
    background: #c9001e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 0, 35, 0.4);
}

.samples-share-email {
    background: #8B6F47;
}

.samples-share-email svg {
    fill: white;
}

.samples-share-email:hover {
    background: #6B5436;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 111, 71, 0.4);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.samples-highlight-card,
.samples-step,
.samples-product-card,
.samples-tip-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.samples-highlight-card:nth-child(1) { animation-delay: 0.1s; }
.samples-highlight-card:nth-child(2) { animation-delay: 0.2s; }
.samples-highlight-card:nth-child(3) { animation-delay: 0.3s; }

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