/* =====================================================
   INTENSIA — MAIN STYLESHEET
===================================================== */

/* === FONTS === */
@font-face {
  font-family: 'Bellastra';
  src: url('/assets/fonts/Bellastra/bellastra-regular.ttf') format('truetype');
  font-weight: normal; font-style: normal; font-display: block;
}
@font-face {
  font-family: 'Geonova';
  src: url('/assets/fonts/Geonova/geonova-variable.ttf') format('truetype');
  font-weight: 100 900; font-style: normal; font-display: block;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('/assets/fonts/Sofia-Pro/Sofia Pro Regular Az.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: block;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('/assets/fonts/Sofia-Pro/Sofia Pro Medium Az.otf') format('opentype');
  font-weight: 500; font-style: normal; font-display: block;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('/assets/fonts/Sofia-Pro/Sofia Pro Semi Bold Az.otf') format('opentype');
  font-weight: 600; font-style: normal; font-display: block;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('/assets/fonts/Sofia-Pro/Sofia Pro Bold Az.otf') format('opentype');
  font-weight: 700; font-style: normal; font-display: block;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('/assets/fonts/Sofia-Pro/Sofia Pro Black Az.otf') format('opentype');
  font-weight: 900; font-style: normal; font-display: block;
}

/* === CONTAINER OVERRIDE ===
   ≥1600px  → büyük monitör  : 1700px
   1400-1599px → laptop/geniş : 1300px
   1200-1399px → xl           : 1140px (Bootstrap varsayılanı) */
.container {
  padding-left: clamp(20px, 2.5vw, 40px);
  padding-right: clamp(20px, 2.5vw, 40px);
}

@media (min-width: 1600px) {
  .container { max-width: 1700px; }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .container { max-width: 1300px; }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .container { max-width: 1140px; }
}

/* === BASE === */
*, *::before, *::after { box-sizing: border-box; }

html {
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
  font-family: 'Sofia Pro', sans-serif;
  margin: 0;
}

section { overflow-x: hidden; }

.font-bellastra { font-family: 'Bellastra', cursive; line-height: 1.2; }
.font-geonova   { font-family: 'Geonova', sans-serif; }
.font-sofia     { font-family: 'Sofia Pro', sans-serif; }

/* =====================================================
   NAVBAR
===================================================== */
.navbar { overflow-x: hidden; }
.navbar-toggler { padding: 4px 6px; border: 0; }

#mainNavbar {
  background: transparent !important;
  box-shadow: none !important;
  transition: background-color .25s ease, box-shadow .25s ease, padding .25s ease;
}

#mainNavbar.scrolled {
  position: fixed !important;
  top: 0; left: 0; width: 100%;
  background: rgba(0,0,0,.88) !important;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 18px rgba(0,0,0,.18);
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  z-index: 9999;
}

#navbarMenu,
#navbarMenu.show,
#mainNavbar.scrolled #navbarMenu,
#mainNavbar.scrolled #navbarMenu.show {
  background: transparent !important;
  backdrop-filter: none !important;
}

#navbarLine {
  /* p-md-5 = 48px top padding + ~40px logo = 88px → çizgi biraz aşağıda */
  top: 100px;
}

#navbarLine.scrolled { display: none; }

#mainNavbar .nav-link {
  position: relative;
  display: inline-block;
  will-change: transform;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1),
              opacity .2s ease;
}
#mainNavbar .nav-link:hover {
  transform: translateY(-3px) scale(1.06);
  opacity: 1;
}

#mainNavbar .navbar-tools {
  width: 100%;
  max-width: fit-content;
}

#mainNavbar .lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

#mainNavbar .lang-switcher-link {
  min-width: 42px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  font-family: 'Sofia Pro', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

#mainNavbar .lang-switcher-link:hover {
  color: #fff;
  background: rgba(255,255,255,.12);
}

#mainNavbar .lang-switcher-link.is-active {
  background: #fff;
  color: #111827;
}

@media (max-width: 767px) {
  /* p-3 = 16px top padding + ~40px logo = 56px */
  #navbarLine { display: none !important; }
  #mainNavbar { backdrop-filter: blur(8px); }
  #mainNavbar .navbar-collapse { border-radius: 12px; margin-top: 14px; padding: 20px !important; }
  #mainNavbar .navbar-tools { max-width: none; }
  .page-urunler #mainNavbar,
  .page-iletisim #mainNavbar {
    background: rgba(0, 0, 0, 0.88) !important;
    backdrop-filter: blur(6px);
  }
  #mainNavbar .navbar-nav { gap: 18px; }
  #mainNavbar .nav-link { color: #fff !important; font-size: 16px; }
  #mainNavbar .nav-link:hover { transform: none; }
  #mainNavbar .lang-switcher {
    margin: 0 auto;
  }
}

/* =====================================================
   HERO / CAROUSEL
===================================================== */
.carousel-hero {
  height: 100vh;
  height: 100dvh;
  position: relative;
}

.carousel-desc {
  font-family: 'Sofia Pro', sans-serif;
  font-size: clamp(13px, 1.2vw, 17px);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.social-icons { bottom: 120px; transition: bottom .3s ease; }

.social-icon img {
  width: clamp(18px, 1.8vw, 26px);
  height: clamp(18px, 1.8vw, 26px);
  object-fit: contain;
  transition: all .3s ease;
}
.social-icon img:hover { transform: scale(1.15); opacity: .8; }

/* Header'ın kapladığı alan çıkarıldığında kalan hero alanının ortası */
.hero-content-offset {
  top: calc(50% + 68px) !important; /* masaüstü: navbar ~136px, yarısı 68px */
}

@media (max-width: 992px) {
  .social-icons { bottom: 80px; }
}
@media (max-width: 767px) {
  .hero-content-offset {
    top: calc(50% + 36px) !important;
  }
}
@media (max-width: 576px) {
  .social-icons { bottom: 50px; }
}
@media (max-width: 400px) {
  .social-icons { bottom: 30px; gap: 10px !important; }
}

/* =====================================================
   COLLECTION SECTION
===================================================== */
.collection-section {
  padding: clamp(60px, 7vw, 110px) 0 clamp(36px, 4.5vw, 70px);
}

.collection-title {
  font-family: 'Bellastra', cursive;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1.12;
  color: #0f172a;
  margin-bottom: clamp(18px, 2vw, 32px);
}

.collection-desc {
  font-family: 'Sofia Pro', sans-serif;
  font-size: clamp(13px, 1.1vw, 15px);
  color: #6b7280;
  max-width: 650px;
  line-height: 1.85;
}

/* =====================================================
   PRODUCT CARD (6-card grid)
===================================================== */
.product-card-6 {
  display: block;
  text-decoration: none;
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: clamp(16px, 2vw, 28px);
  overflow: hidden;
  cursor: pointer;
}

.product-card-6 > img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.product-card-6 .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.82) 0%,
    rgba(0,0,0,.38) 45%,
    rgba(0,0,0,.10) 100%
  );
  z-index: 1;
}

.product-card-6 .content {
  position: absolute;
  inset: 0;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(16px, 2vw, 28px);
}

.product-card-6 .top h5 {
  font-family: 'Geonova', sans-serif;
  font-weight: 800;
  font-size: clamp(16px, 1.8vw, 24px);
  margin: 0;
  color: #fff;
  line-height: 1.15;
}

.product-card-6 .top p {
  margin: 2px 0 0;
  font-family: 'Geonova', sans-serif;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 300;
  color: rgba(255,255,255,.75);
  line-height: 1.3;
}

.product-card-6 .divider {
  width: 100%; height: 1px;
  background: rgba(255,255,255,.3);
  margin: clamp(5px, .5vw, 7px) 0 clamp(9px, .9vw, 13px);
}

.product-card-6 .pills { display: flex; flex-wrap: wrap; gap: clamp(5px, .5vw, 8px); }

.product-card-6 .pill {
  background: #fff;
  color: #000;
  border: none;
  border-radius: 30px;
  padding: clamp(4px, .4vw, 6px) clamp(14px, 1.3vw, 20px);
  font-family: 'Geonova', sans-serif;
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 400;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}

.product-grid-section { padding-bottom: clamp(50px, 6vw, 90px); }

/* =====================================================
   MISSION SECTION
===================================================== */
.mission-section {
  padding: clamp(50px, 7vw, 100px) 0;
  background: #fff;
}

.mission-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
}

.mission-img-wrap img {
  width: 100%;
  max-width: clamp(260px, 36vw, 560px);
  height: auto;
  display: block;
  object-fit: contain;
}

.mission-title {
  font-family: 'Geonova', sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(12px, 1.5vw, 20px);
}

.mission-desc {
  font-family: 'Sofia Pro', sans-serif;
  font-size: clamp(13px, 1.1vw, 15px);
  color: #4b5563;
  max-width: 440px;
  line-height: 1.85;
  margin-bottom: clamp(16px, 2vw, 28px);
}

.mission-list {
  list-style: none;
  padding: 0; margin: 0;
  font-family: 'Sofia Pro', sans-serif;
  font-size: clamp(13px, 1.2vw, 17px);
  color: #0f172a;
}
.mission-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(6px, .8vw, 12px);
}
.mission-list li img { width: 12px; flex-shrink: 0; }

@media (max-width: 767px) {
  .mission-section { padding: 36px 0; }
  .mission-section .row { --bs-gutter-y: 1.5rem; }
  .mission-img-wrap { width: 100%; }
  .mission-img-wrap img { width: 100%; max-width: 100%; }

  .mission-section .text-center { text-align: left !important; }
  .mission-section .mx-auto { margin-left: 0 !important; margin-right: 0 !important; }

  .mission-list {
    display: grid !important;
    width: 100%;
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    gap: 8px 24px;
  }
  .mission-list li { margin-bottom: 0; }
}

/* =====================================================
   SIGNATURE SECTION
===================================================== */
.signature-section {
  padding: clamp(50px, 6vw, 90px) 0;
  background: #fff;
}

.sig-img-box {
  width: 100%;
  max-width: clamp(180px, 22vw, 360px);
  aspect-ratio: 3 / 4.8;
  border-radius: clamp(12px, 1.5vw, 20px);
  overflow: hidden;
  margin: 0 auto;
  background: #111;
}
.sig-img-box img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.sig-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: clamp(0px, 1.5vw, 20px);
  width: 100%;
}

.sig-title {
  font-family: 'Geonova', sans-serif;
  font-size: clamp(30px, 4.2vw, 62px);
  font-weight: 800;
  color: #0d1b2a;
  margin-bottom: clamp(16px, 2vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.sig-desc {
  font-family: 'Sofia Pro', sans-serif;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 400;
  color: #4b5563;
  width: 100%;
  max-width: 100%;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .sig-desc { max-width: 540px; }
}

@media (max-width: 991px) {
  .sig-img-box { max-width: 200px; margin-bottom: 20px; }
  .sig-title { font-size: clamp(24px, 5vw, 40px); }
  .sig-text { align-items: center; text-align: center; }
}
@media (max-width: 575px) {
  .sig-img-box { max-width: 160px; }
  .sig-title { font-size: clamp(20px, 6vw, 32px); }
}

/* =====================================================
   BRAND STATEMENT
===================================================== */
.brand-statement {
  padding: clamp(40px, 5vw, 75px) 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.brand-title {
  font-family: 'Geonova', sans-serif;
  font-size: clamp(20px, 2.6vw, 40px);
  font-weight: 300;
  line-height: 1.5;
  color: #0d1b2a;
}
.brand-title strong {
  font-weight: 800;
  color: #0d1b2a;
}

.metric-number {
  font-family: 'Geonova', sans-serif;
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 800;
  color: #0d1b2a;
  line-height: 1;
}
.metric-label {
  font-family: 'Sofia Pro', sans-serif;
  font-size: clamp(11px, .85vw, 13px);
  font-weight: 400;
  color: #6b7280;
  margin-top: 6px;
}

/* =====================================================
   PRODUCT SHOWCASE (Görünmez. Unutulmaz.)
===================================================== */
.product-showcase {
  padding: clamp(50px, 7vw, 100px) 0;
  background: #fff;
  isolation: isolate;
}

.showcase-title {
  font-family: 'Geonova', sans-serif;
  font-size: clamp(32px, 4.5vw, 68px);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: clamp(12px, 1.5vw, 22px);
}

.showcase-desc {
  font-family: 'Sofia Pro', sans-serif;
  font-size: clamp(13px, 1.1vw, 15px);
  color: #4b5563;
  max-width: clamp(300px, 26vw, 420px);
  line-height: 1.85;
  margin-bottom: clamp(20px, 2.5vw, 36px);
}

.image-stack {
  position: relative;
  width: clamp(220px, 28vw, 460px);
  height: clamp(330px, 42vw, 690px);
}
.image-stack .img {
  position: absolute;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: clamp(12px, 1.5vw, 18px);
  box-shadow: 0 15px 40px rgba(0,0,0,.15);
}
.img-back-1 { transform: rotate(-12deg) translate(-28px, -14px); opacity: .85; z-index: 1; }
.img-back-2 { transform: rotate(10deg) translate(28px, -8px);  opacity: .85; z-index: 2; }
.img-front  { transform: rotate(0deg); z-index: 3; border: 5px solid #fff; }

@media (max-width: 991px) {
  .image-stack { width: clamp(180px, 45vw, 280px); height: clamp(270px, 67vw, 420px); }
  .img-back-1 { transform: rotate(-8deg) translate(-18px, -10px); }
  .img-back-2 { transform: rotate(7deg)  translate(18px, -6px); }
  .showcase-desc { max-width: 100%; }
}

/* =====================================================
   PARFUM SECTION
===================================================== */
.parfum-wrapper {
  padding: clamp(30px, 4vw, 55px) 0;
  background: #fff;
}

.parfum-section {
  position: relative;
  background: url('/assets/img/parfum.jpg') center/cover no-repeat;
  border-radius: clamp(16px, 2vw, 26px);
  overflow: hidden;
  min-height: clamp(320px, 38vw, 540px);
  display: flex;
  align-items: center;
}

.parfum-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(5,5,10,.88) 0%,
    rgba(5,5,10,.65) 35%,
    rgba(5,5,10,.18) 62%,
    rgba(5,5,10,0)   100%);
}

.parfum-content {
  position: relative; z-index: 2;
  width: 100%;
  padding: clamp(28px, 5vw, 64px);
}

.parfum-card {
  color: #fff;
  max-width: clamp(280px, 38vw, 480px);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.8vw, 24px);
  background: rgba(5, 5, 10, 0.60);
  padding: clamp(24px, 3vw, 44px);
  border-radius: clamp(12px, 1.4vw, 20px);
}

.parfum-title {
  font-family: 'Geonova', sans-serif;
  font-size: clamp(26px, 3.6vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0;
}

.parfum-desc {
  font-family: 'Sofia Pro', sans-serif;
  font-size: clamp(12px, 1vw, 15px);
  color: rgba(255,255,255,.78);
  line-height: 1.8;
  margin: 0;
}

.parfum-btn {
  display: inline-block;
  width: fit-content;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.65);
  border-radius: 50px;
  padding: clamp(8px, .9vw, 12px) clamp(22px, 2.2vw, 32px);
  font-family: 'Sofia Pro', sans-serif;
  font-size: clamp(12px, .9vw, 14px);
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  transition: background .3s ease, border-color .3s ease, letter-spacing .3s ease;
}
.parfum-btn:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
}

.btn-intensia {
  display: inline-block;
  width: fit-content;
  background: #0d1b2a;
  color: #fff;
  border: 1.5px solid #0d1b2a;
  border-radius: 50px;
  padding: clamp(8px, .9vw, 12px) clamp(22px, 2.2vw, 32px);
  font-family: 'Sofia Pro', sans-serif;
  font-size: clamp(12px, .9vw, 14px);
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.btn-intensia:hover {
  background: #fff;
  border-color: #0d1b2a;
  color: #0d1b2a;
}

@media (max-width: 991px) {
  .parfum-content { display: flex; justify-content: center; text-align: center; }
  .parfum-card { max-width: 88%; align-items: center; }
  .parfum-overlay { background: rgba(5,5,10,.65); }
}
@media (max-width: 575px) {
  .parfum-section { min-height: clamp(280px, 90vw, 400px); }
  .parfum-title { font-size: clamp(22px, 6vw, 36px); }
}

/* =====================================================
   PRODUCT GRID 2×2 — DARK SECTION
===================================================== */
.product-grid-dark {
  background: #fff;
  padding: clamp(40px, 5.5vw, 80px) 0;
}

.product-card-dark {
  display: block;
  text-decoration: none;
  position: relative;
  border-radius: clamp(14px, 1.8vw, 22px);
  overflow: hidden;
  height: clamp(240px, 24vw, 360px);
  cursor: pointer;
}
.product-card-dark > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transform-origin: center;
}
.product-card-dark .overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.52); z-index: 1;
}
.product-card-dark .content {
  position: absolute; inset: 0; z-index: 2;
  color: #fff;
  display: flex; flex-direction: column;
  justify-content: flex-start;
  padding: clamp(14px, 1.8vw, 22px);
}
.product-card-dark .top h5 {
  font-family: 'Geonova', sans-serif;
  font-weight: 600; margin: 0;
  font-size: clamp(14px, 1.4vw, 18px);
  color: #D6E3E3;
}
.product-card-dark .top p {
  margin: 0;
  font-family: 'Geonova', sans-serif;
  font-size: clamp(11px, 1vw, 14px);
  opacity: .75; color: #D6E3E3;
}
.product-card-dark .line {
  width: 100%; height: 1px;
  background: rgba(255,255,255,.45);
  margin-top: auto;
  margin-bottom: 6px;
}
.product-card-dark .bottom {
  font-family: 'Geonova', sans-serif;
  font-size: clamp(11px, .9vw, 13px);
  opacity: .8;
}

@media (max-width: 767px) {
  .product-card-dark { height: 200px; }
}

/* =====================================================
   FOOTER 1 (homepage)
===================================================== */
.footer1-wrapper {
  background: url('/assets/img/footer1.png') center/cover no-repeat;
  padding: clamp(40px, 5.5vw, 70px) 0;
}

.footer-card {
  background: #e9e9e9;
  border-radius: clamp(14px, 1.8vw, 22px);
  padding: clamp(20px, 2.5vw, 38px) clamp(20px, 3vw, 45px);
}

.footer-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; flex-wrap: wrap;
  gap: 14px; margin-bottom: 14px;
}
.footer-logo img { height: clamp(28px, 3vw, 40px); }
.footer-desc {
  max-width: 360px;
  font-family: 'Sofia Pro', sans-serif;
  font-size: clamp(11px, .9vw, 13px);
  color: #1f2937; text-align: right; line-height: 1.75;
}
.footer-line { height: 1px; background: #9ca3af; margin: 14px 0 22px; }

.footer-menu { list-style: none; padding: 0; margin: 0; }
.footer-menu li {
  margin-bottom: 6px;
  font-family: 'Sofia Pro', sans-serif;
  font-size: clamp(11px, .9vw, 13px);
  color: #1f2937; cursor: pointer;
}
.footer-menu li a { color: inherit; text-decoration: none; }
.footer-menu li a:hover { color: #374151; }

.footer-heading {
  font-family: 'Bellastra', cursive;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 600; margin-bottom: 10px;
}

.footer-collection ul {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 6px 32px;
  list-style: none; padding: 0; margin: 0;
}
.footer-collection ul li {
  font-family: 'Sofia Pro', sans-serif;
  font-size: clamp(11px, .9vw, 13px);
  color: #1f2937;
}
.footer-collection ul li a { color: inherit; text-decoration: none; }
.footer-collection ul li a:hover { color: #374151; }

.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap;
  gap: 10px; margin-top: 22px;
}
.copyright {
  font-family: 'Sofia Pro', sans-serif;
  font-size: clamp(10px, .85vw, 12px); color: #374151;
}
.footer-social img { filter: brightness(0); opacity: .75; cursor: pointer; }
.footer-social img:hover { opacity: 1; }

@media (max-width: 767px) {
  .footer-top { flex-direction: column; }
  .footer-desc { text-align: left !important; }
  .footer-bottom { flex-direction: column; align-items: flex-start !important; }
}

/* =====================================================
   FOOTER 2 (dark — other pages)
===================================================== */
.footer2-wrapper { background: #070807; padding: clamp(40px, 5.5vw, 70px) 0; }

.footer2-card {
  background: #020b2a;
  border-radius: clamp(14px, 1.8vw, 22px);
  padding: clamp(24px, 3vw, 50px) clamp(20px, 4vw, 60px);
}
.footer2-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; flex-wrap: wrap;
  gap: 14px; margin-bottom: 18px;
}
.footer2-desc {
  max-width: 380px;
  font-family: 'Sofia Pro', sans-serif;
  font-size: clamp(11px, .9vw, 13px);
  color: #cbd5e1; text-align: right; line-height: 1.75;
}
.footer2-line { height: 1px; background: rgba(255,255,255,.18); margin: 18px 0 28px; }
.footer2-menu { list-style: none; padding: 0; margin: 0; }
.footer2-menu li {
  margin-bottom: 8px; color: #cbd5e1;
  font-family: 'Sofia Pro', sans-serif;
  font-size: clamp(11px, .9vw, 13px); cursor: pointer;
}
.footer2-menu li a { color: inherit; text-decoration: none; }
.footer2-menu li a:hover { color: #fff; }
.footer2-heading { font-size: clamp(14px, 1.2vw, 18px); color: #fff; margin-bottom: 14px; }
.footer2-grid {
  display: grid; grid-template-columns: repeat(2, max-content);
  gap: 8px 38px; color: #cbd5e1;
  font-family: 'Sofia Pro', sans-serif;
  font-size: clamp(11px, .9vw, 13px);
}
.footer2-grid a { color: inherit; text-decoration: none; }
.footer2-grid a:hover { color: #fff; }
.footer2-bottom {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 36px;
}
.footer2-copy { font-family: 'Sofia Pro', sans-serif; font-size: clamp(10px, .85vw, 12px); color: #94a3b8; }
.footer2-social img { filter: brightness(0) invert(1); opacity: .75; cursor: pointer; }
.footer2-social img:hover { opacity: 1; }

@media (max-width: 767px) {
  .footer2-card { padding: 24px 18px; }
  .footer2-top { flex-direction: column; }
  .footer2-desc { text-align: left !important; }
  .footer2-bottom { flex-direction: column; align-items: flex-start !important; }
}

/* =====================================================
   SHARED HERO TEXT (all inner pages)
===================================================== */
.hero-text { position: relative; z-index: 2; padding-bottom: 50px; }

.hero-title {
  position: relative; z-index: 2;
  font-family: 'Geonova', sans-serif;
  font-size: clamp(36px, 7vw, 90px);
  font-weight: 700; color: #dbe4e6;
  margin: 0; line-height: 1;
}
.hero-sub {
  position: absolute; left: 0; top: 80%;
  transform: translateY(-50%); z-index: 1;
  font-family: 'Geonova', sans-serif;
  font-size: clamp(22px, 4.5vw, 80px);
  color: #8fa3a7; opacity: .35;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .hero-title { font-size: clamp(32px, 10vw, 55px); }
  .hero-sub {
    position: relative; top: auto; transform: none;
    font-size: clamp(20px, 8vw, 42px);
    margin-top: -8px; opacity: .45; white-space: normal;
  }
}

/* =====================================================
   ABOUT PAGE
===================================================== */
.about-hero {
  position: relative;
  height: clamp(140px, 24vw, 300px);
  background: url('/assets/img/header.jpg') center/cover no-repeat;
  overflow: visible;
}

.about-hero .hero-text {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(52%);
  z-index: 2;
  padding-bottom: 0;
}

.about-hero .hero-title {
  font-size: clamp(48px, 9vw, 130px);
  font-weight: 584;
  color: #ADC6C6;
  line-height: 1;
  letter-spacing: 0;
}

.about-hero .hero-sub {
  position: relative;
  top: auto;
  transform: none;
  display: block;
  margin-top: -38px;
  font-size: clamp(28px, 5.5vw, 78px);
  font-weight: 100;
  color: #ADC6C6;
  opacity: .5;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.about-detail {
  padding-top: clamp(70px, 8vw, 120px);
  padding-bottom: clamp(50px, 6vw, 90px);
}
.about-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.25) 0%, rgba(0,0,0,.45) 40%, rgba(7,8,7,.7) 70%, #070807 100%);
}
.about-detail { background: #070807; color: #cbd5e1; }
.about-row { margin-bottom: clamp(40px, 6vw, 80px); align-items: flex-start; }
.about-title {
  color: #6b7280;
  font-size: clamp(18px, 2vw, 28px);
  padding-left: clamp(0px, 3vw, 50px);
}
.about-text { max-width: 600px; margin: 0 auto; }
.about-text p { line-height: 1.9; font-size: clamp(13px, 1vw, 14px); color: #cbd5e1; }

@media (max-width: 991px) {
  .about-row { flex-direction: column; }
  .about-title { padding-left: 12px; margin-bottom: 10px; }
  .about-text { max-width: 100%; padding-inline: 12px; }
}
@media (max-width: 767px) {
  .about-row { margin-bottom: 30px; }
  .about-hero .hero-text {
    padding-left: var(--bs-gutter-x, 12px);
  }
  .about-hero .hero-title {
    font-size: clamp(44px, 12vw, 65px);
  }
  .about-hero .hero-sub {
    font-size: clamp(26px, 8.5vw, 44px);
    margin-top: clamp(-22px, -4vw, -12px);
    white-space: normal;
  }
  .about-detail { padding-top: clamp(60px, 14vw, 100px); }
}

/* =====================================================
   PRODUCTS PAGE
===================================================== */
.products-hero {
  position: relative;
  height: clamp(140px, 24vw, 300px);
  background: url('/assets/img/header.jpg') center/cover no-repeat;
  overflow: visible;
}

.products-hero .hero-text {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(52%);
  z-index: 2;
  padding-bottom: 0;
}

.products-hero .hero-title {
  font-size: clamp(48px, 9vw, 130px);
  font-weight: 584;
  color: #ADC6C6;
  line-height: 1;
  letter-spacing: 0;
}

.products-hero .hero-sub {
  position: relative;
  top: auto;
  transform: none;
  display: block;
  margin-top: -38px;
  font-size: clamp(28px, 5.5vw, 78px);
  font-weight: 100;
  color: #ADC6C6;
  opacity: .5;
  line-height: 1;
  letter-spacing: 0;
}

.products-section {
  padding-top: clamp(70px, 8vw, 120px);
  padding-bottom: clamp(50px, 6vw, 90px);
}
.products-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.25) 0%, rgba(0,0,0,.45) 40%, rgba(7,8,7,.7) 70%, #070807 100%);
}
.products-lines { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.products-lines::before, .products-lines::after { content: ""; position: absolute; left: 0; width: 100%; height: 1px; background: rgba(255,255,255,.08); }
.products-lines::before { top: 45%; }
.products-lines::after  { top: 75%; }

@media (max-width: 767px) {
  .products-hero {
    height: clamp(120px, 20vw, 160px);
  }
  .products-hero .hero-text {
    padding-left: var(--bs-gutter-x, 12px);
  }
  .products-hero .hero-title {
    font-size: clamp(44px, 12vw, 65px);
  }
  .products-hero .hero-sub {
    font-size: clamp(26px, 8.5vw, 44px);
    margin-top: clamp(-22px, -4vw, -12px);
    white-space: normal;
  }
  .products-section {
    padding-top: clamp(60px, 14vw, 80px);
  }
}

.product-card2 { background: #fff; border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; }
.product-visual-area {
  width: 100%; height: clamp(200px, 24vw, 340px);
  background: #fff; display: flex; align-items: flex-end;
  justify-content: center; padding: 18px 18px 0; overflow: hidden;
}
.product-main-image { max-width: 100%; max-height: 100%; object-fit: contain; display: block; margin: 0 auto; }
.product-info { background: #d9d9d9; padding: clamp(12px, 1.3vw, 16px) 14px; border-radius: 0 0 20px 20px; }
.product-title { font-size: clamp(14px, 1.2vw, 17px); font-weight: 700; margin: 0 0 8px; }
.product-stars { font-size: clamp(16px, 1.5vw, 20px); line-height: 1; letter-spacing: 1px; color: #000; }
.product-desc-right { font-size: clamp(12px, .9vw, 14px); color: #000; margin-bottom: 10px; }
.product-actions img { width: clamp(22px, 1.8vw, 28px); height: clamp(22px, 1.8vw, 28px); object-fit: contain; cursor: pointer; transition: .2s; opacity: .85; }
.product-actions img:hover { opacity: 1; transform: scale(1.1); }

.product-image-fixed {
  width: auto; height: auto;
  max-width: 100%; max-height: 280px;
  object-fit: contain;
  display: block; margin: 0 auto;
}

/* =====================================================
   PRODUCT DETAIL PAGE
===================================================== */
.pd-hero {
  position: relative;
  height: clamp(300px, 36vw, 420px);
  background: url('/assets/img/header.jpg') center/cover no-repeat;
  overflow: hidden;
}
.pd-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(0,0,0,.45) 40%, rgba(7,8,7,.7) 70%, #070807 100%); }
.pd-hero-lines {
  position: absolute; inset: 0; z-index: 1;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,.05), rgba(255,255,255,.05) 1px, transparent 1px, transparent 80px);
}
.pd-hero-text { position: relative; z-index: 2; padding-bottom: 60px; }
.pd-hero-title {
  position: relative; z-index: 2; font-family: 'Geonova', sans-serif;
  font-size: clamp(36px, 7vw, 90px); font-weight: 700; color: #dbe4e6; margin: 0; line-height: 1.05;
}
.pd-hero-sub {
  position: absolute; left: 0; top: 70%; transform: translateY(-50%); z-index: 1;
  font-family: 'Geonova', sans-serif; font-size: clamp(18px, 4vw, 80px);
  font-weight: 300; color: #8fa3a7; opacity: .3; white-space: nowrap;
}
.pd-image-main { background: #ddd; border-radius: 20px; padding: 40px; text-align: center; }
.pd-image-main img { max-height: 320px; max-width: 100%; object-fit: contain; }
.pd-thumb { width: 90px; height: 90px; background: #ddd; border-radius: 12px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.pd-thumb img { max-width: 80%; max-height: 80%; }
.pd-thumb.active { background: #000; }
.pd-brand { font-size: clamp(14px, 1.2vw, 18px); color: #222; margin-bottom: 5px; }
.pd-brand span { color: #777; }
.pd-title { font-size: clamp(22px, 2.5vw, 32px); font-weight: 700; margin: 5px 0; }
.pd-title span { font-weight: 400; }
.pd-stars { font-size: 20px; margin-bottom: 10px; }
.pd-actions { min-width: 120px; }
.pd-desc { font-size: clamp(13px, 1vw, 14px); color: #555; line-height: 1.7; }
.pd-meta { margin: 20px 0; font-size: clamp(13px, 1vw, 14px); }
.pd-meta div { margin-bottom: 5px; }
.pd-note-block { border-top: 1px solid #ccc; padding: 15px 0; }
.pd-note-block h5 { font-weight: 600; margin-bottom: 10px; }
.pd-tags span { border: 1px solid #ccc; padding: 6px 12px; border-radius: 20px; font-size: 13px; margin-right: 8px; display: inline-block; }

@media (max-width: 767px) {
  .pd-hero { height: 300px; }
  .pd-hero-title { font-size: clamp(30px, 10vw, 50px); }
  .pd-hero-sub { position: relative; top: auto; transform: none; font-size: clamp(18px, 7vw, 38px); margin-top: -6px; opacity: .4; white-space: normal; }
  .pd-title { font-size: 22px; }
  .pd-actions { width: 100%; text-align: left; margin-top: 10px; }
}

/* =====================================================
   BLOG PAGE
===================================================== */
.blog-list-section { padding: clamp(50px, 6vw, 80px) 0; }
.blog-card { height: 100%; background: #eef2f3; border: 1px solid rgba(0,0,0,.08); border-radius: 22px; overflow: hidden; transition: .3s ease; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 18px 45px rgba(0,0,0,.12); }
.blog-card-img { width: 100%; background: #f6f8f8; overflow: hidden; }
.blog-card-img img { width: 100%; height: auto; display: block; object-fit: contain; }
.blog-card-body { padding: clamp(18px, 2vw, 26px); }
.blog-card-title { color: #172023; font-size: clamp(20px, 2vw, 28px); line-height: 1.15; margin-bottom: 14px; }
.blog-card-summary { color: rgba(23,32,35,.72); font-size: clamp(13px, 1.1vw, 16px); line-height: 1.7; margin-bottom: 22px; }
.blog-card-link { color: #172023; text-decoration: none; font-size: 15px; font-weight: 500; }
.blog-card-link::after { content: " →"; }
.blog-card-link:hover { color: #8fa3a7; }
.blog-page-hero .hero-text { padding-bottom: 65px; }
.blog-page-hero .hero-sub { top: 78% !important; opacity: .35; white-space: nowrap; }

/* =====================================================
   CONTACT PAGE
===================================================== */
.contact-section { padding: clamp(90px, 10vw, 160px) 0 clamp(50px, 6vw, 90px); }
.contact-row { row-gap: 45px; }
.contact-input {
  width: 100%; height: 52px;
  border: 1px solid #e0e6ee; border-radius: 8px;
  padding: 0 18px; color: #26364f;
  font-size: clamp(13px, 1vw, 15px);
  outline: none; background: transparent; transition: .25s ease;
}
.contact-input::placeholder { color: #8b98aa; }
.contact-input:focus { border-color: #2f3c53; }
.contact-select { color: #8b98aa; }
.contact-textarea { height: 150px; resize: vertical; padding-top: 14px; }
.contact-check { display: flex; align-items: center; gap: 10px; color: #26364f; font-size: clamp(13px, 1vw, 15px); line-height: 1.5; cursor: pointer; }
.contact-check input { display: none; }
.contact-check span { width: 21px; height: 21px; min-width: 21px; border: 1px solid #dce3eb; border-radius: 4px; display: inline-block; position: relative; }
.contact-check input:checked + span::after { content: "✓"; position: absolute; left: 4px; top: -2px; color: #2f3c53; font-size: 16px; }
#form-alert {
  border-radius: 8px;
  border-left: 4px solid transparent;
  padding: 14px 18px;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}
#form-alert.alert-danger  { border-left-color: #c0392b; box-shadow: 0 2px 10px rgba(192,57,43,0.12); }
#form-alert.alert-success { border-left-color: #1a7a4a; box-shadow: 0 2px 10px rgba(26,122,74,0.12); }
#form-alert:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }

button.contact-btn {
  background-color: #020B2A !important;
  color: #fff !important;
  border: 2px solid #020B2A !important;
  padding: 13px 38px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase !important;
  border-radius: 6px !important;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease !important;
  cursor: pointer;
}
button.contact-btn:hover {
  background-color: transparent !important;
  color: #020B2A !important;
  border-color: #020B2A !important;
  box-shadow: 0 6px 22px rgba(2, 11, 42, 0.18) !important;
  transform: translateY(-2px) !important;
}
button.contact-btn:active {
  transform: translateY(0) !important;
  box-shadow: none !important;
}
.contact-info { padding-left: clamp(0px, 3vw, 45px); }
.contact-info-item { display: flex; gap: 18px; margin-bottom: 25px; }
.contact-icon { font-size: clamp(20px, 1.8vw, 25px); color: #26364f; min-width: 26px; padding-top: 3px; }
.contact-info h4 { font-size: clamp(15px, 1.2vw, 18px); font-weight: 700; color: #17243c; margin-bottom: 8px; }
.contact-info p { font-size: clamp(13px, 1vw, 16px); color: #42516a; line-height: 1.7; margin: 0; }
.contact-info a { color: #42516a; text-decoration: none; }
.contact-info a:hover { color: #17243c; }
.contact-page-hero .hero-title { font-size: clamp(42px, 8vw, 120px); }

@media (max-width: 991px) {
  .contact-section { padding: 60px 0; }
  .contact-info { padding-left: 0; }
}
@media (max-width: 767px) {
  .contact-section { padding: 50px 0; }
  .contact-input { height: 48px; }
  .contact-check { font-size: 13px; align-items: flex-start; }
  .contact-info { padding-left: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .contact-info-item { margin: 0; flex-direction: column; gap: 6px; }
  .about-hero .hero-sub { white-space: normal; }
}
