/* horse-skin2.css - Horse Skin Page Specific Styles */
/* Import global styles first in your HTML */

/* Horse Skin Page Color Variables - Using same palette but scoped */
:root {
    --horseskin-olive: #2C7A7B;
    --horseskin-teal: #2f8f83;
    --horseskin-forest: #0f3d2e;
    --horseskin-dark: #1f2937;
    --horseskin-beige: #f1e8d2;
    --horseskin-rust: #a9471c;
    --horseskin-bg-page: linear-gradient(180deg, #f8faf7 0%, #ffffff 100%);
  }
  
  /* HERO SECTION - FIXED FOR HEADER OVERLAP */
  .hero-section {
    padding-top: 8rem;    /* Increased to account for fixed header */
    padding-bottom: 5rem;
    background: var(--horseskin-bg-page);
    margin-top: 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
  }
  
  /* grid: single column mobile, two columns at lg */
  .hero-grid { 
    display: grid; 
    gap: 3rem; 
    align-items: center; 
    grid-template-columns: 1fr;
    width: 100%;
  }
  
  @media (min-width: 1024px) {
    .hero-grid { 
      grid-template-columns: 1fr 1fr; 
      gap: 3rem;
    }
  }
  
  /* fade-in-up animation */
  .fade-in-up { 
    animation: horseSkinFadeInUp 0.6s ease both; 
  }
  
  @keyframes horseSkinFadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* left column - copy */
  .hero-copy { 
    max-width: 720px;
    margin-top: 0;
  }
  
  /* Badge styles for horse skin page */
  .horseskin-badge { 
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem; 
    border-radius: 6px; 
    padding: 0.125rem 0.5rem; 
    font-size: 0.75rem; 
    font-weight: 600; 
  }
  
  .horseskin-badge-intro { 
    background: var(--horseskin-olive); 
    color: #fff; 
    border: 1px solid transparent; 
    margin-bottom: 1.5rem; 
  }
  
  .horseskin-badge-small { 
    background: var(--horseskin-olive); 
    color: #fff; 
    border: 1px solid transparent; 
    margin-top: 1rem; 
  }
  
  /* hero title & lead */
  .hero-title {
    font-size: 2.25rem;
    line-height: 1.03;
    font-weight: 800;
    color: var(--horseskin-forest);
    margin-bottom: 1.25rem;
    margin-top: 0;
  }
  
  @media (min-width: 768px) {
    .hero-title { 
      font-size: 3.75rem;
    }
  }
  
  @media (max-width: 480px) {
    .hero-title { 
      font-size: 1.75rem; 
      line-height: 1.2;
    }
  }
  
  .hero-lead {
    font-size: 1.125rem;
    color: var(--horseskin-dark);
    margin-bottom: 2rem;
    line-height: 1.65;
  }
  
  /* CTA group */
  .cta-group { 
    display: flex; 
    flex-direction: column; 
    gap: 0.75rem; 
  }
  
  @media (min-width: 640px) { 
    .cta-group { 
      flex-direction: row; 
    } 
  }
  
  /* Horse Skin specific buttons - only override what's needed */
  .hero-section .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.6rem 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .hero-section .btn svg { 
    margin-left: 0.4rem; 
  }
  
  .hero-section .btn-primary {
    background: var(--horseskin-olive);
    color: #fff;
  }
  
  .hero-section .btn-primary:hover { 
    opacity: 0.94;
    transform: translateY(-2px);
  }
  
  .hero-section .btn-outline {
    background: transparent;
    border: 1px solid var(--horseskin-teal);
    color: var(--horseskin-teal);
  }
  
  .hero-section .btn-outline:hover {
    background: var(--horseskin-teal);
    color: #fff;
    transform: translateY(-2px);
  }
  
  /* Right column panel */
  .hero-panel { 
    display: flex; 
    justify-content: center;
    margin-top: 0;
  }
  
  .panel-outer {
    width: 100%;
    max-width: 420px;
    border-radius: 28px;
    padding: 2rem;
    background: linear-gradient(135deg, var(--horseskin-teal) 0%, var(--horseskin-olive) 100%);
    box-shadow: 0 20px 40px rgba(14, 16, 18, 0.12);
  }
  
  .panel-inner {
    background: #fff;
    padding: 1.5rem;
    border-radius: 18px;
    text-align: center;
  }
  
  .panel-circle {
    width: 128px; 
    height: 128px; 
    margin: 0 auto 1rem; 
    border-radius: 50%;
    background: var(--horseskin-beige);
    display: flex; 
    align-items: center; 
    justify-content: center;
  }
  
  .icon-horseshield-large { 
    width: 64px; 
    height: 64px; 
    color: var(--horseskin-rust); 
  }
  
  .panel-title { 
    font-size: 1.25rem; 
    font-weight: 700; 
    color: var(--horseskin-forest); 
    margin-bottom: 0.5rem; 
  }
  
  .panel-sub { 
    color: var(--horseskin-dark); 
  }
  
  @media (max-width: 480px) {
    .panel-outer { 
      padding: 1.25rem; 
    }
    
    .hero-section {
      padding-top: 7rem;
      min-height: auto;
    }
    
    .hero-lead {
      font-size: 1rem;
    }
  }
  
  /* Extra small devices */
  @media (max-width: 360px) {
    .hero-section {
      padding-top: 6rem;
    }
    
    .hero-title {
      font-size: 1.5rem;
    }
    
    .cta-group {
      flex-direction: column;
    }
    
    .hero-section .btn {
      width: 100%;
      justify-content: center;
    }
  }
  
  /* Additional responsive adjustments for horse skin page */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2rem;
      line-height: 1.1;
    }
    
    .hero-lead {
      font-size: 1rem;
    }
  }
  
  /* Focus styles for accessibility */
  .hero-section .btn:focus {
    outline: 2px solid var(--horseskin-olive);
    outline-offset: 2px;
  }
  
  /* Smooth transitions */
  .hero-section * {
    transition: all var(--transition);
  }



  /* -------------------------
 Horse Skin Stats Section
 ------------------------- */

.horse-skin-stats-section {
    padding: 4rem 0;
    background: var(--color-gray-50);
  }
  
  .horse-skin-stats-section .stats-grid {
    display: grid;
    gap: 2rem;
    text-align: center;
    grid-template-columns: 1fr;
  }
  
  @media (min-width: 768px) {
    .horse-skin-stats-section .stats-grid { 
      grid-template-columns: repeat(4, 1fr); 
    }
  }
  
  .horse-skin-stats-section .stat-item {
    padding: 0;
  }
  
  .horse-skin-stats-section .stat-value {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
  }
  
  .horse-skin-stats-section .stat-value.rust { color: var(--horseskin-rust); }
  .horse-skin-stats-section .stat-value.teal { color: var(--horseskin-teal); }
  .horse-skin-stats-section .stat-value.olive { color: var(--horseskin-olive); }
  .horse-skin-stats-section .stat-value.forest { color: var(--horseskin-forest); }
  
  .horse-skin-stats-section .stat-text {
    color: var(--horseskin-dark);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
  }
  
  /* Animation for stats */
  @keyframes statCountUp {
    from { 
      opacity: 0;
      transform: translateY(20px);
    }
    to { 
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .horse-skin-stats-section .stat-item.fade-in-up {
    animation: statCountUp 0.8s ease-out both;
  }
  
  .horse-skin-stats-section .stat-item.fade-in-up:nth-child(1) {
    animation-delay: 0.1s;
  }
  
  .horse-skin-stats-section .stat-item.fade-in-up:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .horse-skin-stats-section .stat-item.fade-in-up:nth-child(3) {
    animation-delay: 0.3s;
  }
  
  .horse-skin-stats-section .stat-item.fade-in-up:nth-child(4) {
    animation-delay: 0.4s;
  }
  
  /* Remove hover effects and borders - keep it clean like original */
  .horse-skin-stats-section .stat-item {
    background: transparent;
    box-shadow: none;
    border: none;
    transition: none;
  }
  
  .horse-skin-stats-section .stat-item:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
  }
  
  /* Responsive adjustments for horse stats */
  @media (max-width: 1024px) {
    .horse-skin-stats-section .stats-grid {
      gap: 1.5rem;
    }
  }
  
  @media (max-width: 768px) {
    .horse-skin-stats-section {
      padding: 3rem 0;
    }
    
    .horse-skin-stats-section .stats-grid {
      gap: 1rem;
      grid-template-columns: repeat(2, 1fr);
    }
    
    .horse-skin-stats-section .stat-value {
      font-size: 1.875rem;
    }
    
    .horse-skin-stats-section .stat-text {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    .horse-skin-stats-section .stats-grid {
      grid-template-columns: 1fr;
    }
    
    .horse-skin-stats-section .stat-value {
      font-size: 1.75rem;
    }
  }






  /* -------------------------
 Horse Skin Issues Section
 ------------------------- */

.horse-skin-issues {
    padding: 5rem 0;
  }
  
  .horse-skin-issues .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .horse-skin-issues .section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--horseskin-forest);
    margin-bottom: 1.5rem;
  }
  
  @media (min-width: 768px) {
    .horse-skin-issues .section-header h2 { 
      font-size: 3rem; 
    }
  }
  
  .horse-skin-issues .section-header p {
    font-size: 1.25rem;
    color: var(--horseskin-dark);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  /* grid */
  .issues-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
  }
  
  @media (min-width: 768px) {
    .issues-grid { 
      grid-template-columns: repeat(2, 1fr); 
    }
  }
  
  @media (min-width: 1024px) {
    .issues-grid { 
      grid-template-columns: repeat(3, 1fr); 
    }
  }
  
  /* card */
  .issue-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease;
  }
  
  .issue-card:hover { 
    transform: translateY(-6px); 
  }
  
  .issue-card .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
  }
  
  .issue-card h3 {
    color: var(--horseskin-forest);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 1.5rem;
  }
  
  .issue-card p {
    color: var(--horseskin-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 1.5rem;
  }
  
  /* icon colors */
  .horseskin-icon { 
    width: 2rem; 
    height: 2rem; 
  }
  
  .horseskin-icon.rust { color: var(--horseskin-rust); }
  .horseskin-icon.olive { color: var(--horseskin-olive); }
  .horseskin-icon.teal { color: var(--horseskin-teal); }
  
  /* badge styles */
  .horseskin-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1;
    color: #fff;
  }
  
  .horseskin-badge.high { background: var(--horseskin-olive); }
  .horseskin-badge.severe { background: var(--horseskin-rust); }
  .horseskin-badge.moderate { background: var(--horseskin-teal); }
  
  /* solution box */
  .solution-box {
    margin-top: 4rem;
    background: var(--horseskin-rust);
    color: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
  }
  
  .solution-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .solution-box p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #fff;
  }




  /* -------------------------
 Horse Skin Ingredients Section
 ------------------------- */

.horse-skin-ingredients {
    padding: 5rem 0;
    background: var(--color-gray-50);
  }
  
  .horse-skin-ingredients .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .horse-skin-ingredients .section-header .section-badge {
    display: inline-flex;
    align-items: center;
    background: var(--horseskin-olive);
    color: #fff;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
  }
  
  .horse-skin-ingredients .section-header .section-badge .horseskin-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
  }
  
  .horse-skin-ingredients .section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--horseskin-forest);
    margin-bottom: 1.5rem;
  }
  
  @media (min-width: 768px) {
    .horse-skin-ingredients .section-header h2 { 
      font-size: 3rem; 
    }
  }
  
  .horse-skin-ingredients .section-header p {
    font-size: 1.25rem;
    color: var(--horseskin-dark);
    max-width: 48rem;
    margin: 0 auto;
  }
  
  /* grid */
  .ingredients-grid {
    display: grid;
    gap: 3rem;
  }
  
  @media (min-width: 1024px) {
    .ingredients-grid { 
      grid-template-columns: repeat(2, 1fr); 
    }
  }
  
  /* card */
  .ingredient-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease;
  }
  
  .ingredient-card:hover { 
    transform: translateY(-6px); 
  }
  
  .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
  }
  
  .ingredient-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--horseskin-forest);
    margin: 0 1.5rem;
  }
  
  .ingredient-card .subtitle {
    margin: 0 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
  }
  
  .subtitle.teal { color: var(--horseskin-teal); }
  
  .card-body { 
    padding: 0 1.5rem; 
  }
  
  .card-body p { 
    margin-bottom: 1rem; 
    color: var(--horseskin-dark); 
    line-height: 1.6; 
  }
  
  /* highlights */
  .highlight {
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .highlight.beige { background: var(--horseskin-beige); }
  .highlight.white { background: #fff; }
  .teal-border { border-left: 4px solid var(--horseskin-teal); }
  
  .highlight h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--horseskin-forest);
    margin-bottom: 0.5rem;
  }
  
  .highlight p { 
    font-size: 0.85rem; 
  }
  
  /* check info */
  .card-check {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.9rem;
  }
  
  .card-check.teal { color: var(--horseskin-teal); }
  
  /* endorsement box */
  .endorsement-box {
    margin-top: 4rem;
    background: linear-gradient(135deg, var(--horseskin-dark), var(--horseskin-forest));
    color: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
  }
  
  .endorsement-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
  }
  
  .endorsement-box p { 
    margin-bottom: 1rem; 
    color: rgba(255, 255, 255, 0.9);
  }
  
  .endorsement-box .author { 
    font-size: 0.9rem; 
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.8);
  }




  /* -------------------------
 Horse Skin Protection Section
 ------------------------- */

.horse-skin-protection-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1c3d32, #162b26);
    color: #fff;
    text-align: center;
  }
  
  .horse-skin-protection-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--horseskin-rust);
    color: #fff;
    border-radius: 8px;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
  }
  
  .horse-skin-protection-section .section-badge .horseskin-icon {
    width: 20px;
    height: 20px;
  }
  
  .horse-skin-protection-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
  }
  
  .horse-skin-protection-section .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  /* Benefits Row */
  .benefits-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }
  
  .benefit .horseskin-icon-lg {
    width: 32px;
    height: 32px;
    margin-bottom: 0.5rem;
  }
  
  .horse-skin-protection-section .benefit h3 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #fff;
  }
  
  .horse-skin-protection-section .benefit p {
    font-size: 0.875rem;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.8);
  }
  
  /* Product Options */
  .formula-box {
    background: rgba(169, 68, 54, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .horse-skin-protection-section .formula-box h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #fff;
  }
  
  .formula-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .product-option {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
  }
  
  .product-option:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
  }
  
  .product-option h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
  }
  
  .product-option .supply {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--horseskin-beige);
    margin: 0;
  }
  
  .product-option .description {
    font-size: 1rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    flex-grow: 1;
  }
  
  .product-option .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
  }
  
  /* CTA Buttons */
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  @media (min-width: 640px) {
    .cta-buttons {
      flex-direction: row;
    }
  }
  
  .horse-skin-protection-section .btn {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .horse-skin-protection-section .btn.rust {
    background: var(--horseskin-rust);
    color: #fff;
    border: none;
  }
  
  .horse-skin-protection-section .btn.rust:hover {
    background: #8b372c;
    transform: translateY(-2px);
  }
  
  .horse-skin-protection-section .btn.outline {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
  }
  
  .horse-skin-protection-section .btn.outline:hover {
    background: #fff;
    color: #1c3d32;
    transform: translateY(-2px);
  }
  
  .horse-skin-protection-section .disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .horse-skin-protection-section {
      padding: 3rem 0;
    }
    
    .horse-skin-protection-section h2 {
      font-size: 2rem;
    }
    
    .horse-skin-protection-section .lead {
      font-size: 1.125rem;
    }
    
    .benefits-box {
      padding: 1.5rem;
      gap: 1rem;
    }
    
    .formula-box {
      padding: 1.5rem;
    }
    
    .formula-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .product-option {
      padding: 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .horse-skin-protection-section {
      padding-left: 1rem;
      padding-right: 1rem;
    }
    
    .cta-buttons {
      flex-direction: column;
    }
    
    .horse-skin-protection-section .btn {
      width: 100%;
    }
  }