﻿html.h-full { height: 100%; }
body.min-h-full { min-height: 100%; }
body.flex { display: flex; }
body.flex-col { flex-direction: column; }
html.antialiased { -webkit-font-smoothing: antialiased; }

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #171717;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

/* Header */
.site-header {
  width: 100%;
  background: rgba(36, 36, 36, 0.98);
  color: #fff;
  position: relative;
  z-index: 9999;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-transparent {
  position: fixed;
  top: 0;
  left: 0;
  background: transparent;
}

.site-header.is-scrolled {
  background: rgba(36, 36, 36, 0.98);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-header-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-logo-img {
  width: 220px;
  display: block;
}

.site-header-separator {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.35);
}

.site-support {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-phone-icon {
  font-size: 34px;
  color: #ff6a00;
}

.site-support-title {
  font-size: 14px;
  font-weight: bold;
}

.site-phone {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
}

.contact-btn {
  background: #ff6a00;
  color: #fff !important;
  padding: 14px 24px;
  border-radius: 40px;
  box-shadow: 0 8px 22px rgba(255, 106, 0, 0.35);
}

.mobile-menu-btn,
.mobile-overlay,
.mobile-menu {
  display: none;
}

/* Hero */
.home-hero {
  height: 100vh;
  min-height: 760px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 2.5s ease-in-out;
}

.home-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-hero-content p {
  color: #ff6b00;
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 14px;
}

.hero-title {
  font-size: 52px;
  line-height: 1.15;
  margin: 0 0 24px;
  font-weight: 800;
}

.home-hero-buttons {
  display: flex;
  gap: 14px;
}

.home-hero-buttons a {
  color: #fff;
  padding: 13px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.home-hero-buttons a:first-child {
  background: #ff6b00;
}

.home-hero-buttons a:last-child {
  border: 1px solid #fff;
}

/* Home */
.home-action-wrap {
  max-width: 1200px;
  margin: -70px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 5;
}

.home-action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.home-action-card {
  background: #2b2b2b;
  color: #fff;
  padding: 34px 28px;
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.home-action-card.active {
  background: #7a2d09;
}

.home-action-card p {
  color: #ddd;
  font-size: 14px;
  line-height: 1.7;
}

.home-action-card a {
  color: #ff6b00;
  font-weight: bold;
  font-size: 13px;
  text-decoration: none;
}

.home-about-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.home-about-section h2 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
}

.home-about-section h2 span {
  color: #ff6b00;
}

.home-about-text {
  border-left: 3px solid #ff6b00;
  padding-left: 24px;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 45px;
}

.home-feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  margin-bottom: 25px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.feature-icon {
  width: 70px;
  min-width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ff6b00;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.home-feature-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.home-feature-card p {
  color: #666;
  line-height: 1.7;
}

.home-about-images {
  position: relative;
  min-height: 480px;
}

.home-about-images > img {
  width: 65%;
  height: 360px;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 40px;
}

.home-about-images > div {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  position: absolute;
  right: 0;
  top: 90px;
  width: 68%;
}

.home-about-images > div img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

/* Product / Footer existing */
.products-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.products-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: start;
  margin-top: 30px;
}

.product-card-link {
  text-decoration: none;
  color: #000;
}

.product-card {
  padding: 20px;
  text-align: center;
  background: #fff;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card img {
  width: 100%;
  height: 170px;
  object-fit: contain;
}

.category-sidebar {
  border: 1px solid #ddd;
  background: #fff;
  max-height: 720px;
  overflow-y: auto;
}

.site-footer {
  background: #050505;
  color: #fff;
  margin-top: 80px;
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
}

/* Mobile */
@media (max-width: 1199px) {
  .site-header.is-transparent {
    position: relative;
    background: rgba(36,36,36,0.98);
  }

  .desktop-nav,
  .site-support,
  .site-header-separator {
    display: none !important;
  }

  .site-header-inner {
    max-width: 100%;
    padding: 16px 18px;
  }

  .site-logo-img {
    width: 165px;
  }

  .mobile-menu-btn {
    display: flex;
    margin-left: auto;
    width: 46px;
    height: 46px;
    min-width: 46px;
    border: none;
    border-radius: 50%;
    background: #ff6a00;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    cursor: pointer;
    z-index: 100000;
  }

  .mobile-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .mobile-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: min(82vw, 320px);
    height: 100dvh;
    background: #fff;
    z-index: 99999;
    padding: 30px 24px;
    flex-direction: column;
    gap: 22px;
    box-shadow: -20px 0 50px rgba(0,0,0,0.25);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
  }

  .mobile-menu.open {
    transform: translateX(0);
  }

  .mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 26px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
  }

  .mobile-menu-top img {
    width: 135px;
  }

  .mobile-menu-top button {
    background: none;
    border: none;
    font-size: 24px;
    font-weight: 800;
    cursor: pointer;
    color: #111;
  }

  .mobile-menu a {
    color: #111 !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
  }

  .mobile-phone-card {
    margin-top: 16px;
    background: #f7f7f7;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }

  .mobile-phone-card span {
    width: 46px;
    height: 46px;
    background: #ff6a00;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-phone-card small {
    display: block;
    color: #777;
    font-size: 11px;
  }

  .mobile-phone-card strong {
    color: #111;
    font-size: 14px;
  }

  .home-hero {
    height: auto;
    min-height: 690px;
  }

  .home-hero-content {
    padding: 80px 20px 60px;
    justify-content: center;
  }

  .hero-title {
    font-size: 42px !important;
  }

  .home-action-wrap {
    margin: 0 auto;
    padding: 24px 16px;
  }

  .home-action-grid {
    grid-template-columns: 1fr;
  }

  .home-about-section {
    grid-template-columns: 1fr;
    padding: 50px 16px;
  }

  .home-about-section h2 {
    font-size: 36px;
  }

  .home-feature-card {
    align-items: flex-start;
    padding: 22px;
  }

  .home-about-images {
    min-height: auto;
  }

  .home-about-images > img,
  .home-about-images > div {
    position: static;
    width: 100%;
    margin-bottom: 18px;
  }

  .home-about-images > img,
  .home-about-images > div img {
    height: auto;
  }

  .products-layout {
    grid-template-columns: 1fr;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
  }
}
.category-sidebar {
  border: 1px solid #ddd;
  background: #fff;
  max-height: 720px;
  overflow-y: auto;
}

.category-sidebar h3 {
  padding: 22px 24px;
  margin: 0;
  border-bottom: 1px solid #eee;
  font-size: 20px;
}

.category-box {
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.category-box input {
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  font-size: 15px;
  outline: none;
}

.category-main {
  width: 100%;
  padding: 18px;
  border: 1px solid #ddd;
  background: #f7f7f7;
  color: #111;
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
  text-align: center;
}

.category-main.active {
  background: #111;
  color: #fff;
}

.category-item {
  width: 100%;
  padding: 13px 14px;
  border: none;
  border-bottom: 1px solid #eee;
  background: #fff;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #444;
}

.category-item.active {
  background: #f3f3f3;
  font-weight: 700;
}

.category-item span:first-child {
  display: block;
  line-height: 1.4;
}

.category-item span:last-child {
  color: #999;
  font-size: 16px;
}

@media (max-width: 768px) {
  .category-sidebar {
    max-height: 360px;
    margin-bottom: 26px;
  }

  .category-sidebar h3 {
    font-size: 18px;
  }

  .category-item {
    font-size: 13px;
  }
}
.home-brands {
  background: #f6f6f6;
  padding: 80px 20px;
  text-align: center;
}

.home-brands > p {
  color: #ff6b00;
  font-weight: bold;
  font-size: 13px;
}

.home-brands h2 {
  font-size: 42px;
  margin-bottom: 40px;
}

.home-brands h2 span {
  color: #ff6b00;
}

.home-brands-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.home-brand-card {
  background: #fff;
  border: 1px solid #eee;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.home-brand-card img {
  max-width: 120px;
  max-height: 42px;
  object-fit: contain;
}

.featured-products {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.featured-products-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  gap: 30px;
}

.featured-products-head h2 {
  font-size: 34px;
  margin: 0;
  font-weight: 800;
}

.featured-tabs {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.featured-tabs button {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 8px 14px;
  color: #111;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  letter-spacing: 0.4px;
}

.featured-tabs button.active {
  border-bottom-color: #ff6b00;
  color: #ff6b00;
}

.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.featured-product-card {
  text-decoration: none;
  color: #111;
  text-align: center;
  background: #fff;
  padding: 22px 18px;
  border: 1px solid #eee;
}

.featured-product-card img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  margin-bottom: 18px;
}

.featured-product-card h3 {
  font-size: 14px;
  line-height: 1.4;
  min-height: 40px;
  margin-bottom: 14px;
}

.featured-product-card > div {
  width: 42px;
  height: 2px;
  background: #ddd;
  margin: 0 auto 14px;
}

.featured-product-card p {
  color: #777;
  font-size: 13px;
  margin: 0;
}

.service-strip {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px 90px;
}

.service-strip-inner {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  padding: 28px 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-strip-item {
  display: flex;
  gap: 14px;
  align-items: center;
}

.service-strip-item > div:first-child {
  font-size: 28px;
}

.service-strip-item p {
  margin: 0;
  color: #777;
  font-size: 13px;
}

@media (max-width: 1199px) {
  .home-brands {
    padding: 55px 16px;
  }

  .home-brands h2 {
    font-size: 32px;
  }

  .home-brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-products {
    padding: 55px 16px;
  }

  .featured-products-head {
    display: block;
  }

  .featured-products-head h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .featured-tabs {
    gap: 10px;
  }

  .featured-tabs button {
    padding: 8px 10px;
    font-size: 12px;
  }

  .featured-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .service-strip {
    padding: 25px 16px 55px;
  }

  .service-strip-inner {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .home-brands-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .home-brand-card {
    height: 68px;
    padding: 12px;
  }

  .home-brand-card img {
    max-width: 100px;
  }

  .featured-products-grid {
    grid-template-columns: 1fr;
  }

  .featured-product-card img {
    height: 150px;
  }
}

.slider-text-animate {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease forwards;
}

.slider-delay-1 {
  animation-delay: .15s;
}

.slider-delay-2 {
  animation-delay: .30s;
}

.slider-delay-3 {
  animation-delay: .45s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.product-list {
  width: 100%;
}

.product-count {
  margin-bottom: 25px;
  font-weight: bold;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

.product-pagination {
  text-align: center;
  margin-top: 45px;
}

.product-pagination > div {
  display: flex;
  justify-content: center;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

.product-pagination button {
  min-width: 46px;
  height: 46px;
  border: 1px solid #ddd;
  background: #fff;
  color: #111;
  font-weight: bold;
  cursor: pointer;
  padding: 0 14px;
}

.product-pagination button.active {
  background: #111;
  color: #fff;
}

.product-pagination button:disabled {
  color: #aaa;
  cursor: not-allowed;
}

.product-detail-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.product-detail-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.product-detail-image {
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.product-detail-image img {
  width: 100%;
  max-width: 360px;
  object-fit: contain;
}

.product-detail-info {
  border: 1px solid #e5e5e5;
  padding: 28px;
  background: #fff;
}

.product-detail-info .breadcrumb {
  color: #999;
  font-size: 13px;
  margin-bottom: 14px;
}

.product-category {
  font-weight: 500;
  color: #999;
  font-size: 13px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-detail-info h1 {
  font-size: 26px;
  margin-bottom: 18px;
}

.product-description {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.back-products {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 22px;
  background: #111;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.product-tabs-box {
  margin-top: 30px;
  border: 1px solid #e5e5e5;
  background: #fff;
  padding: 40px;
}

.product-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 14px;
}

.product-tabs button {
  border: none;
  padding: 12px 22px;
  font-weight: bold;
  cursor: pointer;
}

.product-tabs button:first-child {
  background: #111;
  color: #fff;
}

.product-tabs button:last-child {
  background: #f3f3f3;
  color: #555;
}

.product-tabs-box p {
  line-height: 1.8;
  color: #555;
}

.product-features-box {
  margin-top: 30px;
  border: 1px solid #e5e5e5;
  background: #fff;
}

.product-features-box > div:first-child {
  background: #ff6b00;
  color: #fff;
  padding: 16px 24px;
  font-weight: bold;
}

.product-features-content {
  padding: 30px 20px 10px;
}

.product-features-content img {
  width: 180px;
  margin-bottom: 30px;
}

.product-features-content ul {
  line-height: 2.2;
  color: #555;
  padding-left: 18px;
}

.related-products {
  margin-top: 60px;
}

.related-products h2 {
  margin-bottom: 30px;
  font-size: 28px;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.related-products-grid a {
  border: 1px solid #eee;
  padding: 20px;
  text-decoration: none;
  color: #111;
  background: #fff;
}

.related-products-grid img {
  width: 100%;
  height: 160px;
  object-fit: contain;
}

.related-products-grid h3 {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 1199px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .related-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-detail-page {
    padding: 28px 16px;
  }

  .product-detail-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-detail-image {
    padding: 28px;
  }

  .product-detail-info,
  .product-tabs-box {
    padding: 24px;
  }

  .product-detail-info h1 {
    font-size: 24px !important;
  }

  .product-tabs {
    flex-wrap: wrap;
  }

  .related-products-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-pagination button {
    min-width: 40px;
    height: 42px;
    font-size: 13px;
  }
}
/* PRODUCT LIST DESKTOP FIX */
.products-page {
  max-width: 1320px;
}

.products-layout {
  grid-template-columns: 300px minmax(0, 1fr) !important;
  gap: 36px !important;
}

.product-list {
  min-width: 0;
  width: 100%;
}

.product-grid {
  width: 100%;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  border: none !important;
}

.product-card-link {
  display: block;
  width: 100%;
}

.product-card {
  border: 1px solid #eee !important;
  min-height: 320px;
}

@media (max-width: 1199px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 430px) {
  .product-grid {
    grid-template-columns: 1fr !important;
  }
}
/* PRODUCT LIST MOBILE FIX - FINAL */
@media (max-width: 768px) {
  .products-page {
    max-width: 100% !important;
    padding: 28px 16px 40px !important;
  }

  .products-layout {
    display: block !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .category-sidebar {
    width: 100% !important;
    max-height: 340px !important;
    margin-bottom: 28px !important;
  }

  .product-list {
    width: 100% !important;
  }

  .product-count {
    font-size: 18px !important;
    margin-bottom: 20px !important;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .product-card {
    min-height: 260px !important;
    padding: 14px !important;
  }

  .product-card img {
    height: 120px !important;
  }

  .product-card h3 {
    font-size: 13px !important;
    line-height: 1.35 !important;
    min-height: auto !important;
  }

  .product-card p {
    font-size: 12px !important;
  }
}

@media (max-width: 430px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .product-card {
    min-height: 245px !important;
  }

  .product-card img {
    height: 105px !important;
  }
}

/* FOOTER FINAL FIX */
.site-footer {
  background: #050505;
  color: #fff;
  margin-top: 80px;
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.footer-logo {
  width: 230px;
  margin-bottom: 30px;
  display: block;
}

.site-footer p {
  color: #aaa;
  line-height: 1.8;
  margin: 0 0 22px;
  font-size: 15px;
}

.site-footer h3 {
  color: #fff;
  font-size: 20px;
  margin: 0 0 22px;
}

.footer-hour {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #222;
  padding: 9px 0;
  color: #aaa;
  font-size: 15px;
}

.footer-hour strong {
  color: #fff;
  white-space: nowrap;
}

.footer-hour strong.closed {
  color: #ff6a00;
}

.footer-links {
  display: grid;
  gap: 13px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 15px;
}

.footer-links a:hover {
  color: #ff6a00;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  transition: background 0.2s, color 0.2s;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-social a:hover {
  background: #ff6a00;
  color: #fff;
}

.footer-social a.footer-social-facebook:hover {
  background: #1877f2 !important;
}

.footer-social a.footer-social-instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%) !important;
}

.footer-social a.footer-social-youtube:hover {
  background: #ff0000 !important;
}

.footer-social a.footer-social-twitter:hover {
  background: #000000 !important;
}

.footer-social a.footer-social-linkedin:hover {
  background: #0a66c2 !important;
}

.footer-copy {
  border-top: 1px solid #222;
  padding: 22px 20px;
  text-align: center;
  color: #777;
  font-size: 14px;
}

/* FOOTER MOBILE */
@media (max-width: 768px) {
  .site-footer {
    margin-top: 45px;
  }

  .site-footer-inner {
    grid-template-columns: 1fr !important;
    gap: 38px;
    padding: 45px 20px;
  }

  .footer-logo {
    width: 180px;
    margin-bottom: 22px;
  }

  .site-footer p {
    font-size: 14px;
  }

  .site-footer h3 {
    font-size: 18px;
  }

  .footer-hour {
    font-size: 14px;
  }

  .footer-links {
    gap: 11px;
  }

  .footer-copy {
    font-size: 13px;
    line-height: 1.5;
  }
}
/* ABOUT PAGE FINAL */
.about-values-section {
  background: #f7f7f7;
  padding: 90px 20px 70px;
  text-align: center;
}

.about-values-section > p,
.about-main-content > p:first-child {
  color: #ff6b00;
  font-weight: bold;
  font-size: 13px;
}

.about-values-section h1 {
  font-size: 42px;
  margin-bottom: 45px;
}

.about-values-section h1 span,
.about-main-content h2 span {
  color: #ff6b00;
}

.about-values-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.about-value-card {
  background: #fff;
  border-radius: 14px;
  padding: 34px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.about-value-card .feature-icon {
  width: 62px;
  height: 62px;
  min-width: 62px;
  margin: 0 auto 18px;
  font-size: 26px;
}

.about-value-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.about-value-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

.about-main-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-main-content h2 {
  font-size: 46px;
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 800;
}

.about-main-content p {
  color: #555;
  line-height: 1.9;
}

.about-main-content hr {
  margin: 28px 0;
  border: none;
  border-top: 1px solid #eee;
}

.about-main-content strong {
  color: #ff6b00;
}

.about-main-content a {
  color: #111;
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
}

.about-experience-box span {
  color: #ff6b00;
  font-size: 92px;
  font-weight: 900;
}

.about-experience-box small {
  font-size: 26px;
  font-weight: 800;
}

.about-experience-box strong {
  font-size: 24px;
}

.about-experience-box strong span {
  font-size: inherit;
  color: #ff6b00;
}

@media (max-width: 1199px) {
  .about-values-section {
    padding: 60px 16px 50px;
  }

  .about-values-section h1 {
    font-size: 34px;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-main-section {
    grid-template-columns: 1fr;
    padding: 55px 16px;
    gap: 45px;
  }

  .about-main-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 520px) {
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-collage {
    min-height: 420px !important;
  }

  .about-main-content a {
    font-size: 20px;
  }
}
/* ABOUT COLLAGE FINAL FIX */
.about-collage {
  position: relative !important;
  width: 100% !important;
  min-height: 520px !important;
}

.about-img {
  position: absolute !important;
  width: 170px !important;
  height: 176px !important;
  object-fit: cover !important;
  animation: aboutFloat 3.5s ease-in-out infinite;
}

.about-img-1 {
  left: 30px !important;
  top: 35px !important;
}

.about-img-2 {
  right: 55px !important;
  top: 30px !important;
  animation-delay: 0.4s;
}

.about-img-3 {
  left: 30px !important;
  bottom: 55px !important;
  animation-delay: 0.8s;
}

.about-img-4 {
  right: 55px !important;
  bottom: 55px !important;
  animation-delay: 1.2s;
}

.about-experience-box {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: 310px !important;
  height: 310px !important;
  transform: translate(-50%, -50%);
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: aboutPulse 4s ease-in-out infinite;
  z-index: 3;
}

.orange-dot {
  position: absolute;
  left: 22px;
  bottom: 22px;
  width: 26px;
  height: 26px;
  background: #ff6b00;
}

@keyframes aboutFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes aboutPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.03);
  }
}

@media (max-width: 768px) {
  .about-collage {
    min-height: 420px !important;
  }

  .about-img {
    width: 120px !important;
    height: 125px !important;
  }

  .about-img-1 {
    left: 10px !important;
    top: 25px !important;
  }

  .about-img-2 {
    right: 10px !important;
    top: 25px !important;
  }

  .about-img-3 {
    left: 10px !important;
    bottom: 45px !important;
  }

  .about-img-4 {
    right: 10px !important;
    bottom: 45px !important;
  }

  .about-experience-box {
    width: 220px !important;
    height: 220px !important;
  }

  .about-experience-box span {
    font-size: 64px !important;
  }
}
/* CATALOG PAGE FINAL FIX */
.catalog-page {
  background: #f5f5f5;
  min-height: 100vh;
}

.page-hero {
  padding: 80px 20px 40px;
  text-align: center;
}

.page-hero p {
  color: #ff6b00;
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 10px;
}

.page-hero h1 {
  font-size: 46px;
  margin: 0 0 12px;
  font-weight: 800;
}

.page-hero h1 span {
  color: #ff6b00;
}

.page-hero small {
  color: #666;
  font-size: 15px;
}

.catalog-viewer-section {
  padding: 0 20px 90px;
}

.catalog-viewer {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.catalog-pages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.catalog-pages img {
  width: 100%;
  height: auto;
  display: block;
}

.catalog-controls {
  max-width: 560px;
  margin: 28px auto 0;
  background: #fff;
  border-radius: 50px;
  padding: 16px 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.catalog-controls button,
.catalog-nav-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  border: none;
  background: #111;
  color: #fff !important;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
}

.catalog-controls button:disabled,
.catalog-nav-btn.disabled {
  background: #aaa;
  cursor: not-allowed;
  pointer-events: none;
}

.catalog-controls strong,
.catalog-controls a {
  color: #555;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 55px 16px 30px;
  }

  .page-hero h1 {
    font-size: 34px !important;
  }

  .catalog-viewer-section {
    padding: 0 14px 55px;
  }

  .catalog-viewer {
    padding: 14px;
    border-radius: 14px;
  }

  .catalog-pages {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .catalog-controls {
    max-width: 100%;
    border-radius: 18px;
    padding: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .catalog-controls a:not(.catalog-nav-btn) {
    width: 100%;
    text-align: center;
  }
}
/* CONTACT PAGE FINAL */
.contact-main-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2,
.contact-form-box h2 {
  font-size: 34px;
  margin-bottom: 30px;
}

.contact-info-card {
  background: #fff;
  padding: 26px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  margin-bottom: 18px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.contact-info-card > div:first-child {
  width: 56px;
  min-width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ff6b00;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.contact-info-card h3 {
  margin-bottom: 6px;
}

.contact-info-card p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.contact-form-box {
  background: #fff;
  padding: 34px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 15px;
  outline: none;
  resize: vertical;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
  border-color: #ff6b00;
}

.contact-form-box button {
  background: #ff6b00;
  color: #fff;
  border: none;
  padding: 15px 28px;
  border-radius: 40px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(255,106,0,0.35);
}

.contact-map-section {
  padding: 0 20px 90px;
}

.contact-map-section > div {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  .contact-main-section {
    grid-template-columns: 1fr;
    padding: 55px 16px;
    gap: 36px;
  }

  .contact-info h2,
  .contact-form-box h2 {
    font-size: 28px;
  }

  .contact-info-card {
    align-items: flex-start;
    padding: 22px;
  }

  .contact-form-box {
    padding: 24px;
  }

  .contact-map-section {
    padding: 0 16px 55px;
  }

  .contact-map-section iframe {
    height: 320px;
  }
}
