/* ============================= */
/* Globala premium-stilar för produkter */
/* ============================= */

/* Stycken och listor i produktbeskrivning */
.product-description p,
.product-description li {
  line-height: 1.7;
  color: #333;
  margin-bottom: 1rem;
}

.product-description ul {
  margin-left: 1.5rem;
  padding-left: 0;
}

/* Sektionstitlar (Ingredienser, Instruktioner osv.) */
.section-title {
  font-size: 1.3rem;
  font-weight: 600;
  background: linear-gradient(90deg, #fb9632, #ff6a13); /* orange gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 2px solid #fb9632;
  display: inline-block;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Lista över ingredienser */
.product-description ul li {
  font-size: 0.95rem;
  color: #555;
}

/* Responsiv justering */
@media (max-width: 768px) {
  .product-description p,
  .product-description li {
    font-size: 14px;
    line-height: 1.6;
  }

  .section-title {
    font-size: 1.15rem;
  }
}

hr.gradient {
  height: 2px;
  border: none;
  border-radius: 6px;
  display: block;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(251, 150, 50, 0.6) 20%,
    rgba(255, 106, 19, 1) 50%,
    rgba(251, 150, 50, 0.6) 80%,
    rgba(0, 0, 0, 0) 100%
  );
}
<style>
.boot-selector {
    max-width: 700px;
    margin: auto;
    font-family: Arial, sans-serif;
}

.boot-selector details {
    margin-bottom: 15px;
    border: 1px solid #dcdcdc;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.boot-selector summary {
    padding: 16px 20px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    list-style: none;
    position: relative;
}

.boot-selector summary::-webkit-details-marker {
    display: none;
}

/* Plus/minus ikon */
.boot-selector summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 22px;
}

.boot-selector details[open] summary::after {
    content: "−";
}

.boot-selector img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-top: 1px solid #eee;
}
</style>

<!DOCTYPE html>
<html lang="sv">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Välj rätt storlek – Flex Hoof Boots</title>

<style>
    body {
        font-family: Arial, sans-serif;
        line-height: 1.7;
        color: #333;
        margin: 0;
        padding: 0;
        background: #f8f8f8;
    }

    .container {
        max-width: 1100px;
        margin: auto;
        padding: 40px 20px;
    }

    h1, h2, h3 {
        color: #1f1f1f;
        margin-top: 0;
    }

    h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    h2 {
        font-size: 18px;
        margin-bottom: 15px;
        margin-top: 60px;
    }

    h3 {
        font-size: 14px;
        margin-bottom: 15px;
        margin-top: 40px;
    }

    p {
        margin-bottom: 20px;
    }

    .hero {
        background: #ffffff;
        border-radius: 18px;
        padding: 50px;
        margin-bottom: 40px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }

    .section {
        background: #ffffff;
        border-radius: 18px;
        padding: 40px;
        margin-bottom: 35px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }

    .image-wrapper {
        margin: 30px 0;
        text-align: center;
    }

    .image-wrapper img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .info-box {
        background: #f1f6f2;
        border-left: 5px solid #5a7f62;
        padding: 20px;
        margin: 25px 0;
        border-radius: 10px;
    }

    .warning-box {
        background: #fff4f4;
        border-left: 5px solid #c94f4f;
        padding: 20px;
        margin: 25px 0;
        border-radius: 10px;
    }

    ul {
        padding-left: 20px;
    }

    li {
        margin-bottom: 10px;
    }

    .step-number {
        display: inline-block;
        background: #5a7f62;
        color: white;
        width: 42px;
        height: 42px;
        text-align: center;
        line-height: 42px;
        border-radius: 50%;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .cta-box {
        background: #222;
        color: white;
        padding: 40px;
        border-radius: 18px;
        margin-top: 50px;
    }

    .cta-box h2 {
        color: white;
        margin-top: 0;
    }

    @media (max-width: 768px) {
        .hero,
        .section,
        .cta-box {
            padding: 25px;
        }

        h1 {
            font-size: 24px;
        }

        h2 {
            font-size: 18px;
        }

        h3 {
            font-size: 14px;
        }
    }
</style>
</head>
.steps-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
    margin-top:30px;
}

.step-card {
    background:#fafafa;
    border-radius:12px;
    padding:25px;
}

.dos-donts-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

@media (max-width:768px){

    .dos-donts-grid {
        grid-template-columns:1fr;
    }

}.video-card {
    margin-bottom: 40px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}.video-card-vertical {
    max-width: 500px;
    margin: 0 auto 40px auto;
}

.video-wrapper-vertical {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.video-wrapper-vertical iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}