@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;700&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: #1d1f22;
  font-family: "Rubik", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

a {
  color: #111;
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  text-decoration: underline;
}

p,
ul,
ol,
h1,
h2,
h3 {
  margin: 0 0 18px 0;
}

p {
  font-size: 16px;
  text-align: left;
  font-weight: 300;
}

h1,
h2,
h3 {
  font-family: "Rubik", Arial, Helvetica, sans-serif;
  color: #111;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.2rem;
  font-weight: 500;
}

ul {
  padding-left: 22px;
  text-align: left;
}

li {
  margin: 0 0 10px 0;
  color: #111;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.container.narrow {
  width: min(1000px, 92%);
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 50;
}

.topbarlogo {
  width: 100%;
  background: #ffffff;
}

.topbarlogosleeve {
  width: 100%;
  margin: 0 auto;
}

.mobshow {
  display: none;
}

.mobhide {
  display: block;
  width: 100%;
}

.navbar {
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.navblock2022 {
  width: 100%;
  background: #ffffff;
}

/* Let your existing menu script still style this if needed */
#cssmenu {
  max-width: 1200px;
  margin: 0 auto;
}

/* HERO */
.hero {
  position: relative;
  min-height: 540px;
  background:
    linear-gradient(rgba(19, 23, 28, 0.55), rgba(19, 23, 28, 0.60)),
    url('https://www.shiresworkshopcurtains.co.uk/gifs/background.jpg') center center / cover no-repeat;
}

.hero-overlay {
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 0;
}

.hero-inner {
  width: min(1100px, 92%);
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.hero-inner h1,
.hero-inner p {
  color: #ffffff;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero-text {
  max-width: 760px;
  margin: 18px auto 0 auto;
  font-size: 1.1rem;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-block;
  padding: 14px 22px;
  background: #f1d600;
  color: #111;
  border: 1px solid #111;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.button:hover {
  background: #fff278;
  text-decoration: none;
}

.button-outline {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.8);
}

.button-outline:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

/* INTRO */
.quick-intro {
  padding: 55px 0 25px 0;
  background: #ffffff;
}

.quick-intro .lead {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.08rem;
  text-align: center;
}

/* PRODUCTS */
.products-section {
  padding: 25px 0 55px 0;
  background: #f6f7f9;
}

.homeboxes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.product-card {
  display: block;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.10);
  text-decoration: none;
}

.product-card img {
  width: 100%;
  display: block;
  background: #fff;
}

.product-card span {
  display: block;
  padding: 14px 14px 16px 14px;
  font-size: 1rem;
  font-weight: 500;
  color: #111;
  text-align: center;
}

/* CONTENT */
.content-section {
  padding: 65px 0;
  background: #ffffff;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 26px;
}

.copy-block {
  margin-top: 10px;
}

.greentick {
  list-style-image: url('https://www.shiresworkshopcurtains.co.uk/gifs/greentickbullet.png');
  padding-left: 24px;
}

.cta-line {
  font-size: 1.05rem;
  font-weight: 400;
}

/* BADGES */
.badges-section {
  padding: 25px 0 35px 0;
  background: #f6f7f9;
}

.badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.badges-row img {
  display: inline-block;
  max-height: 110px;
  width: auto;
}

.badge-large img {
  max-height: 160px;
}

/* STATEMENT */
.statement-section {
  padding: 50px 0 60px 0;
  background: #ffffff;
}

.manufacture-image {
  text-align: center;
  margin-top: 25px;
}

.fullscreenall {
  display: inline-block;
  width: 100%;
  max-width: 900px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* FOOTER */
.site-footer {
  padding: 42px 20px 50px 20px;
  background: #2f3338;
  color: #ffffff;
  text-align: center;
}

.site-footer p {
  text-align: center;
  color: #ffffff;
  margin-bottom: 14px;
}

.site-footer a {
  color: #ffffff;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-logo img {
  width: min(100%, 780px);
}

.cards {
  width: min(280px, 82%);
}

/* utility */
.clear {
  clear: both;
}

.leftbox {
  float: none;
  margin: 0;
}

/* legacy elements you may still use elsewhere */
.maincontent,
.textblock,
.middleblock,
.footerbox,
.footer,
.bigbodyboxnoop,
.logoblock2022,
.strapline,
.homebox,
.header2022,
.spec,
.right,
.left,
.rightnotmob,
.showpc,
.showmob,
.white,
.red,
.center,
.select,
.smallselect,
.largeselect {
}

/* form selects from your old css retained */
.largeselect,
.select,
.smallselect {
  border: 1px solid #c4c4c4;
  font-size: 13px;
  padding: 4px;
  border-radius: 4px;
  box-shadow: 0 0 8px #d9d9d9;
}

.largeselect,
.select {
  width: 300px;
}

.smallselect {
  width: 140px;
}

.largeselect:focus,
.select:focus,
.smallselect:focus {
  outline: none;
  border: 1px solid #7bc1f7;
  box-shadow: 0 0 8px #7bc1f7;
}

/* responsive */
@media only screen and (max-width: 999px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero,
  .hero-overlay {
    min-height: 480px;
  }
}

@media only screen and (max-width: 799px) {
  .mobshow {
    display: block;
    width: 100%;
  }

  .mobhide {
    display: none;
  }

  .hero {
    min-height: 430px;
    background-position: center center;
  }

  .hero-overlay {
    min-height: 430px;
    padding: 48px 0;
  }

  .hero-text {
    font-size: 1rem;
  }

  .homeboxes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .badges-row img {
    max-height: 95px;
  }

  .badge-large img {
    max-height: 130px;
  }

  .cards {
    width: min(240px, 78%);
  }
}

@media only screen and (max-width: 599px) {
  body {
    font-size: 15px;
  }

  p,
  li {
    font-size: 15px;
  }

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

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

  .button {
    width: 100%;
    max-width: 320px;
  }

  .quick-intro,
  .products-section,
  .content-section,
  .badges-section,
  .statement-section {
    padding-left: 0;
    padding-right: 0;
  }
}

/* =========================
   MODERN NAVIGATION
   ========================= */

/* =========================
   MODERN NAVIGATION
   ========================= */

.navblock2022 {
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  position: relative;
  z-index: 1000;
}

.navbar {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.mainnav {
  width: 100%;
  position: relative;
  text-align: left;
}

.mainnav *,
.mainnav *:before,
.mainnav *:after {
  box-sizing: border-box;
}

/* hide mobile toggle by default */
.menu-toggle {
  display: none;
  width: 100%;
  background: #ffffff;
  border: 0;
  border-radius: 0;
  padding: 16px 18px;
  font-family: "Rubik", "arial","helvetica",sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #111111;
  text-align: left;
  cursor: pointer;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.menu-toggle:hover {
  background: #f6f6f6;
}

.menu-toggle-icon {
  display: inline-block;
  font-size: 24px;
  line-height: 1;
}

.menu-toggle-text {
  display: inline-block;
  letter-spacing: 0.08em;
}

#mainnav-list,
#mainnav-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#mainnav-list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

#mainnav-list > li {
  position: relative;
  margin: 0;
}

#mainnav-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 16px;
  color: #111111;
  font-family: "Rubik", "arial","helvetica",sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  white-space: nowrap;
  min-height: 58px;
}

#mainnav-list > li > a:hover {
  background: #f7f7f7;
  text-decoration: none;
}

#mainnav-list > li.has-sub > a {
  padding-right: 34px;
}

#mainnav-list > li.has-sub > a:after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -6px;
  border-right: 2px solid #444;
  border-bottom: 2px solid #444;
  transform: rotate(45deg);
}

.submenu-toggle {
  display: none;
}

/* desktop dropdown */
#mainnav-list > li > ul {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 300px;
  background: #ffffff;
  border: 1px solid #dddddd;
  box-shadow: 0 16px 34px rgba(0,0,0,0.12);
  z-index: 1100;
  padding: 8px 0;
}

#mainnav-list > li:hover > ul,
#mainnav-list > li:focus-within > ul {
  display: block;
}

#mainnav-list > li > ul > li {
  display: block;
  margin: 0;
}

#mainnav-list > li > ul > li > a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  color: #111111;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  line-height: 1.3;
}

#mainnav-list > li > ul > li > a:hover {
  background: #f5f5f5;
  text-decoration: none;
}

#mainnav-list > li > ul > li > a img {
  width: auto !important;
  height: 24px !important;
  max-width: none !important;
  display: inline-block;
  vertical-align: middle;
  flex: 0 0 auto;
}

/* cart icon in top level nav */
#mainnav-list > li > a img {
  width: auto !important;
  max-width: none !important;
  height: 14px !important;
  margin-right: 6px;
  vertical-align: middle;
}

/* DESKTOP: force normal menu and hide MENU button */
@media only screen and (min-width: 1000px) {
  .mainnav .menu-toggle {
    display: none !important;
  }

  .mainnav #mainnav-list {
    display: flex !important;
  }
}

/* MOBILE */
@media only screen and (max-width: 999px) {
  .mainnav .menu-toggle {
    display: flex !important;
  }

  #mainnav-list {
    display: none !important;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    border-top: 1px solid #ececec;
  }

  .mainnav.menu-open #mainnav-list {
    display: flex !important;
  }

  #mainnav-list > li {
    width: 100%;
    border-bottom: 1px solid #ececec;
  }

  #mainnav-list > li > a {
    justify-content: flex-start;
    width: 100%;
    min-height: 0;
    padding: 16px 18px;
    font-size: 15px;
  }

  #mainnav-list > li.has-sub > a:after {
    display: none;
  }

  #mainnav-list > li.has-sub {
    position: relative;
  }

  .submenu-toggle {
    display: block;
    position: absolute;
    right: 8px;
    top: 8px;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: #222;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
  }

  #mainnav-list > li > ul {
    display: none;
    position: static;
    min-width: 0;
    border: 0;
    border-top: 1px solid #ececec;
    box-shadow: none;
    background: #fafafa;
    padding: 0;
  }

  #mainnav-list > li.submenu-open > ul {
    display: block;
  }

  #mainnav-list > li > ul > li > a {
    padding: 12px 18px 12px 26px;
    font-size: 14px;
  }

  #mainnav-list > li > ul > li > a img {
    height: 24px !important;
  }
}


@media only screen and (min-width: 1000px) {
  .mainnav .menu-toggle,
  .mainnav .menu-toggle-icon,
  .mainnav .menu-toggle-text {
    display: none !important;
    visibility: hidden !important;
  }

  .mainnav #mainnav-list {
    display: flex !important;
  }
}

@media only screen and (max-width: 999px) {
  .mainnav .menu-toggle {
    display: flex !important;
    visibility: visible !important;
  }
}


/* =========================
   RETURN TO TOP BUTTON
   ========================= */

/* =========================
   RETURN TO TOP BUTTON
   ========================= */

#topBtn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #f1d600;
  color: #000;
  border: none;
  border-radius: 40px;
  padding: 12px 16px;
  font-family: "Rubik", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;

  display: flex;
  align-items: center;
  gap: 8px;

  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;

  box-shadow: 0 10px 28px rgba(0,0,0,0.25);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background 0.2s ease;

  z-index: 2000;
}

#topBtn.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#topBtn:hover {
  background: #fff278;
  transform: translateY(-3px);
}

.top-arrow {
  font-size: 18px;
  line-height: 1;
}

.top-text {
  line-height: 1;
}

/* mobile version */

@media (max-width: 600px) {

  #topBtn {
    bottom: 20px;
    right: 20px;
    padding: 12px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    justify-content: center;
  }

  .top-text {
    display: none;
  }

}




/* =========================
   FAQ
   ========================= */

.faq-intro {
  padding-bottom: 20px;
}

.faq-list-links {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.faq-list-links a {
  display: block;
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  padding: 14px 16px;
  text-align: left;
  font-weight: 500;
  box-shadow: 0 8px 22px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.faq-list-links a:hover {
  text-decoration: none;
  background: #fffdf0;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.08);
}

.faq-section {
  padding: 10px 0 55px 0;
  background: #ffffff;
}

.faq-item {
  border: 1px solid #e4e4e4;
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(0,0,0,0.05);
  scroll-margin-top: 100px;
}

.faq-question {
  width: 100%;
  border: 0;
  background: #ffffff;
  color: #111111;
  padding: 18px 20px;
  text-align: left;
  font-family: "Rubik", Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-question:hover {
  background: #fafafa;
}

.faq-icon {
  flex: 0 0 auto;
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #fcfcfc;
}

.faq-answer p {
  padding: 0 20px 20px 20px;
  margin: 0;
}

.faq-item.open .faq-question {
  background: #fffdf0;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-item.open .faq-icon {
  content: "−";
}

@media only screen and (max-width: 799px) {
  .faq-question {
    font-size: 16px;
    padding: 16px;
  }

  .faq-answer p {
    padding: 0 16px 16px 16px;
  }
}


.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 34px;
  align-items: start;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.10);
}

.about-copy h2 {
  margin-top: 0;
}

@media only screen and (max-width: 899px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* =========================
   GALLERY
   ========================= */

.gallery-intro {
  padding-bottom: 14px;
}

.gallery-section {
  padding: 12px 0 60px 0;
  background: #ffffff;
}

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

.gallery-card {
  display: block;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.10);
  text-decoration: none;
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #f4f4f4;
}

/* lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 15, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  z-index: 9999;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  max-width: min(1100px, 92vw);
  max-height: 90vh;
  text-align: center;
}

.lightbox-content img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  margin: 0 auto;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  background: #fff;
}

.lightbox-content p {
  color: #ffffff;
  text-align: center;
  margin-top: 14px;
  font-size: 15px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 0;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.lightbox-close {
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 36px;
  line-height: 1;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

@media only screen and (max-width: 999px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-card img {
    height: 180px;
  }
}

@media only screen and (max-width: 699px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .gallery-card img {
    height: 150px;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }
}

@media only screen and (max-width: 499px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

.product-icon{
width:240px;
display:block;
margin:0 auto 26px auto;
float:left;
margin:11px;
}

@media (max-width:700px){
  .product-icon{
width:220px;
float:none;
  }
}

.product-section{
padding:50px 0;
}

.product-features ul{
columns:2;
column-gap:40px;
}

.price-table{
width:100%;
border-collapse:collapse;
margin-top:20px;
}

.price-table th{
background:#f6f6f6;
padding:12px;
text-align:left;
}

.price-table td{
padding:12px;
border-bottom:1px solid #e5e5e5;
}

.gallery-row{
display:flex;
gap:12px;
flex-wrap:wrap;
justify-content:center;
margin-top:20px;
}

.gallery-row img{
border-radius:10px;
}

.cta-box{
background:#fffdf0;
border:1px solid #f0e4a5;
padding:28px;
border-radius:16px;
text-align:center;
margin-top:40px;
}

.product-hero h1,
.product-hero p,
.product-hero .hero-text,
.product-hero .eyebrow{
color:#ffffff;
}