/*
Theme Name: Golden Bull
Theme URI: 
Author: Antigravity
Description: A modern, industrial tool catalog theme inspired by TOTAL Tools.
Version: 1.0
Text Domain: golden-bull
*/

:root {
  --primary-gold: #ff9900;
  --dark-gold: #d67d00;
  --accent-gold: #ff9900;
  --bg-black: #ffffff;
  --bg-white: #ffffff;
  --bg-light: #ffffff;
  --text-white: #111111;
  --text-black: #000000;
  --text-dark: #111111;
  --card-bg: #ffffff;
  --bg-dark: #ffffff;
  --bg-darker: #f9f9f9;
  --font-main: 'Outfit', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.bg-black {
  background: var(--bg-black) !important;
}

.bg-white {
  background: var(--bg-white) !important;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

a {
  color: var(--primary-gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--dark-gold);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* PREMIUM TOP PROMO BAR */
.top-promo-bar {
  background: #322017;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  height: 40px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 101;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-bar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}

.top-promo-bar a.promo-text {
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
  letter-spacing: 0.5px;
}

.top-promo-bar a.promo-text:hover {
  color: var(--primary-gold);
}

.promo-lang {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 13px;
  opacity: 0.9;
  transition: var(--transition);
}

.promo-lang:hover {
  color: var(--primary-gold);
  opacity: 1;
}

.promo-lang svg {
  transition: transform 0.3s ease;
}

.promo-lang:hover svg {
  transform: translateY(2px);
}

@media (max-width: 768px) {
  .top-promo-bar {
    height: auto !important;
    padding: 10px 0 !important;
  }

  .promo-bar-container {
    flex-direction: column !important;
    gap: 8px !important;
    padding: 0 10px !important;
  }

  .promo-lang {
    position: static !important;
    transform: none !important;
  }
}

/* Header */
.site-header {
  display: flex;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 100;
  width: 100%;
}

.header-left {
  background: var(--primary-gold);
  /* Solid premium gold */
  width: 30%;
  max-width: 450px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 40px 5px 20px;
  position: relative;
  z-index: 2;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.05);
}

.header-right {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  margin-left: -40px;
  background: #ffffff;
}

.top-bar {
  background: #f7f7f7;
  height: 32px;
  display: flex;
  align-items: stretch;
  padding: 0;
  border-bottom: 1px solid #eeeeee;
  width: 100%;
}

.top-bar-content {
  display: flex;
  align-items: stretch;
  width: 100%;
  justify-content: flex-start;
}

.header-search {
  flex-grow: 1;
  display: flex;
  align-items: stretch;
}

.search-form {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 0;
  padding: 0 25px 0 80px;
  transition: all 0.3s ease;
  border: none;
  border-right: 1px solid #eeeeee;
  flex-grow: 1;
  box-shadow: none;
  width: 100%;
}

.search-form:focus-within {
  background: #ffffff;
  box-shadow: inset 0 0 10px rgba(255, 153, 0, 0.02);
}

.search-field {
  border: none;
  background: transparent;
  padding: 8px 0;
  outline: none;
  width: 100%;
  font-size: 0.95rem;
  color: #111111;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.search-submit {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #888888;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.search-form:focus-within .search-submit {
  color: var(--primary-gold);
}

.header-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--primary-gold);
  cursor: pointer;
  padding: 0 30px;
  transition: var(--transition);
  background: #f7f7f7;
  font-size: 0.9rem;
  border-left: 1px solid #eeeeee;
}

.header-lang:hover {
  background: var(--primary-gold);
  color: #ffffff;
}

.bottom-bar {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-grow: 1;
  background: #ffffff;
}

.mobile-menu-toggle {
  display: none;
}

.site-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.site-branding a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.site-title {
  color: #111111;
  font-weight: 950;
  font-size: 2.2rem;
  letter-spacing: 1px;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}

.site-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 5px;
}

.site-branding img.custom-logo {
  max-width: 400px !important;
  max-height: 120px !important;
  width: auto !important;
  height: auto !important;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
  transition: transform 0.3s ease;
}

.site-branding img.custom-logo:hover {
  transform: scale(1.02);
}

.main-navigation,
.main-navigation>ul {
  height: 100%;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.main-navigation li {
  position: relative;
  height: 100%;
}

.main-navigation ul li a {
  color: #111111;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 100%;
  letter-spacing: 1.5px;
}

.main-navigation ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--primary-gold);
  transition: var(--transition);
  transform: translateX(-50%);
}

.main-navigation ul li a:hover::after {
  width: 100%;
}

.main-navigation ul li a:hover {
  color: var(--primary-gold);
  background: rgba(255, 153, 0, 0.05);
}

.main-navigation>ul>li.current-menu-item>a::after,
.main-navigation>ul>li.current_page_item>a::after,
.main-navigation>ul>li>a:hover::after {
  width: 100%;
}

.main-navigation>ul>li.current-menu-item>a,
.main-navigation>ul>li.current_page_item>a {
  color: var(--primary-gold);
}

/* Dropdown Menu Support */
.main-navigation ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  flex-direction: column;
  padding: 10px 0;
  min-width: 200px;
  z-index: 999;
  border-top: 3px solid var(--primary-gold);
}

.main-navigation li:hover>ul,
.main-navigation li:hover>.sub-menu-wrap {
  display: block;
}

/* Mega Menu */
.mega-menu {
  position: static !important;
}

.sub-menu-wrap {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
  z-index: 99;
  padding: 40px 0;
  border-top: 1px solid #eeeeee;
}

.sub-menu-wrap .sub-menu {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  max-width: 1200px;
  margin: 0 auto !important;
  padding: 0 20px !important;
  background: transparent !important;
  box-shadow: none !important;
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  transform: none !important;
  width: 100% !important;
  border: none !important;
}

.sub-menu-wrap .sub-menu li {
  margin: 0 !important;
  padding: 0 !important;
  border-right: 1px solid #eeeeee;
}

.sub-menu-wrap .sub-menu li:last-child {
  border-right: none;
}

.sub-menu-wrap .sub-menu li a {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center;
  padding: 15px 10px !important;
  font-size: 0.85rem !important;
  color: #111111 !important;
  font-weight: 600 !important;
  transition: var(--transition);
}

.sub-menu-wrap .sub-menu li a:hover {
  background: rgba(255, 153, 0, 0.05) !important;
  color: var(--primary-gold) !important;
}

.cat-menu-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 12px;
  opacity: 1;
  transition: var(--transition);
}

.sub-menu-wrap .sub-menu li a:hover .cat-menu-icon {
  transform: translateY(-3px);
}

.cat-menu-icon-placeholder {
  font-size: 2.5rem;
  margin-bottom: 12px;
  opacity: 0.3;
}

.sub-menu-wrap .sub-menu li a:hover .cat-menu-icon-placeholder {
  opacity: 0.8;
  transform: translateY(-3px);
}

.main-navigation ul ul li {
  margin: 0;
  padding: 0;
}

.main-navigation ul ul ul {
  top: 0;
  left: 100%;
}

.main-navigation ul ul li a {
  padding: 10px 20px;
  text-transform: none;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-dark);
}

.main-navigation ul ul li:last-child a {
  border-bottom: none;
}

.main-navigation ul ul li a:hover {
  background-color: var(--bg-light);
  color: var(--primary-gold);
}

/* Premium Home Slider Section */
.slider-section {
  position: relative;
  width: 100%;
  height: 600px;
  background: #000;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 10s linear;
  transform: scale(1);
}

.slide.active .slide-image {
  transform: scale(1.15);
  /* Ken Burns Zoom Effect */
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}

.slide-content-container {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}

.slide-content {
  max-width: 550px;
  background: rgba(0, 0, 0, 0.4);
  padding: 50px;
  border-left: 5px solid var(--primary-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transform: translateX(-50px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1) 0.5s;
}

.slide.active .slide-content {
  transform: translateX(0);
  opacity: 1;
}

.slide-title {
  font-size: 4.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: normal;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.slide-subtitle {
  font-size: 1.25rem;
  color: var(--primary-gold);
  margin-bottom: 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-left: 30px solid var(--primary-gold);
  padding-left: 15px;
}

.slide-btn {
  display: inline-block;
  background: var(--primary-gold);
  color: #000;
  padding: 15px 40px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 1px;
  border: none;
}

.slide-btn:hover {
  background: #000;
  color: var(--primary-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(252, 188, 20, 0.3);
}

/* Updated Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  border: none;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  color: #fff;
}

.slider-arrow:hover {
  background: var(--primary-gold);
}

.slider-arrow.prev {
  left: 30px;
}

.slider-arrow.next {
  right: 30px;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 20;
}

.slider-dots .dot {
  width: 50px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active {
  background: rgba(255, 255, 255, 0.2);
  width: 100px;
  position: relative;
  overflow: hidden;
}

.slider-dots .dot.active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--primary-gold);
  animation: slideProgress 7s linear forwards;
}

@keyframes slideProgress {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

/* Tool Catalog Section */
.catalog-section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--dark-gold);
  margin-bottom: 50px;
  text-transform: uppercase;
  position: relative;
  display: block;
}

.section-title::after {
  display: none;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.tool-card {
  background: var(--card-bg);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  border-bottom: 3px solid transparent;
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid var(--primary-gold);
}

.tool-thumbnail {
  height: 200px;
  background: #EAEAEA;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.tool-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.tool-card:hover .tool-thumbnail img {
  transform: scale(1.05);
}

.tool-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tool-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.tool-title a {
  color: var(--text-dark);
}

.tool-title a:hover {
  color: var(--primary-gold);
}

.tool-excerpt {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.tool-link {
  display: block;
  text-align: center;
  background: var(--bg-light);
  color: var(--dark-gold);
  padding: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: var(--transition);
}

.tool-card:hover .tool-link {
  background: var(--primary-gold);
  color: #000;
}

/* Footer */
.site-footer {
  background: #ffffff;
  color: #111111;
  padding: 60px 0 20px;
  border-top: 5px solid var(--primary-gold);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-info {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}

.footer-info h3 {
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 15px;
  color: #111111;
}

.footer-info p {
  opacity: 0.8;
  margin-bottom: 10px;
}

.footer-links {
  flex: 1;
  min-width: 250px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #444444;
  opacity: 0.8;
}

.footer-links ul li a:hover {
  color: var(--primary-gold);
  opacity: 1;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 70px !important;
    background: #ffffff !important;
    padding: 0 15px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
  }

  .header-left {
    width: auto !important;
    max-width: 140px !important;
    background: transparent !important;
    clip-path: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    height: auto !important;
  }

  .site-branding {
    max-width: 100% !important;
    width: auto !important;
  }

  .site-branding a {
    max-width: 100% !important;
    width: auto !important;
    display: block !important;
  }

  .site-branding img.custom-logo {
    max-height: 40px !important;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    display: block !important;
  }

  .site-title {
    font-size: 1.4rem !important;
    margin: 0 !important;
  }

  .header-right {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    background: #ffffff !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
    display: none !important;
    height: auto !important;
    padding: 0 !important;
    border-top: 1px solid #eeeeee !important;
    margin-left: 0 !important;
    flex-direction: column !important;
    z-index: 999 !important;
  }

  .site-header.menu-open .header-right {
    display: flex !important;
  }

  .top-bar {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    border-bottom: none !important;
    background: transparent !important;
    padding: 15px 20px 5px 20px !important;
    width: 100% !important;
  }

  .top-bar-content {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    align-items: stretch !important;
    gap: 10px !important;
  }

  .header-search {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
  }

  .search-form {
    padding: 0 10px !important;
    border: 1px solid #dddddd !important;
    border-radius: 30px !important;
    height: 36px !important;
    width: 100% !important;
    background: #fafafa !important;
  }

  .search-field {
    font-size: 0.85rem !important;
    padding: 4px 0 !important;
  }

  .header-lang {
    display: none !important;
  }

  .bottom-bar {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    width: 100% !important;
    border-top: none !important;
    padding: 0 !important;
  }

  .main-navigation {
    width: 100% !important;
    height: auto !important;
  }

  .main-navigation ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 10px 0 !important;
    background: #ffffff !important;
    list-style: none !important;
    border: none !important;
  }

  .main-navigation ul li {
    width: 100% !important;
    margin: 0 !important;
    border-bottom: 1px solid #f5f5f5;
  }

  .main-navigation ul li:last-child {
    border-bottom: none;
  }

  .main-navigation ul li a {
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    box-shadow: none !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
  }

  .main-navigation ul li a:hover,
  .main-navigation ul li.current-menu-item a,
  .main-navigation ul li.current_page_item a {
    background: rgba(255, 153, 0, 0.08) !important;
    color: var(--primary-gold) !important;
    border: none !important;
    box-shadow: none !important;
  }

  .main-navigation ul li a::after {
    display: none !important;
  }

  /* Hamburger Menu Toggle Button on Mobile */
  .mobile-menu-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 24px !important;
    height: 16px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    z-index: 1001 !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
  }

  .hamburger-bar {
    width: 100% !important;
    height: 2.5px !important;
    background-color: #111111 !important;
    border-radius: 2px !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  }

  .site-header.menu-open .mobile-menu-toggle .hamburger-bar.line-1 {
    transform: translateY(6.5px) rotate(45deg) !important;
  }

  .site-header.menu-open .mobile-menu-toggle .hamburger-bar.line-2 {
    opacity: 0 !important;
  }

  .site-header.menu-open .mobile-menu-toggle .hamburger-bar.line-3 {
    transform: translateY(-7px) rotate(-45deg) !important;
  }

  /* Slider Section Mobile Refinements */
  .slider-section {
    height: 380px !important;
  }

  .slide-content {
    padding: 25px !important;
    max-width: 90% !important;
    margin: 0 auto !important;
    border-left: 4px solid var(--primary-gold) !important;
    text-align: center !important;
    background: rgba(0, 0, 0, 0.6) !important;
  }

  .slide-title {
    font-size: 2rem !important;
    letter-spacing: normal !important;
    margin-bottom: 12px !important;
    line-height: 1.1 !important;
  }

  .slide-subtitle {
    font-size: 0.95rem !important;
    margin-bottom: 25px !important;
    border-left: none !important;
    padding-left: 0 !important;
  }

  .slide-btn {
    padding: 12px 28px !important;
    font-size: 0.8rem !important;
  }

  .slider-arrow {
    width: 40px !important;
    height: 40px !important;
  }

  .slider-arrow.prev {
    left: 10px !important;
  }

  .slider-arrow.next {
    right: 10px !important;
  }

  .slider-dots {
    bottom: 15px !important;
  }

  .slider-dots .dot {
    width: 30px !important;
  }

  .slider-dots .dot.active {
    width: 60px !important;
  }

  /* Catalog Grid Mobile Refinements */
  .visual-inner {
    padding: 20px !important;
  }

  .tool-content-wrap {
    padding: 20px !important;
  }

  .tool-card-title {
    font-size: 16px !important;
  }

  /* Pacing and Margins */
  .section-padding {
    padding: 60px 0 !important;
  }

  /* Footer Centering on Mobile */
  .site-footer {
    text-align: center !important;
    padding: 40px 0 20px !important;
  }

  .footer-inner {
    flex-direction: column !important;
    align-items: center !important;
    gap: 30px !important;
    margin-bottom: 30px !important;
  }

  .footer-info,
  .footer-links {
    min-width: 100% !important;
    margin-bottom: 0 !important;
  }

  .footer-links ul {
    padding: 0 !important;
  }

  /* Compact Responsive Pagination */
  .premium-pagination {
    margin-top: 40px !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    overflow: hidden !important;
  }

  .premium-pagination ul {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 0 10px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .premium-pagination ul li {
    margin: 2px 0 !important;
  }

  .premium-pagination ul li a,
  .premium-pagination ul li span {
    padding: 8px 12px !important;
    font-size: 11px !important;
    border-radius: 4px !important;
  }
}

/* About Page Styles */
.about-page {
  background: #FFF;
}

.about-hero {
  height: 450px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFF;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 5px;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 1.5rem;
  opacity: 0.9;
  letter-spacing: 2px;
}

.about-intro {
  padding: 80px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sub-title {
  font-size: 2.5rem;
  color: var(--dark-gold);
  margin-bottom: 25px;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-content p {
  margin-bottom: 20px;
  color: #555;
  font-size: 1.1rem;
}

.intro-image img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 20px 20px 0 var(--primary-gold);
}

.about-values {
  padding: 80px 0;
  background: var(--bg-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.value-item {
  background: #FFF;
  padding: 40px;
  text-align: center;
  border-bottom: 4px solid var(--primary-gold);
  transition: var(--transition);
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.value-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-gold);
}

.about-mission {
  padding: 100px 0;
  background: var(--dark-gold);
  color: #FFF;
}

.mission-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.mission-item h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--primary-gold);
}

.mission-item p {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .grid-2,
  .values-grid,
  .mission-box {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-image img {
    box-shadow: 10px 10px 0 var(--primary-gold);
  }
}

/* Page Headers */
.page-hero {
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #FFF;
}

/* Support Page */
.support-intro {
  padding: 80px 0;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.support-box {
  background: var(--bg-light);
  padding: 40px;
  text-align: center;
  border-radius: 5px;
  transition: var(--transition);
}

.support-box:hover {
  background: #FFF;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.support-box .icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.support-box h3 {
  color: var(--dark-gold);
  margin-bottom: 15px;
}

.btn-text {
  margin-top: 20px;
  display: inline-block;
  font-weight: 700;
  color: var(--primary-gold);
}

.faq-section {
  padding-bottom: 80px;
}

.faq-item {
  margin-bottom: 30px;
  border-bottom: 1px solid #EEE;
  padding-bottom: 20px;
}

.faq-item h4 {
  font-size: 1.2rem;
  color: var(--dark-gold);
  margin-bottom: 10px;
}

/* Contact Page */
.contact-main {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.info-item .icon {
  font-size: 1.5rem;
  color: var(--primary-gold);
}

.info-item strong {
  display: block;
  font-size: 1.1rem;
  color: var(--dark-gold);
}

.industrial-form {
  background: #FFF;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-top: 5px solid var(--primary-gold);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark-gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #DDD;
  border-radius: 3px;
  background: #F9F9F9;
}

.submit-btn {
  background: var(--dark-gold);
  color: #FFF;
  border: none;
  padding: 15px 40px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background: var(--primary-gold);
}

.map-section {
  padding-bottom: 80px;
}

.map-placeholder {
  height: 400px;
  background: #EEE;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}

@media (max-width: 768px) {

  .support-grid,
  .contact-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Brands Page Styles */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.brand-card {
  background: #FFF;
  border: 1px solid #EEE;
  padding: 40px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.brand-card:hover {
  border-color: var(--primary-gold);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.brand-logo-wrap {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.brand-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: var(--transition);
}

.brand-card:hover .brand-logo-wrap img {
  filter: grayscale(0);
  opacity: 1;
}

.brand-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.view-products {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  display: block;
}

.brand-card:hover .view-products {
  opacity: 1;
  transform: translateY(0);
}

.brand-name-placeholder {
  font-size: 1.5rem;
  font-weight: 900;
  color: #CCC;
}


/* Screenshot Layout: Product Catalog */
.tool-card-simple {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.tool-card-simple:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.tool-card-simple .tool-thumbnail {
  height: 300px;
  padding: 30px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tool-card-simple .tool-thumbnail img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: 0.5s ease;
}

.tool-card-simple:hover .tool-thumbnail img {
  transform: scale(1.08);
}

.tool-info {
  padding: 25px 20px;
  flex-grow: 1;
}

.tool-title-simple {
  font-size: 18px;
  font-weight: 800;
  color: #111;
  margin: 0;
  line-height: 1.2;
}

.tool-model-sub {
  font-size: 13px;
  color: #999;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 5px;
  letter-spacing: 0.5px;
}

.tool-footer-btn {
  background: #f4f6f8;
  color: var(--dark-gold);
  text-align: center;
  padding: 15px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s;
  border-top: 1px solid #f0f0f0;
}

.tool-footer-btn:hover {
  background: var(--dark-gold);
  color: #fff;
}


/* Optimized Section Styles */
.section-header {
  margin-bottom: 60px;
}

.section-title-gold {
  color: var(--primary-gold);
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gold-underline {
  width: 60px;
  height: 4px;
  background: var(--primary-gold);
  margin: 20px auto;
}

.catalog-section.white-bg {
  background: #fff;
  padding: 100px 0;
}


/* Support Page Optimized */
.support-page.light-style {
  font-family: var(--font-main);
  background: #fff;
}

.hub-card.highlight-red {
  background: var(--primary-gold);
  color: #fff;
  border-color: var(--primary-gold);
}

.hub-card.highlight-red p {
  color: rgba(255, 255, 255, 0.8);
}

.hub-btn.inverse {
  border-color: #fff;
  color: #fff;
}

.hub-btn.inverse:hover {
  background: #fff;
  color: var(--primary-gold);
}

/* Company Page Optimized */
.total-style {
  font-family: var(--font-main);
  color: #333;
  overflow-x: hidden;
}

.main-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #222;
}

.title-underline {
  width: 80px;
  height: 6px;
  background: var(--primary-gold);
}

/* Contact Page Optimized */
.form-card {
  background: #fff;
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-top: 5px solid var(--primary-gold);
}

.cta-btn:hover {
  background: var(--primary-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(228, 30, 38, 0.2);
}


/* Support Page Detailed */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.hub-card {
  padding: 50px 40px;
  border: 1px solid #eee;
  border-radius: 8px;
  text-align: center;
  transition: 0.3s;
}

.hub-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.hub-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 25px;
  color: var(--primary-gold);
}

.hub-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hub-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
  min-height: 72px;
}

.hub-btn {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #111;
  color: #111;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
}

.hub-btn:hover {
  background: #111;
  color: #fff;
}

.faq-container {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item-modern {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.faq-question {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #222;
}

.faq-answer {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-top: 15px;
  display: none;
}

.faq-item-modern.active .faq-answer {
  display: block;
}

.faq-question span {
  font-size: 24px;
  color: var(--primary-gold);
}

.support-footer-banner {
  background: #111;
  color: #fff;
  padding: 60px 0;
}

.banner-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.banner-flex h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.solid-btn {
  background: var(--primary-gold);
  color: #fff;
  padding: 18px 45px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
}

.solid-btn:hover {
  transform: scale(1.05);
}

/* Product Detail Detailed */
.product-detail-page {
  background: #fff;
  padding: 60px 0;
  color: #333;
}

.product-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.product-gallery-column {
  position: sticky;
  top: 120px;
}

.main-image-wrap {
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  background: #fff;
}

.thumb-strip {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.thumb-item {
  width: 80px;
  height: 80px;
  border: 1px solid #eee;
  padding: 5px;
  cursor: pointer;
  border-radius: 4px;
}

.product-info-column .product-title {
  font-size: 42px;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}

.model-badge-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.model-number {
  font-size: 24px;
  font-weight: 700;
  color: #555;
}

.quick-specs {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 30px 0;
  margin-bottom: 30px;
}

.key-features-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
}

.product-actions {
  display: flex;
  gap: 20px;
}

.wa-enquiry-btn {
  background: #25D366;
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.wa-enquiry-btn:hover {
  background: #128C7E;
  transform: translateY(-3px);
}

.download-btn {
  border: 2px solid #333;
  color: #333;
  padding: 13px 30px;
  border-radius: 5px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s;
}

.download-btn:hover {
  background: #333;
  color: #fff;
}

.details-tabs {
  border-bottom: 2px solid #eee;
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.tab-link {
  background: none;
  border: none;
  padding: 15px 0;
  font-size: 18px;
  font-weight: 800;
  color: #999;
  cursor: pointer;
  position: relative;
}

.tab-link.active {
  color: #111;
}

.tab-link.active::after {
  content: \u0027\u0027;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-gold);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}


/* Archive & Category Optimized */
.white-bg-hero {
  background: #fff;
  padding: 100px 0 60px;
  border-bottom: 1px solid #eee;
}

.catalog-grid-padding {
  padding: 100px 0;
}

.no-results-msg {
  text-align: center;
  grid-column: 1 / -1;
}

.pagination-container {
  margin-top: 60px;
  text-align: center;
}

.tool-thumb-placeholder {
  font-size: 3rem;
  color: #ccc;
}


/* Company Page Styles Content */
.content-section {
  padding: 80px 0;
}

.row-flex {
  display: flex;
  align-items: center;
  gap: 60px;
}

.row-flex.reversed {
  flex-direction: row-reverse;
}

.col-image,
.col-text {
  flex: 1;
}

.col-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.legacy-visual {
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.overlay-text {
  font-size: 60px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.9);
  line-height: 0.9;
  text-align: center;
}

.section-heading {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 25px;
  color: #1a1a1a;
  letter-spacing: -1px;
}

.intro-p {
  font-size: 20px;
  line-height: 1.5;
  color: #444;
  margin-bottom: 20px;
}

.custom-bullets {
  list-style: none;
  padding: 0;
}

.custom-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #555;
}

.custom-bullets span {
  color: var(--primary-gold);
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}

.check-list-modern {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.check-list-modern li {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 25px;
}

/* .check-list-modern li::before {
  content: \u0027?\u0027;
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: 900;
} */

.bordered-btn {
  display: inline-block;
  padding: 15px 40px;
  border: 2px solid #333;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: 0.3s;
  margin-top: 30px;
}

.bordered-btn:hover {
  background: #333;
  color: #fff;
}

.quality-stamp-simple {
  margin-top: 40px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--primary-gold);
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

.whatsapp-float img {
  width: 24px;
  filter: brightness(0) invert(1);
}


/* Contact Page Detailed */
.page-hero-contact {
  padding: 120px 0 60px;
  background: #fafafa;
  border-bottom: 1px solid #eee;
}

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.detail-cards {
  margin: 40px 0;
}

.detail-card {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.icon-circle {
  width: 50px;
  height: 50px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary-gold);
}

.detail-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 5px;
  color: #222;
}

.detail-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}

.social-connect h3 {
  font-size: 16px;
  font-weight: 800;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  color: #333;
  border-radius: 4px;
  transition: 0.3s;
}

.social-link:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: #fff;
}

.form-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 35px;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.input-group {
  margin-bottom: 20px;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #eee;
  background: #fdfdfd;
  border-radius: 4px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(228, 30, 38, 0.1);
}

.cta-btn {
  width: 100%;
  padding: 18px;
  background: #111;
  color: #fff;
  border: none;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
}

.google-map-area {
  height: 500px;
  position: relative;
  width: 100%;
  margin-top: 50px;
}

.map-iframe-wrap {
  width: 100%;
  height: 100%;
}

.map-overlay-card {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  background: #fff;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 10;
  max-width: 350px;
}

.map-overlay-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 800;
}

.map-overlay-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}


/* Fixed Product Actions Buttons */
.product-actions {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  align-items: stretch;
}

.wa-enquiry-btn {
  display: flex !important;
  align-items: center !important;
  gap: 12px;
  background: #25D366;
  color: #fff;
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  min-height: 54px;
  transition: 0.3s;
}

.wa-enquiry-btn img {
  width: 24px !important;
  height: 24px !important;
  filter: brightness(0) invert(1);
  margin: 0 !important;
}

.wa-enquiry-btn:hover {
  background: #128C7E;
  transform: translateY(-3px);
}

.download-btn {
  display: flex !important;
  align-items: center !important;
  gap: 10px;
  border: 1px solid #111;
  color: #111;
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  min-height: 54px;
  transition: 0.3s;
  background: #fff;
}

.download-btn:hover {
  background: #111;
  color: #fff;
  transform: translateY(-3px);
}


/* Right Side Tabs Layout */
.right-tabs-container {
  margin: 30px 0;
}

.product-info-column .details-tabs {
  border-bottom: 2px solid #eee;
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
}

.product-info-column .tab-link {
  background: none;
  border: none;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 800;
  color: #999;
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
  transition: 0.3s;
}

.product-info-column .tab-link.active {
  color: #111;
}

.product-info-column .tab-link.active::after {
  content: \u0027\u0027;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-gold);
}

.product-info-column .tab-content {
  display: none;
}

.product-info-column .tab-content.active {
  display: block;
}

.short-desc-wrap {
  color: #111;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 16px;
}

.product-info-column .specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 13px;
}

.product-info-column .specs-table td {
  padding: 10px 15px;
  border: 1px solid #eee;
}

.product-info-column .spec-label {
  background: #f9f9f9;
  font-weight: bold;
  width: 40%;
}


/* Beautiful Larger Image Gallery */
.product-top-grid.premium-layout {
  grid-template-columns: 1.2fr 1fr;
  align-items: start;
  gap: 80px;
}

.main-image-wrap {
  padding: 60px;
  border-radius: 12px;
  border: 1px solid #f2f2f2;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, #ffffff 0%, #fafafa 100%);
}

.main-image-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.main-image-wrap:hover img {
  transform: scale(1.05);
}

.thumb-strip {
  margin-top: 30px;
  gap: 15px;
}

.thumb-item {
  width: 90px;
  height: 90px;
  border-radius: 6px;
  border: 2px solid #eee;
  transition: 0.3s;
}

.thumb-item:hover {
  border-color: var(--dark-gold);
  transform: translateY(-5px);
}


/* High-End Professional Specs Table (Refined) */
.product-info-column .specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  border-top: 1px solid #f0f0f0;
}

.product-info-column .specs-table td {
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  vertical-align: top;
}

.product-info-column .spec-label {
  background: transparent !important;
  font-weight: 700 !important;
  color: #111;
  width: 35%;
  text-transform: capitalize;
}

.product-info-column .spec-value {
  color: #666;
}

/* Global Tab Styles (Used in Product Details and Category Filters) */
.details-tabs {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 2px;
}

.tab-link {
  display: inline-block;
  padding: 12px 25px !important;
  font-size: 13px !important;
  letter-spacing: 1px;
  border-radius: 4px 4px 0 0;
  font-weight: 700 !important;
  text-transform: uppercase;
  text-decoration: none;
  color: #999;
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.tab-link:hover {
  color: #111;
  background: #f9f9f9;
}

.tab-link.active {
  background: #000 !important;
  color: #fff !important;
}

/* Category Filter Specifics */
.product-type-filter {
  margin-bottom: 50px;
}

.filter-label {
  font-size: 11px;
  font-weight: 800;
  color: #999;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.filter-label::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: #eeeeee;
  margin-left: 20px;
}

.tab-icon {
  margin-right: 8px;
  font-size: 16px;
  vertical-align: middle;
}

.tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  color: #666;
  font-size: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-left: 8px;
  font-weight: 800;
  transition: 0.3s;
}

.tab-link.active .tab-count {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.tab-link:hover .tab-count {
  background: var(--primary-gold);
  color: #fff;
}

.category-filter-tabs {
  margin-bottom: 50px;
  background: #fff;
  padding: 10px 0;
  position: sticky;
  top: 80px;
  /* Adjust based on header height */
  z-index: 50;
}

.category-filter-tabs .details-tabs {
  border-bottom: 2px solid #f0f0f0;
  padding: 0 10px;
}


/* Mobile Table Support */
@media (max-width: 768px) {
  .product-info-column .right-tabs-container {
    overflow-x: auto;
  }

  .product-info-column .specs-table td {
    font-size: 13px;
    padding: 15px 0;
  }

  .product-info-column .spec-label {
    width: 45%;
  }
}


/* Description Tab Optimization */
.short-desc-wrap {
  border-left: 4px solid var(--primary-gold);
  padding-left: 20px;
  margin-bottom: 30px;
}

.short-desc-wrap h4 {
  font-size: 14px;
  color: var(--primary-gold);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.short-desc-wrap p {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  margin: 0;
}

.description-divider {
  border: 0;
  border-top: 1px solid #eee;
  margin: 30px 0;
}

.desc-section-heading {
  font-size: 13px;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-weight: 800;
}

.long-desc-body {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}


/* Related Products Section */
.related-products-section {
  margin-top: 100px;
  padding-top: 80px;
  border-top: 1px solid #eee;
}

.related-products-section h2 {
  font-size: 32px;
  font-weight: 900;
  color: #111;
  letter-spacing: -1px;
  margin: 0;
}

.red-underline {
  width: 50px;
  height: 3px;
  background: var(--primary-gold);
  margin-top: 15px;
}


/* Premium Pagination Styles */
.pagination-wrap {
  margin-top: 80px;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 45px;
  padding: 0 15px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  color: var(--dark-gold);
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.pagination span.dots {
  border: none;
  background: transparent;
  box-shadow: none;
  color: #999;
}

.pagination a.page-numbers:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(19, 194, 194, 0.2);
}

.pagination .page-numbers.current {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: #fff;
  cursor: default;
  box-shadow: 0 8px 20px rgba(252, 188, 20, 0.2);
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  font-size: 20px;
  background: #111;
  color: #fff;
  border-color: #111;
}

.pagination .page-numbers.prev:hover,
.pagination .page-numbers.next:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* Premium Category Hero Styles (Image + Right Slant) */
.premium-category-hero {
  background: #111 url('images/hero-bg.jpg') no-repeat center left;
  background-size: cover;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
  margin-bottom: 60px;
}

.premium-category-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.hero-bg-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  /* Wider to safely hold the text */
  height: 100%;
  background: var(--dark-gold);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 1;
  z-index: 2;
}

.hero-content-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
}

.hero-text {
  width: 45%;
  text-align: left;
  padding-right: 20px;
}

.category-pretitle {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  /* High contrast white */
  letter-spacing: 3px;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-block;
  padding: 5px 15px;
  border-radius: 2px;
}

.category-main-title {
  font-size: 72px;
  font-weight: 950;
  line-height: 1;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: -2px;
  color: var(--primary-gold);
  /* PREMIUM GOLD */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-divider {
  width: 80px;
  height: 5px;
  background: var(--primary-gold);
  margin-bottom: 30px;
}

.category-subtitle {
  font-size: 20px;
  color: #fff;
  /* High contrast white */
  max-width: 100%;
  line-height: 1.6;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .category-main-title {
    font-size: 48px;
  }

  .hero-bg-accent {
    display: none;
  }

  .hero-content-wrap {
    padding-left: 0;
  }

  .premium-category-hero {
    padding: 60px 0;
  }
}

/* Search Specific Premium Styles */
.search-results-page .premium-category-hero {
  background: linear-gradient(135deg, var(--dark-gold) 0%, var(--dark-gold) 100%);
  border-bottom: 5px solid var(--primary-gold);
}

.search-results-page .hero-bg-accent {
  background: rgba(0, 0, 0, 0.3);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.search-results-page .tool-card-simple {
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.search-results-page .tool-card-simple:hover {
  box-shadow: 0 20px 50px rgba(19, 194, 194, 0.15);
}

.search-results-page .tool-thumbnail {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFA 100%);
  border-bottom: 1px solid #F0F2F2;
}

.search-results-page .tool-title-simple {
  color: var(--dark-gold);
  transition: color 0.3s ease;
}

.search-results-page .tool-card-simple:hover .tool-title-simple {
  color: var(--primary-gold);
}

.search-results-page .tool-model-sub {
  background: #F0F7F7;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 3px;
  color: var(--dark-gold);
  margin-top: 10px;
}

.search-results-page .tool-footer-btn {
  background: var(--dark-gold);
  color: #FFF;
  border-top: none;
  margin: 0 20px 20px;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.search-results-page .tool-card-simple:hover .tool-footer-btn {
  background: var(--primary-gold);
  transform: scale(1.02);
}

.no-results-msg h2 {
  letter-spacing: 2px;
}

.search-results-page .tool-thumb-placeholder {
  font-size: 5rem;
  opacity: 0.2;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
  transition: all 0.5s ease;
}

.search-results-page .tool-card-simple:hover .tool-thumb-placeholder {
  opacity: 0.4;
  transform: scale(1.1) rotate(15deg);
}

/* Category Slider Section */
.category-section {
  padding: 60px 0;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.cat-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cat-slider-track-container {
  overflow: hidden;
  flex-grow: 1;
}

.cat-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 30px;
}

.cat-item {
  flex: 0 0 calc(20% - 24px);
  /* 5 items visible */
  min-width: 150px;
  text-align: center;
  transition: transform 0.3s ease;
}

@media (max-width: 1024px) {
  .cat-item {
    flex: 0 0 calc(33.333% - 20px);
  }
}

@media (max-width: 600px) {
  .cat-item {
    flex: 0 0 calc(50% - 15px);
  }
}

.cat-item:hover {
  transform: translateY(-5px);
}

.cat-icon-box {
  width: 140px;
  height: 140px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cat-icon-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.cat-item:hover .cat-icon-box img {
  transform: scale(1.1);
}

.cat-name {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  transition: color 0.3s ease;
}

.cat-item:hover .cat-name {
  color: var(--primary-gold);
}

.cat-nav-btn {
  background: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #333;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.cat-nav-btn:hover {
  background: var(--primary-gold);
  color: #fff;
  border-color: var(--primary-gold);
  box-shadow: 0 5px 15px rgba(252, 188, 20, 0.3);
}

.cat-placeholder {
  font-size: 3rem;
  opacity: 0.2;
}

/* Enhanced Category Slider - Total Business Style */
.category-section {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.cat-slider-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}

.cat-slider-track-container {
  overflow: visible;
  /* Allow scaled items to show */
  flex-grow: 1;
  padding: 40px 0;
}

.cat-slider-track {
  display: flex;
  align-items: center;
  gap: 0;
  /* Gap handled by item padding for better centering */
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.cat-item {
  flex: 0 0 20%;
  /* 5 items visible */
  padding: 0 15px;
  text-align: center;
  transition: all 0.5s ease;
  opacity: 0.5;
  transform: scale(0.85);
  cursor: pointer;
}

.cat-item.active {
  opacity: 1;
  transform: scale(1.3);
  /* Center item is larger */
  z-index: 5;
}

.cat-icon-box {
  width: 100%;
  height: 180px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-icon-box img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  filter: grayscale(20%);
  transition: all 0.5s ease;
}

.cat-item.active .cat-icon-box img {
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(0%);
}

.cat-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  padding-bottom: 8px;
  transition: all 0.5s ease;
  display: inline-block;
  position: relative;
}

.cat-item.active .cat-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
}

.cat-item.active .cat-name::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--primary-gold);
  transition: width 0.5s ease;
}

/* Navigation Arrows */
.cat-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  z-index: 10;
  transition: all 0.3s ease;
}

.cat-nav-btn:hover {
  background: var(--primary-gold);
  color: #fff;
  border-color: var(--primary-gold);
  box-shadow: 0 8px 25px rgba(252, 188, 20, 0.4);
}

.prev-cat {
  left: -25px;
}

.next-cat {
  right: -25px;
}

@media (max-width: 1024px) {
  .cat-item {
    flex: 0 0 33.333%;
  }

  .cat-item.active {
    transform: scale(1.2);
  }
}

@media (max-width: 600px) {
  .cat-item {
    flex: 0 0 50%;
  }

  .cat-item.active {
    transform: scale(1.1);
  }
}

.cat-slider-track {
  transition: transform 0.1s ease-out;
}

/* ==========================================================================
   PREMIUM INDUSTRIAL DESIGN SYSTEM (GLOBAL)
   ========================================================================== */
:root {
  --primary-gold: #ff9900;
  --dark-gold: #d67d00;
  --bg-dark: #ffffff;
  --bg-darker: #f9f9f9;
  --text-light: #111111;
  --text-dark: #111111;
  --text-muted: #666666;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.section-padding {
  padding: 100px 0;
}

.bg-light-premium {
  background: var(--bg-dark);
}

/* PREMIUM CATALOG HERO */
.premium-catalog-hero {
  height: 60vh;
  min-height: 450px;
  background: #000 url('images/hero-bg.jpg') no-repeat center center / cover;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(252, 188, 20, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.category-pretitle {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--primary-gold);
  margin-bottom: 20px;
  display: block;
  text-transform: uppercase;
}

.hero-main-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 950;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -1.5px;
  color: #fff;
}

.hero-main-title span {
  color: var(--primary-gold);
}

.hero-divider {
  width: 60px;
  height: 4px;
  background: var(--primary-gold);
  margin-bottom: 25px;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.8;
  font-weight: 300;
  max-width: 550px;
  color: #eee;
}

/* LIGHT HERO OVERRIDES FOR PREMIUM BRIGHT PAGES */
.premium-catalog-hero.light-hero {
  background: #f9f9f9 !important;
  color: #111111 !important;
}

.premium-catalog-hero.light-hero .hero-overlay {
  display: none !important;
}

.premium-catalog-hero.light-hero .hero-main-title {
  color: #111111 !important;
}

.premium-catalog-hero.light-hero .hero-main-title span {
  color: var(--primary-gold) !important;
}

.premium-catalog-hero.light-hero .hero-divider {
  background: var(--primary-gold) !important;
}

.premium-catalog-hero.light-hero .hero-subtitle {
  color: #444444 !important;
  opacity: 0.95 !important;
}

/* PREMIUM TOOL GRID */
.premium-tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.premium-tool-card {
  transition: 0.4s;
}

.premium-tool-card.hidden {
  display: none;
}

.card-inner {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid #eeeeee;
  transition: 0.4s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tool-visual-wrap {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  background: #fff;
}

.visual-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.visual-inner img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-hover-overlay {
  display: none !important;
}

.tool-card-title a {
  color: #111111;
  transition: var(--transition);
}

.tool-card-title a:hover {
  color: var(--primary-gold);
}

.tool-card-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 15px;
  width: 100%;
  gap: 10px;
  flex-wrap: wrap;
}

.premium-view-btn-inline {
  display: inline-block;
  background: var(--primary-gold);
  color: #000000;
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 10px rgba(255, 153, 0, 0.1);
  white-space: nowrap;
}

.premium-view-btn-inline:hover {
  background: #000000;
  color: var(--primary-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.view-btn {
  padding: 14px 28px;
  background: #ffffff;
  color: #111111;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  border-radius: 4px;
  transform: translateY(20px);
  transition: 0.4s;
}

.tool-content-wrap {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tool-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 15px;
  line-height: 1.4;
}

.tool-card-model {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 4px !important;
}

.model-tag {
  font-size: 10px;
  font-weight: 900;
  background: #f5f5f5;
  padding: 4px 10px;
  border-radius: 4px;
  color: #666;
}

.model-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-gold);
  white-space: nowrap !important;
}

.card-bottom-accent {
  height: 4px;
  width: 0%;
  background: var(--primary-gold);
  transition: 0.4s;
}

/* Hover Effects */
.card-inner:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(255, 153, 0, 0.12);
  border-color: var(--primary-gold);
}

.card-inner:hover .visual-inner img {
  transform: scale(1.1);
}

.card-inner:hover .card-hover-overlay {
  opacity: 1;
}

.card-inner:hover .view-btn {
  transform: translateY(0);
}

.card-inner:hover .card-bottom-accent {
  width: 100%;
}

/* PREMIUM PAGINATION */
.premium-pagination {
  grid-column: 1 / -1;
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

.premium-pagination ul {
  display: flex;
  list-style: none;
  gap: 10px;
  padding: 0;
}

.premium-pagination ul li a,
.premium-pagination ul li span {
  display: inline-block;
  padding: 12px 20px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  color: #111111;
  text-decoration: none;
  transition: 0.3s;
}

.premium-pagination ul li span.current {
  background: var(--primary-gold);
  color: #ffffff;
  border-color: var(--primary-gold);
}

.premium-pagination ul li a:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  transform: translateY(-3px);
}

/* SEARCH SPECIFIC PREMIUM STYLES */
.search-results-page .hero-main-title span {
  color: var(--primary-gold);
  font-style: italic;
}

.no-results-premium {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0;
}

.no-results-icon {
  font-size: 80px;
  margin-bottom: 30px;
  opacity: 0.2;
}

.no-results-title {
  font-size: 32px;
  font-weight: 950;
  color: #111111;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.no-results-desc {
  font-size: 18px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 40px;
}

.search-retry-wrap {
  max-width: 500px;
  margin: 0 auto 80px;
}

.search-retry-wrap .search-form {
  display: flex;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #eeeeee;
}

.search-retry-wrap .search-field {
  flex-grow: 1;
  border: none;
  padding: 20px 25px;
  font-size: 16px;
  outline: none;
  background: #ffffff;
  color: #111111;
}

.search-retry-wrap .search-submit {
  background: var(--primary-gold);
  color: #ffffff;
  border: none;
  padding: 0 30px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s;
}

.search-retry-wrap .search-submit:hover {
  background: var(--dark-gold);
}

.suggested-categories h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #777;
  margin-bottom: 40px;
}

.suggestion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.suggest-item {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  text-decoration: none;
  color: #111111;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: 0.3s;
  border: 1px solid #eeeeee;
}

.suggest-item img {
  height: 40px;
  width: auto;
  object-fit: contain;
  /* Legible normal icons */
}

.suggest-item:hover {
  border-color: var(--primary-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 153, 0, 0.2);
}

@media (max-width: 768px) {
  .premium-tool-grid {
    grid-template-columns: 1fr;
  }

  .suggestion-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* DUAL PREMIUM BANNERS */
.dual-premium-banners {
  display: flex;
  height: 450px;
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #ffffff;
}

.banner-half {
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: 1s ease;
  z-index: 1;
}

.banner-half::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
  transition: 0.4s;
}

/* SLANTED DIVIDER EFFECT */
.about-half {
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
  margin-right: -2.5%;
  z-index: 5;
}

.global-half {
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 4;
}

.banner-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 30px 50px;
  background: rgba(252, 188, 20, 0.85);
  /* Premium Gold Box */
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 320px;
  transition: 0.4s;
}

.banner-content h2 {
  font-size: 32px;
  font-weight: 950;
  color: #000;
  margin: 0 0 10px;
  letter-spacing: 2px;
}

.banner-content p {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin: 0;
  opacity: 0.8;
}

/* Hover States */
.banner-half:hover .banner-bg {
  transform: scale(1.1);
}

.banner-half:hover::after {
  background: rgba(0, 0, 0, 0.1);
}

.banner-half:hover .banner-content {
  background: rgba(252, 188, 20, 1);
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
  .dual-premium-banners {
    flex-direction: column;
    height: auto;
  }

  .banner-half {
    width: 100%;
    height: 350px;
    clip-path: none !important;
    margin-right: 0;
  }
}

/* ==========================================================================
   FRONT PAGE - HERO SLIDER, CATEGORY SLIDER, AND BANNERS
   ========================================================================== */

/* Hero Slider */
.main-hero-slider {
  position: relative;
  height: 85vh;
  min-height: 650px;
  background: #000;
  overflow: hidden;
}

.full-width-hero-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}

.hero-full-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 2;
}

.hero-slide-content.center-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.justify-center {
  justify-content: center;
}

.hero-accent-bar.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 8s ease;
}

.swiper-slide-active .hero-slide-image {
  transform: scale(1);
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  z-index: 2;
}

.hero-content-container {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-slide-content {
  max-width: 700px;
  color: #fff;
}

.hero-pre-title {
  font-size: 16px;
  font-weight: 950;
  letter-spacing: 6px;
  color: var(--primary-gold);
  margin-bottom: 25px;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-main-title {
  font-size: clamp(40px, 9vw, 96px);
  font-weight: 950;
  line-height: 0.85;
  margin-bottom: 35px;
  letter-spacing: normal;
  text-transform: uppercase;
  color: #fff;
}

.hero-main-title span {
  color: var(--primary-gold);
  display: block;
}

.hero-accent-bar {
  width: 80px;
  height: 5px;
  background: var(--primary-gold);
  margin-bottom: 30px;
}

.hero-description {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 45px;
  font-weight: 300;
}

.hero-action {
  display: flex;
  gap: 20px;
}

.btn-primary-premium {
  background: var(--primary-gold);
  color: #fff;
  padding: 18px 40px;
  border-radius: 4px;
  font-weight: 900;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.4s;
  box-shadow: 0 15px 30px rgba(255, 153, 0, 0.3);
}

.btn-primary-premium:hover {
  background: #fff;
  color: var(--primary-gold);
  transform: translateY(-5px);
}

.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 16px 38px;
  border-radius: 4px;
  font-weight: 900;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.4s;
}

.btn-outline-white:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  transform: translateY(-5px);
}

.hero-nav-next,
.hero-nav-prev {
  color: var(--primary-gold) !important;
  width: 50px;
  height: 50px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 50%;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.hero-nav-next:after,
.hero-nav-prev:after {
  font-size: 16px !important;
  font-weight: 900;
}

.hero-nav-next:hover,
.hero-nav-prev:hover {
  background: var(--primary-gold);
  color: #fff !important;
  border-color: var(--primary-gold);
  transform: scale(1.1);
}

.hero-pagination .swiper-pagination-bullet {
  width: 30px;
  height: 4px;
  border-radius: 0;
  background: #ddd;
  opacity: 1;
  transition: 0.3s;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--primary-gold);
  width: 50px;
}

/* Category Slider */
.premium-categories-slider {
  padding: 40px 0;
  background: #fff;
  overflow: hidden;
  width: 100%;
}

.category-swiper {
  padding: 60px 0 60px;
  width: 100%;
}

.category-swiper .swiper-slide .cat-card-premium {
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.6s ease;
  opacity: 0.4;
  transform: scale(0.85);
}

.category-swiper .swiper-slide-active .cat-card-premium {
  opacity: 1;
  transform: scale(1.15);
}

.category-swiper .swiper-slide {
  filter: none;
}

.category-swiper .swiper-slide-active {
  z-index: 5;
}

.cat-card-premium.slider-style {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: none;
  background: transparent;
}

.cat-visual {
  height: 200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.cat-visual img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cat-info {
  text-align: center;
  width: 100%;
}

.cat-info h3 {
  font-size: 13px;
  font-weight: 500;
  color: #888;
  margin: 0;
  text-transform: capitalize;
  transition: all 0.6s ease;
  font-family: var(--font-heading);
  display: inline-block;
}

.swiper-slide-active .cat-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  position: relative;
  padding-bottom: 10px;
}

.swiper-slide-active .cat-info h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #111;
}

.premium-categories-slider .premium-nav,
.premium-categories-slider .premium-pagination {
  display: none !important;
}

/* Showcase Grid & Section Headers */
.section-header-premium {
  text-align: center;
  margin-bottom: 80px;
  background: #ffffff;
  padding: 60px 20px;
}

.premium-pre-title {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
  color: #666;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.premium-main-title {
  font-size: 42px;
  font-weight: 950;
  color: #111111;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
  background: transparent;
  display: inline-block;
}

.premium-divider {
  width: 60px;
  height: 4px;
  background: var(--primary-gold);
  margin: 20px auto 0;
}

.premium-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.catalog-section .premium-tool-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  border: 1px solid #eeeeee;
}

.catalog-section .premium-tool-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 40px 80px rgba(255, 153, 0, 0.15);
  border-color: var(--primary-gold);
}

.catalog-section .card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Reset duplicate card styling on nested card-inner for Showcase and Category Archive */
.catalog-section .premium-tool-card .card-inner,
.catalog-section .premium-tool-card .card-inner:hover,
.category-archive-page .premium-tool-card .card-inner,
.category-archive-page .premium-tool-card .card-inner:hover {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

.catalog-section .tool-visual-wrap {
  position: relative;
  height: 350px;
  background: #f5f5f5;
  overflow: hidden;
}

.catalog-section .visual-inner {
  height: 100%;
  width: 100%;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-section .visual-inner img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.catalog-section .card-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 153, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
  z-index: 5;
}

.catalog-section .premium-tool-card:hover .card-hover-overlay {
  opacity: 1;
}

.catalog-section .premium-tool-card:hover .visual-inner img {
  transform: scale(1.1) rotate(2deg);
}

.catalog-section .premium-view-btn {
  background: var(--primary-gold);
  color: #fff;
  padding: 15px 35px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(255, 153, 0, 0.15);
}

.catalog-section .premium-view-btn:hover {
  background: var(--dark-gold);
  color: #fff;
  transform: scale(1.05);
}

.catalog-section .tool-content-wrap {
  padding: 40px 35px;
  background: #ffffff;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.catalog-section .tool-card-title {
  font-size: 22px;
  font-weight: 950;
  color: #111111;
  margin-bottom: 18px;
  line-height: 1.2;
  font-family: var(--font-heading);
}

.catalog-section .tool-card-model {
  display: flex;
  align-items: center;
  gap: 12px;
}

.catalog-section .model-tag {
  font-size: 10px;
  font-weight: 950;
  background: #f5f5f5;
  padding: 5px 10px;
  color: #666;
  border-radius: 4px;
  letter-spacing: 1.5px;
}

.catalog-section .model-val {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary-gold);
}

/* Premium Action Button CTA */
.cta-center-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn-premium-action {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--primary-gold);
  color: #fff;
  padding: 18px 45px;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  letter-spacing: 1px;
  transition: 0.4s;
  box-shadow: 0 15px 30px rgba(255, 153, 0, 0.2);
}

.btn-premium-action:hover {
  background: #111111;
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.btn-premium-action:hover .arrow-icon {
  transform: translateX(8px);
}

/* Contained Banners (20V & Welding Series) */
.contained-banner-area {
  padding: 20px 0;
}

.banner-box-wrap {
  height: 550px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.banner-box-wrap .container {
  position: relative;
  z-index: 5;
  margin-left: 0;
  margin-right: auto;
  padding-left: 100px;
}

.banner-text-inner {
  position: relative;
  z-index: 5;
  max-width: 700px;
  text-align: left;
}

.banner-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  z-index: 1;
}

.banner-overlay-gradient.reverse {
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
}

.banner-series-title {
  font-size: 92px;
  font-weight: 950;
  color: var(--primary-gold);
  line-height: 0.9;
  margin-bottom: 25px;
  letter-spacing: normal;
  text-transform: uppercase;
  filter: drop-shadow(0 0 15px rgba(255, 153, 0, 0.4));
}

.feature-line {
  font-size: 52px;
  font-weight: 950;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  display: block;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  letter-spacing: normal;
}

.banner-action {
  margin-top: 60px;
}

.banner-box-wrap .btn-outline-gold {
  border: 1.5px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 10px 35px;
  font-size: 14px;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  text-decoration: none;
}

.banner-box-wrap .btn-outline-gold:hover {
  background: var(--primary-gold);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 153, 0, 0.2);
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

/* Responsive adjustments for Home Page */
@media (max-width: 1024px) {
  .premium-tool-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .main-hero-slider {
    height: 65vh !important;
    min-height: 480px !important;
  }

  .hero-swiper {
    height: 100% !important;
  }

  .full-width-hero-slide {
    height: 100% !important;
  }

  .hero-slide-content {
    padding: 0 10px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
  }

  .hero-main-title {
    font-size: clamp(30px, 8vw, 42px) !important;
    line-height: 1.1 !important;
    letter-spacing: -1.5px !important;
    margin-bottom: 20px !important;
    text-align: center !important;
  }

  .hero-pre-title {
    font-size: 11px !important;
    letter-spacing: 3px !important;
    margin-bottom: 15px !important;
    text-align: center !important;
  }

  .hero-accent-bar {
    margin-bottom: 20px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-action {
    justify-content: center !important;
    width: 100% !important;
    gap: 12px !important;
  }

  .btn-primary-premium,
  .btn-outline-white {
    padding: 12px 24px !important;
    font-size: 12px !important;
    width: auto !important;
    text-align: center !important;
  }

  .hero-nav-next,
  .hero-nav-prev {
    display: none;
  }

  .hero-pagination {
    bottom: 20px !important;
  }

  .banner-box-wrap {
    height: auto;
    padding: 60px 30px;
  }

  .banner-series-title {
    font-size: 42px;
  }

  .feature-line {
    font-size: 20px;
  }

  .banner-overlay-gradient {
    background: rgba(0, 0, 0, 0.95);
  }

  .banner-box-wrap .container {
    padding: 0 20px;
  }
}

@media (max-width: 640px) {
  .premium-tool-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   CATEGORY TAXONOMY PAGE SPECIFIC (.category-archive-page)
   ========================================================================== */
.category-archive-page {
  background: #ffffff;
}

.category-archive-page .premium-catalog-hero {
  height: 450px;
  background: #ffffff;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background-image: url('images/industrial-bg.jpg');
  background-size: cover;
  background-position: center;
}

.category-archive-page .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.category-archive-page .hero-content {
  position: relative;
  z-index: 5;
  max-width: 700px;
}

.category-archive-page .category-pretitle {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--primary-gold);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.category-archive-page .hero-main-title {
  font-size: 56px;
  font-weight: 950;
  line-height: 1.1;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.category-archive-page .hero-main-title span {
  color: var(--primary-gold);
  font-weight: 400;
  font-style: italic;
}

.category-archive-page .hero-divider {
  width: 60px;
  height: 4px;
  background: var(--primary-gold);
  margin-bottom: 30px;
}

.category-archive-page .hero-subtitle {
  font-size: 18px;
  opacity: 0.8;
  max-width: 500px;
  font-family: var(--font-main);
}

.category-archive-page .filter-tabs-premium {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 50px;
}

.category-archive-page .tab-btn-premium {
  background: #ffffff;
  border: 1px solid #eeeeee;
  padding: 12px 25px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: #111111;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-archive-page .tab-btn-premium.active {
  background: var(--primary-gold);
  color: #ffffff;
  border-color: var(--primary-gold);
  box-shadow: 0 10px 20px rgba(255, 153, 0, 0.2);
}

.category-archive-page .tab-count-badge {
  font-size: 10px;
  background: #f5f5f5;
  color: #666;
  padding: 2px 8px;
  border-radius: 10px;
}

.category-archive-page .tab-btn-premium.active .tab-count-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.category-archive-page .premium-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.category-archive-page .premium-tool-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  border: 1px solid #eeeeee;
}

.category-archive-page .premium-tool-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 40px 80px rgba(255, 153, 0, 0.15);
  border-color: var(--primary-gold);
}

.category-archive-page .tool-visual-wrap {
  position: relative;
  height: 350px;
  background: #fff;
  overflow: hidden;
}

.category-archive-page .visual-inner {
  height: 100%;
  width: 100%;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-archive-page .visual-inner img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-archive-page .card-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 153, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
  z-index: 5;
}

.category-archive-page .premium-tool-card:hover .card-hover-overlay {
  opacity: 1;
}

.category-archive-page .premium-tool-card:hover .visual-inner img {
  transform: scale(1.1) rotate(2deg);
}

.category-archive-page .premium-view-btn {
  background: var(--primary-gold);
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(255, 153, 0, 0.15);
}

.category-archive-page .premium-view-btn:hover {
  background: var(--dark-gold);
  color: #ffffff;
  transform: scale(1.05);
}

.category-archive-page .tool-content-wrap {
  padding: 40px 35px;
  background: #ffffff;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.category-archive-page .tool-card-title {
  font-size: 22px;
  font-weight: 950;
  color: #111111;
  margin-bottom: 18px;
  line-height: 1.2;
  font-family: var(--font-heading);
}

.category-archive-page .tool-card-model {
  display: flex;
  align-items: center;
  gap: 12px;
}

.category-archive-page .model-tag {
  font-size: 10px;
  font-weight: 950;
  background: #f5f5f5;
  padding: 5px 10px;
  color: #666;
  border-radius: 4px;
  letter-spacing: 1.5px;
}

.category-archive-page .model-val {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary-gold);
}

.category-archive-page .premium-tool-card.hidden {
  display: none;
}

.category-archive-page .premium-pagination {
  grid-column: 1 / -1;
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

.category-archive-page .premium-pagination ul {
  display: flex;
  list-style: none;
  gap: 10px;
  padding: 0;
}

.category-archive-page .premium-pagination ul li a,
.category-archive-page .premium-pagination ul li span {
  display: inline-block;
  padding: 12px 20px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  color: #111111;
  text-decoration: none;
  transition: 0.3s;
}

.category-archive-page .premium-pagination ul li span.current {
  background: var(--primary-gold);
  color: #ffffff;
  border-color: var(--primary-gold);
}

.category-archive-page .premium-pagination ul li a:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  .category-archive-page .premium-tool-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .category-archive-page .filter-header-wrap {
    padding: 30px 0 !important;
    margin-bottom: 30px !important;
  }

  .category-archive-page .filter-tabs-premium {
    justify-content: flex-start !important;
    padding: 0 10px !important;
    margin-top: 20px !important;
    margin-bottom: 30px !important;
  }
}

@media (max-width: 640px) {
  .category-archive-page .premium-tool-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   EQUIPMENT ARCHIVE SPECIFIC (.equipment-archive-page)
   ========================================================================== */
.equipment-archive-page {
  background: #ffffff;
}

.equipment-archive-page .premium-catalog-hero {
  height: 60vh;
  min-height: 450px;
  background: #f9f9f9;
  position: relative;
  display: flex;
  align-items: center;
  color: #111111;
  overflow: hidden;
}

.equipment-archive-page .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.02);
}

.equipment-archive-page .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.equipment-archive-page .category-pretitle {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--primary-gold);
  margin-bottom: 20px;
  display: block;
}

.equipment-archive-page .hero-main-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 950;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -1.5px;
}

.equipment-archive-page .hero-main-title span {
  color: var(--primary-gold);
}

.equipment-archive-page .hero-divider {
  width: 60px;
  height: 4px;
  background: var(--primary-gold);
  margin-bottom: 25px;
}

.equipment-archive-page .hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  font-weight: 300;
  max-width: 550px;
}

.equipment-archive-page .filter-tabs-premium {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.equipment-archive-page .tab-btn-premium {
  padding: 12px 24px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111111;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.equipment-archive-page .tab-count-badge {
  font-size: 10px;
  background: #eeeeee;
  padding: 2px 8px;
  border-radius: 10px;
  color: #666666;
}

.equipment-archive-page .tab-btn-premium:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.equipment-archive-page .tab-btn-premium.active {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: #ffffff;
}

.equipment-archive-page .tab-btn-premium.active .tab-count-badge {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.equipment-archive-page .premium-tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.equipment-archive-page .premium-tool-card {
  transition: 0.4s;
}

.equipment-archive-page .premium-tool-card.hidden {
  display: none;
}

.equipment-archive-page .card-inner {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid #eeeeee;
  transition: 0.4s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.equipment-archive-page .tool-visual-wrap {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
}

.equipment-archive-page .visual-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.equipment-archive-page .visual-inner img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.equipment-archive-page .card-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 153, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
}

.equipment-archive-page .view-btn {
  padding: 14px 28px;
  background: #111111;
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  border-radius: 4px;
  transform: translateY(20px);
  transition: 0.4s;
}

.equipment-archive-page .tool-content-wrap {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.equipment-archive-page .tool-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 15px;
  line-height: 1.4;
}

.equipment-archive-page .tool-card-model {
  display: flex;
  align-items: center;
  gap: 10px;
}

.equipment-archive-page .model-tag {
  font-size: 10px;
  font-weight: 900;
  background: #eeeeee;
  padding: 4px 10px;
  border-radius: 4px;
  color: #666666;
}

.equipment-archive-page .model-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-gold);
}

.equipment-archive-page .card-bottom-accent {
  height: 4px;
  width: 0%;
  background: var(--primary-gold);
  transition: 0.4s;
}

.equipment-archive-page .card-inner:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: var(--primary-gold);
}

.equipment-archive-page .card-inner:hover .visual-inner img {
  transform: scale(1.1);
}

.equipment-archive-page .card-inner:hover .card-hover-overlay {
  opacity: 1;
}

.equipment-archive-page .card-inner:hover .view-btn {
  transform: translateY(0);
}

.equipment-archive-page .card-inner:hover .card-bottom-accent {
  width: 100%;
}

.equipment-archive-page .premium-pagination {
  grid-column: 1 / -1;
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

.equipment-archive-page .premium-pagination ul {
  display: flex;
  list-style: none;
  gap: 10px;
  padding: 0;
}

.equipment-archive-page .premium-pagination ul li a,
.equipment-archive-page .premium-pagination ul li span {
  display: inline-block;
  padding: 12px 20px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  color: #111111;
  text-decoration: none;
  transition: 0.3s;
}

.equipment-archive-page .premium-pagination ul li span.current {
  background: var(--primary-gold);
  color: #ffffff;
  border-color: var(--primary-gold);
}

.equipment-archive-page .premium-pagination ul li a:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  transform: translateY(-3px);
}

.equipment-archive-page .no-results-msg {
  grid-column: 1 / -1;
  text-align: center;
  padding: 100px 0;
  color: #666666;
  font-size: 18px;
}

@media (max-width: 768px) {
  .equipment-archive-page .premium-tool-grid {
    grid-template-columns: 1fr;
  }

  .equipment-archive-page .filter-header-wrap {
    padding: 30px 0 !important;
    margin-bottom: 30px !important;
  }

  .equipment-archive-page .filter-tabs-premium {
    justify-content: flex-start !important;
    padding: 0 10px !important;
    margin-top: 20px !important;
    margin-bottom: 30px !important;
  }
}


/* ==========================================================================
   PRODUCT DETAIL PAGE SPECIFIC (.product-detail-page)
   ========================================================================== */
.bg-light-premium {
  background: #ffffff;
  min-height: 100vh;
  padding: 40px 0 100px;
}

.product-detail-page .premium-breadcrumb {
  margin-bottom: 30px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #666;
}

.product-detail-page .premium-breadcrumb a {
  color: var(--primary-gold);
  text-decoration: none;
}

.product-detail-page .premium-breadcrumb .sep {
  margin: 0 10px;
  opacity: 0.5;
}

.product-detail-page .premium-breadcrumb .curr {
  color: #888;
}

.product-detail-page .product-main-card {
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  border: 1px solid #eeeeee;
}

.product-detail-page .product-layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
}

.product-detail-page .product-visuals {
  background: #fff;
  padding: 60px;
  border-right: 1px solid #eeeeee;
  min-width: 0;
}

.product-detail-page .product-gallery-swiper {
  position: relative;
  width: 100%;
  margin-bottom: 25px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
  background: #fff;
}

.product-detail-page .product-gallery-swiper.swiper-static {
  cursor: default;
}

.product-detail-page .product-gallery-swiper.swiper-static .swiper-wrapper {
  display: block;
}

.product-detail-page .main-image-premium-slide {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  overflow: hidden;
}

.product-detail-page .main-image-premium-slide img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}

.product-detail-page .placeholder-visual {
  font-size: 80px;
  color: #eee;
}

.product-detail-page .product-thumbs-swiper {
  width: 100%;
  padding: 5px 0 15px;
  overflow: hidden;
}

.product-detail-page .gallery-thumb-slide {
  width: 90px !important;
  height: 90px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  padding: 10px;
  cursor: pointer;
  transition: opacity 0.3s, border-color 0.3s, transform 0.3s;
  opacity: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-page .gallery-thumb-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-detail-page .gallery-thumb-slide:hover {
  opacity: 1;
  border-color: var(--primary-gold);
  transform: translateY(-3px);
}

.product-detail-page .gallery-thumb-slide.swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--primary-gold);
  box-shadow: 0 5px 15px rgba(255, 153, 0, 0.15);
}

/* Swiper navigation buttons for Product Gallery */
.product-detail-page .product-nav-next,
.product-detail-page .product-nav-prev {
  color: var(--primary-gold) !important;
  width: 40px !important;
  height: 40px !important;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 50%;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.product-detail-page .product-nav-next:after,
.product-detail-page .product-nav-prev:after {
  font-size: 14px !important;
  font-weight: 900;
}

.product-detail-page .product-nav-next:hover,
.product-detail-page .product-nav-prev:hover {
  background: var(--primary-gold);
  color: #fff !important;
  border-color: var(--primary-gold);
  transform: scale(1.1);
}

.product-detail-page .product-gallery-pagination {
  bottom: 15px !important;
}

.product-detail-page .product-gallery-pagination .swiper-pagination-bullet {
  background: var(--primary-gold) !important;
  opacity: 0.5;
}

.product-detail-page .product-gallery-pagination .swiper-pagination-bullet-active {
  background: var(--primary-gold) !important;
  opacity: 1;
  width: 20px;
  border-radius: 4px;
  transition: width 0.3s;
}

.product-detail-page .product-details-info {
  padding: 80px 70px;
  min-width: 0;
}

.product-detail-page .cat-tag-wrap {
  margin-bottom: 20px;
}

.product-detail-page .premium-tag {
  font-size: 10px;
  font-weight: 900;
  background: var(--primary-gold);
  color: #ffffff;
  padding: 6px 15px;
  border-radius: 4px;
  letter-spacing: 2px;
}

.product-detail-page .product-main-title {
  font-size: 42px;
  font-weight: 950;
  color: #111111;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.product-detail-page .model-badge-premium {
  display: inline-flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid #eeeeee;
}

.product-detail-page .model-badge-premium .lbl {
  font-size: 10px;
  font-weight: 900;
  padding: 10px 15px;
  background: #111111;
  color: #fff;
}

.product-detail-page .model-badge-premium .val {
  font-size: 14px;
  font-weight: 800;
  padding: 10px 20px;
  color: var(--primary-gold);
}

.product-detail-page .product-tabs-premium {
  margin-bottom: 50px;
}

.product-detail-page .tab-triggers {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 35px;
}

.product-detail-page .tab-trigger {
  background: none;
  border: none;
  padding: 15px 0;
  font-size: 11px;
  font-weight: 800;
  color: #666;
  letter-spacing: 2px;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}

.product-detail-page .tab-trigger::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: 0.3s;
}

.product-detail-page .tab-trigger.active {
  color: var(--primary-gold);
}

.product-detail-page .tab-trigger.active::after {
  width: 100%;
}

.product-detail-page .tab-panel {
  display: none;
}

.product-detail-page .tab-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.product-detail-page .product-short-p {
  font-size: 16px;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 30px;
}

.product-detail-page .highlight-pill {
  display: inline-block;
  padding: 10px 20px;
  background: #f5f5f5;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: #111111;
  margin-right: 15px;
  margin-bottom: 15px;
  border: 1px solid #eeeeee;
}

.product-detail-page .highlight-pill span {
  color: var(--primary-gold);
  margin-right: 5px;
}

.product-detail-page .premium-wysiwyg {
  font-size: 15px;
  line-height: 1.8;
  color: #444444;
}

.product-detail-page .premium-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.product-detail-page .premium-specs-table td {
  padding: 15px 12px;
  border-bottom: 1px solid #eeeeee;
  font-size: 14px;
}

.product-detail-page .premium-specs-table td:first-child {
  font-weight: 800;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 40%;
}

.product-detail-page .premium-specs-table td:last-child {
  color: #111111;
  font-weight: 600;
}

.product-detail-page .premium-specs-table tr.specs-group-heading td {
  background: rgba(255, 153, 0, 0.04);
  color: var(--primary-gold);
  font-weight: 900;
  letter-spacing: 1.5px;
  font-size: 12px;
  text-transform: uppercase;
  padding: 16px 20px;
  border-bottom: 2px solid rgba(255, 153, 0, 0.15);
}

.product-detail-page .premium-specs-table tr.specs-group-heading:not(:first-child) td {
  border-top: 1px solid #eeeeee;
}

.product-detail-page .premium-specs-rich-content {
  margin-top: 40px;
  border-top: 1px dashed #eeeeee;
  padding-top: 40px;
}

.product-detail-page .premium-specs-rich-content img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid #eeeeee;
  margin: 25px auto;
  display: block;
  transition: 0.3s;
}

.product-detail-page .premium-specs-rich-content img:hover {
  transform: scale(1.008);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.product-detail-page .premium-specs-rich-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 153, 0, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
}

.product-detail-page .premium-specs-rich-content table th,
.product-detail-page .premium-specs-rich-content table td {
  padding: 14px 18px;
  font-size: 13px;
  text-align: center;
  border-bottom: 1px solid #f5f5f5;
}

.product-detail-page .premium-specs-rich-content table th {
  background: var(--primary-gold);
  color: #ffffff;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-detail-page .premium-specs-rich-content table tr {
  background: #ffffff;
  transition: 0.2s;
}

.product-detail-page .premium-specs-rich-content table tr:nth-child(even) {
  background: #fbfbfb;
}

.product-detail-page .premium-specs-rich-content table tr:hover {
  background: rgba(255, 153, 0, 0.02);
}

.product-detail-page .product-actions-premium {
  display: flex;
  gap: 20px;
}

.product-detail-page .premium-wa-btn {
  flex-grow: 1;
  background: var(--primary-gold);
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-weight: 900;
  letter-spacing: 1px;
  transition: 0.3s;
  font-size: 13px;
  box-shadow: 0 10px 20px rgba(255, 153, 0, 0.15);
}

.product-detail-page .premium-wa-btn:hover {
  background: var(--dark-gold);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 153, 0, 0.25);
}

.product-detail-page .premium-catalog-btn {
  padding: 20px 30px;
  border: 2px solid #eeeeee;
  color: #111111;
  border-radius: 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 12px;
  transition: 0.3s;
}

.product-detail-page .premium-catalog-btn:hover {
  border-color: var(--primary-gold);
  background: rgba(255, 153, 0, 0.05);
}

.product-detail-page .premium-related-section {
  border-top: 1px solid #eeeeee;
  margin-top: 80px;
  padding-top: 80px;
}

.product-detail-page .premium-tool-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-detail-page .premium-tool-card {
  transition: 0.4s;
}

.product-detail-page .card-inner {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  border: 1px solid #eeeeee;
  transition: 0.4s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-detail-page .tool-visual-wrap {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  background: #fff;
}

.product-detail-page .visual-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.product-detail-page .visual-inner img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: 0.6s;
}

.product-detail-page .card-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 153, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
}

.product-detail-page .view-btn {
  padding: 12px 20px;
  background: #ffffff;
  color: #111111;
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  border-radius: 4px;
  transform: translateY(15px);
  transition: 0.4s;
}

.product-detail-page .tool-content-wrap {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-detail-page .tool-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 12px;
  line-height: 1.4;
}

.product-detail-page .tool-card-model {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-detail-page .model-tag {
  font-size: 9px;
  font-weight: 900;
  background: #f5f5f5;
  padding: 3px 8px;
  border-radius: 4px;
  color: #666;
}

.product-detail-page .model-val {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-gold);
}

.product-detail-page .card-bottom-accent {
  height: 4px;
  width: 0%;
  background: var(--primary-gold);
  transition: 0.4s;
}

.product-detail-page .card-inner:hover {
  transform: translateY(-10px);
  border-color: var(--primary-gold);
  box-shadow: 0 20px 40px rgba(255, 153, 0, 0.12);
}

.product-detail-page .card-inner:hover .card-hover-overlay {
  opacity: 1;
}

.product-detail-page .card-inner:hover .view-btn {
  transform: translateY(0);
}

.product-detail-page .card-inner:hover .card-bottom-accent {
  width: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1200px) {
  .product-detail-page .product-layout-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-detail-page .product-visuals {
    border-right: none;
    border-bottom: 1px solid #eeeeee;
  }

  .product-detail-page .premium-tool-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-detail-page .main-image-premium-slide {
    height: 380px;
  }

  .product-detail-page .product-visuals {
    padding: 30px;
  }

  .product-detail-page .product-details-info {
    padding: 40px 25px;
  }

  .product-detail-page .product-main-title {
    font-size: 32px;
  }

  .product-detail-page .product-actions-premium {
    flex-direction: column;
  }

  .product-detail-page .premium-tool-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   SEARCH RESULTS PAGE SPECIFIC (.search-results-page)
   ========================================================================== */
.search-results-page {
  background: #ffffff;
}

.search-results-page .premium-catalog-hero.light-hero {
  background: #fff;
  padding: 100px 0 60px;
  min-height: auto;
  color: #111;
  border-bottom: 1px solid #eee;
}

.search-results-page .light-hero .hero-overlay {
  display: none;
}

.search-results-page .light-hero .category-pretitle {
  color: #888;
}

.search-results-page .light-hero .hero-main-title {
  color: #000;
}

.search-results-page .light-hero .hero-main-title span {
  color: var(--primary-gold);
}

.search-results-page .light-hero .hero-divider {
  background: var(--primary-gold);
}

.search-results-page .light-hero .hero-subtitle {
  color: #444;
  opacity: 1;
}

.search-results-page .search-hero {
  height: 50vh;
  min-height: 400px;
  background: #f9f9f9;
  position: relative;
  display: flex;
  align-items: center;
  color: #111111;
  overflow: hidden;
}

.search-results-page .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.02);
}

.search-results-page .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.search-results-page .category-pretitle {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--primary-gold);
  margin-bottom: 20px;
  display: block;
}

.search-results-page .hero-main-title {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 950;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.search-results-page .hero-main-title span {
  color: var(--primary-gold);
}

.search-results-page .hero-divider {
  width: 60px;
  height: 4px;
  background: var(--primary-gold);
  margin-bottom: 25px;
}

.search-results-page .hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  font-weight: 300;
}

.search-results-page .premium-tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.search-results-page .card-inner {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid #eeeeee;
  transition: 0.4s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.search-results-page .tool-visual-wrap {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
}

.search-results-page .visual-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.search-results-page .visual-inner img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.search-results-page .card-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 153, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
}

.search-results-page .view-btn {
  padding: 14px 28px;
  background: #111111;
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  border-radius: 4px;
  transform: translateY(20px);
  transition: 0.4s;
}

.search-results-page .tool-content-wrap {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.search-results-page .tool-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 15px;
  line-height: 1.4;
}

.search-results-page .tool-card-model {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-results-page .model-tag {
  font-size: 10px;
  font-weight: 900;
  background: #eeeeee;
  padding: 4px 10px;
  border-radius: 4px;
  color: #666666;
}

.search-results-page .model-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-gold);
}

.search-results-page .card-bottom-accent {
  height: 4px;
  width: 0%;
  background: var(--primary-gold);
  transition: 0.4s;
}

.search-results-page .card-inner:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: var(--primary-gold);
}

.search-results-page .card-inner:hover .card-hover-overlay {
  opacity: 1;
}

.search-results-page .card-inner:hover .view-btn {
  transform: translateY(0);
}

.search-results-page .card-inner:hover .card-bottom-accent {
  width: 100%;
}

.search-results-page .no-results-premium {
  text-align: center;
  padding: 80px 0;
  max-width: 700px;
  margin: 0 auto;
}

.search-results-page .no-results-icon {
  font-size: 80px;
  margin-bottom: 30px;
  opacity: 0.3;
}

.search-results-page .no-results-title {
  font-size: 36px;
  font-weight: 950;
  color: #111111;
  margin-bottom: 20px;
}

.search-results-page .no-results-desc {
  font-size: 18px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 50px;
}

.search-results-page .search-retry-wrap {
  margin-bottom: 80px;
  background: #f9f9f9;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #eeeeee;
}

.search-results-page .suggested-categories h3 {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--primary-gold);
  margin-bottom: 40px;
}

.search-results-page .suggestion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.search-results-page .suggest-item {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  text-decoration: none;
  color: #111111;
  font-weight: 800;
  font-size: 12px;
  transition: 0.3s;
  border: 1px solid #eeeeee;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.search-results-page .suggest-item:hover {
  background: var(--primary-gold);
  color: #ffffff;
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 153, 0, 0.15);
  border-color: var(--primary-gold);
}

.search-results-page .suggest-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.search-results-page .premium-pagination {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

.search-results-page .premium-pagination ul {
  display: flex;
  list-style: none;
  gap: 10px;
  padding: 0;
}

.search-results-page .premium-pagination ul li a,
.search-results-page .premium-pagination ul li span {
  display: inline-block;
  padding: 12px 20px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  color: #111111;
  text-decoration: none;
  transition: 0.3s;
}

.search-results-page .premium-pagination ul li span.current {
  background: var(--primary-gold);
  color: #ffffff;
  border-color: var(--primary-gold);
}

.search-results-page .premium-pagination ul li a:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .search-results-page .suggestion-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-results-page .premium-tool-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   ABOUT US TEMPLATE STYLES (.about-page)
   ========================================================================== */
.about-page {
  background: #ffffff;
}

.premium-about-hero {
  height: 70vh;
  min-height: 500px;
  background: url('images/hero-bg.jpg') no-repeat center center / cover;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
}

.about-page .stats-premium {
  background: #f9f9f9;
  color: #111111;
  padding: 50px 0;
  border-bottom: 4px solid var(--primary-gold);
  border-top: 1px solid #eeeeee;
}

.about-page .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.about-page .stat-number {
  display: block;
  font-size: 42px;
  font-weight: 900;
  color: var(--primary-gold);
  line-height: 1;
  margin-bottom: 10px;
}

.about-page .stat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.6;
}

.about-page .intro-grid-premium {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-page .visual-image-wrapper {
  position: relative;
  border-radius: 12px;
}

.about-page .visual-image-wrapper img {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.about-page .image-accent {
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 80px;
  height: 80px;
  border-left: 8px solid var(--primary-gold);
  border-bottom: 8px solid var(--primary-gold);
  z-index: -1;
}

.about-page .experience-badge {
  position: absolute;
  top: -25px;
  right: -25px;
  background: var(--primary-gold);
  color: #ffffff;
  padding: 25px;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 15px 30px rgba(255, 153, 0, 0.4);
  z-index: 5;
}

.about-page .experience-badge .number {
  font-size: 32px;
  font-weight: 950;
  line-height: 1;
}

.about-page .sub-title-premium {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 950;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #111111;
}

.about-page .intro-divider {
  width: 50px;
  height: 3px;
  background: var(--primary-gold);
  margin-bottom: 30px;
}

.about-page .lead-text {
  font-size: 18px;
  font-weight: 600;
  color: #444444;
  line-height: 1.6;
  margin-bottom: 25px;
}

.about-page .values-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-page .value-card-premium {
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: var(--card-shadow);
  background-size: cover;
  background-position: center;
}

.about-page .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
  transition: 0.5s;
}

.about-page .card-content {
  position: relative;
  z-index: 2;
  color: #fff;
  width: 100%;
}

.about-page .card-content h3 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-page .card-line {
  width: 40px;
  height: 3px;
  background: var(--primary-gold);
  margin-bottom: 20px;
  transition: 0.5s;
}

.about-page .card-content p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.8;
}

.about-page .value-card-premium:hover {
  transform: translateY(-15px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.about-page .value-card-premium:hover .card-overlay {
  background: rgba(255, 153, 0, 0.9);
}

.about-page .value-card-premium:hover .card-line {
  width: 100px;
}

.about-page .mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.about-page .mv-box-premium {
  position: relative;
  overflow: hidden;
  padding: 70px 50px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  box-shadow: var(--card-shadow);
  transition: 0.4s;
}

.about-page .mv-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 153, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.about-page .mv-tag {
  display: inline-block;
  padding: 8px 24px;
  background: var(--primary-gold);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  border-radius: 4px;
  margin-bottom: 30px;
}

.about-page .mv-box-premium h2 {
  font-size: 36px;
  font-weight: 950;
  margin-bottom: 20px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.about-page .mv-box-premium p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.about-page .mv-bottom-accent {
  width: 50px;
  height: 5px;
  background: var(--primary-gold);
  border-radius: 10px;
}

.about-page .mv-box-premium:hover {
  transform: translateY(-10px);
  border-color: var(--primary-gold);
  box-shadow: 0 30px 60px rgba(255, 153, 0, 0.08);
}

.about-page .faq-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-page .faq-card-premium {
  position: relative;
  padding: 50px 40px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  transition: 0.4s;
  border: 1px solid #eeeeee;
  overflow: hidden;
}

.about-page .faq-number {
  font-size: 64px;
  font-weight: 950;
  color: var(--primary-gold);
  opacity: 0.05;
  position: absolute;
  top: -10px;
  right: 20px;
  line-height: 1;
}

.about-page .faq-content h3 {
  font-size: 18px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 15px;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

.about-page .faq-content p {
  font-size: 14px;
  color: #666666;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.about-page .faq-accent {
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 4px;
  background: var(--primary-gold);
  border-radius: 0 4px 4px 0;
  transform: scaleY(0);
  transition: 0.4s ease;
}

.about-page .faq-card-premium:hover {
  transform: translateY(-10px);
  border-color: var(--primary-gold);
  box-shadow: 0 30px 60px rgba(255, 153, 0, 0.12);
}

.about-page .faq-card-premium:hover .faq-accent {
  transform: scaleY(1);
}

.about-page .faq-card-premium:hover .faq-number {
  opacity: 0.15;
  transform: scale(1.1);
}

@media (max-width: 1024px) {

  .about-page .values-grid-premium,
  .about-page .mv-grid,
  .about-page .stats-grid,
  .about-page .faq-grid-premium {
    grid-template-columns: 1fr;
  }

  .about-page .intro-grid-premium {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-page .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-page .mv-box-premium {
    padding: 40px 25px !important;
  }

  .about-page .mv-box-premium h2 {
    font-size: 28px !important;
  }

  .about-page .faq-card-premium {
    padding: 35px 25px !important;
  }

  .about-page .value-card-premium {
    height: 380px !important;
    padding: 30px 20px !important;
  }
}

/* ==========================================================================
   BRANDS TEMPLATE STYLES (.brands-page)
   ========================================================================== */
.brands-page {
  background: #ffffff;
  min-height: 100vh;
}

.brands-hero {
  height: 55vh;
  min-height: 400px;
  background: url('images/hero-bg.jpg') no-repeat center center / cover;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
}

.brands-page .brands-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.brands-page .brand-card-premium {
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #eeeeee;
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.brands-page .brand-link {
  text-decoration: none;
  display: block;
  height: 100%;
}

.brands-page .brand-logo-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  background: #fff;
  transition: 0.5s;
}

.brands-page .brand-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: 0.5s;
}

.brands-page .brand-name-fallback {
  font-size: 24px;
  font-weight: 900;
  color: #000;
  text-align: center;
}

.brands-page .brand-info-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 153, 0, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.5s;
  padding: 40px;
  text-align: center;
}

.brands-page .brand-card-title {
  font-size: 22px;
  font-weight: 950;
  color: #fff;
  margin-bottom: 15px;
}

.brands-page .brand-divider {
  width: 40px;
  height: 3px;
  background: #ffffff;
  margin-bottom: 20px;
}

.brands-page .brand-cta {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 10px 20px;
  border-radius: 4px;
  transition: 0.3s;
}

.brands-page .brand-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(255, 153, 0, 0.2);
  border-color: var(--primary-gold);
}

.brands-page .brand-card-premium:hover .brand-info-overlay {
  opacity: 1;
}

.brands-page .brand-card-premium:hover .brand-logo-container {
  transform: scale(1.1);
}

.brands-page .brand-cta:hover {
  background: #ffffff;
  color: #111111;
}

.brands-page .no-brands-msg {
  grid-column: 1 / -1;
  text-align: center;
  color: #666;
  padding: 80px 0;
  font-size: 18px;
}

@media (max-width: 768px) {
  .brands-page .brands-grid-premium {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   COMPANY PROFILE TEMPLATE STYLES (.company-page)
   ========================================================================== */
.company-page {
  background: #ffffff;
  min-height: 100vh;
}

.company-hero {
  height: 60vh;
  min-height: 450px;
  background: url('images/banner2.png') no-repeat center center / cover;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
}

.company-page .ceo-grid-premium {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.company-page .ceo-grid-premium.reversed {
  grid-template-columns: 1.1fr 1fr;
}

.company-page .ceo-visual {
  position: relative;
}

.company-page .ceo-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.company-page .ceo-image-wrap img {
  width: 100%;
  display: block;
  filter: grayscale(1) contrast(1.2);
  transition: 0.5s;
}

.company-page .ceo-image-wrap:hover img {
  filter: grayscale(0) contrast(1);
}

.company-page .ceo-badge-premium {
  position: absolute;
  bottom: -30px;
  right: 40px;
  background: #ffffff;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
  border: 1px solid #eeeeee;
}

.company-page .ceo-badge-premium h3 {
  font-size: 28px;
  font-weight: 950;
  color: #111111;
  margin: 0;
}

.company-page .ceo-badge-premium p {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary-gold);
  margin: 5px 0 0;
  letter-spacing: 2px;
}

.company-page .sub-title-premium {
  font-size: 42px;
  font-weight: 950;
  color: #111111;
  line-height: 1.1;
  margin-bottom: 25px;
}

.company-page .intro-divider {
  width: 50px;
  height: 4px;
  background: var(--primary-gold);
  margin-bottom: 30px;
}

.company-page .ceo-message-box {
  background: #f9f9f9;
  padding: 35px;
  border-radius: 16px;
  border: 1px solid #eeeeee;
  margin-bottom: 30px;
}

.company-page .lead-quote {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  font-style: italic;
  margin: 0;
  line-height: 1.6;
}

.company-page .ceo-content-premium p {
  color: #555555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.company-page .check-list-modern-dark {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.company-page .check-list-modern-dark li {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #111111;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 14px;
}

.company-page .check-list-modern-dark li span {
  color: var(--primary-gold);
  font-size: 18px;
}

.company-page .values-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.company-page .value-card-premium {
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: 0.5s;
}

.company-page .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
  transition: 0.5s;
}

.company-page .card-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.company-page .card-content h3 {
  font-size: 24px;
  font-weight: 950;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.company-page .card-line {
  width: 40px;
  height: 3px;
  background: var(--primary-gold);
  margin-bottom: 20px;
  transition: 0.5s;
}

.company-page .card-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.company-page .value-card-premium:hover {
  transform: translateY(-10px);
}

.company-page .value-card-premium:hover .card-overlay {
  background: rgba(255, 153, 0, 0.9);
}

.company-page .value-card-premium:hover .card-line {
  width: 100px;
  background: #fff;
}

.company-page .value-card-premium:hover .card-content p {
  color: #ffffff;
  font-weight: 600;
}

.company-page .value-card-premium:hover .card-content h3 {
  color: #ffffff;
}

.company-page .stats-grid-simple {
  display: flex;
  gap: 50px;
  margin-top: 40px;
}

.company-page .stat-item {
  display: flex;
  flex-direction: column;
}

.company-page .stat-number {
  font-size: 36px;
  font-weight: 950;
  color: var(--primary-gold);
  line-height: 1;
}

.company-page .stat-label {
  font-size: 11px;
  font-weight: 800;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 10px;
}

@media (max-width: 1024px) {

  .company-page .ceo-grid-premium,
  .company-page .ceo-grid-premium.reversed {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .company-page .values-grid-premium {
    grid-template-columns: 1fr;
  }

  .company-page .ceo-badge-premium {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 30px;
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   CONTACT TEMPLATE STYLES (.contact-page)
   ========================================================================== */
.contact-page {
  background: #ffffff;
}

.premium-contact-hero {
  height: 70vh;
  min-height: 550px;
  background: url('images/hero-bg.jpg') no-repeat center center / cover;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.contact-page .hero-scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.contact-page .mouse {
  width: 26px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 20px;
  position: relative;
}

.contact-page .mouse::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: mouseScroll 2s infinite;
}

@keyframes mouseScroll {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, 10px);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
}

.contact-page .contact-grid-premium {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.contact-page .section-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--primary-gold);
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.contact-page .sub-title-premium {
  font-size: 48px;
  font-weight: 950;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.contact-page .intro-divider {
  width: 60px;
  height: 4px;
  background: var(--primary-gold);
  margin-bottom: 30px;
}

.contact-page .lead-text {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-page .details-list-premium {
  display: grid;
  gap: 30px;
  margin-bottom: 50px;
}

.contact-page .detail-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-page .item-icon {
  font-size: 24px;
  background: #F0F0F0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-page .item-text strong {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.contact-page .item-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-page .contact-visual-premium {
  height: 300px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.contact-page .visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(255, 153, 0, 0.8) 0%, transparent 100%);
}

.contact-page .visual-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 3px;
}

.contact-page .form-premium-card {
  background: #FFF;
  padding: 60px;
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  border: 1px solid #F0F0F0;
}

.contact-page .form-header-premium {
  margin-bottom: 40px;
}

.contact-page .form-header-premium h3 {
  font-size: 28px;
  font-weight: 950;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.contact-page .form-header-premium p {
  font-size: 14px;
  color: var(--text-muted);
}

.contact-page .form-input-group {
  margin-bottom: 25px;
}

.contact-page .form-input-group label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 10px;
}

.contact-page .form-input-group input,
.contact-page .form-input-group select,
.contact-page .form-input-group textarea {
  width: 100%;
  padding: 18px 25px;
  background: #F9F9F9;
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  transition: 0.3s;
}

.contact-page .form-input-group input:focus,
.contact-page .form-input-group select:focus,
.contact-page .form-input-group textarea:focus {
  border-color: var(--primary-gold);
  background: #FFF;
  outline: none;
  box-shadow: 0 10px 20px rgba(255, 153, 0, 0.05);
}

.contact-page .form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-page .submit-btn-premium {
  width: 100%;
  padding: 22px;
  background: var(--primary-gold);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(255, 153, 0, 0.15);
}

.contact-page .submit-btn-premium:hover {
  background: var(--dark-gold);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(255, 153, 0, 0.3);
}

.contact-page .btn-arrow {
  transition: 0.3s;
}

.contact-page .submit-btn-premium:hover .btn-arrow {
  transform: translateX(5px);
}

.contact-page .map-section-premium {
  position: relative;
  margin-top: 50px;
}

.contact-page .map-wrapper {
  height: 650px;
  background: #F0F0F0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-page .floating-address-card {
  position: absolute;
  top: 80px;
  left: 80px;
  z-index: 10;
  background: #FFF;
  padding: 50px;
  border-radius: 20px;
  width: 420px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-page .live-status {
  display: inline-block;
  padding: 6px 14px;
  background: #00B67A;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  border-radius: 30px;
  margin-bottom: 25px;
}

.contact-page .floating-address-card h3 {
  font-size: 32px;
  font-weight: 950;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.contact-page .floating-address-card p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-page .address-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #EEE;
  padding-top: 25px;
}

.contact-page .directions-btn {
  font-size: 12px;
  font-weight: 900;
  color: var(--primary-gold);
  text-decoration: none;
  letter-spacing: 1px;
}

.contact-page .distance {
  font-size: 11px;
  color: #BBB;
  font-weight: 600;
}

.contact-page .map-placeholder-premium {
  width: 100%;
  height: 100%;
  background: #DDE1E3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.contact-page .map-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 153, 0, 0.02) 0%, transparent 100%);
}

.contact-page .map-interaction-prompt {
  font-size: 12px;
  font-weight: 800;
  color: #999;
  letter-spacing: 4px;
}

@media (max-width: 1024px) {
  .contact-page .contact-grid-premium {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-page .floating-address-card {
    position: static;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    padding: 40px 20px;
  }

  .contact-page .map-wrapper {
    height: auto;
    flex-direction: column;
  }

  .contact-page .map-placeholder-premium {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .contact-page .form-premium-card {
    padding: 30px 20px !important;
    border-radius: 16px !important;
  }

  .contact-page .form-row-2 {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .contact-page .form-header-premium h3 {
    font-size: 24px !important;
  }

  .contact-page .floating-address-card {
    padding: 30px 20px !important;
  }

  .contact-page .floating-address-card h3 {
    font-size: 26px !important;
  }

  .contact-page .floating-address-card p {
    font-size: 15px !important;
  }
}

/* ==========================================================================
   SUPPORT TEMPLATE STYLES (.support-page)
   ========================================================================== */
.support-page {
  background: #ffffff;
}

.premium-support-hero {
  height: 70vh;
  min-height: 500px;
  background: url('images/hero-bg.jpg') no-repeat center center / cover;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.support-page .hub-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.support-page .hub-item-new {
  height: 550px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 50px;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-size: cover;
  background-position: center;
  box-shadow: var(--card-shadow);
}

.support-page .hub-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
  z-index: 1;
  transition: 0.5s;
}

.support-page .hub-item-overlay-emergency {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
  z-index: 1;
}

.support-page .hub-item-content {
  position: relative;
  z-index: 2;
  color: #fff;
  transform: translateY(20px);
  transition: 0.5s;
}

.support-page .hub-item-content h3 {
  font-size: 28px;
  font-weight: 950;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.support-page .hub-item-content p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.7;
  margin-bottom: 30px;
}

.support-page .premium-btn-outline {
  display: inline-block;
  padding: 14px 35px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-decoration: none;
  transition: 0.3s;
}

.support-page .premium-btn-outline:hover {
  background: #FFF;
  color: #111;
}

.support-page .premium-btn-gold {
  display: inline-block;
  padding: 14px 35px;
  background: var(--primary-gold);
  color: #ffffff;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-decoration: none;
  transition: 0.3s;
}

.support-page .premium-btn-gold:hover {
  background: var(--dark-gold);
  color: #ffffff;
  transform: scale(1.05);
}

.support-page .hub-item-new:hover {
  transform: translateY(-15px);
}

.support-page .hub-item-new:hover .hub-item-content {
  transform: translateY(0);
}

.support-page .hub-item-new:hover .hub-item-overlay {
  background: linear-gradient(to top, var(--primary-gold) 0%, transparent 100%);
  opacity: 0.95;
}

.support-page .support-cta-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  padding: 150px 0;
}

.support-page .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.support-page .cta-content-premium {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.support-page .cta-content-premium h2 {
  font-size: 48px;
  font-weight: 950;
  margin-bottom: 20px;
}

.support-page .cta-content-premium p {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 40px;
}

.support-page .premium-cta-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  color: var(--primary-gold);
  text-decoration: none;
  border-bottom: 2px solid var(--primary-gold);
  padding-bottom: 5px;
  transition: 0.3s;
}

.support-page .premium-cta-link:hover {
  padding-left: 10px;
  letter-spacing: 1px;
}

@media (max-width: 1024px) {
  .support-page .hub-grid-premium {
    grid-template-columns: 1fr;
  }

  .support-page .support-cta-banner {
    padding: 100px 0;
    background-attachment: scroll;
  }

  .support-page .cta-content-premium h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .support-page .hub-item-new {
    height: 420px !important;
    padding: 30px !important;
  }

  .support-page .support-cta-banner {
    padding: 70px 0 !important;
  }

  .support-page .cta-content-premium h2 {
    font-size: 26px !important;
  }
}

/* ==========================================================================
   TEAM TEMPLATE STYLES (.team-page)
   ========================================================================== */
.team-page {
  background: #ffffff;
}

.premium-team-hero {
  height: 70vh;
  min-height: 500px;
  background: url('images/banner2.png') no-repeat center center / cover;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.team-page .ceo-leadership {
  background: #ffffff;
}

.team-page .ceo-grid-premium {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.team-page .ceo-visual {
  position: relative;
}

.team-page .ceo-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.team-page .ceo-image-wrap img {
  width: 100%;
  display: block;
}

.team-page .ceo-badge-premium {
  position: absolute;
  bottom: -40px;
  right: 40px;
  background: #ffffff;
  padding: 35px 50px;
  border-radius: 12px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
  border: 1px solid #eeeeee;
}

.team-page .ceo-badge-premium h3 {
  font-size: 32px;
  font-weight: 950;
  color: #111111;
  margin: 0;
  font-style: italic;
}

.team-page .ceo-badge-premium p {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-gold);
  margin: 8px 0 0;
  letter-spacing: 2px;
}

.team-page .ceo-content-premium .small-label {
  margin-bottom: 20px;
}

.team-page .sub-title-premium {
  font-size: 42px;
  font-weight: 950;
  line-height: 1.1;
  color: #111111;
  margin-bottom: 25px;
}

.team-page .intro-divider {
  width: 60px;
  height: 4px;
  background: var(--primary-gold);
  margin-bottom: 35px;
}

.team-page .ceo-message-box {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #eeeeee;
  margin-bottom: 30px;
}

.team-page .lead-quote {
  font-size: 20px;
  font-weight: 600;
  color: #333333;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

.team-page .ceo-content-premium p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 25px;
}

.team-page .ceo-signature {
  font-family: 'Brush Script MT', cursive;
  font-size: 36px;
  color: #111111;
  opacity: 0.8;
  margin-top: 30px;
}

.team-page .team-stats-premium {
  background: #f9f9f9;
  color: #111111;
  border-top: 1px solid #eeeeee;
  border-bottom: 4px solid var(--primary-gold);
}

.team-page .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.team-page .stat-number {
  display: block;
  font-size: 48px;
  font-weight: 950;
  color: var(--primary-gold);
  line-height: 1;
  margin-bottom: 10px;
}

.team-page .stat-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.6;
}

.team-page .values-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-page .value-card-premium {
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: var(--card-shadow);
  background-size: cover;
  background-position: center;
}

.team-page .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
  transition: 0.5s;
}

.team-page .card-content {
  position: relative;
  z-index: 2;
  color: #fff;
  width: 100%;
}

.team-page .card-content h3 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-page .card-line {
  width: 40px;
  height: 3px;
  background: var(--primary-gold);
  margin-bottom: 20px;
  transition: 0.5s;
}

.team-page .card-content p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.8;
}

.team-page .value-card-premium:hover {
  transform: translateY(-15px);
  box-shadow: 0 40px 80px rgba(255, 153, 0, 0.2);
}

.team-page .value-card-premium:hover .card-overlay {
  background: rgba(255, 153, 0, 0.9);
}

.team-page .value-card-premium:hover .card-line {
  width: 100px;
}

@media (max-width: 1024px) {
  .team-page .ceo-grid-premium {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .team-page .ceo-badge-premium {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 30px;
    width: 100%;
    text-align: center;
  }

  .team-page .values-grid-premium,
  .team-page .stats-grid {
    grid-template-columns: 1fr;
  }

  .team-page .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .team-page .ceo-badge-premium {
    padding: 25px 30px !important;
  }

  .team-page .ceo-badge-premium h3 {
    font-size: 24px !important;
  }

  .team-page .sub-title-premium {
    font-size: 30px !important;
  }

  .team-page .lead-quote {
    font-size: 16px !important;
  }

  .team-page .ceo-message-box {
    padding: 25px !important;
  }

  .team-page .value-card-premium {
    height: 380px !important;
    padding: 30px 20px !important;
  }
}