TurboWallTrowel — Podesivi gleter za dovratnike

:root {
–orange: #E8510A;
–orange-light: #FF6B2B;
–dark: #1A1A18;
–sand: #F5F2EC;
–sand-dark: #E8E3D8;
–text: #1A1A18;
–muted: #6B6860;
–white: #FFFFFF;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: ‘Barlow’, sans-serif; background: var(–white); color: var(–text); overflow-x: hidden; }
/* NAV */
nav {
position: sticky; top: 0; z-index: 100;
background: var(–white); border-bottom: 1px solid var(–sand-dark);
padding: 14px 48px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-family: ‘Barlow Condensed’, sans-serif; font-weight: 900; font-size: 22px; color: var(–dark); text-transform: uppercase; text-decoration: none; }
.nav-logo span { color: var(–orange); }
.nav-back { font-size: 13px; color: var(–muted); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color .2s; }
.nav-back:hover { color: var(–orange); }
/* BREADCRUMB */
.breadcrumb { padding: 14px 48px; font-size: 12px; color: var(–muted); display: flex; align-items: center; gap: 8px; background: var(–sand); border-bottom: 1px solid var(–sand-dark); }
.breadcrumb a { color: var(–muted); text-decoration: none; }
.breadcrumb a:hover { color: var(–orange); }
.breadcrumb span { color: var(–text); font-weight: 500; }
/* PRODUCT LAYOUT */
.product-wrap {
display: grid; grid-template-columns: 1fr 1fr;
gap: 64px; padding: 56px 48px;
max-width: 1100px; margin: 0 auto; align-items: start;
}
/* ── GALLERY ── */
.gallery { position: sticky; top: 80px; }
/* Glavni prikaz — slika ili video */
.gallery-main {
width: 100%; aspect-ratio: 1;
background: var(–sand); border-radius: 10px;
overflow: hidden; margin-bottom: 12px;
border: 1px solid var(–sand-dark); position: relative;
}
.gallery-main img {
width: 100%; height: 100%; object-fit: cover;
display: block; transition: opacity .25s;
}
.gallery-main iframe {
width: 100%; height: 100%; border: none; display: block;
}
.gallery-placeholder {
display: flex; flex-direction: column; align-items: center; justify-content: center;
gap: 10px; color: var(–muted); font-size: 13px; text-align: center;
width: 100%; height: 100%; padding: 32px; line-height: 1.6; position: absolute; inset: 0;
}
.gallery-badge {
position: absolute; top: 16px; left: 16px; z-index: 2;
background: var(–orange); color: var(–white);
font-family: ‘Barlow Condensed’, sans-serif;
font-weight: 700; font-size: 12px; letter-spacing: .08em;
padding: 5px 12px; border-radius: 2px; text-transform: uppercase;
}
/* Thumbnailovi + video thumbs */
.gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.thumb {
aspect-ratio: 1; border-radius: 6px;
border: 2px solid transparent; cursor: pointer;
display: flex; align-items: center; justify-content: center;
transition: border-color .2s; overflow: hidden; position: relative;
background: var(–sand);
}
.thumb.active { border-color: var(–orange); }
.thumb:hover { border-color: var(–sand-dark); }
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Video thumbnail stil */
.thumb.is-video { background: var(–dark); }
.thumb.is-video .play-icon {
position: absolute; inset: 0;
display: flex; align-items: center; justify-content: center;
background: rgba(0,0,0,.45);
}
.thumb.is-video .play-icon svg { width: 28px; height: 28px; filter: drop-shadow(0 1px 4px rgba(0,0,0,.5)); }
.thumb.is-video img { opacity: .7; }
.thumb-label {
position: absolute; bottom: 3px; left: 0; right: 0;
text-align: center; font-size: 9px; color: var(–white);
font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
text-shadow: 0 1px 3px rgba(0,0,0,.8);
}
/* VIDEO MODAL */
.modal-overlay {
display: none; position: fixed; inset: 0; z-index: 1000;
background: rgba(0,0,0,.85); align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-box {
width: 90vw; max-width: 900px;
aspect-ratio: 16/9; position: relative; border-radius: 8px; overflow: hidden;
background: #000;
}
.modal-box iframe { width: 100%; height: 100%; border: none; }
.modal-box video { width: 100%; height: 100%; object-fit: contain; }
.modal-close {
position: absolute; top: -44px; right: 0;
background: none; border: none; color: var(–white);
font-size: 32px; cursor: pointer; line-height: 1; padding: 4px 8px;
transition: color .2s;
}
.modal-close:hover { color: var(–orange); }
/* PRODUCT INFO */
.product-info { padding-top: 8px; }
.product-tag { display: inline-block; font-family: ‘Barlow Condensed’, sans-serif; font-weight: 600; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(–orange); margin-bottom: 10px; }
.product-title { font-family: ‘Barlow Condensed’, sans-serif; font-weight: 900; font-size: 44px; line-height: 1.0; text-transform: uppercase; letter-spacing: -.01em; color: var(–text); margin-bottom: 10px; }
.product-subtitle { font-size: 15px; color: var(–muted); margin-bottom: 20px; line-height: 1.65; }
.stars-row { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.stars { color: var(–orange); font-size: 15px; letter-spacing: 2px; }
.stars-count { font-size: 13px; color: var(–muted); }
.price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.price-main { font-family: ‘Barlow Condensed’, sans-serif; font-weight: 900; font-size: 48px; color: var(–text); line-height: 1; }
.price-main sup { font-size: 22px; vertical-align: top; padding-top: 8px; }
.price-shipping { font-size: 13px; color: var(–muted); margin-bottom: 22px; }
.price-shipping a { color: var(–orange); text-decoration: none; }
.divider { height: 1px; background: var(–sand-dark); margin: 22px 0; }
.variant-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(–text); margin-bottom: 10px; }
.variants { display: flex; gap: 8px; margin-bottom: 22px; flex-wrap: wrap; }
.variant-btn { padding: 9px 18px; border: 2px solid var(–sand-dark); border-radius: 4px; font-family: ‘Barlow’, sans-serif; font-size: 13px; font-weight: 500; cursor: pointer; background: var(–white); color: var(–text); transition: all .2s; }
.variant-btn.active { border-color: var(–orange); color: var(–orange); }
.variant-btn:hover { border-color: var(–text); }
.cart-row { display: flex; gap: 10px; margin-bottom: 16px; align-items: center; }
.qty-wrap { display: flex; align-items: center; border: 2px solid var(–sand-dark); border-radius: 4px; overflow: hidden; }
.qty-btn { width: 42px; height: 54px; border: none; background: var(–sand); font-size: 22px; cursor: pointer; color: var(–text); transition: background .2s; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: var(–sand-dark); }
.qty-input { width: 50px; height: 54px; border: none; text-align: center; font-family: ‘Barlow Condensed’, sans-serif; font-weight: 700; font-size: 20px; color: var(–text); background: var(–white); outline: none; }
/*
ZAMIJENI href: https://turbowalltrowel.com//?add-to-cart=54
Produkt ID: WP Admin → Produkti → hover na naziv → pogledaj URL (post=BROJ)
*/
.btn-cart { flex: 1; background: var(–orange); color: var(–white); border: none; border-radius: 4px; height: 54px; font-family: ‘Barlow’, sans-serif; font-weight: 700; font-size: 16px; cursor: pointer; transition: background .2s, transform .1s; letter-spacing: .02em; text-decoration: none; display: flex; align-items: center; justify-content: center; }
.btn-cart:hover { background: var(–orange-light); transform: translateY(-1px); }
.btn-wishlist { width: 54px; height: 54px; border: 2px solid var(–sand-dark); background: var(–white); border-radius: 4px; cursor: pointer; font-size: 22px; display: flex; align-items: center; justify-content: center; transition: border-color .2s, color .2s; color: var(–muted); }
.btn-wishlist:hover { border-color: var(–orange); color: var(–orange); }
.micro-trust { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 22px; }
.micro-item { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(–muted); }
.micro-dot { width: 5px; height: 5px; background: var(–orange); border-radius: 50%; flex-shrink: 0; }
/* TABS */
.tabs { margin-top: 8px; }
.tab-item { border-top: 1px solid var(–sand-dark); }
.tab-q { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; cursor: pointer; user-select: none; font-family: ‘Barlow Condensed’, sans-serif; font-weight: 700; font-size: 17px; text-transform: uppercase; letter-spacing: .03em; color: var(–text); }
.tab-toggle { color: var(–orange); font-size: 24px; font-weight: 300; transition: transform .25s; flex-shrink: 0; margin-left: 16px; line-height: 1; }
.tab-body { font-size: 14px; color: var(–muted); line-height: 1.75; padding-bottom: 18px; display: none; }
.tab-body ul { padding-left: 18px; }
.tab-body li { margin-bottom: 7px; }
.tab-item.open .tab-body { display: block; }
.tab-item.open .tab-toggle { transform: rotate(45deg); }
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-table tr { border-bottom: 1px solid var(–sand-dark); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 10px 0; vertical-align: top; }
.spec-table td:first-child { color: var(–muted); width: 45%; }
.spec-table td:last-child { font-weight: 500; color: var(–text); }
/* VIDEO SEKCIJA */
.video-section { background: var(–dark); padding: 72px 48px; }
.video-inner { max-width: 1004px; margin: 0 auto; }
.section-label { font-family: ‘Barlow Condensed’, sans-serif; font-weight: 600; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(–orange); margin-bottom: 10px; }
.section-title-light { font-family: ‘Barlow Condensed’, sans-serif; font-weight: 900; font-size: 38px; line-height: 1.05; text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 32px; color: var(–white); }
.section-title { font-family: ‘Barlow Condensed’, sans-serif; font-weight: 900; font-size: 38px; line-height: 1.05; text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 32px; color: var(–text); }
.videos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.video-card { border-radius: 8px; overflow: hidden; position: relative; cursor: pointer; }
.video-card .video-thumb {
width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
background: #2A2A26;
display: flex; align-items: center; justify-content: center;
color: var(–muted); font-size: 13px; text-align: center;
}
.video-card .video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-play-btn {
position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
background: rgba(0,0,0,.3); transition: background .2s;
}
.video-play-btn:hover { background: rgba(232,81,10,.35); }
.video-play-btn svg { filter: drop-shadow(0 2px 8px rgba(0,0,0,.5)); }
.video-card-label {
position: absolute; bottom: 0; left: 0; right: 0;
background: linear-gradient(transparent, rgba(0,0,0,.75));
padding: 24px 16px 14px;
font-family: ‘Barlow Condensed’, sans-serif; font-weight: 700; font-size: 15px;
color: var(–white); text-transform: uppercase; letter-spacing: .03em;
}
/* RECENZIJE */
.reviews-section { background: var(–sand); border-top: 1px solid var(–sand-dark); padding: 72px 48px; }
.reviews-inner { max-width: 1004px; margin: 0 auto; }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.review-card { background: var(–white); border-radius: 8px; padding: 26px; position: relative; border: 1px solid var(–sand-dark); }
.review-card::before { content: ‘”‘; position: absolute; top: 14px; left: 20px; font-family: ‘Barlow Condensed’, sans-serif; font-size: 52px; color: var(–orange); line-height: 1; opacity: .2; }
.review-stars { color: var(–orange); font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
.review-text { font-size: 14px; color: var(–text); line-height: 1.75; margin-bottom: 18px; padding-top: 6px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(–orange); display: flex; align-items: center; justify-content: center; color: var(–white); font-family: ‘Barlow Condensed’, sans-serif; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.review-name { font-weight: 600; font-size: 13px; color: var(–text); }
.review-role { font-size: 11px; color: var(–muted); margin-top: 2px; }
/* CTA BOTTOM */
.cta-bottom { background: var(–dark); padding: 64px 48px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 32px; border-top: 1px solid #2A2A26; }
.cta-bottom h2 { font-family: ‘Barlow Condensed’, sans-serif; font-weight: 900; font-size: 40px; color: var(–white); text-transform: uppercase; line-height: 1.1; }
.cta-bottom h2 em { color: var(–orange); font-style: normal; }
.btn-primary { background: var(–orange); color: var(–white); border: none; padding: 17px 36px; border-radius: 4px; font-family: ‘Barlow’, sans-serif; font-weight: 700; font-size: 16px; cursor: pointer; transition: background .2s; letter-spacing: .02em; text-decoration: none; display: inline-block; }
.btn-primary:hover { background: var(–orange-light); }
footer { background: #111110; padding: 28px 48px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-logo { font-family: ‘Barlow Condensed’, sans-serif; font-weight: 900; font-size: 17px; color: #555; text-transform: uppercase; text-decoration: none; }
.footer-logo span { color: var(–orange); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: #555; text-decoration: none; }
.footer-links a:hover { color: #888; }
.footer-copy { font-size: 12px; color: #444; }
@media (max-width: 768px) {
nav, .breadcrumb, .video-section, .reviews-section, .cta-bottom, footer { padding-left: 20px; padding-right: 20px; }
.product-wrap { grid-template-columns: 1fr; gap: 32px; padding: 32px 20px; }
.gallery { position: static; }
.product-title { font-size: 36px; }
.price-main { font-size: 40px; }
.gallery-thumbs { grid-template-columns: repeat(5, 1fr); }
.videos-grid { grid-template-columns: 1fr; }
.reviews-grid { grid-template-columns: 1fr; }
.cta-bottom { flex-direction: column; padding-top: 48px; padding-bottom: 48px; }
.section-title, .section-title-light { font-size: 32px; }
}

Početna
Alati
TurboWallTrowel



<!–
ZAMIJENI s pravom fotografijom:
TurboWallTrowel
Ili ostavi placeholder dok nemaš slike:
–>

Ovdje ide glavna fotografija
800×800px preporučeno
Novo


<!–
Pogled 1
–>
Foto 1
Foto 2
Foto 3


Video 1


Video

Video 2


Reklama



Podesivi gleter · Professional grade

TurboWall
Trowel

Podesivi gleter koji eliminira mjerenje i pogreške pri obradi dovratnika. Za profesionalne gipsere i ambiciozne DIY majstore.

★★★★★
5.0 · 12 recenzija
39
+ €5 dostava · Besplatno iznad €60
Veličina







Dodaj u košaricu →


Dostava 3–5 dana
14 dana povrat
Sigurna naplata
Šaljemo sutra

Opis proizvoda +
TurboWallTrowel je precizni podesivi gleter dizajniran specifično za obradu dovratnika i rubnih bridova. Eliminira potrebu za mjerenjem i improvizacijom — jednom postavljeni kut ostaje fiksan kroz cijeli posao.

Idealan za gipsanje uz dovratnike, prozorske okvire i sve rubne elemente gdje je preciznost ključna. Koristi ga iskusni majstor i početnik s jednakim rezultatom.
Specifikacije +

Materijal PETG (otporan na udarce)
Raspon kuta 15° – 90°
Težina ~150g
Dimenzije ZAMIJENI (npr. 15 × 8 × 4 cm)
Boja Narančasta / siva
Kompatibilnost Standardni i nestandardni profili dovratnika
Čišćenje Vodom, odmah nakon upotrebe
Jamstvo 12 mjeseci

Dostava i povrat +

  • Hrvatska: 3–5 radnih dana
  • EU: 5–8 radnih dana
  • Šaljemo dan nakon narudžbe uz tracking broj na email
  • 14 dana povrat bez pitanja — refund u 2 radna dana
  • Troškove povrata snosimo mi ako je produkt neispravan




U akciji
Pogledaj kako radi

TurboWallTrowel u akciji


Demonstracija — kako se koristi
TurboWallTrowel reklama


Reklamni video

Recenzije kupaca
Što kažu oni
koji su kupili?
★★★★★

Koristim ga tjedan dana na renovaciji stanova — štedi mi najmanje 20 minuta po dovratniku. Kupujem još dva za ekipu.

MK
Marko K.Profesionalni gipser · Zagreb
★★★★★

Nisam profesionalac ali ovo mi je bilo presudno za renovaciju kuće. Brid je čist kao od majstora — preporučujem svima koji rade renovaciju.

AP
Ana P.DIY entuzijastica · Split

Spreman za savršen
brid?


Naruči TurboWallTrowel · €39 →


Scroll to Top