StyRa Persienn
Produktinformation – Persienn @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); :root { --navy: #253551; --navy-light: #2e4168; --navy-pale: #e8ecf3; --accent: #253551; --text: #1a2030; --text-muted: #6b7a94; --border: rgba(37,53,81,0.10); --radius: 12px; } .pd-root { font-family: 'Poppins', sans-serif; color: var(--text); max-width: 680px; line-height: 1.65; } .pd-intro { margin-bottom: 2rem; } .pd-lead { font-size: 20px; color: var(--text-muted); font-weight: 300; max-width: 560px; } .pd-specs-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 2rem; } .pd-spec-item { background: #fff; padding: 1rem 1.1rem; display: flex; flex-direction: column; gap: 0.2rem; transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease; cursor: default; } .pd-spec-item:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(37,53,81,0.18); z-index: 1; position: relative; } .pd-spec-item:hover .pd-spec-label { color: rgba(255,255,255,0.55); } .pd-spec-item:hover .pd-spec-value { color: #fff; } .pd-spec-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); } .pd-spec-value { font-size: 18px; font-weight: 600; color: var(--navy); white-space: nowrap; } .pd-details { border-radius: var(--radius); overflow: hidden; } .pd-details-summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.4rem; background: var(--navy-pale); border: 2px solid rgba(37,53,81,0.18); border-radius: var(--radius); user-select: none; transition: background 0.18s ease, border-color 0.18s ease; } .pd-details[open] .pd-details-summary { border-bottom-left-radius: 0; border-bottom-right-radius: 0; background: var(--navy); border-color: var(--navy); } .pd-details[open] .pd-details-summary .pd-details-title, .pd-details[open] .pd-details-summary .pd-details-subtitle { color: #fff; } .pd-details[open] .pd-details-summary .pd-details-icon { background: rgba(255,255,255,0.15); } .pd-details[open] .pd-details-summary .pd-details-icon svg { stroke: #fff; } .pd-details[open] .pd-details-summary .pd-chevron { stroke: #fff; } .pd-details-summary::-webkit-details-marker { display: none; } .pd-details-summary:hover { background: #d4dbe8; border-color: rgba(37,53,81,0.3); } .pd-details[open] .pd-details-summary:hover { background: var(--navy-light); border-color: var(--navy-light); } .pd-details-summary-left { display: flex; align-items: center; gap: 0.75rem; } .pd-details-icon { width: 36px; height: 36px; background: rgba(37,53,81,0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.18s ease; } .pd-details-icon svg { width: 18px; height: 18px; stroke: var(--navy); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.18s ease; } .pd-details-title { font-size: 15px; font-weight: 700; color: var(--navy); transition: color 0.18s ease; } .pd-details-subtitle { font-size: 13px; color: var(--text-muted); margin-top: 0.05rem; transition: color 0.18s ease; } .pd-chevron { width: 20px; height: 20px; stroke: var(--navy); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.25s ease, stroke 0.18s ease; flex-shrink: 0; } .pd-details[open] .pd-chevron { transform: rotate(180deg); } .pd-details-body { padding: 0 1.4rem 1.4rem; padding-top: 0; background: #fff; border: 2px solid var(--navy); border-top: 1px solid rgba(37,53,81,0.15); border-bottom-left-radius: var(--radius); border-bottom-right-radius: var(--radius); animation: pdFadeIn 0.22s ease; } @keyframes pdFadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } } .pd-section { margin-top: 1.4rem; } .pd-section:first-child { margin-top: 2rem; } .pd-section-title { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.5rem; } .pd-section-title::after { content: ''; flex: 1; height: 1px; background: var(--border); transition: background 0.3s ease; } .pd-section:hover .pd-section-title::after { background: var(--navy); } .pd-section p, .pd-section ul { font-size: 15px; color: var(--text-muted); margin: 0 0 0.5rem; } .pd-section ul { padding-left: 1.2rem; } .pd-section li { margin-bottom: 0.25rem; } .pd-section a { color: var(--navy); font-weight: 500; } .pd-section a:hover { color: var(--accent); } /* Utförande-kort */ .pd-variant-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: 0.3rem; } .pd-variant { background: var(--navy-pale); border: 1px solid rgba(37,53,81,0.15); border-radius: 8px; padding: 0.8rem 1rem; transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease; cursor: default; } .pd-variant:hover { background: var(--navy); border-color: var(--navy); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(37,53,81,0.18); } .pd-variant-title { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; transition: color 0.18s ease; } .pd-variant:hover .pd-variant-title { color: #fff; } .pd-variant-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; transition: color 0.18s ease; } .pd-variant:hover .pd-variant-desc { color: rgba(255,255,255,0.75); } .pd-notice { background: var(--navy-pale); border: 1px solid rgba(37,53,81,0.18); border-radius: 8px; padding: 0.65rem 0.9rem; font-size: 13px; color: var(--text-muted); margin-top: 0.6rem; line-height: 1.5; } .pd-notice strong { color: var(--navy); } .pd-docs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; } .pd-doc-link { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 0.8rem; border: 1px solid var(--border); border-radius: 8px; text-decoration: none; font-size: 14px; font-weight: 500; color: var(--navy); background: #fff; transition: all 0.16s ease; } .pd-doc-link:hover { background: var(--navy); color: #fff !important; border-color: var(--navy); } .pd-doc-link:hover svg { stroke: #fff; } .pd-doc-link svg { width: 14px; height: 14px; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; } .pd-close-btn { display: flex; align-items: center; justify-content: center; gap: 0.4rem; width: 100%; padding: 0.7rem 1rem; background: var(--navy-pale); border: 1px solid rgba(37,53,81,0.15); border-radius: 8px; font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.05em; color: var(--navy); cursor: pointer; transition: background 0.16s ease, border-color 0.16s ease; } .pd-close-btn:hover { background: #d4dbe8; border-color: rgba(37,53,81,0.3); } .pd-close-btn svg { width: 16px; height: 16px; stroke: var(--navy); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; } @media (max-width: 500px) { .pd-specs-strip { grid-template-columns: repeat(2, 1fr); } .pd-variant-grid { grid-template-columns: 1fr; } .pd-docs { grid-template-columns: 1fr; } } Modern och måttanpassad persienn för alla fönstertyper — en stilren lösning för effektiv solavskärmning och insynsskydd, oavsett miljö. Min bredd 250 mm Max bredd 3000 mm Min höjd 200 mm Max höjd 3000 mm Specifikationer & dokument Utföranden, måttagning, manövrering Utföranden Frihängande Klassisk lösning för alla fönstertyper. Monteras utanpå båge, i nisch, i tak eller på vägg. Styrs med lina och vridstång, kulkedja eller motor. Mellanglas Idealisk för kopplade 2+1-fönster. Installeras mellan glasen och bevarar fönstrets yttre utseende. Styrs med ratt och stång på insidan. Designlist Stilrent uttryck med dold ovankant. Monteras utanpå båge, i tak eller på vägg. Designlisten täcker hela mekaniken för ett integrerat utseende. Handmanövrerad Barnsäker persienn utan hängande linor. Styrs med greppvänligt handtag på underlisten och vridstång — uppfyller gällande barnsäkerhetsstandarder. Motoriserad Styrs med fjärrkontroll, väggbrytare eller app. Finns med RTS-motor (Somfy) eller Zigbee-motor för integration i smarta hem-system. Måttagning Bredd — frihängande/designlist: mät från ytterkant till ytterkant. Mellanglas: mät glasmåttet invändigt i det kopplade fönstret. Höjd — mät från överkant till önskad nedre position. Vid mellanglas: mät från övre till nedre glaslist. Ange alltid exakta mått i millimeter (±2 mm) — produkten tillverkas efter dina angivelser. Dokument Produktblad Teknisk info Skötselråd Stäng