/* Braggo HTML Theme (responsive, modular)
   Fonts: Cormorant Garamond (SilkSerif alternative), Jura, Quicksand
*/
:root{
  --bg: #e7dfd6;         /* page background */
  --bg-2:#ded5cc;
  --ink:#2f2a24;
  --muted:#6d665f;
  --line: rgba(47,42,36,.14);
  --card:#f1ece6;
  --chip:#dcd3ca;
  --accent:#8b6b3e;      /* warm brown */
  --accent-2:#2d3a4a;    /* deep blue-ish */
  --shadow: 0 18px 40px rgba(0,0,0,.08);
  --max: 1160px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:"Quicksand", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing:.2px;
}

/* Standard top margin for subpages, excluding the homepage (body.snap-container) */
body:not(.snap-container) main {
  margin-top: 50px;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{width:min(var(--max), calc(100% - 48px)); margin:0 auto}

#urunler > .container {
  width: 80%;
}

#stiller > .container {
  max-width: 1600px;
  width: calc(100% - 48px);
}


/* Top chrome */
.site-chrome{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(231,223,214,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.topbar{
  font-size:12px;
  color:var(--muted);
  padding:10px 0 8px;
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap:16px;
}
.topbar .links, .topbar .center-links, .topbar .right-links {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.topbar .center-links {
  justify-content: center;
}
.topbar .right-links {
  justify-content: flex-end;
}
.brandbar{
  padding:10px 0 12px;
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap:16px;
  border-top:1px solid var(--line);
}
.brand{
  display:flex; justify-content:center; align-items:center;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:34px;
  letter-spacing:1px;
  text-transform:uppercase;
}
.brand small{
  display:block;
  font-size:12px;
  font-family:"Jura", sans-serif;
  letter-spacing:4px;
  margin-top:-6px;
  text-align:center;
  color:var(--muted);
}
.iconbar{
  display:flex; justify-content:flex-end; align-items:center; gap:14px;
  color:var(--muted);
}
.iconbtn{
  width:34px; height:34px; border-radius:999px;
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid var(--line);
  background:rgba(255,255,255,.2);
}
.iconbtn:hover{background:rgba(255,255,255,.45)}
.mainnav{
  border-top:1px solid var(--line);
  padding:10px 0 12px;
  font-family:"Jura", sans-serif;
  font-size:13px;
  letter-spacing:1.6px;
  text-transform:uppercase;
}
.mainnav ul{
  list-style:none; margin:0; padding:0;
  display:flex; gap:20px; justify-content:center; flex-wrap:wrap;
}
.mainnav a{color:var(--ink); opacity:.85}
.mainnav a:hover{opacity:1; text-decoration:underline}

/* Mobile menu */
.burger { display: none; }
.mobile-panel { display: none; }
body.mobile-menu-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .site-chrome .brandbar {
    padding-left: 14px;
    padding-right: 14px;
  }
  .site-chrome .burger {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.2);
  }
  .site-chrome .burger button {
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    display: inherit; /* to inherit flex properties */
    align-items: inherit;
    justify-content: inherit;
    cursor: pointer;
  }
  .site-chrome .mainnav,
  .site-chrome .hero-navmenu {
    display: none;
  }
  .mobile-panel.is-open {
    display: block;
    padding: 20px 24px;
    border-top: 1px solid var(--line);
  }
  .mobile-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .mobile-panel ul a {
    font-family: "Jura", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 14px;
    display: block; /* ensure block for toggle */
  }

  .mobile-mega-menu {
    padding-left: 15px;
    margin-top: 15px;
    display: none; /* hidden by default */
    flex-direction: column;
    gap: 20px;
  }
  .mobile-mega-menu-col h3 {
    font-size: 14px;
    margin-bottom: 8px;
    text-transform: uppercase;
  }
  .mobile-mega-menu-col h3 a {
    color: inherit;
    font-weight: 600;
  }
  .mobile-mega-menu-col ul {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .mobile-mega-menu-col ul li a {
    font-size: 13px;
    opacity: 0.8;
    text-transform: none;
    letter-spacing: 0.5px;
  }
  
  .hero-ui .mobile-panel.is-open {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.97);
    pointer-events: auto;
    border-radius: 0;
    box-shadow: none;
    max-height: none;
    overflow-y: auto;
    z-index: 1000;
    padding: 22px 28px 36px;
    border-top: 0;
  }

  .mobile-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
  }

  .mobile-panel-logo img {
    height: 38px;
    width: auto;
    display: block;
  }

  .mobile-panel-close {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.16);
    border-radius: 50%;
    background: rgba(255,255,255,0.7);
    color: #111;
    cursor: pointer;
  }

  .hero-ui .mobile-panel.is-open > ul {
    gap: 18px;
  }

  .hero-ui .mobile-panel.is-open > ul > li > a {
    font-size: 18px;
    letter-spacing: 2px;
    padding: 10px 0;
  }

  .site-chrome .topbar {
    display: none;
  }
}

/* HERO */
.hero{
  position:relative;
  min-height: calc(100svh - 160px);
  border-bottom:1px solid var(--line);
}
.hero-slide{
  position:absolute; inset:0;
  background-position:center;
  background-size:cover;
  filter:saturate(.98);
  opacity:1;
  transition:opacity .7s ease;
  will-change:opacity;
}
@media (max-width: 768px) {
  .hero-slide {
    background-position: center top;
  }
}
.hero-overlay{
  position:relative;
  min-height: calc(100svh - 160px);
  display:flex;
  align-items:center;
  padding:84px 0;
}
.hero-copy{
  position:absolute;
  z-index:2;
  top:50%;
  left:max(24px, calc((100vw - 1180px) / 2));
  transform:translateY(-50%);
  width:min(520px, 100%);
  padding-left:4px;
  opacity:1;
  transition:opacity .7s ease;
  will-change:opacity;
}
.hero.is-fading .hero-slide,
.hero.is-fading .hero-copy{
  opacity:0;
}
.hero-copy h1{
  font-family:"Cormorant Garamond", Georgia, serif;
  font-weight:500;
  font-size:44px;
  margin:0 0 10px;
  letter-spacing:.4px;
}
.hero-copy h1 span{font-weight:700; letter-spacing:1px}
.hero-copy p{
  margin:0;
  color:rgba(47,42,36,.72);
  font-family:"Jura", sans-serif;
  letter-spacing:1.2px;
  line-height:1.35;
}
@media (max-width: 768px) {
  .hero-copy {
    left:20px;
    right:20px;
    width:auto;
    top:58%;
  }

  .hero-copy h1 {
    font-size:34px;
  }
}
.hero-nav{
  position:absolute;
  inset:0;
  pointer-events:none;
}
.hero-arrows .arrow:first-child {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
}
.hero-arrows .arrow:last-child {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
}
.arrow{
  width:54px; height:54px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(0,0,0,.1);
  color:white;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  transition: background .2s ease;
}
.arrow:hover{background:rgba(0,0,0,.25)}
.hero-dots{
  position:absolute;
  right:18px; bottom:18px;
  display:flex; gap:8px;
  pointer-events:auto;
}
.dot{
  width:10px; height:10px; border-radius:999px;
  background:rgba(255,255,255,.55);
  border:1px solid rgba(0,0,0,.12);
  cursor:pointer;
}
.dot.is-active{background:rgba(255,255,255,.95)}

/* Section title */
.section{
  padding:40px 0 54px;
}
.section h2{
  margin:0 0 18px;
  font-family:"Jura", sans-serif;
  font-size:16px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:rgba(47,42,36,.8);
}

/* Product collage grid (like PDF page 5) */
.product-collage{
  display:grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 200px;
  gap:22px;
}
.card{
  position:relative;
  border:1px solid var(--line);
  background:var(--card);
  overflow:hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
  transition: all .3s ease;
}
.card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.card.bg{
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
}
.card::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,.08));
  opacity:0;
  transition:.25s ease;
}
.card:hover::after{opacity:1}
.tag{
  position:absolute;
  left:14px; bottom:14px;
  background:rgba(241,236,230,.92);
  border:1px solid var(--line);
  padding:6px 10px;
  font-family:"Jura", sans-serif;
  font-size:12px;
  letter-spacing:1.2px;
  text-transform:uppercase;
}
.card.big{grid-row: span 2;}
.card.tall{grid-row: span 2;}
.card.wide{grid-column: span 2;}
/* Styles row */
.styles-row{
  margin-top:28px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:18px;
}
.style-tile{min-height:350px}
@media (max-width: 768px) {
  .style-tile{min-height:200px}
}
.style-chip{
  position:absolute;
  top:14px; left:14px;
  padding:6px 10px;
  background:rgba(47,42,36,.72);
  color:#fff;
  border:1px solid rgba(255,255,255,.25);
  font-family:"Jura", sans-serif;
  font-size:12px;
  letter-spacing:1.2px;
  text-transform:uppercase;
}
.style-tile:nth-child(1) .style-chip{background:rgba(235,229,223,.86); color:var(--ink)}
.style-tile:nth-child(2) .style-chip{background:rgba(139,107,62,.86)}
.style-tile:nth-child(3) .style-chip{background:rgba(45,58,74,.86)}
.style-tile:nth-child(4) .style-chip{background:rgba(47,42,36,.86)}
.koleksiyon{
  display: block;
  margin: 22px auto 0;
  height:800px;
  width: 100%;
}
.center-icon{
  position:absolute;
  left:50%; top:50%;
  transform:translate(-50%,-50%);
  width:46px; height:46px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.55);
  background:rgba(0,0,0,.18);
  display:flex; align-items:center; justify-content:center;
  color:#fff;
}



/* --- Homepage blocks to match reference layout --- */
.fullbleed{width:100%}
.section-tight{padding:34px 0 40px}
.section-dark{
  background: linear-gradient(180deg, #2e2a26 0%, #3a3530 100%);
  color: rgba(255,255,255,.86);
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.section-dark h2{color:rgba(255,255,255,.8)}
.muted-light{color:rgba(255,255,255,.68)}

.blueprints{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
  margin-top:8px;
}
.bp{
  min-height:180px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.14);
}

.catalog-row{
  margin-top:10px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.catalog-tile{
  min-height:220px;
  filter:saturate(.98);
}
.catalog-tile .tag{left:12px; bottom:12px}

.story{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap:26px;
  align-items:center;
  padding:26px 0 10px;
}
.story h3{
  font-family:"Cormorant Garamond", Georgia, serif;
  font-weight:500;
  font-size:34px;
  letter-spacing:1px;
  margin:0 0 10px;
  text-transform:uppercase;
}
.story p{margin:0; color:rgba(47,42,36,.68); line-height:1.8; font-size:13px}
.story .story-photo{min-height:360px}
.story .story-copy{padding-right:6px}

.banner{
  height:420px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.swatches{
  display:flex; gap:10px; margin-top:14px; align-items:center;
}
.swatch{
  width:14px; height:14px; border-radius:3px; border:1px solid rgba(255,255,255,.4);
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(0,0,0,.16);
  color:#fff;
  font-family:"Jura", sans-serif;
  text-transform:uppercase;
  letter-spacing:1.6px;
  font-size:12px;
  margin-top:14px;
}
.btn:hover{background:rgba(0,0,0,.26)}

/* --- Tekstür Ekranı Tam Genişlik Düzenlemesi --- */
.texture {
  position: relative;
  width: 100vw;          /* Ekranın tam genişliğini zorlar */
  left: 50%;             /* Sayfayı ortalar */
  right: 50%;
  margin-left: -50vw;    /* Kenar boşluklarını sıfırlayıp taşmasını sağlar */
  margin-right: -50vw;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #1f1f1f;
  text-align: center;
  overflow: hidden;
}

.texture::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/teksturarkaplan-cropped.png');
  background-size: cover;
  background-position: 34% center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Metinlerin okunurluğu için arka plana hafif bir karartma (Opsiyonel) */
.texture::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

.texture-content {
  position: relative;
  z-index: 2; /* İçeriği karartmanın üzerine çıkarır */
  width: min(100%, 700px); /* Mobilde %90, masaüstünde max 700px */
  padding: 40px;
  text-align: right;
  transform: translateX(-8vw);
}

.texture h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 64px; /* Daha büyük ve vurucu başlık */
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 500;
}

.texture p {
  font-family: "Quicksand", sans-serif;
  margin: 0 0 30px auto;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-size: 18px;
  max-width: 500px; /* Metnin çok yayılmasını engeller */
}

@media (max-width: 768px) {
  .texture-content {
    transform: none;
  }
}

/* İncele Butonu Tasarımı */
.texture .btn {
  display: inline-block;
  padding: 12px 45px;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Jura", sans-serif;
  letter-spacing: 3px;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.texture .btn:hover {
  background: #ffffff;
  color: #000000;
}

.projects{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap:14px;
}
.project-tile{min-height:120px}
.blog-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:18px;
}
.blog-tile{min-height:200px}
.blog-title{
  text-align:center;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:34px;
  text-transform:lowercase;
  margin:0 0 14px;
}

/* --- Full width helpers --- */
.container-wide{width:100%; padding:0 24px}
@media (max-width:720px){ .container-wide{padding:0 14px} }

/* --- Scroll snap one-screen sections --- */
html{scroll-behavior:smooth}
.snap-container{
  overflow-y: auto;
  scroll-snap-type: y mandatory;
}
.snap{
  scroll-snap-align: start;
  min-height: 100svh;
}
.snap .container{height:100%}

/* reduce sticky chrome height influence */
.site-chrome{position:relative}

/* --- Topbar full width (not centered) --- */
.topbar-wrap{
  width:100%;
  border-bottom:1px solid var(--line);
  background: #675F54;
  color: #E8DBC7;
}
.topbar{
  padding:10px 0 8px;
  color: #E8DBC7;
}
.topbar .links, .topbar .center-links, .topbar .right-links{gap:14px}
@media (max-width:1024px){
  .topbar .links, .topbar .center-links, .topbar .right-links{gap:10px}
}

/* --- Hero overlay menu & logo on slider --- */
.hero{
  border-bottom:none;
}
.hero-ui{
  position:relative;
  z-index: 10; /* Bring UI layer to the front */
  pointer-events:none;
}
.hero-ui .center{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:20px;
  pointer-events:auto;
  padding: 22px 0;
}
.hero-ui .brand-hero{
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:44px;
  letter-spacing:1px;
  text-transform:uppercase;
  line-height:1;
  filter: brightness(0);
}
.hero-ui .brand-hero small{
  display:block;
  font-family:"Jura", sans-serif;
  font-size:14px;
  letter-spacing:4px;
  margin-top:2px;
  text-align:center;
  color:rgba(47,42,36,.7);
}
.hero-ui .hero-navmenu{
  position: relative; /* Set positioning context for the mega menu */
  font-family:"Jura", sans-serif;
  font-size:13px;
  letter-spacing:1.6px;
  text-transform:uppercase;
}
.hero-ui .hero-navmenu ul{
  list-style:none;
  margin:0; padding:0;
  display:flex;
  gap:20px;
  justify-content:center;
  white-space:nowrap;
  overflow-x: auto;
}
.hero-ui .hero-navmenu a{color:#000; font-weight:600;}
.hero-ui .hero-navmenu a:hover{text-decoration:underline}

/* mobile hero menu */
.hero-ui .mobile-center{
  display:none;
  position:absolute;
  top:16px; left:14px; right:14px;
  pointer-events:auto;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.hero-ui .mobile-center .brand-hero{font-size:26px}
.hero-ui .mobile-center .iconbtn{background:rgba(255,255,255,.35)}
@media (max-width:720px){
  .hero-ui .center{display:none}
  .hero-ui .mobile-center{display:flex}
}

/* --- Products section should scroll-snap and not include extra paddings --- */
.section{padding:38px 0}
.section.snap{padding:0}
.snap-inner{
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

/* --- Full width craft/texture blocks --- */
.texture{
  width:100vw;
  max-width:none;
  left:50%;
  margin-left:-50vw;
  margin-right:-50vw;
  background-size:cover;
}

/* --- Projects screen --- */
#projeler .container {
  max-width: none;
  width: 100%;
}
#projeler h3 {
  padding-left: 5vw;
}
.projects-screen {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(360px, 42vw) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}
.projects-left {
  display: flex;
  flex-direction: column;
}
.projects-carousel {
  position: relative;
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.projects-right-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  min-width: 0; /* Allows horizontal scrolling in grid container */
  height: 100%;
  display: flex;
  align-items: center; /* Vertically centers the content */
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
}
.projects-right-wrapper::-webkit-scrollbar {
  display: none;
}
.projects-right {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
  min-width: max-content; /* Ensure container expands to hold all children */
}
.projects-single {
  min-height: 82svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  height: 100%;
  width: 100%;
  border-left: 0;
  border-radius: 0 8px 8px 0;
  background-size: cover;
  background-position: center;
}
.project-card {
  flex: 0 0 30%;
  min-width: 250px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-decoration: none;
  padding: 20px;
  height: 45svh;
  background-size: cover;
  background-position: center;
  scroll-snap-align: start;
}
.project-card-title {
  background-color: rgba(255, 255, 255, 0.85);
  color: #000;
  padding: 10px 20px;
  font-family: "Jura", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.project-card:hover .project-card-title {
  background-color: #000;
  color: #fff;
}
.projects-btn {
  background-color: #000;
  color: #fff;
  padding: 14px 36px;
  font-family: "Jura", sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #000;
  transition: all 0.3s ease;
}
.projects-single:hover .projects-btn {
  background-color: #fff;
  color: #000;
}
.projects-nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.projects-nav:hover {
  background: #111;
  color: #fff;
}
.projects-nav:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}
.projects-nav-prev {
  left: 12px;
}
.projects-nav-next {
  right: 12px;
}

@media (max-width: 1024px) {
  .projects-screen {
    grid-template-columns: 1fr;
  }
  .projects-right {
    flex-direction: row;
  }
  .projects-single {
    min-height: 58svh;
  }
  .project-card {
    height: 35svh;
    flex: 0 0 70%;
    min-width: 200px;
  }
  .projects-nav {
    width: 38px;
    height: 38px;
  }
  .projects-nav-prev {
    left: 8px;
  }
  .projects-nav-next {
    right: 8px;
  }
}



/* Sticky Mega Menu with Logo */
.hero-ui .center.is-fixed,
.hero-ui .mobile-center.is-fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg);
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  pointer-events: auto;
}

/* Desktop Sticky Styles */
.hero-ui .center.is-fixed {
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 40px;
}

.hero-ui .center.is-fixed .brand-hero {
  font-size: 28px;
}

.hero-ui .center.is-fixed .brand-hero img {
  height: 1.5em; /* Smaller logo */
}

/* Mobile Sticky Styles */
.hero-ui .mobile-center.is-fixed {
  padding: 10px 20px;
}

.hero-ui .center.is-fixed.is-visible,
.hero-ui .mobile-center.is-fixed.is-visible {
  transform: translateY(0);
}

.hero-navmenu .has-dropdown {
  position: static; /* Let mega-menu be positioned relative to nav, not li */
}

.mega-menu {
  display: none;
  position: absolute;
  top: 100%; /* Position below the nav with a 10px gap */
  left: 50%;
  transform: translateX(-50%);
  max-width: 1180px;
  width: 96vw;
  background: rgba(241, 236, 230, .96);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,.15);
  padding: 36px 18px 28px;
  pointer-events: auto; /* Ensure dropdown itself is interactive */
  z-index: 100;
  overflow: visible;
}

.has-dropdown:hover .mega-menu {
  display: block;
}

.mega-menu-content {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  overflow: visible;
}

.mega-menu-col {
  flex: 1;
  min-width: 0;
  padding: 0 12px;
}

.mega-menu-col + .mega-menu-col {
  border-left: 1px solid var(--line);
}

.mega-menu-col h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--ink);
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  text-transform: none;
  overflow-wrap: anywhere;
  white-space: normal;
}

.mega-menu-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: visible;
  white-space: normal;
}

.mega-menu-col ul li a {
  display: block;
  opacity: .75;
  font-size: 14px;
  text-transform: none;
  letter-spacing: .4px;
  line-height: 1.25;
  overflow-wrap: anywhere;
  white-space: normal;
}

.mega-menu-col ul li a:hover {
  opacity: 1;
  text-decoration: none;
  color: var(--accent);
}
.product-collage{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  grid-template-rows:repeat(4,180px);
  gap:12px;

  padding:14px;
  background: rgba(255,255,255,.18);
  border:1px solid var(--line);
  max-width: 1520px;
  margin: 0 auto;
}

/* yerleşim */
.item-mobilya{ grid-area: 1 / 1 / 3 / 3; }
.item-mutfak { grid-area: 1 / 3 / 2 / 6; }
.item-banyo  { grid-area: 1 / 6 / 2 / 7; }
.item-bar    { grid-area: 2 / 3 / 3 / 4; }
.item-oyun   { grid-area: 2 / 4 / 3 / 7; }
.item-bahce  { grid-area: 3 / 1 / 4 / 3; }
.item-parke  { grid-area: 3 / 3 / 4 / 5; }
.item-kapi   { grid-area: 3 / 5 / 5 / 7; }
.item-merdiven{grid-area: 4 / 1 / 5 / 3; }
.item-decor  { grid-area: 4 / 3 / 5 / 5; }

/* mobil */
@media (max-width:768px){
  #urunler.snap {
    min-height: auto;
  }
  #urunler > .container {
    width: calc(100% - 28px);
    height: auto;
  }
  #urunler .snap-inner {
    height: auto;
    justify-content: flex-start;
    padding: 56px 0 36px;
  }
  .product-collage{
    grid-template-columns:repeat(2,1fr);
    grid-auto-rows:160px;
    grid-template-rows:none;
  }
  .card{ grid-area:auto !important; }
}


/* Tasarım Hikayemiz Ekranı */
#hikayemiz {
  background-color: #ffffff; /* Temiz beyaz arka plan */
}

.story-layout {
  display: flex;
  width: 100%;
  height: 100svh;
  align-items: center;
}

.story-image {
  flex: 1;
  height: 100%;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Görseli alanı kaplayacak şekilde doldurur */
  filter: grayscale(100%); /* Görseldeki siyah-beyaz etki için */
}

.story-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10%; /* Metni merkeze yaklaştırmak için iç boşluk */
}

.story-text-wrapper {
  max-width: 600px;
}

.story-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 500;
  letter-spacing: 4px;
  margin-bottom: 60px;
  color: #000;
  text-transform: uppercase;
}

.story-description {
  font-family: "Quicksand", sans-serif;
  font-size: clamp(12px, 1.5vw, 24px);
  line-height: 1.4;
  letter-spacing: 1px;
  color: #000;
  font-weight: 400;
  text-align: justify;
}

/* Mobil Uyumluluk */
@media (max-width: 1024px) {
  .story-layout {
    flex-direction: column;
  }
  .story-image {
    height: 50%;
    width: 100%;
  }
  .story-content {
    height: 50%;
    padding: 40px 20px;
  }
  .story-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .story-description {
    font-size: 16px;
  }
}
/* Blog Bölümü Genel */
#blog-ekrani {
  background-color: #C9C6C4; /* Sayfa genel rengiyle uyumlu */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#blog-ekrani .blog-main-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 35px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #000;
}

.blog-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  width: 100%;
}

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-img-wrapper {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.1; /* Görseldeki dikeyimsi kare yapı */
  margin-bottom: 15px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.05);
}

.blog-date {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(231, 223, 214, 0.8);
  font-size: 10px;
  padding: 4px 8px;
  font-family: 'Jura', sans-serif;
}

.blog-info h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
}

.blog-info p {
  font-size: 11px;
  line-height: 1.5;
  color: #6d665f;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 2 satırla sınırla */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.author-circle {
  width: 18px;
  height: 18px;
  background-color: #b49a7a;
  border-radius: 50%;
}

.author-name {
  font-size: 10px;
  color: #888;
  font-family: 'Jura', sans-serif;
}

/* Postlar Butonu */
.blog-footer-btn {
  text-align: center;
  margin-top: 50px;
}

.post-btn {
  display: inline-block;
  padding: 8px 60px;
  border: 1px solid #000;
  color: #000;
  text-transform: lowercase;
  font-family: 'Jura', sans-serif;
  font-size: 14px;
  letter-spacing: 4px;
  transition: all 0.3s ease;
}

.post-btn:hover {
  background-color: #000;
  color: #fff;
}

/* Mobil Uyumluluk */
@media (max-width: 1024px) {
  .blog-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid-modern {
    grid-template-columns: 1fr;
  }
}
/* Genel Footer Düzenlemeleri */
.footer { background-color: #C9C6C4; color: #2f2a24; }

/* Abonelik Katmanı */
.footer-newsletter-layer {
  padding: 80px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.newsletter-grid { display: grid; grid-template-columns: 1fr 1.5fr; align-items: center; gap: 40px; }
.newsletter-visual img { max-height: 300px; transform: rotate(-5deg); }

.newsletter-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 32px; margin-bottom: 10px; }
.newsletter-header p { font-style: italic; color: #6d665f; margin-bottom: 30px; }

.newsletter-form .input-group {
  display: flex;
  border: 1px solid #6d665f;
  border-radius: 30px;
  overflow: hidden;
  max-width: 450px;
  margin-bottom: 15px;
}
.newsletter-form input {
  flex: 1; border: none; background: transparent; padding: 12px 20px; outline: none;
}
.newsletter-form button {
  background: transparent; border: none; border-left: 1px solid #6d665f;
  padding: 0 25px; text-transform: uppercase; font-size: 12px; cursor: pointer;
}
.checkbox-label { font-size: 10px; display: flex; gap: 10px; align-items: flex-start; opacity: 0.6; }

/* S.S.S Katmanı */
.footer-faq-layer { padding: 60px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; }
.faq-title h2 { font-size: 40px; font-weight: 300; letter-spacing: 5px; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 15px 0; display: flex; justify-content: space-between;
  font-family: 'Quicksand', sans-serif; cursor: pointer;
}

/* Ana Footer Grid */
.footer-bottom-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(5, 1fr);
  gap: 30px;
  padding: 60px 0;
  justify-items: center;
}
.footer-col h3 { margin-top: 100px; font-size: 12px; letter-spacing: 2px; margin-bottom: 20px; opacity: 0.8; }
.footer-col ul li a { font-size: 14px; color: #6d665f; display: block; padding: 4px 0; font-weight: 600; }
.blog-link { background: #bca894; color: #fff !important; display: inline-block !important; padding: 2px 8px !important; margin-top: 5px; }

.mini-map img { width: 100%; border-radius: 4px; margin: 15px 0; filter: grayscale(1); }

/* --- Blog Ekranı Genişliği --- */
#blog-ekrani > .container {
  width: 90%;
}

/* --- Footer Genişliği --- */
.footer-main-layer > .container {
  width: 80%;
  max-width: none;
  box-sizing: border-box; /* padding'in genişliğe dahil olmasını sağlar */
}

/* --- S.S.S. Akordiyon Stilleri --- */
.faq-answer {
  display: none;
  padding: 5px 0 15px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.faq-answer.is-open {
  display: block;
}

.faq-question span {
  transition: transform 0.3s ease;
  display: inline-block;
  font-weight: 300;
  font-size: 24px;
}

/* Footer Mobil Uyumluluk */
@media (max-width: 1024px) {
  .newsletter-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px 0;
  }
  .footer-col h3 {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .footer-top-layer .container,
  .footer-newsletter-layer .container,
  .footer-faq-layer .container,
  .footer-main-layer > .container {
    width: calc(100% - 32px);
    max-width: none;
  }

  .footer-top-layer {
    padding: 36px 0 22px;
  }

  .social-icons {
    gap: 16px;
  }

  .social-icons a {
    font-size: 38px;
  }

  .brand-logos-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
  }

  .brand-logos-row span,
  .brand-logos-row a {
    width: 100%;
    height: 76px;
    padding: 12px;
    background: rgba(255,255,255,.18);
  }

  .brand-logos-row span:last-child,
  .brand-logos-row a:last-child {
    grid-column: 1 / -1;
  }

  .newsletter-grid {
    text-align: center;
  }

  .newsletter-visual {
    display: flex;
    justify-content: center;
  }

  .footer-bottom-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 34px 0;
    justify-items: stretch;
  }
  .footer-newsletter-layer, .footer-faq-layer {
    padding: 34px 0;
  }
  .newsletter-header h3 {
    font-size: 26px;
    margin-top: 0;
  }
  .newsletter-header p {
    margin-bottom: 20px;
  }
  .newsletter-form .input-group {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  .checkbox-label {
    max-width: 460px;
    margin: 0 auto;
    text-align: left;
  }
  .faq-title h2 {
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 4px;
  }
  .faq-question {
    padding: 14px 0;
    gap: 18px;
  }
  .newsletter-visual img {
    transform: none;
    width: 100%;
    max-width: 230px;
    max-height: 220px;
    object-fit: contain;
  }
  .footer-col,
  .footer-col-contact {
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(47,42,36,.08);
    border-radius: 8px;
    padding: 18px;
  }
  .footer-col h3 {
    margin-top: 0;
    margin-bottom: 12px;
  }
  .footer-col ul {
    margin: 0;
    padding: 0;
  }
  .footer-col ul li {
    list-style: none;
  }
  .footer-logo {
    max-width: 160px;
    margin: 0 auto 14px;
  }
  .footer-col-contact {
    grid-column: 1 / -1;
    text-align: center;
  }
  .footer-col-contact .address {
    margin-left: auto;
    margin-right: auto;
  }
  .contact-info li a {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-bottom-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .brand-logos-row {
    grid-template-columns: 1fr;
  }
  .brand-logos-row span:last-child,
  .brand-logos-row a:last-child {
    grid-column: auto;
  }
  .newsletter-form .input-group {
    border-radius: 22px;
    flex-direction: column;
  }
  .newsletter-form input {
    text-align: center;
  }
  .newsletter-form button {
    border-left: 0;
    border-top: 1px solid #6d665f;
    padding: 12px 20px;
  }
  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.faq-item.is-open .faq-question span {
  transform: rotate(45deg);
}

/* --- Sosyal Medya İkonları --- */
.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-icons a {
    font-size: 60px;
    color: var(--muted);
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--ink);
}

/* --- İletişim Bilgileri --- */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    font-size: 14px;
    font-weight: 600;
}

.contact-info li {
    margin-bottom: 10px;
}

.contact-info li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
}

.contact-info li a:hover {
    color: var(--ink);
}

.contact-info .fa-solid, .contact-info .fa-brands {
    width: 18px;
    text-align: center;
}

.brand-logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 90px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.brand-logos-row span,
.brand-logos-row a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--line);
  padding: 10px;
  border-radius: 5px;
  width: 280px;
  height: 100px;
  color: inherit;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}

.brand-logos-row a:hover {
  border-color: rgba(47,42,36,.45);
  transform: translateY(-2px);
}

.brand-logos-row img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* --- Zanaat Ekranı Yeni Tasarım --- */
.craft {
  display: flex;
  width: 100%;
  min-height: 100svh; /* Tam ekran yüksekliği */
  background: #7F7E7C;
}

.craft-image-area {
  width: 50%;
  background-image: url('../img/craft.png?v=2'); /* Buraya usta görselinin yolunu koy */
  background-size: cover;
  background-position: center;
}

.craft-text-area {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  background: #323234; /* Görseldeki koyu gri/kahve tonu */
  color: #c9b49a; /* Metinler için kullanılan gold/bej tonu */
}

.craft-content-wrapper {
  max-width: clamp(480px, 40vw, 700px);
  width: 100%;
}

.craft-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 5vw, 100px); /* Ekran boyutuna göre otomatik ölçeklenir */
  line-height: 0.9;
  font-weight: 500;
  margin-bottom: clamp(20px, 3vw, 50px);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.craft-quote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(16px, 1.8vw, 28px);
  margin-bottom: clamp(15px, 2vw, 35px);
  opacity: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.craft-description {
  font-family: "Quicksand", sans-serif;
  font-size: clamp(14px, 1.2vw, 20px);
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: clamp(20px, 3vw, 50px);
  color: rgba(201, 180, 154, 0.95); /* Renk paleti korundu, saydamlık azaltıldı */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.craft-footer {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.craft-social-links {
  display: flex;
  gap: 8px;
  position: relative;
}

.swatch-link {
  width: 28px;
  height: 28px;
  background: #e7dfd6; /* Karelerin rengi */
  display: block;
}

.social-label {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Jura", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
}

.craft-blog-link {
  font-family: "Jura", sans-serif;
  font-size: 18px;
  text-transform: lowercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* Mobil Düzenleme */
@media (max-width: 1024px) {
  .craft { flex-direction: column; }
  .craft-image-area, .craft-text-area { width: 100%; min-height: 50svh; }
  .craft-title { font-size: 50px; }
  .craft-text-area { padding: 40px 20px; }
}
@media (max-width: 480px) {
  .craft-title { font-size: 36px; line-height: 1.1; }
  .craft-quote { font-size: 18px; }
}

/* Mobile topbar menu */
.topbar-mobile {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 8px;
  color: #E8DBC7;
}
.topbar-mobile .iconbtn {
  border-color: rgba(232, 219, 199, 0.5);
  background: transparent;
}
.topbar-mobile-brand {
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size: 24px;
}
.topbar-mobile-panel {
  display: none;
  background: #675F54;
  padding: 10px 24px 20px;
  border-top: 1px solid rgba(232, 219, 199, 0.2);
}
.topbar-mobile-panel.is-open {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.topbar-mobile-panel a {
  color: #E8DBC7;
  font-size: 14px;
  font-family: "Jura", sans-serif;
  text-transform: uppercase;
  padding: 4px 0;
}

@media (max-width: 1024px) {
  .topbar-wrap .topbar {
    display: none;
  }
  .topbar-wrap .topbar-mobile {
    display: flex;
  }
}

/* --- Başlık boşlukları (Ürünler, Tasarım Hikayemiz, Projelerimiz) --- */
.grid-title, 
.story-title, 
#projeler h3 {
  margin-top: 25px;
}

/* --- Footer Mobile Polish --- */
@media (max-width: 768px) {
  .footer-top-layer .container,
  .footer-newsletter-layer .container,
  .footer-faq-layer .container,
  .footer-main-layer > .container {
    width: calc(100% - 32px);
    max-width: none;
  }

  .footer-top-layer {
    padding: 36px 0 22px;
  }

  .footer-newsletter-layer,
  .footer-faq-layer {
    padding: 34px 0;
  }

  .social-icons {
    gap: 16px;
  }

  .social-icons a {
    font-size: 38px;
  }

  .brand-logos-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
  }

  .brand-logos-row span,
  .brand-logos-row a {
    width: 100%;
    height: 76px;
    padding: 12px;
    background: rgba(255, 255, 255, .18);
  }

  .brand-logos-row span:last-child,
  .brand-logos-row a:last-child {
    grid-column: 1 / -1;
  }

  .newsletter-grid {
    text-align: center;
  }

  .newsletter-header h3 {
    font-size: 26px;
    margin-top: 0;
  }

  .newsletter-header p {
    margin-bottom: 20px;
  }

  .newsletter-visual {
    display: flex;
    justify-content: center;
  }

  .newsletter-visual img {
    width: 100%;
    max-width: 230px;
    max-height: 220px;
    object-fit: contain;
    transform: none;
  }

  .newsletter-form .input-group {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .checkbox-label {
    max-width: 460px;
    margin: 0 auto;
    text-align: left;
  }

  .faq-title h2 {
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 4px;
  }

  .faq-question {
    gap: 18px;
    padding: 14px 0;
  }

  .footer-bottom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 34px 0;
    justify-items: stretch;
  }

  .footer-col,
  .footer-col-contact {
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(47, 42, 36, .08);
    border-radius: 8px;
    padding: 18px;
  }

  .footer-col h3 {
    margin-top: 0;
    margin-bottom: 12px;
  }

  .footer-col ul {
    margin: 0;
    padding: 0;
  }

  .footer-col ul li {
    list-style: none;
  }

  .footer-logo {
    max-width: 160px;
    margin: 0 auto 14px;
  }

  .footer-col-contact {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 34px 0 18px;
  }

  .footer-grid > div {
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(47, 42, 36, .08);
    border-radius: 8px;
    padding: 18px;
  }

  .footer-grid h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: 2px;
  }

  .footer-grid ul {
    margin: 0;
    padding: 0;
  }

  .footer-grid li {
    list-style: none;
  }

  .footer-bottom {
    align-items: center;
    gap: 14px;
    padding: 18px 0 30px;
    text-align: center;
  }

  .footer-col-contact .address {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-info li a {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .brand-logos-row {
    grid-template-columns: 1fr;
  }

  .brand-logos-row span:last-child,
  .brand-logos-row a:last-child {
    grid-column: auto;
  }

  .newsletter-form .input-group {
    border-radius: 22px;
    flex-direction: column;
  }

  .newsletter-form input {
    text-align: center;
  }

  .newsletter-form button {
    border-left: 0;
    border-top: 1px solid #6d665f;
    padding: 12px 20px;
  }

  .footer-bottom-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

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

  .footer-grid > div {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
