/* ============================================
   BRP BOX SHOP - INFORMATION PAGES STYLESHEET
   ============================================
   Unified styles for all information pages
   with page-specific sections clearly marked.
   ============================================ */

/* ============================================
   SHIPPING INFORMATION PAGE SPECIFIC STYLES
   ============================================ */

/* Base Reset & Container */
.ship-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.ship-page body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
}

.ship-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

/* Intro Banner */
.ship-intro-banner {
    padding: 10px;
    margin-bottom: 60px;
    text-align: center;
}

.ship-intro-banner-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.ship-intro-icon {
    width: 32px;
    height: 32px;
    fill: #8B6F47;
    opacity: 0.9;
    animation: float 3s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.ship-intro-banner h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}

.ship-intro-banner p {
    font-size: 1.125rem;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Highlight Cards */
.ship-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.ship-highlight-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    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;
    position: relative;
    overflow: hidden;
}

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

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

.ship-highlight-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    fill: #8B6F47;
}

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

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

.ship-highlight-card-large-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    fill: #8B6F47;
}

/* Section Title */
.ship-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 48px;
    text-align: center;
}

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

/* Step Cards */
.ship-steps {
    display: grid;
    gap: 24px;
    margin-bottom: 60px;
}

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

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

.ship-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.5rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

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

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

.ship-step-content strong {
    color: #8B6F47;
}

/* Transit Map Section */
.ship-transit-section {
    background: white;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
    margin-bottom: 60px;
}

.ship-transit-intro {
    text-align: center;
    margin-bottom: 40px;
}

.ship-transit-intro h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.ship-transit-intro p {
    font-size: 1.0625rem;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.ship-transit-map {
    max-width: 900px;
    margin: 0 auto 32px;
}

.ship-transit-map svg {
    width: 100%;
    height: auto;
    display: block;
}

.ship-transit-map img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* UPS Tool Callout */
.ship-ups-callout {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    border-radius: 12px;
    padding: 28px 32px;
    margin: 40px auto 32px;
    max-width: 700px;
    text-align: center;
    border: 2px solid #4CAF50;
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.15);
}

.ship-ups-callout-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ship-ups-icon {
    width: 28px;
    height: 28px;
    fill: #2E7D32;
}

.ship-ups-callout-text {
    color: #1B5E20;
    margin-bottom: 16px;
    font-size: 1rem;
}

.ship-ups-instructions {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
}

.ship-ups-instructions h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1B5E20;
    margin-bottom: 12px;
}

.ship-ups-instructions ol {
    margin: 0;
    padding-left: 24px;
    color: #2E7D32;
}

.ship-ups-instructions li {
    margin: 8px 0;
    line-height: 1.6;
}

.ship-ups-instructions strong {
    color: #1B5E20;
    font-weight: 700;
    background: #FFF9C4;
    padding: 2px 6px;
    border-radius: 4px;
}

.ship-ups-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.0625rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.ship-ups-button:hover {
    background: #45A049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.ship-ups-button svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.ship-transit-legend {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.ship-legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ship-legend-color {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 2px solid rgba(0,0,0,0.1);
}

.ship-legend-text {
    font-size: 0.9375rem;
    color: #4a4a4a;
    font-weight: 500;
}

.ship-legend-text strong {
    color: #1a1a1a;
    display: block;
    font-weight: 700;
}

/* Info Box */
.ship-info-box {
    background: #f8f6f4;
    border-left: 4px solid #8B6F47;
    border-radius: 12px;
    padding: 24px 28px;
    margin: 32px 0;
}

/* International Shipping Info Box - Darker Background */
.ship-info-box.ship-int {
    background: #d9d6d2;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    margin-top: 60px;
}

.ship-info-box p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin: 0;
}

.ship-info-box strong {
    color: #1a1a1a;
}

.ship-info-box a {
    color: #8B6F47;
    text-decoration: none;
    font-weight: 600;
}

.ship-info-box a:hover {
    text-decoration: underline;
}

/* Alert Box */
.ship-alert {
    background: linear-gradient(135deg, #FFF4E6 0%, #FFE8CC 100%);
    border-left: 4px solid #FF9800;
    border-radius: 12px;
    padding: 24px 28px;
    margin: 32px 0;
    box-shadow: 0 4px 16px rgba(255, 152, 0, 0.15);
}

.ship-alert-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #E65100;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ship-alert-icon {
    width: 24px;
    height: 24px;
    fill: #FF9800;
}

.ship-alert p {
    font-size: 1rem;
    color: #5D4037;
    line-height: 1.7;
    margin: 0;
}

.ship-alert p.ship-alert-extra {
    margin-top: 12px;
}

.ship-alert ul {
    margin: 12px 0 0 24px;
    list-style: disc;
}

.ship-alert li {
    color: #5D4037;
    margin: 8px 0;
}

/* Policy Cards */
.ship-policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

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

.ship-policy-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #8B6F47;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ship-policy-icon {
    width: 28px;
    height: 28px;
    fill: #8B6F47;
}

.ship-policy-card p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 12px;
}

.ship-policy-card p:last-child {
    margin-bottom: 0;
}

.ship-policy-card strong {
    color: #1a1a1a;
}

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

.ship-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.ship-cta p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.ship-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

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

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

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

.ship-btn-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Back Button Area */
.ship-back-button-area {
    text-align: center;
    padding: 40px 10px 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .ship-intro-banner {
        padding: 28px 24px;
    }
    
    .ship-intro-banner h1 {
        font-size: 2rem;
    }
    
    .ship-highlights {
        grid-template-columns: 1fr;
    }
    
    .ship-section-title {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }
    
    .ship-step-card {
        grid-template-columns: 1fr;
        padding: 24px;
        text-align: center;
    }
    
    .ship-step-number {
        margin: 0 auto 16px;
    }
    
    .ship-transit-section {
        padding: 32px 24px;
    }
    
    .ship-transit-legend {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .ship-policy-grid {
        grid-template-columns: 1fr;
    }
    
    .ship-cta {
        padding: 40px 24px;
    }
    
    .ship-cta h2 {
        font-size: 1.5rem;
    }
    
    .ship-cta-buttons {
        flex-direction: column;
    }
    
    .ship-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Hero Section */
.ip-hero-section {
    text-align: center;
    padding: 10px;
    margin-bottom: 0;
}

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

.ip-hero-subtitle {
    font-size: 1.25rem;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
}

/* Stats Section */
.ip-stats-section {
    background: #6B5436;
    padding: 3rem 2rem;
    margin-bottom: 0;
}

.ip-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.ip-stat-card {
    padding: 1rem;
    text-align: center;
}

.ip-stat-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 1rem;
    fill: white;
    opacity: 0.5;
}

.ip-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.ip-stat-label {
    display: block;
    color: white;
    font-weight: 500;
    font-size: 0.9375rem;
}

/* Responsive for Hero & Stats */
@media (max-width: 768px) {
    .ip-hero-title {
        font-size: 2rem;
    }
    
    .ip-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .ip-stats-section {
        padding: 2rem 1rem;
    }
    
    .ip-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ============================================
   GLOBAL STATS CARDS (WHITE BACKGROUND) - UNIFIED
   ============================================ */

/* Stats Grid - White Cards with Hover Effects */
.ip-stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 60px auto;
    max-width: 1200px;
    padding: 0 24px;
}

.ip-stat-card-white {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    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;
    position: relative;
    overflow: hidden;
}

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

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

.ip-stat-card-white .ip-stat-icon {
    width: 34px;
    height: 34px;
    margin: 0 auto 12px;
    fill: #8B6F47;
    opacity: 1;
}

.ip-stat-card-white .ip-stat-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a1a;
    display: block;
    margin-bottom: 6px;
    text-transform: none;
}

.ip-stat-card-white .ip-stat-label {
    font-size: 0.875rem;
    color: #4a4a4a;
    font-weight: 500;
}

/* Responsive for Stats Cards */
@media (max-width: 768px) {
    .ip-stats-cards {
        grid-template-columns: 1fr;
        margin: 40px auto;
    }
}

/* ============================================
   GLOBAL CTA SECTION - ALL PAGES
   ============================================ */
.ip-cta {
    background: white;
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    margin-top: 60px;
    border: 1px solid rgba(0,0,0,0.06);
}

.ip-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.ip-cta p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.ip-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.ip-cta-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
    display: block;
}

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

.ip-cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 84, 54, 0.4);
}

.ip-cta-button-secondary {
    background: white;
    color: #8B6F47;
    border: 2px solid #8B6F47;
}

.ip-cta-button-secondary:hover {
    background: #8B6F47;
    color: white;
}

@media (max-width: 768px) {
    .ip-cta {
        padding: 40px 20px;
    }
    
    .ip-cta h2 {
        font-size: 1.5rem;
    }
    
    .ip-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .ip-cta-button {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}

/* ============================================
   BACK BUTTON WITH HERO LAYOUT - ALL PAGES
   ============================================ */
.ip-hero-wrapper {
}

.ip-hero-button-area {
    padding:10px;
    padding-bottom: 30px;
    text-align: center;
}

.ip-back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    color: #8B6F47;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #8B6F47;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    white-space: nowrap;
}

.ip-back-button:hover {
    background: #8B6F47;
    color: white;
    transform: translateX(-4px);
    box-shadow: 0 4px 12px rgba(139, 111, 71, 0.2);
}

.ip-back-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.ip-back-button:hover svg {
    transform: translateX(-2px);
}

/* ============================================
   FOOTER BACK BUTTON - ALL INFO PAGES
   ============================================ */
.ip-footer-button-area {
    padding: 60px 10px 10px;
    text-align: center;
}

.ip-footer-back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: white;
    color: #8B6F47;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.0625rem;
    font-weight: 600;
    border: 2px solid #8B6F47;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    white-space: nowrap;
}

.ip-footer-back-button:hover {
    background: #8B6F47;
    color: white;
    transform: translateX(-4px);
    box-shadow: 0 4px 12px rgba(139, 111, 71, 0.2);
}

.ip-footer-back-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.ip-footer-back-button:hover svg {
    transform: translateX(-2px);
}

.ip-hero-content-area {
    flex: 0 0 75%;
}

@media (max-width: 768px) {
    .ip-hero-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 32px 0;
    }
    
    .ip-hero-button-area {
        flex: 1 1 auto;
        width: 100%;
    }
    
    .ip-hero-content-area {
        flex: 1 1 auto;
        width: 100%;
    }
    
    .ip-back-button {
        font-size: 0.9375rem;
        padding: 10px 16px;
    }
}

/* ============================================
   BASE STYLES & RESETS
   ============================================ */
.ip-container {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    border-radius: 8px;
}

.ip-container *,
.ip-container *::before,
.ip-container *::after {
    box-sizing: inherit;
}

@media (max-width: 768px) {
    .ip-container {
        padding: 20px 15px;
    }
}

/* ============================================
   SHARED LAYOUT & CONTAINER STYLES
   ============================================ */
/* Note: .ip-container styles are defined in BASE STYLES & RESETS section above */

/* ============================================
   SHARED TYPOGRAPHY
   ============================================ */
.ip-header {
    text-align: center;
    color: #79604F;
    font-size: 2.5em;
    margin-bottom: 30px;
    font-weight: 600;
}

.ip-title {
    color: #79604F;
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.ip-subtitle {
    color: #79604F;
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 500;
}

.ip-content p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #333;
}

.ip-content strong {
    font-weight: 600;
    color: #79604F;
}

.ip-content em {
    font-style: italic;
}

@media (max-width: 768px) {
    .ip-header {
        font-size: 2em;
        margin-bottom: 20px;
    }
    
    .ip-title {
        font-size: 1.5em;
        margin-top: 25px;
    }
    
    .ip-subtitle {
        font-size: 1.2em;
    }
}

/* ============================================
   SHARED COMPONENTS
   ============================================ */

/* Section Divider */
.ip-section {
    margin: 30px 0;
    padding: 20px 0;
}

.ip-section-divider {
    border: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #AE8D73, transparent);
    margin: 30px 0;
}

/* Lists */
.ip-list {
    list-style: none;
    padding-left: 0;
}

.ip-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.ip-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #AE8D73;
    font-weight: bold;
}

/* Buttons */
.ip-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #AE8D73;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid #AE8D73;
    font-weight: 500;
    text-align: center;
}

.ip-button:hover {
    background-color: #79604F;
    border-color: #79604F;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Links */
.ip-link {
    color: #AE8D73;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ip-link:hover {
    color: #79604F;
    text-decoration: underline;
}

/* Highlight Box */
.ip-highlight-box {
    background-color: #f9f5f2;
    border-left: 4px solid #AE8D73;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
}

/* ============================================
   ABOUT US PAGE SPECIFIC STYLES
   ============================================ */

/* Hero Section with Image Overlay */
.ip-about-hero {
    position: relative;
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.ip-about-hero-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.ip-about-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 2rem;
    color: white;
}

.ip-about-hero-text {
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .ip-about-hero-text {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .ip-about-hero-text {
        font-size: 1.125rem;
    }
}

/* Stats Grid */
.ip-about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.ip-about-stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 2px solid #ede9e6;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.ip-about-stat-card:hover {
    border-color: #AE8D73;
    transform: translateY(-4px);
}

.ip-about-stat-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
    fill: #AE8D73;
}

.ip-about-stat-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #79604F;
    margin-bottom: 0.5rem;
}

.ip-about-stat-text {
    font-size: 0.875rem;
    color: #78716C;
}

@media (max-width: 768px) {
    .ip-about-stats {
        grid-template-columns: 1fr;
    }
}

/* Content Cards with Icons */
.ip-about-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.ip-about-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ip-about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.ip-about-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.ip-about-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    fill: #AE8D73;
    flex-shrink: 0;
}

.ip-about-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #79604F;
    line-height: 1.3;
    margin: 0;
}

.ip-about-card-text {
    color: #57534E;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.ip-about-card-text:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .ip-about-card {
        padding: 1.5rem;
    }

    .ip-about-card-header {
        gap: 1rem;
    }

    .ip-about-card-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .ip-about-card-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .ip-about-card-title {
        font-size: 1.125rem;
    }

    .ip-about-card-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
}

/* Featured Testimonial Box */
.ip-about-testimonial {
    background: linear-gradient(135deg, #AE8D73, #79604F);
    border-radius: 12px;
    padding: 3rem;
    color: white;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.ip-about-testimonial::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.ip-about-testimonial-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    opacity: 0.9;
    fill: white;
}

.ip-about-testimonial-quote {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.ip-about-testimonial-author {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.ip-about-testimonial-link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255,255,255,0.2);
    border-radius: 24px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    position: relative;
    z-index: 1;
}

.ip-about-testimonial-link:hover {
    background: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
    .ip-about-testimonial {
        padding: 2rem;
    }

    .ip-about-testimonial-quote {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .ip-about-testimonial-quote {
        font-size: 1rem;
    }
}

/* Call-to-Action Section */
.ip-about-cta {
    text-align: center;
    padding: 3rem 0;
}

.ip-about-cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #79604F;
    margin-bottom: 1.5rem;
}

.ip-about-cta-text {
    font-size: 1.125rem;
    color: #57534E;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ip-about-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.ip-about-button-secondary {
    background: white;
    color: #AE8D73;
    border: 2px solid #AE8D73;
}

.ip-about-button-secondary:hover {
    background: #f9f5f2;
    color: #79604F;
    border-color: #79604F;
}

@media (max-width: 768px) {
    .ip-about-cta-title {
        font-size: 1.5rem;
    }

    .ip-about-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .ip-button {
        width: 100%;
        text-align: center;
    }
}

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

.ip-about-card,
.ip-about-testimonial,
.ip-about-stat-card {
    animation: fadeInUp 0.6s ease-out;
}

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

/* ============================================
   ABOUT BRP BOX SHOP PAGE STYLES
   (about-brp-box-shop.html)
   ============================================ */

.about-container {
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 0px;
}

.about-container .about-page-header {
    text-align: center;
    padding: 48px 24px 40px;
    margin-bottom: 40px;
}

.about-container .about-page-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.about-container .about-page-subtitle {
    font-size: 1.25rem;
    color: #4a4a4a;
    font-weight: 400;
}

.about-container .about-hero {
    position: relative;
    margin: 0 0 60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.about-container .about-hero-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.about-container .about-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 40px;
    color: white;
}

.about-container .about-hero-text {
    font-size: 1.125rem;
    font-weight: 500;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.about-container .about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.about-container .about-stat-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    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;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

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

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

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

.about-container .about-stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    fill: #8B6F47;
}

.about-container .about-stat-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.about-container .about-stat-text {
    font-size: 1rem;
    color: #4a4a4a;
}

.about-container .about-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 48px;
    text-align: center;
}

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

.about-container .about-content {
    display: grid;
    gap: 32px;
    margin-bottom: 30px;
}

.about-container .about-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    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;
    animation: fadeInUp 0.6s ease-out;
}

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

.about-container .about-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.about-container .about-card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    fill: #8B6F47;
    flex-shrink: 0;
}

.about-container .about-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
}

.about-container .about-card-text {
    font-size: 1.0625rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.about-container .about-testimonial {
    background: linear-gradient(135deg, #8B6F47 0%, #6B5436 100%);
    border-radius: 16px;
    padding: 60px 48px;
    color: white;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.about-container .about-testimonial::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-container .about-testimonial-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    fill: white;
    opacity: 0.9;
}

.about-container .about-testimonial-quote {
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-container .about-testimonial-author {
    font-size: 1.125rem;
    font-weight: 600;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.about-container .about-testimonial-link {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 28px;
    background: white;
    color: #8B6F47;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.about-container .about-testimonial-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.about-container .about-cta {
    background: white;
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    margin-bottom: 60px;
    border: 1px solid rgba(0,0,0,0.06);
    animation: fadeInUp 0.6s ease-out;
}

.about-container .about-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.about-container .about-cta p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.about-container .about-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

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

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

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

.about-container .about-btn-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .about-container .about-page-header {
        padding: 32px 20px 24px;
    }

    .about-container .about-page-title {
        font-size: 2rem;
    }

    .about-container .about-page-subtitle {
        font-size: 1.125rem;
    }

    .about-container .about-hero-overlay {
        padding: 24px;
    }

    .about-container .about-hero-text {
        font-size: 1rem;
    }

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

    .about-container .about-section-title {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }

    .about-container .about-card {
        padding: 24px;
    }

    .about-container .about-card-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .about-container .about-card-title {
        font-size: 1.25rem;
    }

    .about-container .about-testimonial {
        padding: 40px 24px;
    }

    .about-container .about-testimonial-quote {
        font-size: 1.125rem;
    }

    .about-container .about-cta {
        padding: 40px 24px;
    }

    .about-container .about-cta h2 {
        font-size: 1.5rem;
    }

    .about-container .about-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .about-container .about-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   TESTIMONIALS PAGE SPECIFIC STYLES
   ============================================ */

/* Stats Grid at Top */
.ip-testimonial-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.ip-testimonial-stat-item {
    padding: 1.5rem;
}

.ip-testimonial-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #79604F;
    margin-bottom: 0.5rem;
    display: block;
}

.ip-testimonial-stat-label {
    font-size: 0.9rem;
    color: #57534E;
    font-weight: 500;
}

/* Testimonial Cards */
.ip-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.ip-testimonial-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #ede9e6;
}

.ip-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.ip-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #AE8D73, #79604F);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ip-testimonial-author {
    color: #79604F;
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.ip-testimonial-text {
    color: #333;
    font-size: 1em;
    line-height: 1.8;
    margin-bottom: 0;
}

.ip-testimonial-location {
    color: #666;
    font-size: 0.9em;
}

.ip-testimonial-rating {
    color: #FFB800;
    margin-bottom: 15px;
}

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

/* ============================================
   REFUND/RETURN POLICY PAGE SPECIFIC STYLES
   ============================================ */

/* Policy Sections */
.ip-policy-section {
    margin: 30px 0;
    padding: 25px;

    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    border-left: 4px solid #AE8D73;
}

.ip-policy-title {
    color: #79604F;
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 600;
}

.ip-policy-content {
    color: #333;
    line-height: 1.8;
}

.ip-policy-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.ip-policy-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.ip-policy-list li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #AE8D73;
    font-weight: bold;
}

.ip-important-note {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 5px;
    padding: 20px;
    margin: 20px 0;
}

.ip-important-note strong {
    color: #856404;
    display: block;
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* ============================================
   CONTACT PAGE SPECIFIC STYLES
   ============================================ */

/* Contact Grid */
.ip-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .ip-contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Contact Info */
.ip-contact-info-section {
    background-color: #f9f5f2;
    padding: 30px;
    border-radius: 8px;
}

.ip-contact-item {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 20px 0;
    display: flex;
    align-items: start;
}

.ip-contact-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.ip-contact-icon svg {
    width: 100%;
    height: 100%;
    fill: #AE8D73;
}

.ip-contact-details h3 {
    color: #79604F;
    font-size: 1.2em;
    margin-bottom: 8px;
    font-weight: 600;
}

.ip-contact-details p {
    color: #333;
    line-height: 1.6;
    margin: 5px 0;
}

/* Contact Form */
.ip-contact-form-section {
    background-color: #fff;
}

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

.ip-form-label {
    display: block;
    color: #79604F;
    font-weight: 600;
    margin-bottom: 8px;
}

.ip-form-input,
.ip-form-textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ede9e6;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.ip-form-input:focus,
.ip-form-textarea:focus {
    outline: none;
    border-color: #AE8D73;
}

.ip-form-textarea {
    min-height: 150px;
    resize: vertical;
}

.ip-form-button {
    width: 100%;
    padding: 15px;
    background-color: #AE8D73;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ip-form-button:hover {
    background-color: #79604F;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Map Section */
.ip-map-section {
    margin: 40px 0;
}

.ip-map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.ip-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .ip-map-container {
        height: 300px;
    }
}

/* ============================================
   INTERNATIONAL ORDERS PAGE SPECIFIC STYLES
   ============================================ */

/* Shipping Info Cards */
.ip-shipping-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.ip-shipping-card {
    background-color: #f9f5f2;
    padding: 25px;
    border-radius: 8px;
    border-top: 4px solid #AE8D73;
}

.ip-shipping-card-title {
    color: #79604F;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 600;
}

.ip-shipping-card-content {
    color: #333;
    line-height: 1.6;
}

/* Country List */
.ip-country-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.ip-country-item {
    padding: 12px;
    background-color: #fff;
    border: 1px solid #ede9e6;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
}

.ip-country-item:hover {
    border-color: #AE8D73;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Shipping Table */
.ip-table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
}

.ip-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.ip-table thead {
    background-color: #AE8D73;
    color: #fff;
}

.ip-table th,
.ip-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ede9e6;
}

.ip-table th {
    font-weight: 600;
}

.ip-table tbody tr:hover {
    background-color: #f9f5f2;
}

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

@media (max-width: 768px) {
    .ip-table th,
    .ip-table td {
        padding: 10px;
        font-size: 0.9em;
    }
}

/* ============================================
   INDEX PAGE SPECIFIC STYLES
   ============================================ */

/* Index Page Container Override */
.ip-info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px;
}

/* Index Header */
.ip-info-header {
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
}

.ip-info-icon-large {
    width: 80px;
    height: 80px;
    fill: #8B6F47;
    opacity: 0.9;
    animation: float 3s ease-in-out infinite;
}
.ip-info-icon-small {
    width: 40px;
    height: 40px;
    fill: #8B6F47;
    opacity: 0.9;
    animation: float 3s ease-in-out infinite;
}

.ip-info-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin:0;
    margin-bottom: 16px;

    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.ip-info-subtitle {
    font-size: 1.125rem;
    color: #57534E;
    max-width: 700px;
    margin: 0 auto;
}

/* Highlights Banner */
.ip-highlights-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.ip-highlight-item {
    background: linear-gradient(135deg, #8B6F47, #6B5437);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ip-highlight-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    fill: white;
    opacity: 0.6;
}

.ip-highlight-title {
    font-size: 1.125rem;
    font-weight: 700;
    color:#fff;
    margin-bottom: 8px;
}

.ip-highlight-text {
    font-size: 0.9375rem;
    opacity: 0.95;
}

/* Section Divider for Index */
.ip-section-divider-index {
    text-align: center;
    margin: 48px 0 32px;
}

.ip-section-divider-index h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #6B5437;
    margin-bottom: 16px;
}

.ip-section-divider-index p {
    color: #57534E;
    font-size: 1.0625rem;
}

/* Info Grid */
.ip-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.ip-info-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.ip-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.ip-info-card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    fill: #8B6F47;
}

.ip-info-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.ip-info-card-description {
    color: #57534E;
    line-height: 1.7;
    margin-bottom: 24px;
}

.ip-info-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8B6F47;
    font-weight: 600;
    font-size: 0.9375rem;
}

.ip-info-card-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.ip-info-card:hover .ip-info-card-link svg {
    transform: translateX(4px);
}

/* Featured Card */
.ip-featured-card {
    background: linear-gradient(135deg, #A68A5E, #D4A574);
    color: white;
}

.ip-featured-card .ip-info-card-icon {
    fill: white;
}

.ip-featured-card .ip-info-card-title {
    color: white;
}

.ip-featured-card .ip-info-card-description {
    color: white;
    opacity: 0.95;
}

.ip-featured-card .ip-info-card-link {
    color: white;
}

/* CTA Section for Index */
.ip-cta-section {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-top: 48px;
}

.ip-cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #6B5437;
    margin-bottom: 24px;
}

.ip-cta-text {
    font-size: 1.0625rem;
    color: #57534E;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Note: .ip-cta-buttons and .ip-cta-button styles are defined in GLOBAL CTA SECTION at top of file */

/* Index Page Responsive */
@media (max-width: 768px) {
    .ip-info-container {
        padding: 24px 16px;
    }

    .ip-info-title {
        font-size: 2rem;
    }

    .ip-info-grid {
        grid-template-columns: 1fr;
    }

    .ip-highlights-banner {
        grid-template-columns: 1fr;
    }

    .ip-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .ip-cta-button {
        width: 100%;
        text-align: center;
    }
}

/* Index Page Animations */
@keyframes ip-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ip-info-card,
.ip-highlight-item,
.ip-cta-section {
    animation: ip-fadeInUp 0.6s ease-out;
}

.ip-info-card:nth-child(1) { animation-delay: 0.1s; }
.ip-info-card:nth-child(2) { animation-delay: 0.2s; }
.ip-info-card:nth-child(3) { animation-delay: 0.3s; }
.ip-info-card:nth-child(4) { animation-delay: 0.4s; }
.ip-info-card:nth-child(5) { animation-delay: 0.5s; }
.ip-info-card:nth-child(6) { animation-delay: 0.6s; }

/* ============================================
   INTERNATIONAL ORDERS V2 PAGE STYLES
   ============================================ */

/* Container */
.intl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

/* Hero Section - Light Version */
.intl-hero {
    text-align: center;
    padding: 10px;
    position: relative;
}

.intl-hero-content {
    position: relative;
    z-index: 1;
}

.intl-hero-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    fill: #8B6F47;
    opacity: 0.9;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.intl-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.intl-hero-subtitle {
    font-size: 1.25rem;
    color: #4a4a4a;
    font-weight: 400;
}

/* Intro Banner */
.intl-intro-banner {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    margin-bottom: 60px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.06);
}

.intl-intro-banner-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.intl-intro-icon {
    width: 32px;
    height: 32px;
    fill: #8B6F47;
    opacity: 0.9;
    animation: float 3s ease-in-out infinite;
    flex-shrink: 0;
}

.intl-intro-banner h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #8B6F47;
    margin: 0;
}

.intl-intro-banner p {
    font-size: 1.125rem;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Section Title */
.intl-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2em;
    margin-top: 3em;
    text-align: center;
}

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

/* Step Cards */
.intl-steps {
    display: grid;
    gap: 24px;
    margin-bottom: 60px;
}

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

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

.intl-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.5rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

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

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

.intl-step-content strong {
    color: #8B6F47;
}

/* Alert Box */
.intl-alert {
    background: linear-gradient(135deg, #FFF4E6 0%, #FFE8CC 100%);
    border-left: 4px solid #FF9800;
    border-radius: 12px;
    padding: 24px 28px;
    margin: 32px 0;
    box-shadow: 0 4px 16px rgba(255, 152, 0, 0.15);
}

.intl-alert-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #E65100;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.intl-alert-icon {
    width: 24px;
    height: 24px;
    fill: #FF9800;
}

.intl-alert p {
    font-size: 1rem;
    color: #5D4037;
    line-height: 1.7;
}

/* Feature Grid */
.intl-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 60px 0;
}

.intl-feature-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    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;
}

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

.intl-feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    fill: #8B6F47;
}

.intl-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.intl-feature-card p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Info Cards */
.intl-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

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

.intl-info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #8B6F47;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.intl-info-icon {
    width: 28px;
    height: 28px;
    fill: #8B6F47;
}

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

.intl-info-card a {
    color: #8B6F47;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.intl-info-card a:hover {
    color: #6B5436;
    text-decoration: underline;
}

/* Highlight Section */
.intl-highlight {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin: 60px 0;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.intl-highlight h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 16px;
}

.intl-highlight p {
    font-size: 1.125rem;
    color: #1B5E20;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.intl-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.intl-cta p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.intl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    line-height: 1;
}

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

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

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

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

.intl-btn-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Responsive */
@media (max-width: 768px) {
    .intl-hero {
        padding: 10px;
        margin: 0 -24px 40px;
    }
    
    .intl-hero h1 {
        font-size: 2rem;
    }
    
    .intl-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .intl-intro-banner {
        padding: 28px 24px;
    }
    
    .intl-section-title {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }
    
    .intl-step-card {
        grid-template-columns: 1fr;
        padding: 24px;
        text-align: center;
    }
    
    .intl-step-number {
        margin: 0 auto 16px;
    }
    
    .intl-features {
        grid-template-columns: 1fr;
    }
    
    .intl-info-cards {
        grid-template-columns: 1fr;
    }
    
    .intl-cta {
        padding: 40px 20px;
    }
    
    .intl-cta h2 {
        font-size: 1.5rem;
    }
    
    .intl-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .intl-btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.ip-text-center {
    text-align: center;
}

.ip-text-left {
    text-align: left;
}

.ip-text-right {
    text-align: right;
}

.ip-mt-small {
    margin-top: 15px;
}

.ip-mt-medium {
    margin-top: 30px;
}

.ip-mt-large {
    margin-top: 50px;
}

.ip-mb-small {
    margin-bottom: 15px;
}

.ip-mb-medium {
    margin-bottom: 30px;
}

.ip-mb-large {
    margin-bottom: 50px;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 768px) {
    .ip-hide-mobile {
        display: none;
    }
}

@media (min-width: 769px) {
    .ip-hide-desktop {
        display: none;
    }
}

/* ============================================
   CONTACT US PAGE V2 STYLES
   ============================================ */
.ip-contact-container { max-width: 1200px; margin: 0 auto; padding: 0 24px 0px; }

.ip-contact-hero { text-align: center; padding:10px; margin-bottom: 40px; }
.ip-contact-hero h1 { margin:0; font-size: 3rem; font-weight: 800; color: #1a1a1a; margin-bottom: 16px; letter-spacing: -0.02em; }
.ip-contact-hero-subtitle { font-size: 1.25rem; color: #4a4a4a; max-width: 700px; margin: 0 auto; }

.ip-contact-methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-bottom: 60px; }
.ip-contact-card {text-align:center; background: white; border-radius: 16px; padding: 40px; 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; position: relative; overflow: hidden; }
.ip-contact-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #8B6F47, #D4A574); }
.ip-contact-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.ip-contact-card-icon { width: 56px; height: 56px; margin: 0 auto 24px; fill: #8B6F47; }
.ip-contact-card h3 { font-size: 1.5rem; font-weight: 700; color: #1a1a1a; margin-bottom: 16px; text-align: center; }
.ip-contact-card-content { text-align: center; color: #4a4a4a; }
.ip-contact-card-content strong { color: #1a1a1a; font-weight: 600; }
.ip-contact-card-content a { color: #8B6F47; text-decoration: none; font-weight: 600; transition: color 0.3s ease; }
.ip-contact-card-content a:hover { color: #6B5436; text-decoration: underline; }

.ip-contact-note { margin-top: 16px; font-size: 0.9375rem; color: #6a6a6a; }
.ip-contact-note-spaced { margin-bottom: 20px; }
.ip-contact-phone { font-size: 1rem; margin-bottom: 12px; }
.ip-contact-email { font-size: 1.25rem; margin-bottom: 12px; }
.ip-contact-spacer { margin-top: 20px; }
.ip-contact-inline-icon { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

.ip-contact-hours { background: #f8f6f4; border-radius: 8px; padding: 16px; margin-top: 16px; }

.ip-contact-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 32px; margin-bottom: 60px; }
.ip-contact-section { font-weight:  300; background: white; border-radius: 16px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.06); }
.ip-contact-section h2 { font-size: 1.75rem; font-weight: 700; color: #1a1a1a; margin-bottom: 24px; }
.ip-contact-section h2::after { content: ''; display: block; width: 40px; height: 3px; background: linear-gradient(90deg, #8B6F47, #D4A574); margin-top: 12px; border-radius: 2px; }
.ip-contact-section p { color: #4a4a4a; margin-bottom: 16px; line-height: 1.7; font-weight: 500;}
.ip-contact-section ul { list-style: none; padding: 0; }
.ip-contact-section li { padding: 8px 0; color: #4a4a4a; display: flex; align-items: start; }
.ip-contact-section li::before { content: '\2713'; color: #8B6F47; font-weight: 700; margin-right: 12px; font-size: 1.125rem; }

.ip-contact-map { background: white; border-radius: 16px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.06); margin-bottom: 60px; }
.ip-contact-map h2 { font-size: 2rem; font-weight: 700; color: #1a1a1a; margin-bottom: 16px; text-align: center; }
.ip-contact-map-subtitle { text-align: center; color: #4a4a4a; margin-bottom: 32px; font-size: 1.125rem; }
.ip-contact-map iframe { width: 100%; height: 450px; border: none; border-radius: 12px; }

.ip-contact-social { background: white; border-radius: 16px; padding: 48px 40px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.06); margin-bottom: 60px; }
.ip-contact-social h2 { font-size: 1.75rem; font-weight: 700; color: #1a1a1a; margin-bottom: 16px; }
.ip-contact-social p { color: #4a4a4a; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.ip-contact-social-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.ip-contact-btn {color: #6B5436;  display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 10px; font-size: 1rem; font-weight: 600; text-decoration: none; transition: all 0.3s ease; background: white; color: #8B6F47; border: 2px solid #8B6F47; }
.ip-contact-btn:hover { background: #8B6F47; color: white; transform: translateY(-2px); }
.ip-contact-btn-primary { background: linear-gradient(135deg, #8B6F47, #6B5436); color: white; border: none; box-shadow: 0 4px 12px rgba(107, 84, 54, 0.3); }
.ip-contact-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(107, 84, 54, 0.4); background: linear-gradient(135deg, #6B5436, #5a4429); }
.ip-contact-btn.ip-contact-btn-primary {color: #fff;  }
.ip-contact-btn.ip-contact-btn-primary:hover {color: #fff;  }

.ip-contact-testimonial { background: linear-gradient(135deg, #8B6F47, #6B5436); border-radius: 16px; padding: 48px; color: white; text-align: center; box-shadow: 0 8px 32px rgba(0,0,0,0.12); position: relative; overflow: hidden; }
.ip-contact-testimonial::before { content: ''; position: absolute; top: -50%; right: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); pointer-events: none; }
.ip-contact-testimonial-icon { width: 56px; height: 56px; margin: 0 auto 24px; fill: white; opacity: 0.9; }
.ip-contact-testimonial-quote { font-size: 1.25rem; font-weight: 500; line-height: 1.7; margin-bottom: 24px; font-style: italic; position: relative; z-index: 1; max-width: 800px; margin-left: auto; margin-right: auto; }
.ip-contact-testimonial-author { font-size: 1.0625rem; font-weight: 600; opacity: 0.95; position: relative; z-index: 1; margin-bottom: 24px; }
.ip-contact-testimonial-link { display: inline-block; margin-top: 16px; padding: 12px 24px; background: white; color: #8B6F47; border-radius: 8px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; position: relative; z-index: 1; }
.ip-contact-testimonial-link:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }

@media (max-width: 768px) {
    .ip-contact-hero h1 { font-size: 2rem; }
    .ip-contact-hero-subtitle { font-size: 1.125rem; }
    .ip-contact-methods { grid-template-columns: 1fr; }
    .ip-contact-info-grid { grid-template-columns: 1fr; }
    .ip-contact-map { padding: 24px; }
    .ip-contact-map iframe { height: 300px; }
    .ip-contact-testimonial { padding: 32px 24px; }
    .ip-contact-testimonial-quote { font-size: 1.0625rem; }
    .ip-contact-social-buttons { flex-direction: column; align-items: stretch; }
    .ip-contact-btn { width: 100%; max-width: 100%; justify-content: center; box-sizing: border-box; }
}

@keyframes ip-contact-fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.ip-contact-card, .ip-contact-section, .ip-contact-map, .ip-contact-social, .ip-contact-testimonial { animation: ip-contact-fadeInUp 0.6s ease-out; }
.ip-contact-card:nth-child(1) { animation-delay: 0.1s; }
.ip-contact-card:nth-child(2) { animation-delay: 0.2s; }
.ip-contact-card:nth-child(3) { animation-delay: 0.3s; }

/* ============================================
   REFUND & RETURN POLICY PAGE V2 STYLES
   ============================================ */
.ip-policy-container { max-width: 1200px; margin: 0 auto; padding: 0 24px 0px; }

.ip-policy-hero { text-align: center; padding: 10px; margin-bottom: 60px; }
.ip-policy-hero h1 { font-size: 3rem; font-weight: 800; color: #1a1a1a; margin-bottom: 16px; letter-spacing: -0.02em; }
.ip-policy-hero-subtitle { font-size: 1.25rem; color: #4a4a4a; max-width: 700px; margin: 0 auto; }

.ip-policy-alert { background: linear-gradient(135deg, #FFF4E6 0%, #FFE8CC 100%); border-left: 4px solid #FF9800; border-radius: 12px; padding: 24px 28px; margin-bottom: 60px; box-shadow: 0 4px 16px rgba(255, 152, 0, 0.15); }
.ip-policy-alert-title { font-size: 1.25rem; font-weight: 700; color: #E65100; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.ip-policy-alert-icon { width: 24px; height: 24px; fill: #FF9800; }
.ip-policy-alert p { font-size: 1rem; color: #5D4037; line-height: 1.7; margin: 0; }

.ip-policy-box { background: white; border-radius: 16px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.06); margin-bottom: 32px; transition: all 0.3s ease; position: relative; overflow: hidden; }
.ip-policy-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #8B6F47, #D4A574); }
.ip-policy-box:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }

.ip-policy-box h2 { font-size: 1.75rem; font-weight: 700; color: #1a1a1a; margin-bottom: 24px; }
.ip-policy-box h2::after { content: ''; display: block; width: 40px; height: 3px; background: linear-gradient(90deg, #8B6F47, #D4A574); margin-top: 12px; border-radius: 2px; }

.ip-policy-box h3 { font-size: 1.25rem; font-weight: 600; color: #8B6F47; margin: 24px 0 16px; }

.ip-policy-box p { color: #4a4a4a; margin-bottom: 16px; line-height: 1.7; font-size: 1rem; }
.ip-policy-box p:last-child { margin-bottom: 0; }
.ip-policy-box p strong { color: #1a1a1a; font-weight: 600; }

.ip-policy-box ul, .ip-policy-box ol { list-style: none; padding: 0; margin: 16px 0; }
.ip-policy-box li { padding: 12px 0 12px 40px; color: #4a4a4a; position: relative; line-height: 1.7; font-size: 1rem; }
.ip-policy-box ul li::before { content: '\2713'; position: absolute; left: 0; top: 12px; color: #4CAF50; font-weight: 700; font-size: 1.25rem; width: 28px; height: 28px; background: #f8f6f4; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.ip-policy-box .ip-unsupported-list li::before { content: '\2715'; color: #D32F2F; background: #FFEBEE; font-size: 1.125rem; }
.ip-policy-box ol { counter-reset: policy-counter; }
.ip-policy-box ol li::before { content: counter(policy-counter); counter-increment: policy-counter; position: absolute; left: 0; top: 12px; color: white; background: linear-gradient(135deg, #8B6F47, #6B5436); font-weight: 700; font-size: 0.875rem; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

.ip-policy-note { background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%); border-left: 4px solid #4CAF50; border-radius: 12px; padding: 20px 24px; margin: 24px 0; box-shadow: 0 2px 8px rgba(76, 175, 80, 0.15); }
.ip-policy-note p { color: #1B5E20; margin: 0; }
.ip-policy-note strong { color: #2E7D32; }

.ip-dmg-note { background: linear-gradient(135deg, #FFEBEE 0%, #FFF 100%); border-left: 4px solid #D32F2F; border-radius: 12px; padding: 20px 24px; margin: 24px 0; box-shadow: 0 2px 8px rgba(76, 175, 80, 0.15); }
.ip-dmg-note p { color: #D32F2F; margin: 0; }
.ip-dmg-note strong { color: #D32F2F; }

.ip-policy-link { color: #8B6F47; text-decoration: none; font-weight: 600; transition: color 0.3s ease; }
.ip-policy-link:hover { color: #6B5436; text-decoration: underline; }

.ip-policy-cta { background: white; border-radius: 16px; padding: 60px 40px; text-align: center; box-shadow: 0 8px 32px rgba(0,0,0,0.08); margin-top: 60px; border: 1px solid rgba(0,0,0,0.06); }
.ip-policy-cta h2 { font-size: 2rem; font-weight: 700; color: #1a1a1a; margin-bottom: 16px; }
.ip-policy-cta p { font-size: 1.125rem; color: #4a4a4a; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.ip-policy-cta-button { display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px; background: linear-gradient(135deg, #8B6F47, #6B5436); color: white; text-decoration: none; border-radius: 12px; font-size: 1.0625rem; font-weight: 600; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(107, 84, 54, 0.3); }
.ip-policy-cta-button:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(107, 84, 54, 0.4); }

@media (max-width: 768px) {
    .ip-policy-hero h1 { font-size: 2rem; }
    .ip-policy-hero-subtitle { font-size: 1.125rem; }
    .ip-policy-box { padding: 24px; }
    .ip-policy-box h2 { font-size: 1.5rem; }
    .ip-policy-cta { padding: 40px 20px; }
    .ip-policy-cta h2 { font-size: 1.5rem; }
    .ip-policy-cta-button { width: 100%; max-width: 100%; justify-content: center; box-sizing: border-box; }
}

@keyframes ip-policy-fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.ip-policy-box, .ip-policy-alert, .ip-policy-cta { animation: ip-policy-fadeInUp 0.6s ease-out; }
.ip-policy-box:nth-child(1) { animation-delay: 0.1s; }
.ip-policy-box:nth-child(2) { animation-delay: 0.2s; }
.ip-policy-box:nth-child(3) { animation-delay: 0.3s; }
.ip-policy-box:nth-child(4) { animation-delay: 0.4s; }

/* ============================================
   TESTIMONIALS PAGE (ORIGINAL) STYLES
   ============================================ */
.test-container { max-width: 1200px; margin: 0 auto; padding: 0 24px 80px; }

.test-hero { text-align: center; padding: 10px; margin-bottom: 60px; }
.test-hero h1 { font-size: 3rem; font-weight: 800; color: #1a1a1a; margin-bottom: 16px; letter-spacing: -0.02em; }
.test-hero-subtitle { font-size: 1.25rem; color: #4a4a4a; max-width: 700px; margin: 0 auto; }

.test-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-bottom: 60px; }
.test-stat-card { background: white; border-radius: 16px; padding: 32px; text-align: center; 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; position: relative; overflow: hidden; }
.test-stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #8B6F47, #D4A574); }
.test-stat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.test-stat-icon { width: 48px; height: 48px; margin: 0 auto 16px; fill: #8B6F47; }
.test-stat-number { font-size: 2rem; font-weight: 800; color: #1a1a1a; display: block; margin-bottom: 8px; }
.test-stat-label { font-size: 0.9375rem; color: #4a4a4a; font-weight: 500; }

.test-featured { background: linear-gradient(135deg, #8B6F47, #6B5436); border-radius: 16px; padding: 48px; color: white; text-align: center; box-shadow: 0 8px 32px rgba(0,0,0,0.12); margin-bottom: 60px; position: relative; overflow: hidden; }
.test-featured::before { content: ''; position: absolute; top: -50%; right: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); pointer-events: none; }
.test-featured-icon { width: 56px; height: 56px; margin: 0 auto 24px; fill: white; opacity: 0.9; }
.test-featured-quote { font-size: 1.375rem; font-weight: 500; line-height: 1.7; margin-bottom: 24px; font-style: italic; position: relative; z-index: 1; max-width: 900px; margin-left: auto; margin-right: auto; }
.test-featured-author { font-size: 1.125rem; font-weight: 600; opacity: 0.95; position: relative; z-index: 1; }

.test-section-title { font-size: 2rem; font-weight: 700; color: #1a1a1a; margin-bottom: 48px; text-align: center; }
.test-section-title::after { content: ''; display: block; width: 60px; height: 4px; background: linear-gradient(90deg, #8B6F47, #D4A574); margin: 16px auto 0; border-radius: 2px; }

.test-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; margin-bottom: 60px; }
.test-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); transition: all 0.3s ease; }
.test-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.test-card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.test-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, #8B6F47, #6B5436); color: white; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 700; flex-shrink: 0; }
.test-card-name { font-size: 1.125rem; font-weight: 700; color: #1a1a1a; margin: 0; }
.test-card-text { font-size: 1rem; color: #4a4a4a; line-height: 1.7; }
.test-card-rating { margin-top: 16px; display: inline-block; font-size: 16px; color: #FFB800; letter-spacing: 2px; }
.test-card-rating::before { content: '\2605\2605\2605\2605\2605'; }

.test-cta { background: white; border-radius: 16px; padding: 60px 40px; text-align: center; box-shadow: 0 8px 32px rgba(0,0,0,0.08); margin-top: 60px; border: 1px solid rgba(0,0,0,0.06); }
.test-cta h2 { font-size: 2rem; font-weight: 700; color: #1a1a1a; margin-bottom: 16px; }
.test-cta p { font-size: 1.125rem; color: #4a4a4a; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.test-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.test-btn { display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px; border-radius: 12px; font-size: 1.0625rem; font-weight: 600; text-decoration: none; transition: all 0.3s ease; }
.test-btn-primary { background: linear-gradient(135deg, #8B6F47, #6B5436); color: white; box-shadow: 0 4px 12px rgba(107, 84, 54, 0.3); }
.test-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(107, 84, 54, 0.4); }
.test-btn-secondary { background: white; color: #8B6F47; border: 2px solid #8B6F47; }
.test-btn-secondary:hover { background: #8B6F47; color: white; }

@media (max-width: 768px) {
    .test-hero h1 { font-size: 2rem; }
    .test-hero-subtitle { font-size: 1.125rem; }
    .test-stats { grid-template-columns: 1fr; }
    .test-featured { padding: 32px 24px; }
    .test-featured-quote { font-size: 1.125rem; }
    .test-section-title { font-size: 1.5rem; }
    .test-grid { grid-template-columns: 1fr; }
    .test-cta { padding: 40px 20px; }
    .test-cta h2 { font-size: 1.5rem; }
    .test-cta-buttons { flex-direction: column; align-items: stretch; }
    .test-btn { width: 100%; max-width: 100%; justify-content: center; box-sizing: border-box; }
}

@keyframes test-fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.test-stat-card, .test-featured, .test-card { animation: test-fadeInUp 0.6s ease-out; }
.test-stat-card:nth-child(1) { animation-delay: 0.1s; }
.test-stat-card:nth-child(2) { animation-delay: 0.2s; }
.test-stat-card:nth-child(3) { animation-delay: 0.3s; }
.test-stat-card:nth-child(4) { animation-delay: 0.4s; }
