* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #12396f;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 190, 38, 0.12) 0 7%, transparent 18%),
    radial-gradient(circle at 90% 18%, rgba(68, 162, 255, 0.10) 0 12%, transparent 24%),
    linear-gradient(rgba(226, 247, 255, 0.38), rgba(226, 247, 255, 0.38)),
    url("images/clouds-bg.png");
  background-size: auto, auto, cover, cover;
  background-attachment: fixed;
  background-position: center;
  line-height: 1.5;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse at 12% 34%, rgba(255, 255, 255, 0.32) 0 8%, transparent 18%),
    radial-gradient(ellipse at 88% 42%, rgba(255, 255, 255, 0.28) 0 8%, transparent 18%),
    radial-gradient(ellipse at 48% 96%, rgba(255, 255, 255, 0.24) 0 12%, transparent 24%);
  opacity: 0.45;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 38%, rgba(255, 183, 27, 0.32) 0 7%, transparent 21%),
    radial-gradient(circle at 4% 6%, rgba(255, 255, 255, 0.94) 0 14%, transparent 32%),
    linear-gradient(rgba(220, 244, 255, 0.62), rgba(220, 244, 255, 0.62)),
    url("images/clouds-header.jpg");
  background-size: auto, auto, cover, cover;
  background-position: center;
  border-bottom: 1px solid rgba(16, 76, 158, 0.13);
  box-shadow:
    0 10px 26px rgba(14, 80, 150, 0.12),
    inset 0 -1px 0 rgba(255, 255, 255, 0.78);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 18% 42%, rgba(255, 255, 255, 0.68) 0 10%, transparent 28%),
    radial-gradient(ellipse at 88% 38%, rgba(255, 255, 255, 0.38) 0 9%, transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.30), rgba(255, 255, 255, 0.08));
  opacity: 0.92;
}

.site-header::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -70px;
  width: 320px;
  height: 170px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  filter: blur(5px);
  pointer-events: none;
}

.header-inner {
  position: relative;
  z-index: 2;
  min-height: 128px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 16px 0;
}

.logo-link {
  width: 455px;
  height: 112px;
  max-width: 44vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
  border-radius: 26px;
  background:
    radial-gradient(circle at 18% 45%, rgba(255, 193, 48, 0.26), transparent 34%),
    rgba(255, 255, 255, 0.20);
}

.site-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.34);
  filter: drop-shadow(0 8px 12px rgba(15, 75, 166, 0.14));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow:
    0 10px 22px rgba(15, 75, 166, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
}

.main-nav a {
  text-decoration: none;
  color: #0b469c;
  font-weight: 900;
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.main-nav a:hover {
  background: #ffffff;
  color: #ff8a00;
  box-shadow: 0 8px 18px rgba(15, 75, 166, 0.1);
}

/* HERO */

.hero-banner {
  padding: 22px 0 14px;
}

.hero-banner-image {
  width: 100%;
  display: block;
  border-radius: 30px;
  box-shadow:
    0 18px 40px rgba(15, 75, 166, 0.18),
    0 4px 0 rgba(255, 255, 255, 0.75);
}

/* PRODUCTS HERO */

.products-hero {
  padding: 28px 0 18px;
}

.products-hero-box {
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(230, 247, 255, 0.92));
  border: 5px solid rgba(255, 255, 255, 0.9);
  border-radius: 34px;
  padding: 34px 28px 28px;
  box-shadow: 0 18px 42px rgba(18, 57, 111, 0.14);
}

.products-hero-box h1 {
  color: #0b469c;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 0.95;
  font-weight: 900;
  margin-bottom: 12px;
}

.products-hero-box p {
  max-width: 760px;
  margin: 0 auto;
  color: #375d8d;
  font-size: 1.08rem;
}

.price-note {
  margin-top: 20px !important;
  padding: 12px 16px;
  max-width: 820px !important;
  border-radius: 999px;
  background: rgba(255, 240, 207, 0.84);
  border: 2px solid rgba(255, 176, 43, 0.38);
  color: #7b5516 !important;
  font-size: 0.94rem !important;
  font-weight: 800;
}

.filter-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.filter-pills a {
  text-decoration: none;
  color: #0b469c;
  background: #ffffff;
  border: 2px solid rgba(15, 75, 166, 0.12);
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(15, 75, 166, 0.08);
  transition: 0.2s ease;
}

.filter-pills a:hover {
  color: #ffffff;
  background: #0b469c;
  transform: translateY(-2px);
}

/* SECTION HEADINGS */

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 22px;
}

.section-heading p,
.eyebrow {
  color: #ff8a00;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.section-heading h1,
.section-heading h2 {
  color: #0b469c;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  font-weight: 900;
}

/* CATEGORY SECTION */

.category-section {
  padding: 30px 0 24px;
}

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

.category-card {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(18, 57, 111, 0.12);
  border: 5px solid rgba(255, 255, 255, 0.8);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 38px rgba(18, 57, 111, 0.18);
}

.category-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* PRODUCT SECTIONS */

.best-sellers,
.products-page-section {
  padding: 26px 0 34px;
}

.compact-section {
  padding: 20px 0 24px;
}

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

.product-card {
  background: rgba(255, 255, 255, 0.84);
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(18, 57, 111, 0.12);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  background: #ffffff;
}

.product-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-content h3 {
  color: #0b469c;
  font-size: 1.22rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.product-content p {
  color: #3c5f8e;
  font-size: 0.98rem;
  margin-bottom: 18px;
}

/* CATALOGUE PAGE */

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.catalogue-card {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(18, 57, 111, 0.12);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.catalogue-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(18, 57, 111, 0.16);
}

.catalogue-card img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  background: #ffffff;
}

.catalogue-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  color: #ffffff;
  background: #0b469c;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(15, 75, 166, 0.16);
}

.catalogue-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.catalogue-content h3 {
  color: #0b469c;
  font-size: 1.13rem;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 8px;
}

.catalogue-content p {
  color: #3c5f8e;
  font-size: 0.94rem;
  margin-bottom: 12px;
}

.catalogue-content ul {
  margin: 0 0 16px 18px;
  color: #375d8d;
  font-size: 0.9rem;
}

.catalogue-content li {
  margin-bottom: 4px;
}

.product-bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-bottom span {
  color: #ff8a00;
  font-size: 1.05rem;
  font-weight: 900;
}

.small-btn,
.main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(to bottom, #ffba25, #ff9200);
  border: 2px solid #ed8500;
  border-radius: 999px;
  font-weight: 900;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.45),
    0 8px 16px rgba(238, 132, 0, 0.28);
  transition: 0.2s ease;
}

.small-btn {
  padding: 8px 12px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.main-btn {
  padding: 14px 24px;
  font-size: 1rem;
}

.small-btn:hover,
.main-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.45),
    0 12px 20px rgba(238, 132, 0, 0.34);
}

/* CUSTOM SECTION */

.custom-section {
  padding: 30px 0;
}

.custom-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(230, 247, 255, 0.92));
  border: 5px solid rgba(255, 255, 255, 0.9);
  border-radius: 32px;
  padding: 28px;
  box-shadow: 0 18px 42px rgba(18, 57, 111, 0.14);
}

.custom-copy h2 {
  color: #0b469c;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  font-weight: 900;
  margin-bottom: 14px;
}

.custom-copy p {
  color: #375d8d;
  font-size: 1.05rem;
  margin-bottom: 22px;
}

.custom-image-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  box-shadow: 0 12px 26px rgba(18, 57, 111, 0.12);
}

/* TRUST SECTION */

.trust-section {
  padding: 24px 0 34px;
}

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

.trust-card {
  background: rgba(255, 255, 255, 0.84);
  border: 4px solid rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 12px 26px rgba(18, 57, 111, 0.1);
}

.trust-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff0cf;
  font-size: 1.6rem;
}

.trust-card h3 {
  color: #0b469c;
  font-size: 1.03rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.trust-card p {
  color: #446996;
  font-size: 0.93rem;
}

/* ABOUT */

.about-section {
  padding: 10px 0 44px;
}

.about-box {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  border: 4px solid rgba(255, 255, 255, 0.86);
  border-radius: 28px;
  padding: 30px 26px;
  box-shadow: 0 14px 32px rgba(18, 57, 111, 0.1);
}

.about-box h2 {
  color: #0b469c;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 12px;
}

.about-box p {
  color: #375d8d;
  font-size: 1.08rem;
}

/* FOOTER */

.footer {
  background: rgba(219, 240, 255, 0.94);
  border-top: 1px solid rgba(16, 76, 158, 0.14);
}

.footer-inner {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
  color: #355b8d;
  font-weight: 800;
}

.footer-logo {
  width: 260px;
  max-width: 90%;
  height: auto;
  display: block;
  border-radius: 18px;
  object-fit: contain;
}

/* CUSTOM PECS BUILDER */

.pecs-builder-section {
  padding: 24px 0 44px;
}

.builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.builder-main,
.summary-card {
  background: rgba(255, 255, 255, 0.88);
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  box-shadow: 0 14px 30px rgba(18, 57, 111, 0.12);
}

.builder-main {
  padding: 24px;
}

.builder-heading {
  margin-bottom: 18px;
}

.builder-options-panel {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.builder-options-panel label,
.builder-custom-box label {
  color: #0b469c;
  font-weight: 900;
  font-size: 1rem;
}

.builder-options-panel select,
.builder-custom-box textarea {
  width: 100%;
  border: 3px solid rgba(15, 75, 166, 0.16);
  border-radius: 18px;
  background: #ffffff;
  color: #12396f;
  font: inherit;
  font-weight: 700;
  padding: 13px 14px;
  outline: none;
}

.builder-options-panel select:focus,
.builder-custom-box textarea:focus {
  border-color: rgba(255, 146, 0, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 186, 37, 0.16);
}

.builder-category {
  margin-top: 24px;
}

.builder-category h3 {
  color: #0b469c;
  font-size: 1.45rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.builder-card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.builder-card {
  cursor: pointer;
  user-select: none;
  position: relative;
  min-height: 112px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff, #edf9ff);
  border: 3px solid rgba(15, 75, 166, 0.12);
  padding: 12px 8px;
  text-align: center;
  color: #0b469c;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(15, 75, 166, 0.08);
  transition: 0.18s ease;
}

.builder-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.builder-card span {
  display: block;
}

.builder-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 146, 0, 0.5);
}

.builder-card:has(input:checked) {
  background: linear-gradient(135deg, #fff0cf, #ffffff);
  border-color: #ff9200;
  box-shadow: 0 12px 24px rgba(238, 132, 0, 0.18);
}

.builder-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 8px;
}

.builder-custom-box {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.builder-summary {
  position: sticky;
  top: 154px;
}

.summary-card {
  padding: 22px;
}

.summary-card h2 {
  color: #0b469c;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 14px;
}

.summary-count {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #ff8a00;
  font-weight: 900;
  margin-bottom: 16px;
}

.summary-count span {
  font-size: 3rem;
  line-height: 1;
}

.summary-count small {
  color: #375d8d;
  font-size: 1rem;
}

.selected-list {
  list-style: none;
  display: grid;
  gap: 7px;
  max-height: 280px;
  overflow: auto;
  margin-bottom: 18px;
  padding-right: 4px;
}

.selected-list li {
  background: #eef8ff;
  border: 2px solid rgba(15, 75, 166, 0.1);
  border-radius: 999px;
  padding: 8px 12px;
  color: #12396f;
  font-weight: 800;
  font-size: 0.94rem;
}

.summary-actions {
  display: grid;
  gap: 10px;
}

.clear-btn {
  border: 2px solid rgba(15, 75, 166, 0.18);
  background: #ffffff;
  color: #0b469c;
  font-weight: 900;
  border-radius: 999px;
  padding: 12px 16px;
  cursor: pointer;
  font: inherit;
}

.clear-btn:hover {
  background: #eef8ff;
}

.summary-note {
  margin-top: 14px;
  color: #446996;
  font-size: 0.92rem;
  font-weight: 700;
}

/* RESPONSIVE */

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

@media (max-width: 1100px) {
  .header-inner {
    flex-direction: column;
    min-height: auto;
    padding: 16px 0 14px;
    gap: 12px;
  }

  .logo-link {
    width: 440px;
    max-width: 92vw;
    height: 108px;
  }

  .site-logo {
    max-width: none;
    width: 100%;
  }

  .main-nav {
    justify-content: center;
    border-radius: 24px;
  }

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

  .category-card img {
    height: auto;
  }

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

  .custom-panel {
    grid-template-columns: 1fr;
  }

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

  .builder-summary {
    position: static;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100%, calc(100% - 24px));
  }

  .site-header {
    position: static;
  }

  .header-inner {
    min-height: auto;
    padding: 10px 0 12px;
  }

  .logo-link {
    width: 340px;
    max-width: 96vw;
    height: 88px;
    border-radius: 20px;
  }

  .site-logo {
    transform: scale(1.34);
  }

  .main-nav {
    gap: 6px;
    padding: 8px;
  }

  .main-nav a {
    font-size: 0.86rem;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.55);
  }

  .hero-banner {
    padding: 14px 0 10px;
  }

  .hero-banner-image {
    border-radius: 18px;
  }

  .products-hero {
    padding: 16px 0 14px;
  }

  .products-hero-box {
    padding: 26px 18px;
    border-radius: 24px;
  }

  .products-hero-box h1 {
    font-size: 2.3rem;
  }

  .price-note {
    border-radius: 18px;
    font-size: 0.88rem !important;
  }

  .filter-pills {
    gap: 8px;
  }

  .filter-pills a {
    font-size: 0.86rem;
    padding: 8px 10px;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .section-heading h1,
  .section-heading h2 {
    font-size: 2rem;
  }

  .catalogue-grid,
  .product-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-card img,
  .product-card img {
    height: auto;
  }

  .custom-panel {
    padding: 18px;
    border-radius: 24px;
  }

  .custom-image-wrap img {
    height: auto;
  }

  .product-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .small-btn {
    width: 100%;
  }

  .builder-main,
  .summary-card {
    border-radius: 22px;
  }

  .builder-main {
    padding: 16px;
  }

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

  .builder-card {
    min-height: 104px;
  }
}
/* ================================
   FINAL CLOUD FOOTER FIX
================================ */

footer,
.footer,
.site-footer {
  width: 100%;
  min-height: 230px;
  padding: 70px 20px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0.20)),
    url("images/clouds-section.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .footer-inner,
.footer .footer-inner,
.site-footer .footer-inner,
footer > div,
.footer > div,
.site-footer > div {
  width: min(900px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  text-align: center;
}

footer img,
.footer img,
.site-footer img {
  width: 170px;
  max-width: 45%;
  height: auto;
  object-fit: contain;
}

footer p,
.footer p,
.site-footer p {
  margin: 0;
  color: #22549a;
  font-weight: 900;
  font-size: 1.05rem;
}

@media (max-width: 700px) {
  footer .footer-inner,
  .footer .footer-inner,
  .site-footer .footer-inner,
  footer > div,
  .footer > div,
  .site-footer > div {
    flex-direction: column;
    gap: 18px;
  }

  footer img,
  .footer img,
  .site-footer img {
    width: 150px;
    max-width: 70%;
  }
}

/* ================================
   MATCH CUSTOM PECS HEADER LOGO
   Use this on all normal site pages
================================ */

.logo-link {
  width: 455px !important;
  height: 112px !important;
  max-width: 44vw !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  text-decoration: none !important;
  border-radius: 26px !important;
  background: transparent !important;
}

.logo-link img,
.logo-link .site-logo,
.site-logo {
  width: 455px !important;
  height: 112px !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  transform: scale(3.2) !important;
  transform-origin: center !important;
}

@media (max-width: 650px) {
  .logo-link {
    width: 300px !important;
    height: 82px !important;
    max-width: 90vw !important;
  }

  .logo-link img,
  .logo-link .site-logo,
  .site-logo {
    width: 300px !important;
    height: 82px !important;
    transform: scale(3.2) !important;
  }
}