:root {
--black: #000000;
--navy: #253046;
--gold: #a38c6b;
--gold-bright: #d8a22a;
--white: #ffffff;
--dark: #1f1d1d;
--gray-bg: #f7f7f7;
--divider: #dddddd;
--hairline: #999999;
--text: #343434;
--body: #404040;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
scroll-padding-top: 100px;
-webkit-text-size-adjust: 100%;
text-size-adjust: 100%;
-webkit-tap-highlight-color: transparent;
}
html,
body {
max-width: 100%;
overflow-x: clip;
}
body {
font-family: "Montserrat", sans-serif;
background: var(--white);
color: var(--black);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}
body.menu-open {
overflow: hidden;
}
body.lightbox-open {
overflow: hidden;
}
img {
max-width: 100%;
display: block;
}
a {
color: inherit;
text-decoration: none;
touch-action: manipulation;
}
button {
font-family: inherit;
cursor: pointer;
touch-action: manipulation;
}
::selection {
background: var(--black);
color: var(--white);
}
.hidden {
display: none !important;
}
body.gallery-open .whb-header {
display: none;
}
.whb-header {
position: absolute;
top: 0;
left: 0;
width: 100%;
z-index: 100;
background: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent);
transition: background 0.35s ease, box-shadow 0.35s ease;
pointer-events: none;
}
.whb-header * {
pointer-events: auto;
}
.whb-inner {
max-width: 1400px;
margin: 0 auto;
padding: 26px 30px;
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
gap: 24px;
position: relative;
}
.whb-logo {
justify-self: center;
display: flex;
align-items: center;
color: var(--white);
}
.whb-logo-img {
display: block;
height: 62px;
width: auto;
transition: filter 0.35s ease;
}
.logo-mark {
display: grid;
place-items: center;
width: 46px;
height: 46px;
border: 1.5px solid rgba(255, 255, 255, 0.7);
border-radius: 50%;
color: var(--white);
transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.whb-logo:hover .logo-mark {
background: var(--gold-bright);
border-color: var(--gold-bright);
transform: rotate(-8deg);
}
.logo-text {
font-family: "Montserrat", sans-serif;
font-weight: 700;
font-size: 17px;
line-height: 1.15;
letter-spacing: 3px;
}
.whb-left,
.whb-right {
display: flex;
align-items: center;
gap: 30px;
}
.whb-left {
justify-self: center;
}
.whb-right {
justify-self: center;
}
.whb-left a,
.whb-right a {
color: var(--white);
font-size: 14px;
font-weight: 500;
letter-spacing: 0.2px;
white-space: nowrap;
padding: 6px 0;
border-bottom: 2px solid transparent;
transition: color 0.3s ease, border-color 0.3s ease;
}
.whb-left a:hover,
.whb-left a.active,
.whb-right a:hover,
.whb-right a.active {
color: var(--gold-bright);
border-bottom-color: var(--gold-bright);
}
.whb-burger {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
padding: 6px;
}
.whb-burger span {
width: 26px;
height: 2px;
background: var(--white);
transition: transform 0.3s ease, opacity 0.3s ease;
}
.whb-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.whb-burger.open span:nth-child(2) { opacity: 0; }
.whb-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.whb-header.scrolled {
position: fixed;
background: rgba(255, 255, 255, 0.98);
box-shadow: 0 2px 18px rgba(0, 0, 0, 0.08);
}
.whb-header.scrolled .whb-left a,
.whb-header.scrolled .whb-right a {
color: var(--black);
}
.whb-header.scrolled .whb-left a.active,
.whb-header.scrolled .whb-right a.active {
color: var(--navy);
border-bottom-color: var(--navy);
}
.whb-header.scrolled .whb-logo .whb-logo-img {
filter: brightness(0);
}
.whb-header.scrolled .whb-burger span {
background: var(--black);
}
.hero-slider {
position: relative;
width: 100%;
height: 100vh;
height: 100svh;
min-height: 680px;
overflow: hidden;
background: var(--black);
touch-action: pan-y;
}
.slides,
.slide {
position: absolute;
inset: 0;
}
.slide {
opacity: 0;
visibility: hidden;
transition: opacity 1s ease, visibility 1s ease;
}
.slide.active {
opacity: 1;
visibility: visible;
z-index: 2;
}
.slide-bg {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
will-change: transform;
animation: kenburns 10s linear forwards;
}
@keyframes kenburns {
from { transform: scale(1); }
to { transform: scale(1.1); }
}
.slide.active .slide-bg {
animation: kenburns 10s linear forwards;
}
.slide:not(.active) .slide-bg {
animation: none;
}
.ph-slide-2 {
background-image:
linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.15)),
url("images/ph-slide-2.webp");
}
.ph-slide-3 {
background-image:
linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.15)),
url("images/ph-slide-3.webp");
}
.ph-slide-4 {
background-image:
linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.15)),
url("images/ph-slide-4.webp");
background-position: right center;
}
.ph-slide-5 {
background-image:
linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.15)),
url("images/ph-slide-5.webp");
}
.slide-content {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
text-align: left;
color: var(--white);
padding: 0 60px;
}
.slide-eyebrow {
font-family: "Montserrat", sans-serif;
font-size: 20px;
font-weight: 500;
letter-spacing: 6px;
text-transform: uppercase;
color: var(--gold-bright);
margin-bottom: 18px;
opacity: 0;
animation: fadeUp 0.9s ease 0.3s forwards;
}
.slide-title {
font-family: "Cormorant Garamond", serif;
font-weight: 500;
font-size: clamp(2.2rem, 5.5vw, 3.8rem);
line-height: 1.12;
color: var(--white);
opacity: 0;
animation: fadeUp 0.9s ease 0.55s forwards;
}
.slide-divider {
display: flex;
align-items: center;
gap: 10px;
color: var(--gold-bright);
margin: 18px 0;
opacity: 0;
animation: fadeUp 0.9s ease 0.75s forwards;
}
.slide-divider i {
font-size: 16px;
}
.slide-desc {
font-family: "Roboto", sans-serif;
font-size: 19px;
font-weight: 400;
color: rgba(255, 255, 255, 0.92);
margin-bottom: 28px;
max-width: 620px;
opacity: 0;
animation: fadeUp 0.9s ease 0.95s forwards;
}
.slide-btn {
display: inline-block;
font-family: "Roboto", sans-serif;
font-size: 13px;
font-weight: 500;
letter-spacing: 1.5px;
color: rgba(255, 255, 255, 0.95);
border: 1px solid rgba(255, 255, 255, 0.5);
padding: 14px 25px;
min-height: 48px;
display: inline-flex;
align-items: center;
justify-content: center;
opacity: 0;
animation: fadeUp 0.9s ease 1.15s forwards;
transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.slide-btn:hover {
color: var(--white);
border-color: var(--white);
background: var(--black);
}
@keyframes fadeUp {
from { opacity: 0; transform: translateY(26px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes lightboxFade {
from { opacity: 0; }
to { opacity: 1; }
}
.slider-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 10;
width: 48px;
height: 48px;
border-radius: 50%;
border: none;
background: rgba(0, 0, 0, 0.5);
color: var(--white);
font-size: 16px;
display: grid;
place-items: center;
transition: background 0.3s ease;
cursor: pointer;
}
.slider-arrow:hover {
background: #000000;
}
.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }
.slider-dots {
position: absolute;
bottom: 30px;
left: 0;
right: 0;
display: flex;
justify-content: center;
gap: 10px;
z-index: 10;
}
.slider-dots button {
position: relative;
width: 10px;
height: 10px;
border-radius: 50%;
border: 1px solid rgba(255, 255, 255, 0.6);
background: transparent;
padding: 0;
transition: background 0.3s ease, transform 0.3s ease;
}
.slider-dots button::after {
content: "";
position: absolute;
inset: -18px;
border-radius: 50%;
}
.slider-dots button.active {
background: var(--gold-bright);
border-color: var(--gold-bright);
transform: scale(1.25);
}
.reviews {
background: #0d0d0d;
color: var(--white);
padding: 90px 10px 100px;
overflow: hidden;
position: relative;
}
.reviews-inner {
max-width: 1630px;
margin: 0 auto;
padding: 0 30px;
}
.reviews-top {
display: grid;
grid-template-columns: 380px 1fr;
gap: 60px;
align-items: center;
}
.reviews-stats {
display: flex;
flex-direction: column;
gap: 22px;
padding: 34px 36px;
background: #161616;
border: 1px solid #2a2a2a;
border-radius: 18px;
position: relative;
overflow: hidden;
}
.reviews-stats::before {
content: "";
position: absolute;
inset: 0 auto auto 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, var(--gold-bright), transparent);
}
.reviews-eyebrow {
display: block;
font-size: 12px;
font-weight: 600;
letter-spacing: 4px;
text-transform: uppercase;
color: var(--gold-bright);
}
.reviews-scoreline {
display: flex;
align-items: center;
gap: 20px;
}
.reviews-big {
font-family: "Cormorant Garamond", serif;
font-size: clamp(3rem, 4.5vw, 4.2rem);
font-weight: 600;
line-height: 1;
color: var(--white);
}
.reviews-scoremeta {
display: flex;
flex-direction: column;
gap: 6px;
}
.reviews-stars {
display: flex;
gap: 6px;
color: #f7b500;
font-size: 18px;
}
.reviews-count {
font-size: 14px;
color: #aaa;
letter-spacing: 0.4px;
}
.reviews-bars {
display: flex;
flex-direction: column;
gap: 10px;
}
.review-bar {
display: grid;
grid-template-columns: 26px 1fr;
align-items: center;
gap: 12px;
font-size: 13px;
color: #ccc;
}
.review-bar-track {
height: 7px;
border-radius: 4px;
background: #2c2c2c;
overflow: hidden;
display: block;
}
.review-bar-fill {
display: block;
height: 100%;
border-radius: 4px;
background: linear-gradient(90deg, var(--gold-bright), #f7b500);
}
.reviews-cta a {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
min-height: 48px;
border: 1px solid var(--gold-bright);
color: var(--gold-bright);
padding: 13px 26px;
font-size: 14px;
font-weight: 600;
letter-spacing: 0.5px;
transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.reviews-cta a:hover {
background: var(--gold-bright);
color: #101010;
}
.reviews-marquee {
min-width: 0;
}
.reviews-empty {
padding: 40px 30px;
color: #777;
font-size: 15px;
font-style: italic;
border: 1px dashed #3a3a3a;
border-radius: 14px;
}
.reviews-viewport {
overflow: hidden;
width: 100%;
-webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.reviews-track {
display: flex;
gap: 22px;
align-items: stretch;
padding-right: 22px;
width: max-content;
animation: reviews-scroll 45s linear infinite;
will-change: transform;
}
.reviews-track:hover,
.reviews-track:focus-within {
animation-play-state: paused;
}
@keyframes reviews-scroll {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
}
.review-card {
flex: 0 0 auto;
width: 320px;
background: #1a1a1a;
border: 1px solid #2e2e2e;
border-radius: 14px;
padding: 26px 24px;
display: flex;
flex-direction: column;
gap: 14px;
transition: border-color 0.3s ease, transform 0.3s ease;
}
.review-card:hover {
border-color: var(--gold-bright);
transform: translateY(-4px);
}
.review-head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
}
.review-name {
display: flex;
align-items: center;
gap: 10px;
font-size: 15px;
font-weight: 600;
color: var(--white);
}
.review-avatar {
display: grid;
place-items: center;
width: 40px;
height: 40px;
border-radius: 50%;
background: linear-gradient(135deg, var(--gold-bright), var(--gold));
color: #1a1a1a;
font-size: 15px;
font-weight: 700;
flex: none;
}
.review-stars-mini {
display: flex;
gap: 3px;
color: #f7b500;
font-size: 12px;
white-space: nowrap;
}
.review-date {
font-size: 12px;
color: #888;
white-space: nowrap;
}
.review-text {
font-size: 14px;
line-height: 1.7;
color: #cfcfcf;
display: -webkit-box;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
overflow: hidden;
}
.review-text::before {
content: "“";
color: var(--gold-bright);
font-family: "Cormorant Garamond", serif;
font-size: 22px;
line-height: 0;
margin-right: 4px;
}
.review-g {
display: inline-flex;
align-items: center;
gap: 7px;
margin-top: auto;
padding-top: 12px;
border-top: 1px solid #2e2e2e;
font-size: 12px;
color: #888;
}
.review-g i {
color: #4285f4;
font-size: 14px;
}
@media (max-width: 1024px) {
.reviews-top {
grid-template-columns: 1fr;
gap: 44px;
}
.reviews-stats {
max-width: 480px;
}
}
@media (max-width: 560px) {
.review-card {
width: 82vw;
max-width: 320px;
}
.review-name {
font-size: 14px;
}
.reviews-inner {
padding: 0 16px;
}
.reviews {
padding: 70px 6px 80px;
}
.reviews-stats {
padding: 28px 22px;
}
.reviews-scoreline {
gap: 14px;
}
}
.row-sec {
margin-bottom: 60px;
}
.row-sec-wrap {
max-width: 1630px;
margin: 0 auto;
padding: 0 30px;
}
.row-sec-box-tile {
font-size: 30px;
color: var(--black);
margin-bottom: 20px;
font-weight: 600;
}
.row-sec-box-text {
color: var(--black);
line-height: 2.3;
width: 75%;
margin-bottom: 30px;
}
.row-sec-box-btn a {
display: inline-flex;
align-items: center;
justify-content: center;
border: 1px solid #000000;
padding: 15px 70px;
min-height: 48px;
color: var(--black);
font-weight: 500;
transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.row-sec-box-btn a:hover {
background: var(--black);
color: var(--white);
}
.cizgi {
border: 1px solid var(--divider);
margin-top: 120px;
}
.row-sec-video {
margin-top: 40px;
overflow: hidden;
background:
radial-gradient(700px 300px at 50% 0%, rgba(216, 162, 42, 0.15), transparent 60%),
linear-gradient(160deg, #141414, #050505);
}
.wd-el-video {
width: 100%;
height: 800px;
object-fit: cover;
display: block;
}
.owl-wrap {
position: relative;
margin-top: 10px;
}
.owl-viewport {
overflow: hidden;
}
.owl-track {
display: flex;
gap: 30px;
transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
will-change: transform;
}
.product-card {
flex: 0 0 calc((100% - 60px) / 3);
min-width: 0;
}
.product-card .img-zoom {
overflow: hidden;
aspect-ratio: 4 / 3;
}
.product-card .ph {
aspect-ratio: 4 / 3;
width: 100%;
}
.product-title {
font-size: 17px;
font-weight: 600;
margin: 18px 0 14px;
padding-bottom: 18px;
border-bottom: 1px solid var(--divider);
}
.product-btn {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 48px;
font-size: 14px;
font-weight: 600;
letter-spacing: 1px;
border: 1px solid var(--black);
padding: 10px 26px;
color: var(--black);
transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.product-btn:hover {
background: var(--navy);
color: var(--white);
border-color: var(--navy);
}
.owl-arrow {
position: absolute;
top: 38%;
z-index: 5;
width: 40px;
height: 40px;
border-radius: 50%;
border: none;
background: rgba(0, 0, 0, 0.5);
color: var(--white);
font-size: 14px;
display: grid;
place-items: center;
transition: background 0.3s ease;
}
.owl-arrow:hover { background: var(--black); }
.owl-arrow.prev { left: -14px; }
.owl-arrow.next { right: -14px; }
.cat-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px 50px;
}
.cat-box {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
align-items: center;
}
.cat-box.kose {
grid-column: 1 / -1;
grid-template-columns: 1fr 1.2fr;
}
.cat-box .img-zoom {
overflow: hidden;
aspect-ratio: 4 / 3;
}
.cat-box .ph {
aspect-ratio: 4 / 3;
width: 100%;
}
.cat-box-head {
display: flex;
align-items: center;
column-gap: 8px;
margin-bottom: 10px;
}
.cat-img {
width: 33px;
}
.cat-tile {
font-size: 30px;
color: var(--black);
font-weight: 600;
}
.cat-text {
color: var(--black);
width: 100%;
line-height: 2.1;
margin-bottom: 40px;
}
.cat-btn a {
display: inline-flex;
align-items: center;
justify-content: center;
position: relative;
border: 1px solid #000000;
padding: 15px 67px;
min-height: 48px;
color: var(--black);
background-color: transparent;
overflow: hidden;
z-index: 1;
font-weight: 500;
transition: color 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
}
.cat-btn a::before {
content: "";
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 101%;
background-color: rgb(37 48 70);
transform: translateX(-100%);
transition: ease 0.5s;
z-index: -1;
}
.cat-box:hover .cat-btn a::before,
.cat-btn a:hover::before {
transform: translateX(0);
}
.cat-box:hover .cat-btn a,
.cat-btn a:hover {
color: #fff;
border-color: #253046;
}
.cat-box .img-zoom img,
.info .img-zoom img,
.product-card .img-zoom img {
transition: ease 1s;
width: 100%;
height: 100%;
}
.cat-box:hover .img-zoom img,
.info-box:hover .img-zoom img,
.product-card:hover .img-zoom img {
transform: scale(1.1);
}
.gallery-view {
background: var(--white);
padding: 60px 0 110px;
min-height: 60vh;
}
.gallery-top {
margin-bottom: 30px;
}
.gallery-back {
display: inline-flex;
align-items: center;
gap: 10px;
min-height: 48px;
border: 1px solid var(--black);
background: transparent;
color: var(--black);
font-family: "Montserrat", sans-serif;
font-size: 14px;
font-weight: 500;
padding: 12px 28px;
transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.gallery-back:hover {
background: var(--navy);
color: var(--white);
border-color: var(--navy);
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-top: 20px;
}
.gallery-item {
position: relative;
overflow: hidden;
cursor: pointer;
aspect-ratio: 4 / 3;
}
.gallery-item img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: ease 1s;
}
.gallery-item:hover img {
transform: scale(1.1);
}
.gallery-item figcaption {
position: absolute;
inset: auto 0 0 0;
padding: 40px 16px 14px;
background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
color: var(--white);
font-size: 13px;
font-weight: 500;
opacity: 0;
transform: translateY(8px);
transition: opacity 0.35s ease, transform 0.35s ease;
}
.gallery-item:hover figcaption {
opacity: 1;
transform: translateY(0);
}
.gallery-empty {
grid-column: 1 / -1;
text-align: center;
color: #666;
padding: 80px 0;
}
.lightbox {
position: fixed;
inset: 0;
z-index: 1000;
background: rgba(0, 0, 0, 0.95);
display: flex;
align-items: center;
justify-content: center;
padding: 70px 20px 20px;
touch-action: pan-y;
}
.lightbox-figure {
margin: 0;
max-width: 100%;
max-height: 100%;
text-align: center;
}
.lightbox-img {
max-width: 100%;
max-height: 82vh;
max-height: 82svh;
object-fit: contain;
margin: 0 auto;
display: block;
animation: lightboxFade 0.35s ease forwards;
transform-origin: center center;
transition: transform 0.15s ease-out;
will-change: transform;
cursor: zoom-in;
user-select: none;
}
.lightbox-img.zoomed {
cursor: grab;
}
.lightbox-img.panning {
cursor: grabbing;
}
.lightbox-zoom-hint {
position: fixed;
bottom: calc(16px + env(safe-area-inset-bottom, 0px));
left: 50%;
transform: translateX(-50%);
z-index: 1001;
color: rgba(255, 255, 255, 0.6);
font-size: 12px;
letter-spacing: 1px;
background: rgba(0, 0, 0, 0.55);
padding: 8px 16px;
border-radius: 20px;
pointer-events: none;
}
.lightbox-caption {
color: rgba(255, 255, 255, 0.85);
margin-top: 14px;
font-size: 14px;
letter-spacing: 0.3px;
}
.lightbox-close,
.lightbox-full,
.lightbox-prev,
.lightbox-next {
position: fixed;
z-index: 1001;
display: grid;
place-items: center;
width: 48px;
height: 48px;
border-radius: 50%;
border: none;
background: rgba(255, 255, 255, 0.12);
color: var(--white);
font-size: 18px;
transition: background 0.3s ease, transform 0.2s ease;
touch-action: manipulation;
}
.lightbox-close:hover,
.lightbox-full:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
background: rgba(255, 255, 255, 0.28);
}
.lightbox-close:active,
.lightbox-full:active,
.lightbox-prev:active,
.lightbox-next:active {
transform: scale(0.92);
}
.lightbox-close {
top: calc(16px + env(safe-area-inset-top, 0px));
right: calc(16px + env(safe-area-inset-right, 0px));
}
.lightbox-full {
top: calc(16px + env(safe-area-inset-top, 0px));
left: calc(16px + env(safe-area-inset-left, 0px));
}
.lightbox-prev {
left: 14px;
top: 50%;
transform: translateY(-50%);
}
.lightbox-next {
right: 14px;
top: 50%;
transform: translateY(-50%);
}
.lightbox-prev:active,
.lightbox-next:active {
transform: translateY(-50%) scale(0.92);
}
.kap-folder {
display: grid;
grid-template-columns: 1fr 1.2fr;
align-items: center;
gap: 30px;
margin-top: 45px;
border: 1px solid var(--black);
background: var(--white);
text-decoration: none;
color: inherit;
transition: box-shadow 0.3s ease;
}
.kap-folder:hover {
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.kap-folder-img .ph {
aspect-ratio: 4 / 3;
width: 100%;
}
.kap-folder-img img {
display: block;
width: 100%;
aspect-ratio: 4 / 3;
object-fit: cover;
}
.kap-folder-body {
padding: 0 40px;
}
.kap-folder-title {
display: block;
font-size: 21px;
font-weight: 600;
letter-spacing: 0.04em;
}
.kap-folder-text {
display: block;
margin-top: 12px;
font-size: 14px;
line-height: 1.8;
color: #555;
}
.kap-folder-btn {
display: inline-flex;
align-items: center;
justify-content: center;
margin-top: 22px;
min-height: 48px;
border: 1px solid var(--black);
color: var(--black);
padding: 12px 28px;
font-size: 13px;
font-weight: 500;
letter-spacing: 0.08em;
transition: background 0.3s ease, color 0.3s ease;
}
.kap-folder:hover .kap-folder-btn {
background: var(--black);
color: var(--white);
}
.kap-cta {
margin-top: 45px;
text-align: center;
}
.kap-cta a {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
min-height: 48px;
border: 1px solid var(--navy);
background: var(--navy);
color: var(--white);
padding: 14px 32px;
font-size: 14px;
font-weight: 500;
transition: background 0.3s ease, border-color 0.3s ease;
}
.kap-cta a:hover {
background: var(--black);
border-color: var(--black);
}
.tasarla-sec {
text-align: center;
}
.tasarla-sec-tile {
font-size: 27px;
color: var(--gold);
letter-spacing: 1px;
font-weight: 500;
}
.tasarla-sec-text {
font-size: 35px;
color: var(--black);
margin: 12px 0 40px;
}
.tsr-img .ph {
aspect-ratio: 1720 / 565;
width: 100%;
margin-bottom: 40px;
}
.tasarla-alt p {
color: var(--black);
font-size: 21px;
text-align: center;
margin: 0 auto 40px;
width: 90%;
line-height: 1.8;
}
.tsr-btn {
text-align: center;
}
.tsr-btn a {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 48px;
border: 1px solid;
font-size: 21px;
color: var(--black);
padding: 15px 50px;
font-weight: 500;
transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.tsr-btn a:hover {
background: var(--navy);
color: var(--white);
border-color: var(--navy);
}
.info {
background: var(--dark);
padding: 140px 135px 85px;
margin-bottom: 0 !important;
}
.info-container {
max-width: 1630px;
margin: 0 auto;
}
.info-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
}
.info-box .img-zoom {
overflow: hidden;
margin-bottom: 20px;
}
.info-box .ph {
aspect-ratio: 4 / 3;
width: 100%;
}
.info-tile {
color: var(--white);
font-size: 30px;
font-weight: 500;
margin-bottom: 12px;
}
.info-text {
color: var(--white);
margin-bottom: 25px;
line-height: 2;
font-size: 15px;
}
.info-btn a {
display: inline-flex;
align-items: center;
justify-content: center;
position: relative;
border: 1px solid white;
padding: 13px 0;
min-height: 48px;
color: var(--white);
background-color: transparent;
overflow: hidden;
z-index: 1;
width: 47%;
text-align: center;
font-weight: 500;
transition: color 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
}
.info-btn a::before {
content: "";
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 101%;
background-color: rgb(255 255 255);
transform: translateX(-100%);
transition: ease 0.5s;
z-index: -1;
}
.info-box:hover .info-btn a::before,
.info-btn a:hover::before {
transform: translateX(0);
}
.info-box:hover .info-btn a,
.info-btn a:hover {
color: #000000;
border-color: #ffffff;
}
.cizgi-info {
margin-top: 30px;
height: 1px;
width: 100%;
background: #999999;
}
.insta-sec {
margin-top: 30px;
display: flex;
justify-content: space-between;
}
.insta-box {
display: flex;
align-items: center;
column-gap: 24px;
flex-wrap: wrap;
}
.insta-box-tile {
font-size: 30px;
color: var(--white);
font-weight: 500;
}
.insta-box-link a {
color: var(--white);
font-size: 21px;
transition: color 0.3s ease;
}
.insta-box-link a:hover {
color: var(--gold-bright);
}
.insta-box-follow a {
color: var(--white);
border-bottom: 1px solid;
padding-bottom: 2px;
transition: color 0.3s ease, border-color 0.3s ease;
}
.insta-box-follow a:hover {
color: var(--gold-bright);
border-color: var(--gold-bright);
}
.site-footer {
background: var(--white);
color: var(--black);
}
.footer-container {
max-width: 1630px;
margin: 0 auto;
padding: 0 30px;
}
.footer-grid {
display: grid;
grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
gap: 40px;
padding: 70px 0 50px;
}
.footer-brand .whb-logo.dark {
color: var(--black);
}
.footer-brand .whb-logo.dark .logo-mark {
border-color: rgba(0, 0, 0, 0.5);
color: var(--black);
}
.footer-brand p {
font-size: 13px;
line-height: 2.1;
color: #444;
margin: 22px 0 24px;
max-width: 340px;
}
.social-media-links {
display: flex;
gap: 18px;
}
.social-media-links a {
display: grid;
place-items: center;
width: 42px;
height: 42px;
border-radius: 50%;
border: 1px solid var(--black);
color: var(--black);
font-size: 17px;
transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.social-media-links a:hover {
background: var(--navy);
border-color: var(--navy);
color: var(--white);
transform: translateY(-3px);
}
.footer-col h4 {
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1.5px;
margin-bottom: 22px;
}
.footer-col ul {
list-style: none;
display: grid;
gap: 12px;
}
.footer-col a,
.footer-col li {
font-size: 14px;
color: #444;
transition: color 0.3s ease;
}
.footer-col a:hover {
color: var(--navy);
}
.footer-contact li {
display: flex;
gap: 10px;
align-items: flex-start;
line-height: 1.8;
}
.footer-contact i {
margin-top: 4px;
color: var(--gold);
min-width: 16px;
}
.copyrights {
border-top: 1px solid var(--divider);
padding: 20px 0;
padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
}
.copyrights .footer-container {
display: flex;
justify-content: space-between;
align-items: center;
gap: 12px;
flex-wrap: wrap;
font-size: 13px;
color: #666;
}
.cr-right {
color: var(--gold);
}
.ph {
position: relative;
display: grid;
place-items: center;
color: rgba(255, 255, 255, 0.95);
background:
radial-gradient(400px 260px at 30% 20%, rgba(216, 162, 42, 0.28), transparent 60%),
linear-gradient(155deg, #2b2b2b, #101010);
background-size: cover;
background-position: center;
overflow: hidden;
}
.ph::before {
content: attr(data-label);
position: absolute;
bottom: 14px;
left: 0;
right: 0;
text-align: center;
font-size: 11px;
letter-spacing: 2px;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.45);
}
.ph::after {
font-size: 64px;
filter: grayscale(0.15);
opacity: 0.9;
}
.ph-sofa { background-image: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.05)), url("images/ph-sofa.webp"); }
.ph-weld { background-image: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.05)), url("images/ph-weld.webp"); }
.ph-wide { background-image: linear-gradient(180deg, rgba(0,0,0,.3), rgba(0,0,0,.1)), url("images/ph-wide.webp"); }
.ph-phone { background-image: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.05)), url("images/ph-phone.webp"); }
@media (max-width: 1600px) {
.info {
padding: 50px 35px 85px;
}
}
@media (max-width: 1200px) {
.whb-left,
.whb-right {
gap: 18px;
}
.whb-left a,
.whb-right a {
font-size: 13px;
}
.cat-box {
grid-template-columns: 1fr;
}
.cat-box.kose {
grid-template-columns: 1fr;
}
.info-grid {
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 1024px) {
.row-sec-box-text {
width: 100%;
}
.wd-el-video {
height: 500px;
}
.product-card {
flex: 0 0 calc((100% - 30px) / 2);
}
.cat-tile {
font-size: 25px;
}
.tasarla-sec-text {
font-size: 28px;
}
.tasarla-alt p {
font-size: 17px;
width: 100%;
}
.footer-grid {
grid-template-columns: 1fr 1fr;
}
.gallery-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 800px) {
.hero-slider {
min-height: 520px;
}
.slide-desc {
font-size: 16px;
}
.whb-burger {
display: flex;
position: absolute;
right: 12px;
top: 50%;
transform: translateY(-50%);
z-index: 120;
width: 48px;
height: 48px;
align-items: center;
justify-content: center;
}
.whb-inner {
display: flex;
justify-content: center;
padding: 22px 20px;
}
.whb-left,
.whb-right {
position: fixed;
left: 0;
width: 100%;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 6px;
background: rgba(0, 0, 0, 0.97);
z-index: 110;
opacity: 0;
visibility: hidden;
transition: opacity 0.35s ease, visibility 0.35s ease;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
overscroll-behavior: contain;
padding: env(safe-area-inset-top, 0px) 20px env(safe-area-inset-bottom, 0px);
}
.whb-left { top: 0; height: 55vh; height: 55svh; }
.whb-right { top: 55vh; top: 55svh; height: 45vh; height: 45svh; }
.whb-left.open,
.whb-right.open {
opacity: 1;
visibility: visible;
}
.whb-left a,
.whb-right a {
display: flex;
align-items: center;
min-height: 48px;
padding: 0 16px;
font-size: 17px;
}
.slider-arrow,
.owl-arrow {
width: 48px;
height: 48px;
font-size: 16px;
}
.whb-header.scrolled .whb-left a,
.whb-header.scrolled .whb-right a {
color: var(--white);
}
.info {
padding: 30px 15px 55px;
}
.info-btn a {
width: 100%;
}
.insta-sec {
flex-direction: column;
}
.insta-box {
justify-content: space-between;
}
.cizgi {
margin-top: 80px;
}
}
@media (max-width: 560px) {
.row-sec-wrap,
.footer-container {
padding: 0 20px;
}
.whb-inner {
padding: 18px 20px;
}
.whb-logo-img {
height: 44px;
}
.hero-slider {
min-height: 480px;
}
.slide-title {
font-size: 2rem;
}
.slide-content {
padding: 0 24px;
}
.slide-desc {
font-size: 15px;
}
.slider-arrow.prev { left: 14px; }
.slider-arrow.next { right: 14px; }
.row-sec-box-tile,
.cat-tile,
.info-tile,
.insta-box-tile {
font-size: 22px;
}
.row-sec-box-text,
.cat-text {
line-height: 1.9;
}
.cat-box-head {
flex-wrap: wrap;
}
.cat-btn a,
.row-sec-box-btn a {
padding: 10px 30px;
font-size: 13px;
}
.wd-el-video {
height: 300px;
}
.product-card {
flex: 0 0 calc(100% - 20px);
}
.owl-arrow.prev { left: 4px; }
.owl-arrow.next { right: 4px; }
.tasarla-sec-tile {
font-size: 16px;
}
.tasarla-sec-text {
font-size: 17px;
}
.tasarla-alt p {
font-size: 14px;
text-align: left;
}
.tsr-btn {
text-align: left;
}
.tsr-btn a {
font-size: 12px;
padding: 10px 40px;
}
.info-grid,
.footer-grid {
grid-template-columns: 1fr;
}
.insta-sec {
align-items: flex-start;
}
.insta-box {
align-items: flex-start;
flex-direction: column;
gap: 8px;
}
.insta-box-tile {
font-size: 22px;
}
.insta-box-link a {
font-size: 15px;
}
.gallery-grid {
grid-template-columns: 1fr;
}
.kap-folder {
grid-template-columns: 1fr;
}
.kap-folder-body {
padding: 0 24px 30px;
}
.kap-cta a {
width: 100%;
justify-content: center;
}
.copyrights .footer-container {
flex-direction: column;
text-align: center;
}
}
@media (orientation: landscape) and (max-height: 560px) {
.hero-slider {
height: 100vh;
height: 100svh;
min-height: 0;
}
.whb-header {
position: fixed;
background: rgba(0, 0, 0, 0.85);
}
.whb-inner {
padding: 14px 20px;
padding-right: calc(20px + env(safe-area-inset-right, 0px));
}
.whb-left,
.whb-right {
justify-content: flex-start;
gap: 14px;
}
.whb-left { top: 0; height: 55vh; height: 55svh; }
.whb-right { top: 55vh; top: 55svh; height: 45vh; height: 45svh; }
.slide-content {
padding-top: 70px;
}
}
@media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}

/* ==================== WHATSAPP TEKLİF SİHİRBAZI ==================== */
.wizard-overlay {
position: fixed;
inset: 0;
z-index: 2000;
background: rgba(0, 0, 0, 0.7);
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.wizard-overlay.hidden {
display: none;
}
.wizard-box {
position: relative;
width: min(560px, 100%);
max-height: 90vh;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
overscroll-behavior: contain;
background: #faf9f7;
border: 1px solid var(--divider);
border-radius: 14px;
box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
padding: 28px 26px 22px;
}
.wizard-close {
position: absolute;
top: 14px;
right: 14px;
background: none;
border: none;
color: var(--hairline);
font-size: 18px;
cursor: pointer;
transition: color 0.2s;
}
.wizard-close:hover {
color: var(--gold-bright);
}
.wizard-head {
text-align: center;
margin-bottom: 20px;
}
.wizard-kicker {
font-size: 12px;
letter-spacing: 2px;
text-transform: uppercase;
color: var(--gold-bright);
font-weight: 600;
margin-bottom: 4px;
}
.wizard-title {
font-family: "Cormorant Garamond", serif;
font-size: 30px;
font-weight: 600;
color: var(--dark);
}
.wizard-steps {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
margin-top: 14px;
}
.wizard-step {
font-size: 12px;
font-weight: 600;
letter-spacing: 1px;
text-transform: uppercase;
color: var(--hairline);
padding: 4px 10px;
border-radius: 20px;
border: 1px solid transparent;
transition: all 0.2s;
}
.wizard-step.active {
color: var(--dark);
border-color: var(--gold-bright);
background: rgba(216, 162, 42, 0.08);
}
.wizard-step-dot {
width: 5px;
height: 5px;
border-radius: 50%;
background: var(--divider);
}
.wizard-form {
min-height: 250px;
display: flex;
flex-direction: column;
}
.wizard-fieldset {
display: none;
border: none;
margin: 0;
padding: 0;
}
.wizard-fieldset.active {
display: block;
animation: fadeUp 0.35s ease;
}
.wizard-q {
font-size: 17px;
font-weight: 600;
color: var(--text);
margin-bottom: 16px;
text-align: center;
}
.wizard-opts {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
}
.wizard-opt {
padding: 14px 12px;
min-height: 48px;
display: inline-flex;
align-items: center;
justify-content: center;
border: 1px solid var(--divider);
border-radius: 10px;
background: var(--white);
color: var(--text);
font-family: "Montserrat", sans-serif;
font-size: 14px;
font-weight: 500;
cursor: pointer;
text-align: center;
transition: all 0.2s;
}
.wizard-opt:hover {
border-color: var(--gold-bright);
color: var(--dark);
}
.wizard-opt.selected {
border-color: var(--gold-bright);
background: rgba(216, 162, 42, 0.12);
color: var(--dark);
font-weight: 600;
}
.wizard-label {
display: block;
font-size: 13px;
font-weight: 600;
color: var(--text);
margin: 10px 0 5px;
}
.wizard-input {
width: 100%;
padding: 11px 12px;
min-height: 48px;
border: 1px solid var(--divider);
border-radius: 8px;
background: var(--white);
color: var(--dark);
font-family: "Montserrat", sans-serif;
font-size: 16px;
outline: none;
transition: border-color 0.2s;
}
.wizard-input:focus {
border-color: var(--gold-bright);
}
.wizard-textarea {
resize: vertical;
}
.wizard-submit-wrap {
text-align: center;
margin-top: 18px;
}
.wizard-submit {
padding: 13px 26px;
border: none;
border-radius: 8px;
background: #25d366;
color: #fff;
font-family: "Montserrat", sans-serif;
font-size: 15px;
font-weight: 700;
cursor: pointer;
transition: opacity 0.2s;
}
.wizard-submit:disabled {
opacity: 0.45;
cursor: not-allowed;
}
.wizard-submit i {
margin-right: 8px;
}
.wizard-nav {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 16px;
}
.wizard-back {
background: none;
border: none;
color: var(--hairline);
font-family: "Montserrat", sans-serif;
font-size: 13px;
font-weight: 600;
cursor: pointer;
padding: 8px 0;
}
.wizard-back:hover {
color: var(--dark);
}
.wizard-back i {
margin-right: 6px;
}
.wizard-hint {
font-size: 12px;
color: var(--hairline);
text-align: right;
}
@media (max-width: 480px) {
.wizard-opts {
grid-template-columns: 1fr;
}
.wizard-box {
padding: 24px 18px 18px;
}
.wizard-form {
min-height: 220px;
}
}