
/* Important! This file is to only be edited through WebDAV or through the control panel by the client, not theme partners/designers. */
.productOptionPickListSwatch{
    max-height: 130px;
    overflow-x: hidden;
    width: 292px;
}
.productOptionPickListSwatch .thumbnail, .productOptionPickListSwatch .swatchColour {
    width: 35px !important;
    height: 35px !important;
    background-size: cover;
    float: left;
    
}
.productOptionPickListSwatch .selectedValue .thumbnail, .productOptionPickListSwatch .selectedValue .swatchColour {
    width: 100px !important;
    height: 100px !important;
    background-size: cover;
}

.productOptionPickListSwatch .textureContainer, .productOptionPickListSwatch .swatchColours {
    border: 0px solid #d6d6d6 !important;
    padding: 0px !important;
    margin: 0 7px 5px 0 !important;
}
.productOptionPickListSwatch .selectedValue .textureContainer, .productOptionPickListSwatch .selectedValue .swatchColours {
    border: 3px solid #055fa5 !important;
}

/* FULL WIDTH PAGE FIX — 22 SAVILE ROW LIGHT */

/* Remove default theme max-width restrictions */
.pb-fullwidth-page .container,
.pb-fullwidth-page .page,
.pb-fullwidth-page .page-content,
.pb-fullwidth-page .row,
.pb-fullwidth-page .page-content > .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Remove left/right gutter spacing */
.pb-fullwidth-page .col,
.pb-fullwidth-page .col-12,
.pb-fullwidth-page .row > [class*="col"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Allow all inner elements (your hero, grids, banners) to stretch to full screen */
.pb-fullwidth-page * {
    box-sizing: border-box;
}

/* OPTIONAL – Remove vertical padding BigCommerce adds by default */
.pb-fullwidth-page .page-content {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
/* REMOVE DEFAULT BIGCOMMERCE HEADER MENU (Home Page Only) */
body.page-type-home #header,
body.page-type-home .header,
body.page-type-home nav.navPages-container {
    display: none !important;
}

/* REMOVE DEFAULT PAGE TITLE ON HOME PAGE */
body.page-type-home .page-heading,
body.page-type-home .page-title,
body.page-type-home h1.page-title {
    display: none !important;
}

/* REMOVE BREADCRUMBS ON HOME PAGE */
body.page-type-home .breadcrumbs {
    display: none !important;
}

/* OPTIONAL: Remove extra padding caused by hidden header */
body.page-type-home .body {
    padding-top: 0 !important;
}
/* GLOBAL CUSTOM NAV ------------------------------- */

.mc-nav {
  background-color: #f7f4f0;
  border-bottom: 1px solid #e2dbd0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Desktop layout */
.mc-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.mc-logo {
  font-family: "Georgia", serif;
  letter-spacing: 0.3em;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  color: #222;
}

.mc-nav-links,
.mc-nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.mc-nav-links a,
.mc-nav-actions a {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: #444;
}

.mc-nav-links a:hover,
.mc-nav-actions a:hover {
  color: #000;
}

/* Cart */
.mc-cart-link {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.mc-cart-icon {
  transition: opacity 0.2s ease;
}

.mc-cart-link:hover .mc-cart-icon {
  opacity: 0.6;
}

.mc-cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #222;
  color: #fff;
  font-size: 0.65rem;
  padding: 1px 6px;
  border-radius: 999px;
  font-weight: 600;
}

/* Hamburger – hidden on desktop */
.mc-mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.mc-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px 0;
  background: #222;
}

/* MOBILE ONLY: hamburger + dropdown */
@media (max-width: 900px) {

  /* Logo + button row */
  .mc-nav-inner {
    padding: 10px 16px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  /* Show hamburger on mobile */
  .mc-mobile-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  /* Hide links/actions by default on mobile */
  .mc-nav-links,
  .mc-nav-actions {
    display: none;
  }

  /* When nav is open, show them as dropdown */
  .mc-nav.is-open .mc-nav-links,
  .mc-nav.is-open .mc-nav-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  /* Stack inner when open */
  .mc-nav.is-open .mc-nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .mc-nav-links a,
  .mc-nav-actions a {
    font-size: 0.9rem;
    padding: 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
}
/* Hide old theme menu on desktop & mobile */
#Header,
.Header,
.header,
.TopMenu,
.navPages,
.navPages-container,
.navPages-quickSearch,
.navPages-action,
.navPage-subMenu,
.mobileMenu-toggle,
.mobileMenu,
.mobileMenu-link,
.navUser,
.navUser-section,
.navUser-item {
  display: none !important;
}
/* --- FINAL MOBILE NAV OVERRIDE --- */
@media (max-width: 900px) {

  /* Show hamburger button on mobile */
  .mc-nav .mc-mobile-toggle {
    display: inline-flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
  }

  .mc-nav .mc-mobile-toggle span {
    width: 22px;
    height: 2px;
    background: #222;
    display: block;
  }

  /* HIDE links + actions on mobile by default */
  .mc-nav .mc-nav-links,
  .mc-nav .mc-nav-actions {
    display: none !important;
  }

  /* When header has .is-open (JS adds this), show dropdown */
  .mc-nav.is-open .mc-nav-links,
  .mc-nav.is-open .mc-nav-actions {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  /* Stack inner when open */
  .mc-nav.is-open .mc-nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 12px;
  }

  .mc-nav.is-open .mc-nav-links a,
  .mc-nav.is-open .mc-nav-actions a {
    font-size: 0.9rem;
    padding: 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
}
/* Bigger POSHBIN logo */
.mc-logo {
  font-size: 1.6rem !important;  /* adjust to taste */
}
@media (max-width: 900px) {
  .mc-logo {
    font-size: 1.3rem !important;
  }
}
/* Ensure top bar background shows on every page */
.mc-topbar {
  background-color: #f0ebe4 !important;
  color: #6a6257 !important;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 16px;
  width: 100%;
  display: block;
}

/* CONTACT PAGE LAYOUT ----------------------------------- */

.pb-contact-intro {
  background-color: #f7f4f0;
  padding: 60px 6vw 40px;
}

.pb-contact-intro h1 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 4px 0 16px;
  color: #2d2a26;
}

.pb-contact-lede {
  max-width: 640px;
  line-height: 1.8;
  color: #5c5449;
  margin: 0 0 24px;
}

.pb-contact-grid {
  max-width: 900px;
  margin: 0 auto 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pb-contact-block h3 {
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: #3a342f;
}

.pb-contact-block p {
  margin: 0;
  line-height: 1.7;
  color: #5c5449;
}

.pb-contact-block a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}

.pb-contact-block a:hover {
  border-bottom-color: rgba(0,0,0,0.5);
}

.pb-contact-note {
  max-width: 700px;
  margin: 24px 0 0;
  line-height: 1.8;
  color: #5c5449;
}

/* Make it stack nicely on mobile */
@media (max-width: 800px) {
  .pb-contact-grid {
    grid-template-columns: 1fr;
  }
}

