/* ─── Philosophy Bar ─── */
.philosophy-bar {
    background: var(--brand-ink);
    padding: 1.5rem 0;
}
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .philosophy-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}
.philosophy-item {
    text-align: center;
    color: #fff;
}
.philosophy-num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 300;
    color: var(--brand-gold);
    line-height: 1;
    margin-bottom: 0.35rem;
}
.philosophy-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}
.philosophy-desc {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
}

/* ─── Highlight sections (Håndplukket + Salg) ─── */
.highlight-section {
    margin-bottom: 3.5rem;
}
.highlight-header {
    text-align: center;
    margin-bottom: 1.5rem;
}
.highlight-eyebrow {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin-bottom: 0.4rem;
}
.highlight-title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: var(--brand-ink);
    margin: 0;
}
.highlight-scroll {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
@media (min-width: 640px) {
    .highlight-scroll { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}
.highlight-card {
    display: block;
    text-decoration: none;
    color: inherit;
}
.highlight-image-wrap {
    position: relative;
    overflow: hidden;
    background: var(--brand-cream);
    aspect-ratio: 1/1;
    margin-bottom: 0.75rem;
}
.highlight-card:nth-child(1) .highlight-image-wrap,
.highlight-card:nth-child(4) .highlight-image-wrap {
    aspect-ratio: 3/2;
}
.highlight-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.highlight-card:hover .highlight-image-wrap img {
    transform: scale(1.04);
}
.highlight-info h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.35;
    color: var(--brand-ink);
    margin: 0 0 0.3rem;
}
.highlight-info p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--brand-slate);
    margin: 0;
}

/* ─── Founder's Letter ─── */
.founder-section {
    background: var(--brand-cream);
    padding: 5rem 0;
}
.founder-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.founder-eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin-bottom: 1.5rem;
    display: block;
}
.founder-quote {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--brand-ink);
    margin: 0 0 2rem;
    padding: 0;
    border: none;
    font-style: italic;
}
.founder-quote p {
    margin-bottom: 1rem;
}
.founder-quote p:last-child {
    margin-bottom: 0;
    font-style: normal;
}
.founder-quote strong {
    font-weight: 600;
}
.founder-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    align-items: center;
}
.founder-meta strong {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--brand-ink);
}
.founder-meta span {
    font-size: 0.8rem;
    color: var(--brand-mist);
    font-weight: 300;
}

/* ─── Editorial Zig-Zag ─── */
.editorial-section {
    background: #fff;
    padding: 5rem 0 3rem;
}
.editorial-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 5rem;
}
.editorial-row:last-child {
    margin-bottom: 0;
}
@media (min-width: 768px) {
    .editorial-row {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    .editorial-row.image-right .editorial-image { order: 2; }
    .editorial-row.image-right .editorial-content { order: 1; text-align: right; align-items: flex-end; }
}
.editorial-image {
    position: relative;
    overflow: hidden;
    background: var(--brand-cream);
    aspect-ratio: 3/2;
}
.editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.editorial-row:hover .editorial-image img {
    transform: scale(1.03);
}
.editorial-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.editorial-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 400;
    color: var(--brand-ink);
    line-height: 1.2;
    margin: 0;
}
.editorial-subtitle {
    font-size: 1rem;
    color: var(--brand-slate);
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
    max-width: 400px;
}
.editorial-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--brand-ink);
    border-bottom: 1px solid var(--brand-gold);
    padding-bottom: 0.35rem;
    margin-top: 0.5rem;
    transition: all 0.3s;
    width: fit-content;
}
.editorial-cta:hover {
    color: var(--brand-gold);
    border-bottom-color: var(--brand-ink);
}

/* ─── Kategori-nav ─── */
.shop-categories {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.shop-cat-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--brand-mist);
    padding: 0.25rem 0;
    border-bottom: 1px solid transparent;
    transition: all 0.25s;
}
.shop-cat-link:hover {
    color: var(--brand-slate);
}
.shop-cat-link.active {
    color: var(--brand-slate);
    border-bottom-color: var(--brand-gold);
}

/* ─── Gruppert visning ─── */
.shop-group {
    margin-bottom: 4rem;
}
.shop-group:last-child {
    margin-bottom: 0;
}
.shop-group-title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 400;
    color: var(--brand-ink);
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* ─── Produktgrid ─── */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.25rem;
}
@media (min-width: 640px) {
    .shop-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem 1.5rem; }
}
@media (min-width: 1024px) {
    .shop-grid { grid-template-columns: repeat(4, 1fr); gap: 2.5rem 2rem; }
}

/* ─── Produktkort ─── */
.shop-card {
    position: relative;
}
.shop-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.shop-card-image-wrap {
    position: relative;
    overflow: hidden;
    background: var(--brand-cream);
    aspect-ratio: 4/5;
    width: 100%;
    display: block;
    margin-bottom: 1.25rem;
}
/* Per-kategori aspect ratios */
.shop-grid[data-category="rods"] .shop-card-image-wrap,
.shop-card[data-category="rods"] .shop-card-image-wrap {
    aspect-ratio: 3/2;
}
.shop-grid[data-category="reels"] .shop-card-image-wrap,
.shop-card[data-category="reels"] .shop-card-image-wrap {
    aspect-ratio: 1/1;
}
.shop-grid[data-category="waders"] .shop-card-image-wrap,
.shop-card[data-category="waders"] .shop-card-image-wrap {
    aspect-ratio: 3/4;
}
.shop-grid[data-category="lines"] .shop-card-image-wrap,
.shop-card[data-category="lines"] .shop-card-image-wrap,
.shop-grid[data-category="gear"] .shop-card-image-wrap,
.shop-card[data-category="gear"] .shop-card-image-wrap {
    aspect-ratio: 1/1;
}

.shop-card-image-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.shop-card-link:hover .shop-card-image-wrap img {
    transform: scale(1.04);
}
.shop-card-info {
    text-align: center;
}
.shop-card-brand {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin-bottom: 0.4rem;
}
.shop-card-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.35;
    color: var(--brand-ink);
    margin-bottom: 0.5rem;
}
.shop-card-price {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--brand-slate);
    letter-spacing: 0.02em;
}
.shop-card-price .price-original {
    color: var(--brand-slate);
    opacity: 0.55;
    text-decoration: line-through;
    margin-right: 0.35rem;
}
.shop-card-price .price-sale {
    color: #b54a4a;
    font-weight: 500;
}

/* Salg-seksjon */
.sale-section {
    margin-top: var(--space-16);
}

/* Badges */
.ghillie-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.7rem;
    pointer-events: none;
}
.ghillie-badge.badge-nyhet {
    background: #1a3a2a;
    color: #7dd87d;
}
.ghillie-badge.badge-salg {
    background: #5c1a1a;
    color: #ff9999;
}
.ghillie-badge.badge-bestselger {
    background: #1a2a4a;
    color: #99bbff;
}
.ghillie-badge.badge-flaggskip {
    background: #2a2215;
    color: #c9a97a;
}

/* Badge-markering på kort */
.shop-card.has-badge .shop-card-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(184,150,106,0.15);
    pointer-events: none;
}

/* Mobil */
@media (max-width: 768px) {
    .shop-categories { gap: 1.25rem; margin-bottom: 2.5rem; }
    .shop-group { margin-bottom: 3rem; }
    .shop-group-title { margin-bottom: 1.5rem; }
    .philosophy-bar { padding: 2rem 0; }
    .founder-section { padding: 3rem 0; }
    .editorial-section { padding: 3rem 0 2rem; }
    .editorial-row { margin-bottom: 3rem; }
    .editorial-subtitle { max-width: none; }
}
@media (max-width: 480px) {
    .philosophy-grid { gap: 1.25rem 0.75rem; }
    .philosophy-num { font-size: 1.5rem; }
    .philosophy-label { font-size: 0.65rem; }
    .philosophy-desc { font-size: 0.7rem; }
    .founder-quote { font-size: 1.05rem; }
}
