/* ============================================
   Nipton Ltd
   Main Stylesheet
   ============================================ */

/* --- CSS Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

input {
  font-family: inherit;
  outline: none;
}

/* --- CSS Variables --- */
:root {
  --primary: #1F3A5F;
  --primary-dark: #152A45;
  --primary-light: #3E6DA6;
  --secondary: #2B2F36;
  --secondary-light: #3A3F47;
  --accent: #E8A300;
  --accent-dark: #C98A00;
  --green: #2E9E5B;
  --green-dark: #218049;
  --blue: #3E6DA6;
  --dark: #1a1a1a;
  --dark-bg: #282828;
  --light-gray: #f5f5f5;
  --border-gray: #e1e1e1;
  --text-gray: #7c7c7c;
  --text-dark: #333;
  --white: #ffffff;
  --max-width: 120rem;
  --header-height: 7rem;
}

/* --- Utility Classes --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; }
.font-bold { font-weight: 700; }
.font-light { font-weight: 300; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 1.2rem 2.8rem;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.4rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(31, 58, 95, 0.3);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--secondary-light);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
}

.btn-accent:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-green {
  background: var(--green);
  color: var(--white);
}

.btn-green:hover {
  background: var(--green-dark);
}

.btn-lg {
  padding: 1.6rem 3.6rem;
  font-size: 1.6rem;
}

.btn-sm {
  padding: 0.8rem 1.6rem;
  font-size: 1.2rem;
}

/* ============================================
   TOP UTILITY BAR
   ============================================ */
.top-bar {
  background: var(--dark-bg);
  color: var(--white);
  font-size: 1.3rem;
  padding: 0.8rem 0;
  position: relative;
  z-index: 100;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.top-bar__left span {
  opacity: 0.9;
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.top-bar__link {
  color: var(--white);
  opacity: 0.85;
  transition: opacity 0.2s;
  font-size: 1.2rem;
}

.top-bar__link:hover {
  opacity: 1;
}

.top-bar__link i {
  margin-right: 0.5rem;
}

.top-bar__account {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar__signin {
  background: var(--blue);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 0.3rem;
  font-size: 1.2rem;
  font-weight: 600;
  transition: background 0.2s;
}

.top-bar__signin:hover {
  background: #2471a3;
}

.top-bar__basket {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--white);
}

.top-bar__basket-icon {
  position: relative;
  font-size: 1.8rem;
}

.top-bar__basket-count {
  position: absolute;
  top: -0.6rem;
  right: -0.8rem;
  background: var(--green);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   MAIN HEADER
   ============================================ */
.header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 99;
  padding: 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo img,
.header__logo-img {
  height: 4.5rem;
  width: auto;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header__logo-name {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.header__logo-tagline {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

/* Navigation */
.header__nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.header__nav-item {
  position: relative;
}

.header__nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 2rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.2s;
  white-space: nowrap;
}

.header__nav-link:hover,
.header__nav-link.active {
  color: var(--primary);
}

.header__nav-link i {
  font-size: 1rem;
  transition: transform 0.2s;
}

.header__nav-item:hover .header__nav-link i {
  transform: rotate(180deg);
}

/* Mega Menu Dropdown */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-radius: 0 0 0.8rem 0.8rem;
  padding: 3rem;
  min-width: 70rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 200;
}

.header__nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.mega-menu__category {
  text-align: center;
}

.mega-menu__category-img {
  width: 100%;
  height: 12rem;
  border-radius: 0.8rem;
  margin-bottom: 1rem;
  background: var(--light-gray);
  overflow: hidden;
}

.mega-menu__category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.8rem;
  transition: transform 0.3s ease;
}

.mega-menu__category:hover .mega-menu__category-img img {
  transform: scale(1.05);
}

.mega-menu__category-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
}

.mega-menu__category:hover .mega-menu__category-name {
  color: var(--primary);
}

/* Search Bar */
.header__search {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__search-form {
  display: flex;
  align-items: center;
  border: 2px solid var(--border-gray);
  border-radius: 0.4rem;
  overflow: hidden;
  transition: border-color 0.2s;
}

.header__search-form:focus-within {
  border-color: var(--primary);
}

.header__search-input {
  padding: 0.9rem 1.4rem;
  font-size: 1.4rem;
  border: none;
  width: 22rem;
  background: transparent;
}

.header__search-input::placeholder {
  color: #aaa;
}

.header__search-btn {
  background: var(--primary);
  color: var(--white);
  padding: 0.9rem 1.4rem;
  border: none;
  font-size: 1.6rem;
  transition: background 0.2s;
}

.header__search-btn:hover {
  background: var(--primary-dark);
}

/* Mobile Menu Toggle */
.header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.4rem;
  color: var(--dark);
  padding: 0.5rem;
  cursor: pointer;
}

/* ============================================
   HERO / BANNER SECTION
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
  color: var(--white);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
}

.hero__title {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.hero__title span {
  color: var(--accent);
}

.hero__subtitle {
  font-size: 1.8rem;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FEATURES BAR
   ============================================ */
.features-bar {
  background: var(--light-gray);
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-gray);
}

.features-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.features-bar__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
}

.features-bar__icon {
  font-size: 3rem;
  color: var(--primary);
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 58, 95, 0.08);
  border-radius: 50%;
}

.features-bar__text h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.features-bar__text p {
  font-size: 1.2rem;
  color: var(--text-gray);
  line-height: 1.4;
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-heading {
  text-align: center;
  padding: 4rem 0 3rem;
}

.section-heading__title {
  font-size: 3rem;
  font-weight: 300;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.section-heading__title::before,
.section-heading__title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 6rem;
  height: 2px;
  background: var(--primary);
}

.section-heading__title::before {
  right: calc(100% + 2rem);
}

.section-heading__title::after {
  left: calc(100% + 2rem);
}

.section-heading__subtitle {
  font-size: 1.5rem;
  color: var(--text-gray);
  margin-top: 1rem;
}

/* ============================================
   PRODUCT CATEGORY GRID
   ============================================ */
.categories-section {
  padding: 2rem 0 4rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.category-card {
  position: relative;
  border-radius: 0.8rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--light-gray);
  aspect-ratio: 1 / 0.85;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover .category-card__image {
  transform: scale(1.05);
}

.category-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: var(--white);
}

.category-card__name {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.category-card__count {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-top: 0.3rem;
}

/* Category card image */
.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover .category-card__image {
  transform: scale(1.05);
}

/* ============================================
   PROMOTIONAL BANNER STRIPS
   ============================================ */
.promo-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  margin: 2rem 0;
}

.promo-banner--dark {
  background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
}

.promo-banner--green {
  background: linear-gradient(135deg, var(--green) 0%, #1abc9c 100%);
}

.promo-banner__title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.promo-banner__text {
  font-size: 1.6rem;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.promo-banner__btn {
  display: inline-block;
}

/* ============================================
   WHY CHOOSE US / INFO SECTIONS
   ============================================ */
.info-section {
  padding: 5rem 0;
}

.info-section--gray {
  background: var(--light-gray);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.info-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.info-card__icon {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 2rem;
  display: inline-block;
  width: 8rem;
  height: 8rem;
  line-height: 8rem;
  background: rgba(31, 58, 95, 0.08);
  border-radius: 50%;
}

.info-card__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.info-card__text {
  font-size: 1.4rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ============================================
   SECTOR / INDUSTRY GRID
   ============================================ */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.sector-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/10;
  background: var(--light-gray);
}

.sector-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(0,0,0,0.7));
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
  transition: background 0.3s;
}

.sector-card:hover .sector-card__overlay {
  background: linear-gradient(transparent 10%, rgba(31, 58, 95, 0.8));
}

.sector-card__name {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.sector-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.4s ease;
}

.sector-card:hover .sector-card__image {
  transform: scale(1.08);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 5rem 0;
  background: var(--light-gray);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial-card__stars {
  color: var(--accent);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.testimonial-card__text {
  font-size: 1.4rem;
  color: var(--text-dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-card__author {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
}

.testimonial-card__role {
  font-size: 1.2rem;
  color: var(--text-gray);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 6rem 0;
  text-align: center;
}

.cta-section__title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-section__text {
  font-size: 1.6rem;
  opacity: 0.9;
  max-width: 60rem;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark-bg);
  color: var(--white);
  padding: 5rem 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand {
  padding-right: 2rem;
}

.footer__logo {
  margin-bottom: 2rem;
}

.footer__logo-img {
  height: 4.5rem;
  width: auto;
}

.footer__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer__logo-name {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
}

.footer__logo-tagline {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--white);
  opacity: 0.7;
}

.footer__description {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.footer__social {
  display: flex;
  gap: 1.2rem;
}

.footer__social-link {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  transition: all 0.3s;
}

.footer__social-link:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer__column h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__column ul li {
  margin-bottom: 1rem;
}

.footer__column ul li a {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}

.footer__column ul li a:hover {
  color: var(--white);
  padding-left: 0.5rem;
}

.footer__column ul li a i {
  margin-right: 0.8rem;
  width: 1.4rem;
  text-align: center;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer__contact-item i {
  font-size: 1.4rem;
  color: var(--primary);
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.footer__contact-item span {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.footer__contact-item a {
  color: rgba(255,255,255,0.7);
}

.footer__contact-item a:hover {
  color: var(--white);
}

.footer__bottom {
  padding: 2.5rem 0;
  text-align: center;
}

.footer__copyright {
  font-size: 1.2rem;
  color: var(--text-gray);
}

/* ============================================
   PAGE HEADER (for inner pages)
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.page-header__title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-header__breadcrumb {
  font-size: 1.3rem;
  opacity: 0.7;
}

.page-header__breadcrumb a {
  color: var(--white);
}

.page-header__breadcrumb a:hover {
  opacity: 1;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2rem;
}

.about-text p {
  font-size: 1.5rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-image {
  background: var(--light-gray);
  border-radius: 1rem;
  height: 40rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: var(--primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  padding: 5rem 0;
}

.stat-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stat-card__number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-card__label {
  font-size: 1.4rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-content {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-form h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1.2rem 1.5rem;
  font-size: 1.4rem;
  border: 2px solid var(--border-gray);
  border-radius: 0.4rem;
  transition: border-color 0.2s;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 15rem;
}

.contact-info h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2rem;
}

.contact-info__card {
  background: var(--light-gray);
  border-radius: 1rem;
  padding: 3rem;
  margin-bottom: 2rem;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-info__item:last-child {
  margin-bottom: 0;
}

.contact-info__item i {
  font-size: 2rem;
  color: var(--primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-info__item h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.contact-info__item p {
  font-size: 1.4rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.contact-info__item a {
  color: var(--primary);
}

.contact-info__item a:hover {
  color: var(--primary-dark);
}

.contact-info__hours {
  background: var(--light-gray);
  border-radius: 1rem;
  padding: 3rem;
}

.contact-info__hours h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.contact-info__hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-gray);
  font-size: 1.4rem;
}

.contact-info__hours-row:last-child {
  border-bottom: none;
}

.contact-info__hours-day {
  font-weight: 600;
  color: var(--dark);
}

.contact-info__hours-time {
  color: var(--text-gray);
}

/* ============================================
   PRODUCTS / BROWSE PAGE
   ============================================ */
.products-page {
  padding: 4rem 0;
}

.products-sidebar {
  width: 25rem;
  flex-shrink: 0;
}

.products-main {
  flex: 1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 0.8rem;
  overflow: hidden;
  transition: all 0.3s;
}

.product-card:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.product-card__image {
  height: 20rem;
  background: var(--light-gray);
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__pack {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

.product-card__body {
  padding: 1.5rem;
}

.product-card__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.product-card__price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
}

.product-card__unit {
  font-size: 1.2rem;
  color: var(--text-gray);
}

.product-card__btn {
  width: 100%;
  margin-top: 1rem;
}

/* ============================================
   OFFERS PAGE
   ============================================ */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  padding: 4rem 0;
}

.offer-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  transition: transform 0.3s, box-shadow 0.3s;
}

.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.offer-card__image {
  width: 20rem;
  flex-shrink: 0;
  background: var(--light-gray);
  overflow: hidden;
}

.offer-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.offer-card:hover .offer-card__image img {
  transform: scale(1.05);
}

.offer-card__body {
  padding: 2.5rem;
  flex: 1;
}

.offer-card__badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 0.3rem 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0.3rem;
  margin-bottom: 1rem;
}

.offer-card__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.offer-card__text {
  font-size: 1.3rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.offer-card__price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
}

.offer-card__price-old {
  font-size: 1.4rem;
  color: var(--text-gray);
  text-decoration: line-through;
  margin-left: 1rem;
  font-weight: 400;
}

/* ============================================
   DELIVERY PAGE
   ============================================ */
.delivery-content {
  padding: 5rem 0;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

.delivery-card {
  padding: 3rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-top: 4px solid var(--primary);
}

.delivery-card__icon {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.delivery-card h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.delivery-card p {
  font-size: 1.4rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.delivery-card ul {
  margin-top: 1rem;
}

.delivery-card ul li {
  font-size: 1.4rem;
  color: var(--text-gray);
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

.delivery-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ============================================
   DELIVERY HERO (National & International)
   ============================================ */
.delivery-hero {
  background: url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?w=1600&h=800&fit=crop&auto=format&q=80') center/cover no-repeat;
  position: relative;
}

.delivery-hero__overlay {
  background: rgba(26, 26, 26, 0.88);
  padding: 6rem 0;
}

.delivery-hero__content {
  max-width: 100rem;
  margin: 0 auto;
}

.delivery-hero__block {
  text-align: center;
  margin-bottom: 4rem;
}

.delivery-hero__icon {
  font-size: 4rem;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
}

.delivery-hero__title {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.delivery-hero__text {
  font-size: 1.6rem;
  color: rgba(255,255,255,0.75);
  max-width: 65rem;
  margin: 0 auto;
  line-height: 1.7;
}

.delivery-hero__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.delivery-hero__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 3rem 2.5rem;
  transition: transform 0.3s, background 0.3s;
}

.delivery-hero__card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
}

.delivery-hero__card i {
  font-size: 2.8rem;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
  display: block;
}

.delivery-hero__card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.delivery-hero__card p {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .delivery-hero__grid {
    grid-template-columns: 1fr;
  }
  .delivery-hero__title {
    font-size: 2.4rem;
  }
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
  height: 40rem;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   REGISTER PAGE
   ============================================ */
.register-content {
  padding: 5rem 0;
  max-width: 60rem;
  margin: 0 auto;
}

.register-form {
  background: var(--white);
  padding: 4rem;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.register-form h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.register-form p {
  font-size: 1.4rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.form-check input[type="checkbox"] {
  margin-top: 0.3rem;
  width: 1.8rem;
  height: 1.8rem;
  flex-shrink: 0;
}

.form-check label {
  font-size: 1.3rem;
  color: var(--text-gray);
  line-height: 1.5;
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark-bg);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0, .52, 0, 1);
  padding: 2rem;
  overflow-y: auto;
}

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

.mobile-menu__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.4rem;
  cursor: pointer;
}

.mobile-menu__nav {
  padding-top: 6rem;
}

.mobile-menu__link {
  display: block;
  padding: 1.5rem 0;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu__link:hover {
  color: var(--primary-light);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
  .header__nav {
    display: none;
  }

  .header__mobile-toggle {
    display: block;
  }

  .header__search-input {
    width: 16rem;
  }

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

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mega-menu {
    display: none;
  }

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

  .hero__title {
    font-size: 2.8rem;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    flex-direction: column;
  }

  .offer-card__image {
    width: 100%;
    height: 22rem;
  }

  .top-bar__left {
    display: none;
  }
}

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

  .info-grid {
    grid-template-columns: 1fr;
  }

  .sector-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 4rem 0;
  }

  .hero__title {
    font-size: 2.4rem;
  }

  .hero__subtitle {
    font-size: 1.5rem;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .delivery-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .features-bar__grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .promo-banner__title {
    font-size: 2.2rem;
  }

  .section-heading__title {
    font-size: 2.4rem;
  }

  .section-heading__title::before,
  .section-heading__title::after {
    display: none;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .header .container {
    padding: 0 1.5rem;
  }

  .header__search {
    display: none;
  }

  .header__logo-name {
    font-size: 1.8rem;
  }

  .category-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .top-bar__right {
    gap: 1rem;
    font-size: 1.1rem;
  }

  .btn-lg {
    padding: 1.2rem 2.4rem;
    font-size: 1.4rem;
  }
}

/* ============================================================
   Nipton Wholesale — e-commerce components (added)
   (root font-size 62.5%, so 1rem = 10px)
   ============================================================ */

/* --- Alerts (page-level flash messages) --- */
.alert { max-width: var(--max-width); margin: 1.5rem auto; padding: 1.2rem 1.6rem;
  border-radius: 6px; font-size: 1.4rem; border: 1px solid transparent; }
.alert--success { background: #e8f6ee; color: #1c6b3f; border-color: #bfe3cd; }
.alert--error   { background: #fdecea; color: #9b2c1f; border-color: #f5c6c0; }
.alert--info    { background: #eaf1f8; color: #1F3A5F; border-color: #c7d8ec; }

/* --- Toast (cart confirmation) --- */
.toast { position: fixed; right: 2rem; bottom: 2rem; z-index: 1200;
  background: var(--secondary); color: #fff; padding: 1.3rem 1.8rem; border-radius: 8px;
  font-size: 1.4rem; box-shadow: 0 8px 24px rgba(0,0,0,.22); display: flex; align-items: center;
  gap: 1rem; transform: translateY(2rem); opacity: 0; pointer-events: none;
  transition: transform .3s ease, opacity .3s ease; max-width: 32rem; }
.toast--show { transform: translateY(0); opacity: 1; }
.toast i { color: var(--accent); font-size: 1.8rem; }

/* --- Product card extras --- */
.product-card { position: relative; }
.product-card__discount { position: absolute; top: 1rem; right: 1rem; z-index: 2;
  background: var(--accent); color: #fff; font-weight: 800; font-size: 1.2rem;
  padding: .4rem .8rem; border-radius: 999px; box-shadow: 0 2px 6px rgba(0,0,0,.18); }
.product-card__price-old { color: var(--text-gray); text-decoration: line-through;
  font-size: 1.4rem; margin-left: .6rem; font-weight: 600; }
.product-card__stock { font-size: 1.2rem; font-weight: 700; margin-bottom: .8rem; }
.product-card__stock--in { color: var(--green); }
.product-card__stock--out { color: #c0392b; }
.product-card__stock--req { color: var(--accent-dark); }
.product-card__btn[disabled] { opacity: .5; cursor: not-allowed; }

/* --- Quantity stepper --- */
.qty { display: inline-flex; align-items: center; border: 1px solid var(--border-gray);
  border-radius: 6px; overflow: hidden; }
.qty__btn { width: 3.4rem; height: 3.6rem; background: var(--light-gray); font-size: 1.8rem;
  color: var(--secondary); line-height: 1; }
.qty__btn:hover { background: #e9e9e9; }
.qty__input { width: 4.4rem; height: 3.6rem; text-align: center; border: none;
  border-left: 1px solid var(--border-gray); border-right: 1px solid var(--border-gray);
  font-size: 1.5rem; font-weight: 700; -moz-appearance: textfield; }
.qty__input::-webkit-outer-spin-button, .qty__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* --- Generic panels & tables --- */
.section-narrow { max-width: 100rem; margin: 0 auto; padding: 4rem 2rem; }
.panel { background: #fff; border: 1px solid var(--border-gray); border-radius: 10px;
  padding: 2.4rem; margin-bottom: 2.4rem; }
.panel h2, .panel h3 { color: var(--secondary); margin-bottom: 1.6rem; }
.data-table { width: 100%; border-collapse: collapse; font-size: 1.4rem; }
.data-table th, .data-table td { text-align: left; padding: 1.1rem 1.2rem;
  border-bottom: 1px solid var(--border-gray); vertical-align: middle; }
.data-table th { background: var(--light-gray); color: var(--secondary); font-weight: 700;
  font-size: 1.3rem; text-transform: uppercase; letter-spacing: .04em; }
.data-table tbody tr:hover { background: #fafbfc; }
.data-table .num { text-align: right; white-space: nowrap; }

/* --- Status badges --- */
.status-badge { display: inline-block; padding: .35rem .9rem; border-radius: 999px;
  font-size: 1.15rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }
.status-pending_review { background: #fff4d6; color: #9a6b00; }
.status-quoted, .status-awaiting_payment { background: #e7eefc; color: #28427d; }
.status-confirmed, .status-processing { background: #e3f0ff; color: #1F3A5F; }
.status-dispatched { background: #e8f6ee; color: #1c6b3f; }
.status-completed { background: #def3e6; color: #218049; }
.status-cancelled { background: #f1f1f1; color: #777; }

/* --- Cart --- */
.cart-grid { display: grid; grid-template-columns: 1fr 34rem; gap: 3rem; align-items: start; }
.cart-line { display: grid; grid-template-columns: 8rem 1fr auto; gap: 1.6rem;
  align-items: center; padding: 1.6rem 0; border-bottom: 1px solid var(--border-gray); }
.cart-line__img { width: 8rem; height: 8rem; object-fit: cover; border-radius: 8px;
  border: 1px solid var(--border-gray); }
.cart-line__name { font-weight: 700; color: var(--secondary); }
.cart-line__pack { font-size: 1.3rem; color: var(--text-gray); }
.cart-line__right { text-align: right; display: flex; flex-direction: column; gap: .8rem; align-items: flex-end; }
.cart-line__remove { color: #c0392b; font-size: 1.3rem; background: none; }
.summary { background: var(--light-gray); border-radius: 10px; padding: 2.4rem; position: sticky; top: 2rem; }
.summary__row { display: flex; justify-content: space-between; margin-bottom: 1.2rem; font-size: 1.5rem; }
.summary__row--total { border-top: 2px solid var(--border-gray); padding-top: 1.4rem; margin-top: 1.4rem;
  font-size: 1.9rem; font-weight: 800; color: var(--secondary); }
.summary__note { font-size: 1.25rem; color: var(--text-gray); margin-top: 1.2rem; }

/* --- Checkout --- */
.checkout-grid { display: grid; grid-template-columns: 1fr 36rem; gap: 3rem; align-items: start; }
.order-mini { font-size: 1.4rem; }
.order-mini__line { display: flex; justify-content: space-between; padding: .8rem 0;
  border-bottom: 1px dashed var(--border-gray); }

/* --- Auth & forms --- */
.auth-card { max-width: 52rem; margin: 4rem auto; }
.form-hint { font-size: 1.25rem; color: var(--text-gray); margin-top: .5rem; }
.form-actions { margin-top: 2rem; display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.btn-block { width: 100%; justify-content: center; }
.btn-danger { background: #c0392b; color: #fff; }
.btn-danger:hover { background: #a83224; }
.btn-success { background: var(--green); color: #fff; }
.btn-success:hover { background: var(--green-dark); }
.text-muted { color: var(--text-gray); }
.empty-state { text-align: center; padding: 6rem 2rem; color: var(--text-gray); }
.empty-state i { font-size: 4.5rem; color: var(--border-gray); margin-bottom: 1.6rem; }
.field-error { color: #c0392b; font-size: 1.25rem; margin-top: .4rem; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* --- Filter / sort bar --- */
.toolbar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: 1.2rem; margin-bottom: 2.4rem; }
.toolbar select { padding: .9rem 1.2rem; border: 1px solid var(--border-gray); border-radius: 6px;
  font-size: 1.4rem; background: #fff; }

/* --- Admin shell --- */
.admin-body { background: #f0f2f5; }
.admin-shell { display: grid; grid-template-columns: 24rem 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--secondary); color: #fff; padding: 2.4rem 1.6rem; }
.admin-sidebar__brand { font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: 2.4rem;
  display: flex; align-items: center; gap: .8rem; }
.admin-sidebar__brand span { color: var(--accent); }
.admin-nav a { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.2rem;
  color: rgba(255,255,255,.8); border-radius: 6px; font-size: 1.45rem; margin-bottom: .4rem; }
.admin-nav a:hover, .admin-nav a.active { background: rgba(255,255,255,.1); color: #fff; }
.admin-main { padding: 3rem; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.8rem; }
.admin-topbar h1 { font-size: 2.4rem; color: var(--secondary); }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr)); gap: 1.8rem; margin-bottom: 2.8rem; }
.stat-card { background: #fff; border: 1px solid var(--border-gray); border-radius: 10px; padding: 2rem; }
.stat-card__num { font-size: 3.2rem; font-weight: 800; color: var(--primary); }
.stat-card__label { font-size: 1.3rem; color: var(--text-gray); text-transform: uppercase; letter-spacing: .04em; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .cart-grid, .checkout-grid { grid-template-columns: 1fr; }
  .summary { position: static; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; }
}
@media (max-width: 560px) {
  .cart-line { grid-template-columns: 6rem 1fr; }
  .cart-line__right { grid-column: 1 / -1; align-items: stretch; text-align: left;
    flex-direction: row; justify-content: space-between; }
  .data-table { font-size: 1.3rem; }
  .data-table th, .data-table td { padding: .8rem; }
}

/* --- Sector icon cards (homepage "Who We Supply") --- */
.sector-card--icon { position: relative; min-height: 17rem; border-radius: 0.8rem;
  overflow: hidden; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); }
.sector-card__overlay--static { position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem; text-align: center; padding: 1.5rem; }
.sector-card__icon { font-size: 4rem; color: var(--accent); }
.sector-card--icon .sector-card__name { color: #fff; font-size: 1.7rem; font-weight: 700; }
.sector-card--icon:hover { transform: translateY(-3px); transition: transform .25s ease; }

/* --- Contact details (dark text on white panel) --- */
.contact-line { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.4rem;
  color: var(--text-dark); font-size: 1.45rem; line-height: 1.5; }
.contact-line i { color: var(--primary); font-size: 1.6rem; margin-top: .2rem; width: 2rem; text-align: center; flex-shrink: 0; }
.contact-line a { color: var(--text-dark); }
.contact-line a:hover { color: var(--primary); }
.contact-line__label { font-weight: 700; color: var(--secondary); }
