* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

:root {
  --black: #050403;

  --dark: #090705;

  --dark-soft: #100c09;

  --dark-card: #17100b;

  --wood-dark: #1c120c;

  --wood: #302015;

  --wood-light: #4c3020;

  --gold: #b47f46;

  --gold-light: #d0a06b;

  --white: #f5eee7;

  --gray: #a79a8d;

  --border-dark: rgba(208, 160, 106, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);

  color: var(--white);

  font-family: "Tajawal", sans-serif;

  font-weight: 500;

  overflow-x: hidden;
}

img {
  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;
}

a {
  color: inherit;

  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-weight: 800;
}

h1 span,
h2 span {
  color: var(--gold-light);

  font-weight: 700;
}

.section-label {
  display: block;

  margin-bottom: 22px;

  color: var(--gold-light);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;
}

/* Header */

.main-header {
  position: absolute;

  top: 0;

  left: 0;

  z-index: 100;

  width: 100%;

  min-height: 100px;

  padding: 0 5vw;

  display: grid;

  grid-template-columns: 220px 1fr 220px;

  align-items: center;

  background: linear-gradient(
    to bottom,

    rgba(4, 3, 2, 0.99),
    rgba(8, 5, 3, 0.9),
    rgba(8, 5, 3, 0.12)
  );

  border-bottom: 1px solid var(--border-dark);
}

.logo {
  width: max-content;

  display: flex;

  flex-direction: column;

  align-items: center;

  line-height: 1;
}

.logo span {
  font-size: 34px;

  font-weight: 900;

  letter-spacing: 5px;
}

.logo small {
  margin-top: 8px;

  color: var(--gold-light);

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 4px;
}

.main-nav {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 30px;
}

.main-nav a {
  position: relative;

  color: #f1e7dd;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.8px;

  text-transform: uppercase;
}

.main-nav a::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -10px;

  width: 0;

  height: 1px;

  background: var(--gold-light);

  transition: 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;

  align-items: center;

  justify-content: flex-end;

  gap: 12px;
}

.header-actions button {
  position: relative;

  width: 40px;

  height: 40px;

  border: 0;

  background: transparent;

  color: var(--white);
}

.cart-button span {
  position: absolute;

  right: 0;

  top: 0;

  width: 17px;

  height: 17px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background: var(--gold);

  color: var(--black);

  font-size: 8px;

  font-weight: 800;
}

.menu-button {
  display: none;

  justify-self: end;

  border: 0;

  background: transparent;

  color: var(--white);

  font-size: 23px;
}

/* General Buttons */

.primary-button {
  min-width: 235px;

  min-height: 58px;

  padding: 0 24px;

  display: inline-flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;

  background: var(--gold);

  border: 1px solid var(--gold);

  color: var(--black);

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;

  transition: 0.3s ease;
}

.primary-button:hover {
  background: transparent;

  color: var(--gold-light);
}

/* Product Area */

.product-section {
  min-height: 100vh;

  padding: 140px 5vw 70px;

  display: grid;

  grid-template-columns: 58% 42%;

  gap: 4vw;

  background:
    radial-gradient(
      circle at 5% 10%,

      rgba(76, 48, 32, 0.19),
      transparent 28%
    ),
    var(--dark);
}

.product-gallery {
  min-width: 0;
}

.main-product-image {
  position: relative;

  min-height: 720px;

  overflow: hidden;

  background: var(--dark-card);
}

.main-product-image img {
  transition:
    opacity 0.3s ease,
    transform 0.7s ease;
}

.main-product-image:hover img {
  transform: scale(1.025);
}

.main-product-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    to top,

    rgba(0, 0, 0, 0.4),
    transparent 50%
  );
}

.product-badge {
  position: absolute;

  z-index: 3;

  top: 25px;

  left: 25px;

  padding: 10px 15px;

  background: var(--gold);

  color: var(--black);

  font-size: 9px;

  font-weight: 900;

  text-transform: uppercase;
}

.image-expand {
  position: absolute;

  z-index: 3;

  right: 25px;

  top: 25px;

  width: 48px;

  height: 48px;

  border: 1px solid rgba(255, 255, 255, 0.35);

  border-radius: 50%;

  background: rgba(5, 4, 3, 0.55);

  color: var(--white);

  backdrop-filter: blur(10px);
}

.image-counter {
  position: absolute;

  z-index: 3;

  left: 30px;

  bottom: 27px;

  display: flex;

  align-items: center;

  gap: 13px;

  font-size: 10px;

  font-weight: 700;
}

.image-counter i {
  width: 45px;

  height: 1px;

  background: var(--gold-light);
}

.thumbnail-grid {
  margin-top: 12px;

  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 10px;
}

.thumbnail {
  position: relative;

  min-height: 120px;

  border: 1px solid transparent;

  background: var(--dark-card);

  overflow: hidden;
}

.thumbnail::after {
  content: "";

  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.35);
}

.thumbnail.active {
  border-color: var(--gold-light);
}

.thumbnail.active::after {
  background: transparent;
}

.thumbnail img {
  transition: transform 0.4s ease;
}

.thumbnail:hover img {
  transform: scale(1.05);
}

/* Product Information */

.product-information {
  padding-top: 12px;
}

.breadcrumb {
  margin-bottom: 42px;

  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 11px;

  color: #8c8177;

  font-size: 9px;

  font-weight: 700;

  text-transform: uppercase;
}

.breadcrumb strong {
  color: var(--gold-light);
}

.product-category {
  display: block;

  margin-bottom: 18px;

  color: var(--gold-light);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.product-information h1 {
  font-size: clamp(55px, 5.4vw, 88px);

  line-height: 0.95;

  letter-spacing: -5px;
}

.product-information h1 span {
  display: block;
}

.product-meta {
  margin: 35px 0;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid var(--border-dark);

  border-bottom: 1px solid var(--border-dark);
}

.product-meta > div {
  padding: 18px 13px;

  border-right: 1px solid var(--border-dark);
}

.product-meta > div:last-child {
  border-right: 0;
}

.product-meta span {
  display: block;

  margin-bottom: 7px;

  color: #766b61;

  font-size: 8px;

  font-weight: 700;

  text-transform: uppercase;
}

.product-meta strong {
  font-size: 10px;
}

.product-description {
  color: var(--gray);

  font-size: 14px;

  line-height: 2;
}

.product-price {
  margin: 30px 0;

  padding: 24px;

  background: rgba(42, 26, 17, 0.35);

  border: 1px solid var(--border-dark);
}

.product-price span {
  display: block;

  color: #857970;

  font-size: 9px;

  font-weight: 700;

  text-transform: uppercase;
}

.product-price strong {
  display: block;

  margin: 7px 0;

  color: var(--gold-light);

  font-size: 24px;
}

.product-price small {
  display: block;

  color: var(--gray);

  font-size: 10px;

  line-height: 1.7;
}

.selection-group {
  padding: 25px 0;

  border-top: 1px solid var(--border-dark);
}

.selection-header {
  margin-bottom: 17px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 15px;
}

.selection-header h3 {
  font-size: 14px;
}

.selection-header span {
  color: var(--gold-light);

  font-size: 10px;
}

.finish-options {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 10px;
}

.finish-option {
  padding: 10px;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 9px;

  border: 1px solid var(--border-dark);

  background: var(--dark-card);

  color: var(--gray);
}

.finish-option.active {
  border-color: var(--gold-light);

  color: var(--white);
}

.finish-color {
  width: 100%;

  height: 42px;

  display: block;
}

.finish-color.walnut {
  background: #382217;
}

.finish-color.oak {
  background: #9b704d;
}

.finish-color.black {
  background: #121212;
}

.finish-color.beige {
  background: #c1ab90;
}

.finish-option small {
  font-size: 8px;

  font-weight: 700;
}

.layout-options {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 9px;
}

.layout-option {
  min-height: 75px;

  padding: 10px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 9px;

  border: 1px solid var(--border-dark);

  background: var(--dark-card);

  color: var(--gray);
}

.layout-option.active {
  border-color: var(--gold-light);

  color: var(--gold-light);
}

.layout-option i {
  font-size: 18px;
}

.layout-option span {
  font-size: 8px;

  font-weight: 700;

  text-transform: uppercase;
}

.product-actions-main {
  margin-top: 28px;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 12px;
}

.wishlist-main {
  min-height: 58px;

  padding: 0 18px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  border: 1px solid var(--border-dark);

  background: transparent;

  color: var(--white);

  font-size: 10px;

  font-weight: 800;

  text-transform: uppercase;
}

.quick-contact {
  margin: 18px 0;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  border: 1px solid var(--border-dark);
}

.quick-contact a {
  min-height: 50px;

  padding: 0 12px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 9px;

  color: var(--gray);

  font-size: 9px;

  font-weight: 700;

  border-right: 1px solid var(--border-dark);
}

.quick-contact a:last-child {
  border-right: 0;
}

.quick-contact i {
  color: var(--gold-light);
}

.product-guarantees {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid var(--border-dark);
}

.product-guarantees div {
  padding: 18px 10px;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 8px;

  text-align: center;

  border-right: 1px solid var(--border-dark);
}

.product-guarantees div:last-child {
  border-right: 0;
}

.product-guarantees i {
  color: var(--gold-light);

  font-size: 20px;
}

.product-guarantees span {
  color: var(--gray);

  font-size: 8px;

  font-weight: 700;

  text-transform: uppercase;
}

/* Product Navigation */

.product-navigation {
  min-height: 82px;

  padding: 0 5vw;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 45px;

  background: var(--dark-card);

  border-top: 1px solid var(--border-dark);

  border-bottom: 1px solid var(--border-dark);
}

.product-navigation a {
  position: relative;

  color: var(--gray);

  font-size: 10px;

  font-weight: 800;

  text-transform: uppercase;
}

.product-navigation a::after {
  content: "";

  position: absolute;

  left: 0;

  right: 0;

  bottom: -31px;

  height: 2px;

  background: var(--gold);

  transform: scaleX(0);
}

.product-navigation a.active {
  color: var(--gold-light);
}

.product-navigation a.active::after {
  transform: scaleX(1);
}

/* Overview */

.overview-section {
  padding: 120px 7vw;

  display: grid;

  grid-template-columns: 47% 53%;

  gap: 7vw;

  background:
    radial-gradient(
      circle at 10% 20%,

      rgba(76, 48, 32, 0.2),
      transparent 32%
    ),
    var(--dark);
}

.overview-heading h2 {
  font-size: clamp(52px, 5.5vw, 86px);

  line-height: 1;

  letter-spacing: -4px;
}

.overview-content {
  display: flex;

  flex-direction: column;

  justify-content: flex-end;
}

.large-text {
  margin-bottom: 35px;

  color: #ddd2c7;

  font-size: clamp(20px, 2vw, 29px);

  font-weight: 600;

  line-height: 1.5;
}

.overview-columns {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 35px;
}

.overview-columns p {
  color: var(--gray);

  font-size: 13px;

  line-height: 2;
}

/* Showcase */

.showcase-image-section {
  position: relative;

  min-height: 850px;
}

.showcase-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(3, 2, 1, 0.87),
    rgba(3, 2, 1, 0.18) 65%
  );
}

.showcase-content {
  position: absolute;

  z-index: 2;

  left: 7vw;

  top: 50%;

  transform: translateY(-50%);
}

.showcase-content span {
  color: var(--gold-light);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.showcase-content h2 {
  margin-top: 20px;

  font-size: clamp(60px, 7vw, 110px);

  line-height: 0.92;

  letter-spacing: -5px;
}

/* Features */

.features-section {
  padding: 120px 5vw;

  background: var(--black);
}

.section-heading {
  max-width: 900px;

  margin-bottom: 55px;
}

.section-heading.centered {
  margin-left: auto;

  margin-right: auto;

  text-align: center;
}

.section-heading h2 {
  font-size: clamp(52px, 5.5vw, 86px);

  line-height: 1;

  letter-spacing: -4px;
}

.section-heading p {
  max-width: 650px;

  margin-top: 22px;

  color: var(--gray);

  font-size: 14px;

  line-height: 1.9;
}

.features-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid var(--border-dark);

  border-left: 1px solid var(--border-dark);
}

.feature-card {
  min-height: 360px;

  padding: 35px;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  background: rgba(37, 24, 16, 0.17);

  border-right: 1px solid var(--border-dark);

  border-bottom: 1px solid var(--border-dark);

  transition: 0.4s ease;
}

.feature-card:hover,
.feature-card.featured {
  background: linear-gradient(145deg, #392418, #15100b);

  transform: translateY(-7px);
}

.feature-card > span {
  color: var(--gold);

  font-size: 10px;

  font-weight: 800;
}

.feature-card > i {
  margin: 55px 0 25px;

  color: var(--gold-light);

  font-size: 36px;
}

.feature-card h3 {
  margin-bottom: 13px;

  font-size: 22px;
}

.feature-card p {
  color: var(--gray);

  font-size: 12px;

  line-height: 1.85;
}

/* Materials */

.materials-section {
  min-height: 850px;

  display: grid;

  grid-template-columns: 56% 44%;

  background: var(--dark-soft);
}

.materials-image {
  min-height: 850px;
}

.materials-content {
  padding: 90px 6vw;

  display: flex;

  flex-direction: column;

  justify-content: center;

  background:
    radial-gradient(
      circle at 10% 40%,

      rgba(76, 48, 32, 0.22),
      transparent 35%
    ),
    var(--dark-soft);
}

.materials-content h2 {
  margin-bottom: 25px;

  font-size: clamp(50px, 5vw, 78px);

  line-height: 1;

  letter-spacing: -4px;
}

.materials-content > p {
  margin-bottom: 32px;

  color: var(--gray);

  font-size: 14px;

  line-height: 1.9;
}

.material-list {
  border-top: 1px solid var(--border-dark);
}

.material-list div {
  padding: 17px 0;

  display: grid;

  grid-template-columns: 38% 62%;

  gap: 20px;

  border-bottom: 1px solid var(--border-dark);
}

.material-list span {
  color: #776b61;

  font-size: 9px;

  font-weight: 700;

  text-transform: uppercase;
}

.material-list strong {
  font-size: 11px;
}

/* Dimensions */

.dimensions-section {
  min-height: 750px;

  padding: 100px 6vw;

  display: grid;

  grid-template-columns: 48% 52%;

  gap: 6vw;

  background: linear-gradient(135deg, var(--wood-dark), var(--dark));
}

.dimensions-content {
  display: flex;

  flex-direction: column;

  justify-content: center;
}

.dimensions-content h2 {
  margin-bottom: 26px;

  font-size: clamp(52px, 5.2vw, 82px);

  line-height: 1;

  letter-spacing: -4px;
}

.dimensions-content > p {
  margin-bottom: 32px;

  color: var(--gray);

  font-size: 14px;

  line-height: 1.9;
}

.dimensions-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  border-top: 1px solid var(--border-dark);

  border-left: 1px solid var(--border-dark);
}

.dimensions-grid div {
  min-height: 120px;

  padding: 24px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  border-right: 1px solid var(--border-dark);

  border-bottom: 1px solid var(--border-dark);
}

.dimensions-grid span {
  margin-bottom: 8px;

  color: #81756a;

  font-size: 9px;

  font-weight: 700;

  text-transform: uppercase;
}

.dimensions-grid strong {
  color: var(--gold-light);

  font-size: 18px;
}

.dimensions-content > small {
  margin-top: 20px;

  color: #72675e;

  font-size: 9px;

  line-height: 1.7;
}

.dimensions-visual {
  display: flex;

  align-items: center;

  justify-content: center;
}

.dimension-box {
  width: 100%;

  min-height: 560px;

  padding: 55px;

  border: 1px solid var(--border-dark);

  background:
    linear-gradient(
      rgba(255, 255, 255, 0.015) 1px,

      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.015) 1px,

      transparent 1px
    );

  background-size: 30px 30px;
}

.kitchen-outline {
  position: relative;

  width: 100%;

  height: 450px;

  border-left: 2px solid var(--gold-light);

  border-bottom: 2px solid var(--gold-light);
}

.top-line {
  position: absolute;

  top: -28px;

  left: 50%;

  transform: translateX(-50%);

  color: var(--gold-light);

  font-size: 10px;
}

.side-line {
  position: absolute;

  left: -60px;

  top: 50%;

  transform: rotate(-90deg);

  color: var(--gold-light);

  font-size: 10px;
}

.outline-cabinet {
  position: absolute;

  bottom: 0;

  width: 29%;

  height: 58%;

  border: 1px solid rgba(208, 160, 107, 0.5);
}

.cabinet-one {
  left: 3%;
}

.cabinet-two {
  left: 35%;
}

.cabinet-three {
  left: 67%;
}

.outline-island {
  position: absolute;

  left: 25%;

  bottom: 25%;

  width: 50%;

  height: 18%;

  border: 1px solid var(--gold-light);

  background: rgba(180, 127, 70, 0.08);
}

/* Process */

.process-section {
  padding: 120px 5vw;

  background: var(--dark);
}

.process-grid {
  display: grid;

  grid-template-columns: repeat(5, 1fr);
}

.process-card {
  min-height: 340px;

  padding: 30px;

  background: rgba(42, 27, 18, 0.2);

  border-top: 1px solid var(--border-dark);

  border-right: 1px solid var(--border-dark);
}

.process-card:first-child {
  border-left: 1px solid var(--border-dark);
}

.process-card > span {
  color: var(--gold);

  font-size: 10px;

  font-weight: 800;
}

.process-card i {
  display: block;

  margin: 55px 0 25px;

  color: var(--gold-light);

  font-size: 35px;
}

.process-card h3 {
  margin-bottom: 12px;

  font-size: 20px;
}

.process-card p {
  color: var(--gray);

  font-size: 11px;

  line-height: 1.8;
}

/* Quote */

.quote-section {
  padding: 120px 6vw;

  display: grid;

  grid-template-columns: 40% 60%;

  gap: 7vw;

  background:
    radial-gradient(
      circle at 10% 10%,

      rgba(76, 48, 32, 0.24),
      transparent 32%
    ),
    #070504;
}

.quote-information h2 {
  margin-bottom: 25px;

  font-size: clamp(52px, 5vw, 80px);

  line-height: 1;

  letter-spacing: -4px;
}

.quote-information > p {
  margin-bottom: 30px;

  color: var(--gray);

  font-size: 14px;

  line-height: 1.9;
}

.quote-benefits {
  margin-bottom: 35px;
}

.quote-benefits div {
  padding: 15px 0;

  display: flex;

  align-items: center;

  gap: 13px;

  border-bottom: 1px solid var(--border-dark);

  color: #d3c8bd;

  font-size: 12px;
}

.quote-benefits i {
  color: var(--gold-light);
}

.quote-contact {
  display: grid;

  gap: 12px;
}

.quote-contact a {
  padding: 20px;

  display: flex;

  align-items: center;

  gap: 18px;

  border: 1px solid var(--border-dark);
}

.quote-contact i {
  color: var(--gold-light);

  font-size: 22px;
}

.quote-contact div {
  display: flex;

  flex-direction: column;

  gap: 5px;
}

.quote-contact span {
  color: #776b61;

  font-size: 8px;

  text-transform: uppercase;
}

.quote-contact strong {
  font-size: 12px;
}

.quote-form {
  padding: 45px;

  background: var(--dark-card);

  border: 1px solid var(--border-dark);
}

.form-row {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;

  margin-bottom: 10px;

  color: #b8ada2;

  font-size: 10px;

  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 16px;

  border: 1px solid var(--border-dark);

  outline: 0;

  background: #0e0a07;

  color: var(--white);

  font-size: 11px;
}

.form-group textarea {
  resize: vertical;
}

.upload-field {
  min-height: 140px;

  padding: 25px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 9px;

  border: 1px dashed rgba(208, 160, 107, 0.35);

  color: var(--gray);

  cursor: pointer;
}

.upload-field input {
  display: none;
}

.upload-field i {
  color: var(--gold-light);

  font-size: 28px;
}

.upload-field span {
  font-size: 11px;

  font-weight: 700;
}

.upload-field small {
  color: #70655c;

  font-size: 8px;
}

.submit-button {
  width: 100%;

  min-height: 58px;

  margin-top: 22px;

  padding: 0 22px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  border: 1px solid var(--gold);

  background: var(--gold);

  color: var(--black);

  font-size: 11px;

  font-weight: 900;

  text-transform: uppercase;
}

/* Related */

.related-section {
  padding: 120px 5vw;

  background: var(--black);
}

.related-heading {
  margin-bottom: 50px;

  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 25px;
}

.related-heading h2 {
  font-size: clamp(48px, 5vw, 75px);

  letter-spacing: -3px;
}

.related-heading > a {
  display: flex;

  align-items: center;

  gap: 13px;

  color: var(--gold-light);

  font-size: 10px;

  font-weight: 800;

  text-transform: uppercase;
}

.related-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}

.related-image {
  position: relative;

  min-height: 500px;

  overflow: hidden;
}

.related-image img {
  transition: transform 0.6s ease;
}

.related-card:hover .related-image img {
  transform: scale(1.055);
}

.related-image a {
  position: absolute;

  left: 18px;

  right: 18px;

  bottom: 18px;

  min-height: 50px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: var(--gold);

  color: var(--black);

  font-size: 9px;

  font-weight: 900;

  text-transform: uppercase;

  transform: translateY(80px);

  opacity: 0;

  transition: 0.35s ease;
}

.related-card:hover .related-image a {
  transform: translateY(0);

  opacity: 1;
}

.related-card > span {
  display: block;

  margin-top: 18px;

  color: var(--gold-light);

  font-size: 9px;

  font-weight: 800;

  text-transform: uppercase;
}

.related-card h3 {
  margin-top: 8px;

  font-size: 21px;
}

/* Footer */

.main-footer {
  padding: 80px 5vw 25px;

  background: #050403;

  border-top: 1px solid var(--border-dark);
}

.footer-top {
  display: grid;

  grid-template-columns: 1.4fr repeat(3, 0.8fr) 1.25fr;

  gap: 45px;
}

.footer-brand > p {
  max-width: 330px;

  margin-top: 25px;

  color: var(--gray);

  font-size: 11px;

  line-height: 1.9;
}

.social-links {
  margin-top: 25px;

  display: flex;

  gap: 10px;
}

.social-links a {
  width: 34px;

  height: 34px;

  display: grid;

  place-items: center;

  border: 1px solid var(--border-dark);

  border-radius: 50%;
}

.footer-column,
.newsletter {
  display: flex;

  flex-direction: column;

  align-items: flex-start;
}

.footer-column h3,
.newsletter h3 {
  margin-bottom: 23px;

  color: var(--gold-light);

  font-size: 11px;

  font-weight: 800;

  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  margin-bottom: 12px;

  color: var(--gray);

  font-size: 11px;
}

.contact-column a,
.contact-column p {
  display: flex;

  align-items: center;

  gap: 10px;
}

.newsletter p {
  margin-bottom: 20px;

  color: var(--gray);

  font-size: 11px;

  line-height: 1.8;
}

.newsletter form {
  width: 100%;

  display: flex;

  border: 1px solid var(--border-dark);
}

.newsletter input {
  width: 100%;

  min-width: 0;

  padding: 16px;

  border: 0;

  outline: 0;

  background: transparent;

  color: var(--white);
}

.newsletter button {
  width: 55px;

  border: 0;

  background: var(--gold);
}

.footer-bottom {
  margin-top: 70px;

  padding-top: 25px;

  display: flex;

  justify-content: space-between;

  border-top: 1px solid var(--border-dark);

  color: #776d64;

  font-size: 9px;
}

.footer-bottom div {
  display: flex;

  gap: 25px;
}

/* Floating Contact */

.floating-contact {
  position: fixed;

  z-index: 200;

  right: 25px;

  bottom: 25px;

  display: flex;

  flex-direction: column;

  gap: 10px;
}

.floating-contact a {
  width: 52px;

  height: 52px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  font-size: 20px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.whatsapp-button {
  background: #25d366;
}

.floating-phone {
  background: var(--gold);

  color: var(--black);
}

/* Responsive */

@media (max-width: 1200px) {
  .main-header {
    grid-template-columns: 190px 1fr 180px;
  }

  .main-nav {
    gap: 18px;
  }

  .product-section {
    grid-template-columns: 54% 46%;

    gap: 3vw;
  }

  .finish-options,
  .layout-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .newsletter {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .main-header {
    min-height: 80px;

    grid-template-columns: 1fr auto;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .product-section {
    grid-template-columns: 1fr;
  }

  .main-product-image {
    min-height: 650px;
  }

  .product-information {
    padding-top: 40px;
  }

  .product-navigation {
    justify-content: flex-start;

    overflow-x: auto;
  }

  .overview-section,
  .materials-section,
  .dimensions-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .materials-image,
  .materials-content {
    min-height: 650px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand,
  .newsletter {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .logo span {
    font-size: 27px;
  }

  .logo small {
    font-size: 6px;
  }

  .product-section {
    padding: 110px 5vw 60px;
  }

  .main-product-image {
    min-height: 500px;
  }

  .thumbnail-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .thumbnail {
    min-height: 100px;
  }

  .product-information h1 {
    font-size: 50px;

    letter-spacing: -3px;
  }

  .product-meta {
    grid-template-columns: 1fr;
  }

  .product-meta > div {
    border-right: 0;

    border-bottom: 1px solid var(--border-dark);
  }

  .finish-options,
  .layout-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-actions-main,
  .quick-contact,
  .product-guarantees {
    grid-template-columns: 1fr;
  }

  .quick-contact a,
  .product-guarantees div {
    border-right: 0;

    border-bottom: 1px solid var(--border-dark);
  }

  .product-navigation {
    gap: 28px;
  }

  .overview-section,
  .features-section,
  .dimensions-section,
  .process-section,
  .quote-section,
  .related-section {
    padding: 80px 5vw;
  }

  .overview-heading h2,
  .section-heading h2,
  .materials-content h2,
  .dimensions-content h2,
  .quote-information h2,
  .related-heading h2 {
    font-size: 44px;

    letter-spacing: -2px;
  }

  .overview-columns,
  .features-grid,
  .dimensions-grid,
  .process-grid,
  .form-row,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .showcase-image-section {
    min-height: 680px;
  }

  .showcase-content h2 {
    font-size: 50px;
  }

  .materials-content {
    padding: 75px 7vw;
  }

  .material-list div {
    grid-template-columns: 1fr;

    gap: 8px;
  }

  .dimension-box {
    min-height: 430px;

    padding: 35px;
  }

  .kitchen-outline {
    height: 330px;
  }

  .quote-form {
    padding: 25px;
  }

  .related-heading {
    align-items: flex-start;

    flex-direction: column;
  }

  .related-image {
    min-height: 470px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .newsletter {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;

    gap: 15px;
  }

  .floating-contact {
    right: 15px;

    bottom: 15px;
  }

  .floating-contact a {
    width: 47px;

    height: 47px;
  }
}
