/* =========================================================
   Project: Colesterolo.co.uk – Premium Domain Landing Page
   Author: Sunny Assist (Giada)
   Role: UI/UX & Front-End Development
   Notes:
     - Mobile-first, responsive layout
     - Custom hero (festive lights, snow overlay, watermark)
     - Structured CTA + price card + menu components
     - Clean typography system + consistent spacing scale
   Technologies: HTML5, CSS3 (no frameworks)
   Last updated: 2026-01-11
========================================================= */


/* =========================================================
   1) Print header (print-only layout)
   ========================================================= */

/* Hidden on screen, shown only inside @media print */
.print-header {
  display: none;
}

/* =========================================================
   2) CSS Variables
   ========================================================= */
:root {
    /* Palette */
    --lemon: #FFF3C2;       /* soft lemon (meta theme-color) */
    --yellow: #FFFF00;      /* tiny badge highlight */
    --strawberry: #E25E3E;  /* primary accent (headings, CTAs, links) */
    --pistachio: #2FB88A;   /* accent green (h4, dish titles, alt buttons) */
    --mango: #CC5533;       /* secondary accent (fallback) */
    --cream: #FFF9E7;       /* soft section bg / chips */
    --line: #F2E6D1;        /* borders / separators */
    --ink: #444;            /* body text */

    /* Footer palette */
    --footer-credit: #666666;  /* "Crafted by" text */
    --footer-legal: #777777;   /* legal disclaimer text */

    /* Radius & shadow */
    --radius: 16px;
    --radius-lg: 22px;
    --shadow: 0 6px 18px rgba(0, 0, 0, .06);
}

/* =========================================================
   3) Base / Reset
   ========================================================= */
html {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-kerning: normal;
    font-variant-ligatures: common-ligatures;
    font-feature-settings: "liga", "kern";
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--ink);
    background: linear-gradient(180deg, #fff, #f9f6f2, #f0ebe5);
    text-align: justify;
}

/* Media elements */
img,
svg,
video,
canvas {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================================
   4) Typography & Links
   ========================================================= */
h1,
h2,
h3,
h4 {
    font-family: "Open Sans", sans-serif;
    margin: 0 0 8px;
}

h1 {
    color: var(--strawberry);
    font-size: clamp(34px, 5.2vw, 64px);
    font-weight: 800;
}

h2 {
    color: var(--strawberry);
    font-size: clamp(22px, 3.2vw, 38px);
    font-weight: 800;
}

h3 {
    color: var(--mango);
    font-size: clamp(18px, 2.4vw, 26px);
    font-weight: 600;
}

h4 {
    color: var(--pistachio);
    font-size: 18px;
    font-weight: 600;
}

p,
li,
small,
span {
    color: var(--ink);
}

a {
    color: var(--strawberry);
    text-decoration: none;
}

/* Default body copy color inside features / about */
.features p,
#about p {
    color: var(--ink);
}

/* =========================================================
   5) Layout Wrapper & Sections
   ========================================================= */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 18px 56px;
}

.section {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    margin: 18px 0;
    box-shadow: var(--shadow);
    text-align: left;
}

.section.cream {
    background: var(--cream);
}

.section.line {
    background: linear-gradient(180deg, #ffffff, #f6f6f6);
}

/* =========================================================
   6) Hero (background + inner)
   ========================================================= */
header.hero {
    text-align: center;
    padding: 40px 18px;
    background: url("/images/colesterolo-hero.jpg") center/cover no-repeat fixed;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    position: relative; /* needed for snow + watermark */
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo */
.hero-logo {
    max-width: 420px;
    width: 100%;
    height: auto;
    margin: 0 auto 12px;
    display: block;
    background: var(--cream);
    padding: 6px 18px;
    border-radius: 20px;
}

/* =========================================================
   7) Festive lights
   ========================================================= */
.hero-lights {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    height: 22px;
    width: 280px;
    display: flex;
    justify-content: space-between;
    z-index: 3;
}

.hero-lights .bulb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #FFCC00;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    animation: bulbShift 4s infinite ease-in-out,
               bulbColor 3s infinite ease-in-out;
}

/* Bulb motion */
@keyframes bulbShift {
    0%   { transform: translateX(0); }
    33%  { transform: translateX(4px); }
    66%  { transform: translateX(-4px); }
    100% { transform: translateX(0); }
}

/* Bulb colours */
@keyframes bulbColor {
    0%   { background: #008C45; }
    20%  { background: #F4F5F0; }
    40%  { background: #CD212A; }
    60%  { background: #00CCFF; }
    80%  { background: #FF66FF; }
    100% { background: #FFCC00; }
}

/* Staggered delays */
.hero-lights .bulb:nth-child(1) { animation-delay: 0s; }
.hero-lights .bulb:nth-child(2) { animation-delay: .2s; }
.hero-lights .bulb:nth-child(3) { animation-delay: .4s; }
.hero-lights .bulb:nth-child(4) { animation-delay: .6s; }
.hero-lights .bulb:nth-child(5) { animation-delay: .8s; }
.hero-lights .bulb:nth-child(6) { animation-delay: 1s; }
.hero-lights .bulb:nth-child(7) { animation-delay: 1.2s; }
.hero-lights .bulb:nth-child(8) { animation-delay: 1.4s; }


/* =========================================================
   9) Hero badges and text
   ========================================================= */
header.hero .tagline.highlight {
    border-top: none;
    margin-top: 10px;
    color: #000;
    background: var(--yellow);
    padding: 8px 16px;
    border-radius: 999px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .25);
    letter-spacing: .6px;
    font-style: italic;
}

/* Top badge (GOOD MOOD) */
.badge {
    display: inline-block;
    background: var(--pistachio);
    color: var(--cream);
    border: none;
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: .6px;
    text-transform: uppercase;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
    margin-bottom: 22px;
    text-align: center;
}

.badge::before,
.badge::after {
    content: "";
    display: inline-block;
    width: 22px;
    height: 1px;
    background: var(--line);
    vertical-align: middle;
    margin: 0 .6rem;
}

.badge i {
    font-style: normal;
    background: var(--yellow);
    color: #000;
    padding: 4px 8px;
    border-radius: 999px;
}

/* Subtitle pill */
.subtitle {
    margin-top: 12px;
    font-weight: 500;
    letter-spacing: .6px;
    color: var(--strawberry);
    padding: 8px 16px;
    background: var(--cream);
    box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
    display: inline-block;
    border-radius: 50px;
    font-size: 1.2rem;
}

/* Slogan pill */
.slogan {
    margin-top: 6px;
    font-weight: 500;
    letter-spacing: .6px;
    color: var(--cream);
    padding: 8px 16px;
    background: var(--strawberry);
    box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
    display: inline-block;
    border-radius: 50px;
    font-size: 1.2rem;
}

/* Generic tagline inside sections */
.tagline {
    font-weight: 400;
    font-size: 1.2rem;
    font-style: italic;
    color: #666;
    background: none;
    margin: 20px auto 0;
    text-align: center;
    border-top: 1px dashed var(--line);
    padding-top: 12px;
}

/* Festive hero badge between hero and main */
.hero-badge {
    position: relative;
    display: block;
    width: fit-content;
    max-width: 720px;
    margin: -30px auto 26px;
    padding: 10px 32px;
    text-align: center;
    background: linear-gradient(120deg, #b3202a, #E25E3E, #2FB88A);
    color: #fff;
    border-radius: 999px;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    z-index: 4;
}

/* =========================================================
   10) Buttons / CTAs
   ========================================================= */
.cta {
    margin: 28px auto;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 11px 18px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid var(--strawberry);
    color: var(--strawberry);
    background: var(--cream);
    transition: .2s transform;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .06);
    letter-spacing: .6px;
    font-size: 1.2rem;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.alt {
    border-color: var(--pistachio);
    color: var(--pistachio);
}

.btn.mix {
    border-color: var(--mango);
    color: var(--mango);
}

.btn.btn-solid {
    background: var(--strawberry);
    color: #fff;
    border-color: var(--strawberry);
}

.btn.btn-ghost {
    background: #fff;
    color: var(--strawberry);
    border-color: var(--line);
}

/* =========================================================
   11) “Why Choose This Domain” – feature list
   ========================================================= */
.features {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px 24px;
}

.features li {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px 0;
    border-top: 1px dashed var(--line);
}

.features li:first-child {
    border-top: none;
}

.features .ico {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    font-size: 26px;
    border-radius: 14px;
    background: var(--cream);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
}

.features h3 {
    color: var(--strawberry);
    margin: 0 0 4px;
    font-weight: 800;
}

.features p {
    margin: 0;
    line-height: 1.55;
}

/* Keep #why content nicely inside its card */
#why .features {
    max-width: 720px;
    margin: 12px auto 0;
}

#why .features li {
    padding-right: 12px;
}

#why .features p,
#why p {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* =========================================================
   12) Price Card
   ========================================================= */
.price-wrap {
    display: grid;
    gap: 14px;
    justify-items: center;
}

.price-badge {
    background: var(--strawberry);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: .4px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .12);
}

.price-card {
    width: 100%;
    max-width: 720px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px 20px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .10);
    text-align: center;
}

.price-card h2 {
    color: var(--strawberry);
    font-weight: 800;
    margin-bottom: 10px;
}

.price-line {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    margin: 6px 0 10px;
}

.price-currency {
    font-size: 1.6rem;
    line-height: 1;
    color: var(--strawberry);
    font-weight: 800;
}

.price-value {
    font-size: 3rem;
    line-height: 1;
    color: var(--strawberry);
    font-weight: 800;
    letter-spacing: .5px;
}

.price-note {
    font-size: .95rem;
    color: #666;
    margin-left: 4px;
}

/* Benefits list with close checkmarks */
.benefits {
    list-style: none;
    padding: 0;
    margin: 12px 0 16px;
    display: grid;
    gap: 8px;
}

.benefits li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    color: #444;
}

.benefits li::before {
    content: "✓";
    flex: 0 0 auto;
    margin-top: 0.2em;
    color: var(--pistachio);
    font-weight: 800;
}

.fineprint {
    margin: 10px 0 0;
    color: #666;
    font-size: .95rem;
}

.trust {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    color: #555;
    font-size: .95rem;
}

/* =========================================================
   13) Menu Cards
   ========================================================= */
.menu h2 {
    text-align: center;
    margin-bottom: 14px;
}

/* Sample Menu note */
.menu .note {
    color: var(--ink);
    font-size: 1.2rem;
    line-height: 1.6;
    font-style: normal;
    letter-spacing: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    display: block;
    text-align: left;
    margin: 0 0 10px;
}

/* Grid of category cards */
.menu-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
}

.menu-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow);
    max-width: 100%;
}

.menu-card h3 {
    color: var(--strawberry);
    margin: 0 0 8px;
    font-weight: 800;
}

/* Clean dish list */
.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.menu-item {
    padding: 10px 0;
    border-top: 1px dashed var(--line);
    text-align: left;
}

.menu-item:first-child {
    border-top: none;
}

/* Row header */
.mi-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
    text-align: left;
}

.mi-name {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1;
}

/* Dish title */
.dish-title {
    color: var(--pistachio);
    font-weight: 800;
    text-align: left;
}

/* Price chip */
.price-chip {
    background: var(--strawberry);
    color: #fff;
    border-radius: 999px;
    padding: 4px 10px;
    font-weight: 800;
    letter-spacing: .3px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .08);
    white-space: nowrap;
}

/* Description */
.mi-desc {
    margin: 6px 0 0;
    color: #666;
    font-size: .97rem;
    line-height: 1.55;
    text-align: left;
}

/* Featured tags */
.dish-tag {
    display: inline-block;
    white-space: nowrap;
    background: var(--pistachio);
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
    border-radius: 8px;
    padding: 3px 8px;
    letter-spacing: .3px;
    text-transform: uppercase;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .10);
    vertical-align: middle;
}

.dish-tag.signature {
    background: var(--strawberry);
}

.dish-tag.best {
    background: #FF8C42;
}

.dish-tag.premium {
    background: #C7791B;
}

.dish-tag.signature::before {
    content: "★ ";
}

.dish-tag.best::before {
    content: "🔥 ";
}

.dish-tag.premium::before {
    content: "💎 ";
}

/* =========================================================
   14) Domain Details Table
   ========================================================= */
.details-heading {
    margin-top: 10px;
    color: var(--strawberry);
    font-weight: 800;
    font-size: 1.3rem;
}

.domain-details {
    width: 100%;
    border-collapse: collapse;
    margin-top: 14px;
    font-size: 1.2rem;
    line-height: 1.6;
}

.domain-details td {
    border: 1px solid var(--line);
    padding: 14px 18px;
    text-align: left;
}

.domain-details tr:nth-child(even) td {
    background: #fafafa;
}

.domain-details td:first-child {
    width: 35%;
    font-weight: 700;
    color: inherit;
}

/* =========================================================
   15) Signal Badges
   ========================================================= */
.signal-badges {
    list-style: none;
    padding: 0;
    margin: 12px 0 6px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.signal-badges li {
    display: inline-block;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 1.05rem;
    line-height: 1.4;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .08);
}

.badge-star {
    background: var(--strawberry);
}

.badge-check {
    background: var(--pistachio);
}

.badge-lock {
    background: #555;
}

.badge-seo {
    background: #2F6ECB;
}

/* =========================================================
   16) Testimonials
   ========================================================= */
.quote-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
    margin-top: 10px;
}

.quote-card {
    margin: 0;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-left: 4px solid var(--strawberry);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
}

.quote-card p {
    margin: 0 0 6px;
}

.quote-card footer {
    color: #999;
    font-size: .95rem;
    font-style: italic;
}

/* =========================================================
   17) Contact & Inquiries
   ========================================================= */
.contact-note {
    margin: 6px 0 14px;
    color: var(--ink);
    font-size: 1.2rem;
    line-height: 1.6;
}

.contact-box {
    background: #fafafa;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px 18px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #444;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .05);
}

.contact-box a {
    color: var(--strawberry);
    font-weight: 600;
    text-decoration: none;
}

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

/* =========================================================
   18) Footer
   ========================================================= */


/* Main site footer block */
.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #fdf8f2);
  padding: 28px 0 40px;
  color: var(--footer-credit);
  text-align: center;
}

.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.site-footer .footer-brand {
  font-weight: 700;
  letter-spacing: .3px;
  margin-bottom: 6px;
}

.site-footer .footer-tag {
  font-size: 0.95rem;
  color: var(--footer-credit);
  margin-bottom: 10px;
}

.site-footer .footer-sep {
  width: 120px;
  height: 1px;
  background: var(--line);
  border-radius: 999px;
  margin: 12px auto 14px;
}

/* "Crafted by Sunny Assist" */
.site-footer .footer-crafted {
  margin-bottom: 8px;
}

.site-footer .footer-crafted-label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--footer-credit);
  white-space: nowrap;
}

.site-footer .footer-crafted-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.site-footer .footer-crafted-link:hover .footer-crafted-label {
  text-decoration: underline;
}

.site-footer .footer-crafted-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
  vertical-align: middle;
}

.site-footer .footer-crafted-mark svg {
  display: block; /* removes extra inline-space around the icon */
}


/* Legal disclaimer */
.site-footer .footer-legal {
  max-width: 720px;
  margin: 0 auto;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--footer-legal);
}

.site-footer .footer-legal-title {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}

.site-footer .footer-legal-text {
  display: block;
}

/* Optional: subtle inset shadow on tall viewports */
@media (min-height: 800px) {
  .site-footer {
    box-shadow: 0 -12px 24px rgba(0, 0, 0, .04) inset;
  }
}

/* Small tweaks on ultra-small devices */
@media (max-width: 320px) {
  .site-footer .footer-brand,
  .site-footer .footer-tag,
  .site-footer .footer-crafted-label,
  .site-footer .footer-legal {
    font-size: 0.72rem;
  }

  .site-footer .footer-legal {
    padding: 0 8px;
    text-align: left;
  }
}

/* =========================================================
   19) Responsive Layout – grids
   ========================================================= */
@media (min-width: 700px) {
    .features {
        grid-template-columns: 1fr 1fr;
    }

    .features li {
        border-top: none;
    }
}

@media (min-width: 820px) {
    .menu-grid {
        grid-template-columns: 1fr 1fr;
    }

    .quote-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1160px) {
    .menu-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* =========================================================
   20) Responsive Layout – small screens
   ========================================================= */

/* Up to 600px: hero badge can wrap */
@media (max-width: 600px) {
    .hero-badge {
        width: 90%;
        max-width: 340px;
        margin: 12px auto 20px;
        padding: 8px 14px;
        font-size: 0.95rem;
        white-space: normal;
    }
}

/* Up to 480px: clearer menu and price line */
@media (max-width: 480px) {
    .mi-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .price-chip {
        align-self: flex-start;
    }

    /* Price line: stack amount and note */
    .price-line {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .price-note {
        font-size: 0.9rem;
        margin-left: 0;
    }

    /* #why section padding */
    #why.section {
        padding: 22px 18px;
    }

    #why .features p {
        font-size: 1.05rem;
    }
}

/* Up to 420px: dish tags and price size */
@media (max-width: 420px) {
    .dish-tag {
        font-size: .72rem;
        padding: 2px 6px;
    }

    .price-value {
        font-size: 2.6rem;
    }
}

/* Up to 360px: compact typography and layout */
@media (max-width: 360px) {
    body {
        font-size: 1rem;
        line-height: 1.5;
    }

    header.hero {
        min-height: 400px;
        padding: 20px 12px;
    }

    .cta {
        gap: 8px;
    }

    .btn {
        font-size: 0.95rem;
        padding: 8px 14px;
    }

    .menu-card {
        padding: 14px 12px;
    }

    .menu-item {
        padding: 6px 0;
    }

    .dish-title {
        font-size: 0.95rem;
        word-break: break-word;
    }

    .mi-desc {
        font-size: 0.9rem;
    }

    .dish-tag,
    .price-chip {
        font-size: 0.75rem;
        padding: 2px 6px;
        white-space: normal;
    }

    /* GOOD MOOD badge on single line */
    .badge {
        font-size: 0.9rem;
        padding: 6px 12px;
        white-space: nowrap;
        margin-bottom: 14px;
    }

    .badge::before,
    .badge::after {
        width: 16px;
        margin: 0 .4rem;
    }

    /* #why – tighter, smaller icons */
    #why.section {
        padding: 18px 14px;
    }

    #why .features {
        gap: 10px;
    }

    #why .features li {
        grid-template-columns: 40px 1fr;
        padding: 10px 0;
    }

    #why .features .ico {
        width: 40px;
        height: 40px;
        font-size: 22px;
        border-radius: 12px;
    }

    #why .features h3 {
        font-size: 1.05rem;
        line-height: 1.3;
    }

    #why .features p {
        font-size: 0.95rem;
        line-height: 1.45;
    }

    /* Price card heading + benefits */
    .price-card h2 {
        font-size: 1.6rem;
        line-height: 1.25;
    }

    .price-line {
        gap: 4px;
    }

    .price-value {
        font-size: 2.4rem;
    }

    .price-currency {
        font-size: 1.2rem;
    }

    .benefits li {
        gap: 4px;
    }

    .benefits li::before {
        font-size: 0.95rem;
        margin-top: 0.15em;
    }
}

/* Up to 320px: ultra-small phones (240–320px) */
@media (max-width: 320px) {
    header.hero {
        background-size: cover !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
        height: auto !important;
        min-height: 0 !important;
        padding: 56px 10px 50px !important; /* extra top for lights + badge */
    }

    .hero-inner {
        max-width: 90vw !important;
        padding: 12px 10px !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .hero-lights {
        width: 220px;
        height: 18px;
    }

    .hero-lights .bulb {
        width: 12px;
        height: 12px;
    }

    .hero-logo {
        max-width: 260px;
        margin-bottom: 8px;
    }

    main {
        padding: 20px 10px 40px;
    }

    .section {
        padding: 18px 14px;
        margin: 12px 0;
    }

    .price-card {
        padding: 16px 12px;
    }

    .price-value {
        font-size: 2.2rem;
    }

    .price-currency {
        font-size: 1.2rem;
    }

    .domain-details td {
        padding: 8px 10px;
        font-size: 1rem;
    }

    footer {
        padding: 14px 0;
        font-size: 0.9rem;
    }

    /* #why even more compact */
    #why.section {
        padding: 16px 12px;
        margin: 10px 0;
    }

    #why .features li {
        grid-template-columns: 36px 1fr;
        gap: 8px;
        padding: 8px 0;
    }

    #why .features h3 {
        font-size: 1rem;
    }

    #why .features p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* Benefits text size */
    .benefits li {
        font-size: 0.95rem;
        line-height: 1.45;
    }
}

/* =========================================================
   21) Desktop layout – “Why Choose This Domain”
   ========================================================= */
@media (min-width: 960px) {
    /* Two-column layout for #why */
    #why.section {
        display: grid;
        grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
        column-gap: 40px;
        align-items: flex-start;
    }

    #why h2 {
        margin-bottom: 0;
    }

    #why .features {
        max-width: none;
        margin: 4px 0 0;
    }

    #why .features p {
        font-size: 1.05rem;
        line-height: 1.55;
    }
}

/* =========================================================
   22) iOS background attachment fix
   ========================================================= */
@supports (-webkit-touch-callout: none) {
    header.hero {
        background-attachment: scroll;
        -webkit-touch-callout: none;
    }
}

/* =========================================================
   23) Anti-copy basics + watermark
   ========================================================= */
img,
header.hero {
    -webkit-user-drag: none;
    user-drag: none;
}

/* Subtle hero watermark (bottom-right) */
header.hero::after {
    content: "© Colesterolo.co.uk • licensed image";
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 12px;
    line-height: 1;
    padding: 4px 8px;
    background: rgba(0, 0, 0, .30);
    color: #fff;
    border-radius: 6px;
    pointer-events: none;
    -webkit-font-smoothing: antialiased;
    z-index: 3;
}

/* =========================================================
   24) Print
   ========================================================= */
@media print {
    /* Hide interactive / decorative elements */
    .btn,
    .cta,
    .hero-lights,
    .hero-badge,
    footer {
        display: none !important;
    }

    body {
        background: #fff;
        font-size: 12pt;
        line-height: 1.5;
    }

    .section {
        box-shadow: none;
        border-radius: 0;
    }

    header.hero {
        box-shadow: none;
        border-radius: 0;
        background-attachment: scroll;
    }

    /* Print header visible only on paper */
    .print-header {
        display: block;
        margin: 0 0 16px;
        padding: 8px 0 12px;
        border-bottom: 1px solid #ccc;
        text-align: left;
    }

    .print-header h1 {
        font-family: "Open Sans", sans-serif;
        font-size: 20px;
        font-weight: 800;
        margin: 0 0 4px;
        color: #000;
    }

    .print-header p {
        margin: 0;
        font-size: 11px;
        line-height: 1.4;
        text-align: left;
        color: #444;
    }
}
