/* ========================================
   CSS Variables & Reset
   ======================================== */
:root {
  --color-bg: #ffffff;
  --color-bg-dark: #1a1a1a;
  --color-bg-footer: #0d0d0d;
  --color-text: #000000;
  --color-text-secondary: #3c3c3c;
  --color-text-light: #777777;
  --color-text-white: #ffffff;
  --color-border: rgba(0, 0, 0, 0.1);
  --color-border-light: rgba(255, 255, 255, 0.15);
  --color-accent: #b8977e;
  --color-sale: #c62828;

  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Cardo', serif;
  --font-display: 'Red Hat Display', sans-serif;
  --font-body: 'Jost', sans-serif;

  --container-width: 1240px;
  --container-padding: 20px;

  --transition: all 0.3s ease;
  --transition-slow: all 0.6s ease;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input {
  font-family: inherit;
  border: none;
  outline: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ========================================
   Section Header
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header__title {
  font-family: var(--font-display);
  font-size: 37px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-header__subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  font-style: normal;
  color: #474747;
  font-weight: 400;
}

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
  font-size: 12px;
  letter-spacing: 1px;
  padding: 10px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar__left span {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.top-bar__social {
  display: flex;
  gap: 15px;
}

.top-bar__social a {
  font-size: 11px;
  letter-spacing: 1px;
  opacity: 0.7;
}

.top-bar__social a:hover {
  opacity: 1;
}

.top-bar__store-locator {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.7;
}

.top-bar__store-locator:hover {
  opacity: 1;
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header .nav-menu__item > a {
  color: var(--color-text-white);
}

.header .nav-menu__item > a::after {
  background: var(--color-text-white);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo img {
  width: 250px;
  height: auto;
}

/* Sayfa üstünde: beyaz logo görünür, siyah gizli */
.header__logo .logo-dark {
  display: none;
}

.header__logo .logo-light {
  display: block;
}

.header__hamburger span {
  background: var(--color-text-white);
}

/* Scroll sonrası: siyah logo görünür, beyaz gizli */
.header--scrolled {
  background: var(--color-bg);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header--scrolled .header__logo .logo-dark {
  display: block;
}

.header--scrolled .header__logo .logo-light {
  display: none;
}

.header--scrolled .nav-menu__item > a {
  color: var(--color-text);
}

.header--scrolled .nav-menu__item > a::after {
  background: var(--color-text);
}

.header--scrolled .header__hamburger span {
  background: var(--color-text);
}

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  gap: 35px;
}

.nav-menu__item > a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 28px 0;
  display: block;
  position: relative;
}

.nav-menu__item > a::after {
  content: '';
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-text);
  transition: var(--transition);
}

.nav-menu__item > a:hover::after {
  width: 100%;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-bg);
  min-width: 220px;
  padding: 20px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 8px 25px;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: var(--color-text-secondary);
}

.dropdown li a:hover {
  color: var(--color-text);
  padding-left: 30px;
}

/* Header Actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.header__action-link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.header__bag {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header__bag svg {
  width: 18px;
  height: 18px;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 5px 0;
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--color-text);
  transition: var(--transition);
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(5px);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px);
}

/* ========================================
   Hero Slider
   ======================================== */
.hero-slider {
  position: relative;
  height: 90vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
}

.hero-slider__slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slider__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider__slide.active {
  opacity: 1;
}

.hero-slider__content {
  text-align: center;
  z-index: 2;
}

.hero-slider__title {
  font-family: var(--font-primary);
  font-size: 52px;
  font-weight: 300;
  letter-spacing: 12px;
  color: var(--color-text-white);
  text-transform: uppercase;
  margin-bottom: 35px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-slider__btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 14px 40px;
  transition: var(--transition);
}

.hero-slider__btn:hover {
  background: var(--color-text-white);
  color: var(--color-text);
  border-color: var(--color-text-white);
}

.hero-slider__nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.hero-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
}

.hero-slider__dot.active {
  background: var(--color-text-white);
}

/* ========================================
   Quality Materials / Product Carousel
   ======================================== */
.quality-materials {
  padding: 100px 0;
  overflow: hidden;
}

.quality-materials .section-header {
  margin-bottom: 60px;
}

.quality-materials .container {
  max-width: 100%;
  padding: 0;
}

.quality-materials .section-header {
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--container-padding);
}

.product-carousel {
  position: relative;
  overflow: visible;
  padding: 0 60px;
}

.product-carousel__track {
  display: flex;
  transition: transform 0.5s ease;
}

.product-carousel__item {
  flex-shrink: 0;
}

.product-card__image {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.product-card__image a {
  display: block;
}

.product-card__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__badge {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--color-bg);
  padding: 5px 12px;
  z-index: 2;
}

.product-card__badge--bestseller { background: var(--color-bg-dark); color: var(--color-text-white); }
.product-card__badge--gold { background: var(--color-accent); color: var(--color-text-white); }
.product-card__badge--new { background: #2e7d32; color: var(--color-text-white); }
.product-card__badge--sale { background: var(--color-sale); color: var(--color-text-white); }

.product-card__info {
  padding: 25px 0;
  text-align: center;
}

.product-card__title {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.product-card__title a:hover {
  opacity: 0.7;
}

.product-card__category {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 12px;
  display: block;
}

.product-card__price {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text-secondary);
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.product-card__price del {
  opacity: 0.5;
  margin-right: 5px;
}

.product-card__price ins {
  text-decoration: none;
  color: var(--color-sale);
}

.product-card__add-to-cart {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 2px;
}

.product-card__add-to-cart:hover {
  opacity: 0.6;
}

/* Carousel Arrows */
.product-carousel__arrow {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  z-index: 5;
}

.product-carousel__arrow:hover {
  background: var(--color-text);
  color: var(--color-text-white);
  border-color: var(--color-text);
}

.product-carousel__arrow:hover svg {
  stroke: var(--color-text-white);
}

.product-carousel__arrow--prev {
  left: 10px;
}

.product-carousel__arrow--next {
  right: 10px;
}

/* Carousel Progress Bar */
.product-carousel__progress {
  width: 300px;
  height: 3px;
  background: var(--color-border);
  margin: 50px auto 0;
  position: relative;
}

.product-carousel__progress-bar {
  height: 100%;
  background: var(--color-text);
  transition: width 0.4s ease;
  width: 50%;
}

/* ========================================
   Destination Section
   ======================================== */
.destination {
  padding: 0;
  background: #f1f2f3;
}

.destination__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  min-height: 550px;
}

.destination__images {
  position: relative;
  padding: 60px 40px 100px 80px;
}

.destination__img-grid {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.destination__img-grid img:first-child {
  width: 45%;
  height: auto;
  object-fit: cover;
}

.destination__img-grid img:last-child {
  width: 45%;
  height: auto;
  object-fit: cover;
  margin-top: 80px;
}

.destination__rotating-badge {
  position: absolute;
  left: 15px;
  bottom: 95px;
  width: 130px;
  height: 130px;
  animation: rotateBadge 15s linear infinite;
}

@keyframes rotateBadge {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.destination__content {
  padding: 60px 80px 60px 40px;
  align-self: start;
  padding-top: 100px;
}

.destination__title {
  font-family: var(--font-display);
  font-size: 37px;
  font-weight: 500;
  line-height: 42px;
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: 0.55px;
}

.destination__text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 35px;
}

.destination__link {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--color-text);
  color: var(--color-text-white);
  padding: 16px 40px;
  transition: var(--transition);
}

.destination__link:hover {
  background: var(--color-text-secondary);
  color: var(--color-text-white);
}

/* ========================================
   Timeless Edge Watches / Product Grid
   ======================================== */
.timeless-watches {
  padding: 100px 0;
}

.timeless-watches .container {
  max-width: 1400px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card .product-card__image {
  position: relative;
  overflow: hidden;
}

.product-card--grid .product-card__img-main {
  width: 100%;
  aspect-ratio: 470 / 470;
  object-fit: cover;
}

.product-card .product-card__img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.product-card:hover .product-card__img-hover {
  opacity: 1;
}

.product-card__actions {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  z-index: 3;
}

.product-card--grid:hover .product-card__actions {
  opacity: 1;
  transform: translateX(0);
}

.product-card__wishlist,
.product-card__quickview {
  width: 40px;
  height: 40px;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.product-card__wishlist:hover,
.product-card__quickview:hover {
  background: var(--color-text);
}

.product-card__wishlist:hover svg,
.product-card__quickview:hover svg {
  stroke: var(--color-text-white);
}

/* ========================================
   Watchmakers Spotlight
   ======================================== */
.spotlight {
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
}

.spotlight__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 500px;
  max-width: 1400px;
  margin: 0 auto;
}

.spotlight__image {
  overflow: hidden;
}

.spotlight__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  color: var(--color-text);
}

.spotlight__title {
  font-family: var(--font-display);
  font-size: 37px;
  font-weight: 500;
  line-height: 42px;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.spotlight__text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

/* ========================================
   Parallax Banner
   ======================================== */
.parallax-banner {
  position: relative;
  height: 600px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: flex-end;
  margin-top: 80px;
}

.parallax-banner__content {
  padding: 60px 80px;
  color: var(--color-text-white);
}

.parallax-banner__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.parallax-banner__subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  opacity: 0.8;
  margin-bottom: 25px;
}

.parallax-banner__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 3px;
}

.parallax-banner__link:hover {
  border-color: var(--color-text-white);
}

@media (max-width: 1024px) {
  .parallax-banner {
    height: 450px;
    background-attachment: scroll;
  }
  .parallax-banner__content {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .parallax-banner {
    height: 350px;
  }
  .parallax-banner__title {
    font-size: 24px;
  }
  .parallax-banner__content {
    padding: 30px 20px;
  }
}

/* ========================================
   Service Features
   ======================================== */
.services {
  padding: 50px 0;
  background: #f1f2f3;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.services__item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 10px;
}

.services__icon {
  flex-shrink: 0;
}

.services__icon img {
  width: 42px;
  height: auto;
  opacity: 0.7;
}

.services__icon i {
  font-size: 28px;
  color: var(--color-text);
  opacity: 0.7;
}

.services__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.services__text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-light);
}

/* ========================================
   Interactive Categories
   ======================================== */
.categories {
  padding: 100px 0;
}

.categories .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.categories__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.categories__item {
  padding: 30px 0;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
  transition: var(--transition);
}

.categories__item:first-child {
  border-top: 1px solid var(--color-border);
}

.categories__label {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-light);
  display: block;
  margin-bottom: 8px;
}

.categories__title {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: var(--transition);
}

.categories__item:hover .categories__title {
  letter-spacing: 6px;
}

.categories__image-display {
  overflow: hidden;
  height: 500px;
}

.categories__image-display img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

/* ========================================
   Shopping Banners
   ======================================== */
.banners {
  padding: 80px 0;
}

.banners__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.banners__item {
  position: relative;
  overflow: hidden;
  height: 450px;
}

.banners__image {
  width: 100%;
  height: 100%;
}

.banners__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.banners__item:hover .banners__image img {
  transform: scale(1.05);
}

.banners__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  color: var(--color-text-white);
}

.banners__title {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.banners__text {
  font-size: 14px;
  font-weight: 300;
  opacity: 0.8;
  margin-bottom: 15px;
}

.banners__link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 3px;
}

.banners__link:hover {
  border-color: var(--color-text-white);
}

/* ========================================
   Features Carousel
   ======================================== */
.features {
  padding: 100px 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.features__item {
  text-align: center;
  padding: 40px 30px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.features__item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.features__icon {
  margin-bottom: 25px;
}

.features__icon img {
  height: 50px;
  width: auto;
  margin: 0 auto;
}

.features__icon i {
  font-size: 40px;
  color: var(--color-text);
}

.features__title {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.features__text {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ========================================
   Page Hero (Alt Sayfalar)
   ======================================== */
.page-hero {
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  color: var(--color-text-white);
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* ========================================
   Hakkımızda - Giriş
   ======================================== */
.about-intro {
  padding: 100px 0;
}

.about-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-intro__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-intro__title {
  font-family: var(--font-display);
  font-size: 37px;
  font-weight: 500;
  line-height: 42px;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.about-intro__text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

/* ========================================
   Hakkımızda - Amacımız
   ======================================== */
.about-mission {
  padding: 100px 0;
  background: #f1f2f3;
}

.about-mission__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-mission__title {
  font-family: var(--font-display);
  font-size: 37px;
  font-weight: 500;
  line-height: 42px;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.about-mission__text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.about-mission__text strong {
  color: var(--color-text);
  font-weight: 600;
}

.about-mission__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ========================================
   Hakkımızda - Hizmetlerimiz
   ======================================== */
.about-services {
  padding: 100px 0;
}

.about-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-services__item {
  padding: 40px 30px;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  cursor: pointer;
}

.about-services__item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.about-services__icon {
  margin-bottom: 20px;
}

.about-services__icon img {
  height: 40px;
  width: auto;
}

.about-services__icon i {
  font-size: 36px;
  color: var(--color-text);
}

.about-services__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.about-services__text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

/* ========================================
   Hizmetlerimiz Sayfası
   ======================================== */
.srv-intro {
  padding: 80px 0 40px;
}

.srv-detail {
  padding: 80px 0;
}

.srv-detail--gray {
  background: #f1f2f3;
}

.srv-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.srv-detail--reverse .srv-detail__inner {
  direction: rtl;
}

.srv-detail--reverse .srv-detail__inner > * {
  direction: ltr;
}

.srv-detail__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.srv-detail__icon {
  margin-bottom: 15px;
}

.srv-detail__icon i {
  font-size: 36px;
  color: var(--color-text);
}

.srv-detail__num {
  font-family: var(--font-secondary);
  font-size: 48px;
  font-weight: 400;
  font-style: italic;
  color: var(--color-border);
  display: block;
  margin-bottom: 15px;
}

.srv-detail__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.srv-detail__text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 15px;
}

/* Responsive - Alt Sayfalar */
@media (max-width: 1024px) {
  .page-hero {
    height: 400px;
  }
  .page-hero__title {
    font-size: 36px;
  }
  .about-intro__inner,
  .about-mission__inner,
  .srv-detail__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .srv-detail--reverse .srv-detail__inner {
    direction: ltr;
  }
  .about-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero {
    height: 300px;
  }
  .page-hero__title {
    font-size: 28px;
  }
  .about-intro__title,
  .about-mission__title {
    font-size: 28px;
    line-height: 34px;
  }
  .about-intro,
  .about-mission,
  .about-services,
  .srv-detail {
    padding: 60px 0;
  }
  .srv-detail__title {
    font-size: 26px;
  }
  .about-services__grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Blog Section
   ======================================== */
.blog {
  padding: 100px 0;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog__item {
  overflow: hidden;
}

.blog__image {
  overflow: hidden;
  margin-bottom: 25px;
}

.blog__image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog__item:hover .blog__image img {
  transform: scale(1.05);
}

.blog__meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.blog__date {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--color-text-light);
  text-transform: uppercase;
}

.blog__category {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.blog__title {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.blog__title a:hover {
  opacity: 0.7;
}

.blog__excerpt {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: 18px;
}

.blog__read-more {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 2px;
}

.blog__read-more:hover {
  opacity: 0.6;
}

/* ========================================
   FAQ Page
   ======================================== */
.faq {
  padding: 80px 0;
}

.faq__inner {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 60px;
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.faq__question:hover {
  opacity: 0.7;
}

.faq__question i {
  font-size: 14px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq__question.active i {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__answer.open {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq__answer p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.faq__sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faq__contact-card {
  padding: 30px;
  background: #f1f2f3;
}

.faq__contact-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}

.faq__contact-card h3 i {
  margin-right: 8px;
}

.faq__contact-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.faq__contact-card a {
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

/* ========================================
   Contact Page
   ======================================== */
.contact {
  padding: 80px 0;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
}

.contact__title {
  font-family: var(--font-display);
  font-size: 37px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.contact__subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  border: 1px solid var(--color-border);
  background: transparent;
  transition: var(--transition);
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: var(--color-text);
  outline: none;
}

.contact__form textarea {
  margin-bottom: 20px;
  resize: vertical;
}

.contact__submit {
  padding: 16px 45px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--color-text);
  color: var(--color-text-white);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.contact__submit:hover {
  background: var(--color-text-secondary);
}

.contact__info-area {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact__info-card {
  padding: 30px;
  background: #f1f2f3;
}

.contact__info-card i {
  font-size: 24px;
  margin-bottom: 15px;
  display: block;
  color: var(--color-text);
}

.contact__info-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.contact__info-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.contact__info-card a {
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.contact-map {
  width: 100%;
  line-height: 0;
}

.contact-map iframe {
  width: 100%;
}

/* ========================================
   Blog Page & Detail
   ======================================== */
.blog-page {
  padding: 80px 0;
}

.blog-page__inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
}

.blog-page__card {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 35px;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--color-border);
}

.blog-page__card:last-child {
  border-bottom: none;
}

.blog-page__card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-page__card-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 15px;
}

.blog-page__card-title a:hover {
  opacity: 0.7;
}

.blog-page__card-excerpt {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

/* Blog Sidebar */
.sidebar__widget {
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid var(--color-border);
}

.sidebar__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidebar__list li {
  margin-bottom: 10px;
}

.sidebar__list a {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-secondary);
  display: flex;
  justify-content: space-between;
}

.sidebar__list a:hover {
  color: var(--color-text);
}

.sidebar__list span {
  opacity: 0.5;
}

.sidebar__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sidebar__tags a {
  font-family: var(--font-body);
  font-size: 13px;
  padding: 6px 14px;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.sidebar__tags a:hover {
  background: var(--color-text);
  color: var(--color-text-white);
  border-color: var(--color-text);
}

.sidebar__social a {
  font-size: 22px;
  color: var(--color-text);
  margin-right: 15px;
}

.sidebar__social a:hover {
  opacity: 0.6;
}

.sidebar__posts li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.sidebar__posts a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.sidebar__posts a:hover {
  color: var(--color-text);
}

/* Blog Detail */
.blog-detail {
  padding: 80px 0;
}

.blog-detail__content {
  font-family: var(--font-body);
}

.blog-detail__content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.blog-detail__content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin: 35px 0 15px;
}

.blog-detail__content blockquote {
  font-family: var(--font-secondary);
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
  padding: 30px 40px;
  margin: 30px 0;
  border-left: 3px solid var(--color-text);
  background: #f9f9f9;
  color: var(--color-text);
}

.blog-detail__back {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--color-border);
}

.blog-detail__back a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-detail__back i {
  margin-right: 8px;
}

.page-hero--blog {
  height: 400px;
}

/* Responsive - FAQ, Contact, Blog Page */
@media (max-width: 1024px) {
  .faq__inner,
  .contact__inner,
  .blog-page__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .blog-page__card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .faq, .contact, .blog-page, .blog-detail {
    padding: 50px 0;
  }
  .contact__form-row {
    grid-template-columns: 1fr;
  }
  .page-hero--blog {
    height: 300px;
  }
  .blog-detail__content blockquote {
    padding: 20px;
    font-size: 17px;
  }
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials {
  padding: 100px 0;
  background: var(--color-bg-dark);
  color: var(--color-text-white);
  text-align: center;
}

.testimonials__slider {
  position: relative;
  min-height: 150px;
}

.testimonials__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.testimonials__slide.active {
  opacity: 1;
  position: relative;
}

.testimonials__quote {
  font-family: var(--font-secondary);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 25px;
  letter-spacing: 0.5px;
}

.testimonials__author {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-style: normal;
  opacity: 0.6;
}

.testimonials__nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
}

.testimonials__dot.active {
  background: var(--color-text-white);
}

/* ========================================
   Newsletter
   ======================================== */
.newsletter {
  padding: 80px 0;
  border-top: 1px solid var(--color-border);
}

.newsletter__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter__title {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.newsletter__title span {
  font-weight: 500;
}

.newsletter__form {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border: 1px solid var(--color-border);
}

.newsletter__input {
  flex: 1;
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1px;
  background: transparent;
}

.newsletter__input::placeholder {
  color: var(--color-text-light);
}

.newsletter__btn {
  padding: 16px 35px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--color-text);
  color: var(--color-text-white);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter__btn:hover {
  background: var(--color-text-secondary);
}

.newsletter__note {
  font-size: 12px;
  font-weight: 300;
  color: var(--color-text-light);
  letter-spacing: 0.5px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--color-bg-footer);
  color: var(--color-text-white);
  padding: 80px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer__logo img {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  mix-blend-mode: screen;
}

.footer__address {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.6;
}

.footer__email a,
.footer__social-link a {
  color: inherit;
  text-decoration: none;
  opacity: 0.6;
  transition: var(--transition);
}

.footer__email a:hover,
.footer__social-link a:hover {
  opacity: 1;
}

.footer__social-link {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
}

.footer__social-link i {
  margin-right: 4px;
}

.footer__about {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0.6;
}

.footer__heading {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.5px;
  opacity: 0.6;
  transition: var(--transition);
}

.footer__links a:hover {
  opacity: 1;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--color-border-light);
}

.footer__copyright {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.5;
  letter-spacing: 0.5px;
}

.footer__social {
  display: flex;
  gap: 20px;
}

.footer__social a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  opacity: 0.5;
  transition: var(--transition);
}

.footer__social a:hover {
  opacity: 1;
}

/* ========================================
   Scroll Animations
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Mobile Navigation Overlay
   ======================================== */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
  padding: 100px 30px 40px;
}

.mobile-nav-overlay.active {
  transform: translateX(0);
}

.mobile-nav-overlay .nav-menu {
  flex-direction: column;
  gap: 0;
}

.mobile-nav-overlay .nav-menu__item > a {
  font-size: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-overlay .dropdown {
  position: static;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: none;
  display: none;
  padding: 0 0 10px 20px;
}

.mobile-nav-overlay .dropdown.open {
  display: block;
}

/* ========================================
   Responsive - Tablet (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .header__login {
    display: none;
  }

  .hero-slider__title {
    font-size: 36px;
    letter-spacing: 8px;
  }

  .section-header__title {
    font-size: 28px;
    letter-spacing: 0.4px;
  }

  /* carousel items sized by JS */

  .destination__inner {
    grid-template-columns: 1fr;
  }

  .destination__images {
    padding: 40px;
  }

  .destination__img-grid img:last-child {
    margin-top: 50px;
  }

  .destination__content {
    padding: 50px 40px;
  }

  .destination__title {
    font-size: 30px;
    line-height: 36px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spotlight__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .spotlight__content {
    padding: 50px 40px;
    order: -1;
  }

  .spotlight__image img {
    height: 400px;
  }

  .spotlight__title {
    font-size: 30px;
    line-height: 36px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .categories__title {
    font-size: 28px;
  }

  .categories__image-display {
    height: 400px;
  }

  .banners__item {
    height: 350px;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* ========================================
   Responsive - Mobile (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .header__inner {
    height: 65px;
  }

  .hero-slider {
    height: 70vh;
    min-height: 450px;
  }

  .hero-slider__title {
    font-size: 24px;
    letter-spacing: 5px;
    margin-bottom: 25px;
  }

  .hero-slider__btn {
    padding: 12px 30px;
    font-size: 11px;
  }

  .quality-materials {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .section-header__title {
    font-size: 22px;
    letter-spacing: 0.3px;
  }

  /* carousel items sized by JS */

  .destination {
    padding: 50px 0 60px;
  }

  .destination__images {
    padding: 25px;
  }

  .destination__img-grid img:last-child {
    margin-top: 40px;
  }

  .destination__content {
    padding: 30px 20px;
  }

  .destination__title {
    font-size: 26px;
    line-height: 32px;
  }

  .destination__rotating-badge {
    width: 90px;
    height: 90px;
    left: 15px;
    bottom: 15px;
  }

  .timeless-watches {
    padding: 60px 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .client-logos__track {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .client-logos__item {
    flex: 0 0 auto;
    width: 40%;
  }

  .spotlight__content {
    padding: 30px 20px;
  }

  .spotlight__title {
    font-size: 24px;
    line-height: 30px;
  }

  .services__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .categories__title {
    font-size: 22px;
    letter-spacing: 3px;
  }

  .categories__image-display {
    height: 300px;
  }

  .banners__grid {
    grid-template-columns: 1fr;
  }

  .banners__item {
    height: 350px;
  }

  .banners__title {
    font-size: 22px;
  }

  .features {
    padding: 60px 0;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog {
    padding: 60px 0;
  }

  .blog__grid {
    grid-template-columns: 1fr;
  }

  .blog__image img {
    height: 220px;
  }

  .testimonials {
    padding: 60px 0;
  }

  .testimonials__quote {
    font-size: 18px;
  }

  .newsletter {
    padding: 50px 0;
  }

  .newsletter__form {
    flex-direction: column;
  }

  .newsletter__btn {
    width: 100%;
  }

  .footer {
    padding: 50px 0 30px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* ========================================
   Responsive - Small Mobile (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
  .hero-slider__title {
    font-size: 18px;
    letter-spacing: 4px;
  }

  .section-header__title {
    font-size: 18px;
    letter-spacing: 0.2px;
  }

  .destination__title {
    font-size: 24px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .categories__title {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .banners__item {
    height: 280px;
  }
}

/* Language Switcher */
.lang-switcher {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  gap: 4px;
  background: rgba(26, 26, 46, 0.95);
  border-radius: 30px;
  padding: 5px;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.lang-switcher__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}

.lang-switcher__item:hover {
  color: #fff;
  background: rgba(255,255,255,0.15);
}

.lang-switcher__item.active {
  background: #c9a84c;
  color: #fff;
}

/* ========== PAGE BANNER (Content Detail) ========== */
.page-banner {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 100%);
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner__title {
  color: #fff;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ========== BLOG DETAIL ========== */
.blog-detail {
  padding: 60px 0;
}

.blog-detail__layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 50px;
  align-items: start;
}

.blog-detail__featured-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 30px;
}

.blog-detail__body {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.blog-detail__body p {
  margin-bottom: 18px;
}

.blog-detail__body h2, .blog-detail__body h3 {
  margin: 30px 0 15px;
  font-family: 'Red Hat Display', sans-serif;
}

.blog-detail__body img {
  max-width: 100%;
  border-radius: 8px;
  margin: 20px 0;
}

.blog-detail__body ul, .blog-detail__body ol {
  margin: 15px 0;
  padding-left: 25px;
}

.blog-detail__body li {
  margin-bottom: 8px;
}

.blog-detail__sidebar {
  position: sticky;
  top: 100px;
}

.blog-detail__sidebar-title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #c9a84c;
}

.blog-detail__related {
  list-style: none;
  padding: 0;
}

.blog-detail__related li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}

.blog-detail__related li:last-child {
  border-bottom: none;
}

.blog-detail__related a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.2s;
}

.blog-detail__related a:hover {
  color: #c9a84c;
}

/* ========== LISTINGS PAGE ========== */
.listings .product-grid {
  padding-top: 30px;
}

@media (max-width: 768px) {
  .page-banner {
    height: 280px;
    padding-bottom: 40px;
  }
  .page-banner__title {
    font-size: 28px;
  }
  .blog-detail__layout {
    grid-template-columns: 1fr;
  }
  .blog-detail__sidebar {
    position: static;
  }
}

/* ========================================
   Product Card Specs (Listings)
   ======================================== */
.product-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0;
}
.product-card__spec {
  font-size: 11px;
  color: var(--color-text-light);
  background: #f5f5f5;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.3px;
}
.product-card__spec--yes {
  color: var(--color-accent);
  background: rgba(184, 151, 126, 0.1);
}
.product-card__spec i {
  margin-right: 3px;
  font-size: 10px;
}

/* ========================================
   Product Detail Page
   ======================================== */
/* ========================================
   Solid Header Override
   For pages without a dark hero (e.g. product detail)
   ======================================== */
body.page--solid-header .header {
  background: var(--color-bg);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
body.page--solid-header .header__logo .logo-dark { display: block; }
body.page--solid-header .header__logo .logo-light { display: none; }
body.page--solid-header .header .nav-menu__item > a { color: var(--color-text); }
body.page--solid-header .header .nav-menu__item > a::after { background: var(--color-text); }
body.page--solid-header .header__hamburger span { background: var(--color-text); }

.product-detail {
  padding: 120px 0 40px;
}
.product-detail__breadcrumb {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: var(--color-text-light);
}
.product-detail__breadcrumb a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: var(--transition);
}
.product-detail__breadcrumb a:hover {
  color: var(--color-accent);
}
.product-detail__breadcrumb .sep {
  margin: 0 10px;
  color: var(--color-border);
}
.product-detail__breadcrumb .current {
  color: var(--color-text);
}
.product-detail__layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-detail__gallery {
  position: sticky;
  top: 100px;
}
.product-detail__main-image {
  border-radius: 4px;
  overflow: hidden;
  background: #f9f9f9;
  margin-bottom: 12px;
}
.product-detail__main-image img {
  width: 100%;
  height: auto;
  display: block;
}
.product-detail__thumb-list {
  display: flex;
  gap: 10px;
}
.product-detail__thumb {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.product-detail__thumb.active,
.product-detail__thumb:hover {
  border-color: var(--color-accent);
}
.product-detail__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail__brand {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}
.product-detail__title {
  font-family: var(--font-secondary);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
  line-height: 1.2;
}
.product-detail__series {
  display: block;
  font-size: 13px;
  color: var(--color-text-light);
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.product-detail__price {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 20px;
  font-family: var(--font-primary);
}
.product-detail__summary {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Specs Table */
.product-detail__specs {
  margin-bottom: 30px;
}
.product-detail__specs-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  color: var(--color-text);
}
.product-detail__specs-table {
  width: 100%;
  border-collapse: collapse;
}
.product-detail__specs-table tr {
  border-bottom: 1px solid var(--color-border);
}
.product-detail__specs-table td {
  padding: 10px 0;
  font-size: 14px;
}
.product-detail__specs-table td:first-child {
  color: var(--color-text-light);
  width: 140px;
  font-weight: 500;
}
.product-detail__specs-table td:last-child {
  color: var(--color-text);
  font-weight: 600;
}

/* Badges */
.product-detail__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.product-detail__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(184, 151, 126, 0.1);
  color: var(--color-accent);
  border: 1px solid rgba(184, 151, 126, 0.3);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.product-detail__badge i {
  font-size: 14px;
}

/* CTA */
.product-detail__cta {
  margin-top: 10px;
  margin-bottom: 30px;
}
.product-detail__inquiry-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 44px;
  background: var(--color-bg-dark);
  color: var(--color-text-white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.product-detail__inquiry-btn:hover {
  background: var(--color-accent);
}
.product-detail__contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  background: var(--color-bg-dark);
  color: var(--color-text-white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.product-detail__contact-btn:hover {
  background: var(--color-accent);
}

/* Share */
.product-detail__share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
  margin-bottom: 20px;
}
.product-detail__share-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-right: 6px;
}
.product-detail__share a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--color-text-light);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  font-size: 13px;
}
.product-detail__share a:hover {
  background: var(--color-accent);
  color: var(--color-text-white);
  border-color: var(--color-accent);
}

/* Meta */
.product-detail__meta {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
}
.product-detail__meta-row {
  font-size: 13px;
  color: var(--color-text-light);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.product-detail__meta-row span {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text);
  margin-right: 8px;
}
.product-detail__meta-row a {
  color: var(--color-accent);
  text-decoration: none;
}
.product-detail__meta-row a:hover {
  text-decoration: underline;
}

/* Tabs */
.product-tabs {
  margin-top: 80px;
  padding-top: 0;
}
.product-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 30px;
}
.product-tabs__btn {
  background: none;
  border: none;
  padding: 16px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-light);
  cursor: pointer;
  position: relative;
  transition: color 0.25s ease;
  font-family: inherit;
}
.product-tabs__btn::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.product-tabs__btn:hover {
  color: var(--color-text);
}
.product-tabs__btn.active {
  color: var(--color-text);
}
.product-tabs__btn.active::after {
  transform: scaleX(1);
}
.product-tabs__panel {
  display: none;
  animation: fadeInTab 0.3s ease;
}
.product-tabs__panel.active {
  display: block;
}
.product-tabs__empty {
  color: var(--color-text-light);
  font-style: italic;
}
@keyframes fadeInTab {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Description body (kept for backwards-compat) */
.product-detail__body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-secondary);
}
.product-detail__body img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Related Products */
.related-products {
  padding: 60px 0;
  background: #fafafa;
}

/* Responsive */
@media (max-width: 992px) {
  .product-detail__layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .product-detail__gallery {
    position: static;
  }
}
@media (max-width: 768px) {
  .product-detail__title {
    font-size: 24px;
  }
  .product-detail__price {
    font-size: 22px;
  }
  .product-detail {
    padding: 30px 0 20px;
  }
}

/* ========================================
   Shop Layout & Sidebar Filters
   ======================================== */
.shop-section {
  padding: 60px 0;
}

.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar */
.shop-sidebar {
  position: sticky;
  top: 100px;
  border-right: 1px solid var(--color-border);
  padding-right: 30px;
}

.shop-sidebar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.shop-sidebar__header h3 {
  font-family: var(--font-secondary);
  font-size: 20px;
  font-weight: 700;
}

.shop-sidebar__clear {
  font-size: 12px;
  color: var(--color-accent);
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.shop-sidebar__apply-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--color-bg-dark);
  color: var(--color-text-white);
  border: none;
  font-family: var(--font-primary);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 20px;
}

.shop-sidebar__apply-btn:hover {
  background: var(--color-accent);
}

/* Filter Groups */
.filter-group {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.filter-group__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  padding: 4px 0;
  user-select: none;
}

.filter-group__title i {
  font-size: 10px;
  transition: var(--transition);
}

.filter-group__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.filter-group__body--open {
  max-height: 500px;
  margin-top: 12px;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  cursor: pointer;
  font-size: 13px;
  color: var(--color-text-secondary);
}

.filter-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-accent);
}

.filter-checkbox:hover span {
  color: var(--color-text);
}

.filter-range {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-range__input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--color-border);
  font-family: var(--font-primary);
  font-size: 13px;
  outline: none;
}

.filter-range__input:focus {
  border-color: var(--color-accent);
}

.filter-currency {
  margin-bottom: 10px;
}

.filter-currency__select {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--color-border);
  font-family: var(--font-primary);
  font-size: 13px;
  outline: none;
  background: #fff;
}

/* Shop Content */
.shop-content {
  min-height: 400px;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.shop-toolbar__count {
  font-size: 13px;
  color: var(--color-text-light);
}

.shop-toolbar__sort select {
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  font-family: var(--font-primary);
  font-size: 13px;
  outline: none;
  background: #fff;
}

.shop-toolbar__filter-toggle {
  display: none;
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  background: none;
  font-family: var(--font-primary);
  font-size: 13px;
  cursor: pointer;
}

/* Product Grid for Shop */
.product-grid--shop {
  grid-template-columns: repeat(3, 1fr);
}

/* Product Card Brand */
.product-card__brand {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.product-card__view-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 20px;
  border: 1px solid var(--color-bg-dark);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-bg-dark);
  text-decoration: none;
  transition: var(--transition);
}

.product-card__view-btn:hover {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
}

/* Pagination */
.shop-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
}

.shop-pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  text-decoration: none;
  font-size: 13px;
  color: var(--color-text);
  transition: var(--transition);
}

.shop-pagination__item:hover,
.shop-pagination__item.active {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
  border-color: var(--color-bg-dark);
}

/* Empty State */
.shop-empty {
  text-align: center;
  padding: 80px 20px;
}

.shop-empty i {
  font-size: 48px;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.shop-empty p {
  font-size: 16px;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

/* ========================================
   Inquiry Modal
   ======================================== */
.inquiry-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
}

.inquiry-modal--open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.inquiry-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.inquiry-modal__content {
  position: relative;
  background: #fff;
  width: 90%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
}

.inquiry-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--color-text-light);
  line-height: 1;
}

.inquiry-modal__close:hover {
  color: var(--color-text);
}

.inquiry-modal__title {
  font-family: var(--font-secondary);
  font-size: 24px;
  margin-bottom: 20px;
}

.inquiry-modal__product {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #f8f8f8;
  margin-bottom: 24px;
}

.inquiry-modal__product-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
}

.inquiry-modal__product strong {
  display: block;
  font-size: 14px;
}

.inquiry-modal__product-price {
  display: block;
  font-size: 13px;
  color: var(--color-accent);
  margin-top: 4px;
}

.inquiry-modal__field {
  margin-bottom: 16px;
}

.inquiry-modal__field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: var(--color-text-secondary);
}

.inquiry-modal__field input,
.inquiry-modal__field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  font-family: var(--font-primary);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.inquiry-modal__field input:focus,
.inquiry-modal__field textarea:focus {
  border-color: var(--color-accent);
}

.inquiry-modal__submit {
  width: 100%;
  margin-top: 8px;
}

.inquiry-modal__message {
  margin-top: 12px;
  padding: 12px;
  font-size: 13px;
  text-align: center;
}

.inquiry-modal__message--success {
  background: #e8f5e9;
  color: #2e7d32;
}

.inquiry-modal__message--error {
  background: #ffebee;
  color: #c62828;
}

/* ========================================
   Shop Responsive
   ======================================== */
@media (max-width: 992px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    padding: 20px;
    border-right: 1px solid var(--color-border);
    overflow-y: auto;
    transition: left 0.3s ease;
  }

  .shop-sidebar--open {
    left: 0;
    box-shadow: 0 0 30px rgba(0,0,0,0.2);
  }

  .shop-toolbar__filter-toggle {
    display: block;
  }

  .product-grid--shop {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .product-grid--shop {
    grid-template-columns: 1fr;
  }
}

.product-detail__layout--no-gallery {
  grid-template-columns: 1fr;
}
.product-detail__layout--no-gallery .product-detail__info {
  max-width: 720px;
  margin: 0 auto;
}
