/*
 * Creations by Clodagh — child theme styles.
 * Loaded after the parent `stylesheet` handle so equal-specificity rules win.
 *
 * !important policy:
 * - Keep only where Eva parent also uses !important (e.g. hamburger bars),
 *   or for intentional display:none feature toggles that fight parent hover rules.
 * - Prefer higher specificity / source order for colors, padding, fonts.
 */

:root {
  --cbc-red: #9F1D21;
  --cbc-red-dark: #7c021b;
  --cbc-navy: #0B132B;
  --cbc-navy-light: #2D3142;
  --cbc-grey: #ADACB5;
  --cbc-offwhite: #F2F2F2;
  --cbc-gold: #E3C49D;
  --cbc-font-display: "Roboto Slab", Georgia, serif;
  --cbc-font-script: "Playfair Display", Georgia, serif;
  --cbc-font-body: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --cbc-font-account: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --cbc-hero-image: url("../images/hero-header.webp");
  --cbc-reindeer: url("../images/reindeer.svg");
  --cbc-holly: url("../images/holly-leaves.svg");
}

/* Legacy aliases used throughout older rules */
body {
  --red: var(--cbc-red);
  --navy: var(--cbc-navy);
  --lightnavy: var(--cbc-navy-light);
  --grey: var(--cbc-grey);
  --offwhite: var(--cbc-offwhite);
  color: var(--cbc-navy);
}

.homepage-row {
  max-width: 1200px;
  margin: 0 auto;
}

.checkout-button.button.wc-forward {
  color: #fff;
}

/* -------------------------------------------------------------------------
   Header — beat parent sticky white header with matching specificity
   Parent: header.site-header.header--narrow { background-color: #fff; }
--------------------------------------------------------------------------- */
header.site-header,
body header.site-header.header--narrow,
body:not(.single-product) header.site-header {
  padding: 5px 0;
  background: var(--cbc-navy);
  background-color: var(--cbc-navy);
}

header.site-header.header--narrow {
  height: auto;
  box-shadow: none;
}

header i.cart-button-icon {
  color: #fff;
}

/* Parent sets hamburger bar colour with !important in a media query — must match */
header.site-header .header-wrapper .nav .header-nav .menu-trigger div span,
header.site-header .header-wrapper .nav .header-nav .menu-trigger div span::before,
header.site-header .header-wrapper .nav .header-nav .menu-trigger div span::after {
  background: #fff !important;
  height: 1px;
  width: 21px;
}

header.site-header .header-wrapper .nav .header-nav .menu-trigger div {
  background: none;
}

header.site-header .header-wrapper .nav .header-nav .menu-trigger.menu_trigger_4 div {
  border-style: none;
}

.offcanvas_overlay {
  display: none;
}

body.offcanvas_open .offcanvas_overlay {
  display: block;
}

/* When we open the panel after AJAX add-to-cart, force the minicart visible.
   Parent Eva leaves it at opacity:0 until a Velocity fade runs. */
body.offcanvas_for_cart .offcanvas_aside_right .offcanvas_minicart,
body.offcanvas_right .offcanvas_aside_right .offcanvas_minicart {
  opacity: 1;
}

/* -------------------------------------------------------------------------
   Mini-cart panel — solid white, site navy/red accents
--------------------------------------------------------------------------- */
body.offcanvas_for_cart .offcanvas_aside_right,
body.offcanvas_for_cart .offcanvas_aside_right .offcanvas_aside_content,
.offcanvas_aside_right .offcanvas_minicart,
.offcanvas_aside_right .offcanvas_minicart .widget.woocommerce.widget_shopping_cart,
.offcanvas_aside_right .offcanvas_minicart .widget_shopping_cart_content,
.offcanvas_aside_right .offcanvas_minicart .cbc-mini-cart-footer {
  background: #ffffff !important;
  background-image: none !important;
  color: var(--cbc-navy);
}

/* Eva pads this 50–100px each side — keep comfortable side room */
body.offcanvas_for_cart .offcanvas_aside_right .offcanvas_aside_content,
body.offcanvas_right.offcanvas_for_cart .offcanvas_aside_right .offcanvas_aside_content {
  padding: 28px 28px 24px !important;
}

@media screen and (min-width: 64em) {
  body.offcanvas_for_cart .offcanvas_aside_right .offcanvas_aside_content,
  body.offcanvas_right.offcanvas_for_cart .offcanvas_aside_right .offcanvas_aside_content {
    padding: 32px 36px 28px !important;
  }
}

.offcanvas_aside_right .offcanvas_minicart {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 8px 4px 0;
  box-sizing: border-box;
  color: var(--cbc-navy);
  overflow: hidden;
}

.offcanvas_aside_right .offcanvas_minicart::before,
.offcanvas_aside_right .offcanvas_minicart::after {
  content: none !important;
  display: none !important;
}

.offcanvas_aside_right .offcanvas_minicart .cart-title {
  position: relative;
  z-index: 1;
  margin: 0 28px 20px 0;
  padding: 0;
  font-family: var(--cbc-font-script);
  font-size: 34px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--cbc-red);
}

.offcanvas_aside_right .offcanvas_minicart .offcanvas_close {
  top: 0;
  right: 0;
  z-index: 2;
  filter: none;
  opacity: 0.7;
}

.offcanvas_aside_right .offcanvas_minicart .offcanvas_close:hover {
  opacity: 1;
}

.offcanvas_aside_right .offcanvas_minicart .widget.woocommerce.widget_shopping_cart {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  margin: 0;
  width: 100%;
}

.offcanvas_aside_right .offcanvas_minicart .widget_shopping_cart_content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
}

.offcanvas_aside_right .offcanvas_minicart .widget_shopping_cart_content .cart_list {
  flex: 1 1 auto;
  overflow-y: auto;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  -webkit-overflow-scrolling: touch;
}

.offcanvas_aside_right .offcanvas_minicart .widget_shopping_cart_content .cart_list li.woocommerce-mini-cart-item,
.offcanvas_aside_right .offcanvas_minicart .widget_shopping_cart_content .cart_list li.mini_cart_item {
  display: block;
  width: 100%;
  margin: 0;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(11, 19, 43, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  box-sizing: border-box;
}

.offcanvas_aside_right .offcanvas_minicart .widget_shopping_cart_content .cart_list li:first-child {
  padding-top: 6px;
}

.offcanvas_aside_right .offcanvas_minicart .cbc-mini-cart-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 28px;
  gap: 12px;
  align-items: start;
  position: relative;
  width: 100%;
}

.offcanvas_aside_right .offcanvas_minicart .cbc-mini-cart-thumb {
  position: relative;
  width: 64px;
  height: 64px;
}

.offcanvas_aside_right .offcanvas_minicart .cbc-mini-cart-thumb a {
  display: block;
  margin: 0;
  padding: 0;
  letter-spacing: 0;
  text-transform: none !important;
  font-weight: 400 !important;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(11, 19, 43, 0.1);
  background: var(--cbc-offwhite);
}

.offcanvas_aside_right .offcanvas_minicart .cbc-mini-cart-thumb img {
  display: block;
  float: none !important;
  width: 64px;
  max-width: 64px;
  height: 64px;
  margin: 0 !important;
  object-fit: cover;
  background: var(--cbc-offwhite);
}

.offcanvas_aside_right .offcanvas_minicart .cbc-mini-cart-body {
  min-width: 0;
  padding-right: 0;
}

.offcanvas_aside_right .offcanvas_minicart .cbc-mini-cart-title,
.offcanvas_aside_right .offcanvas_minicart a.cbc-mini-cart-title,
.offcanvas_aside_right .offcanvas_minicart .widget_shopping_cart_content .cart_list li a.cbc-mini-cart-title {
  display: block;
  margin: 0 0 6px;
  padding: 0;
  font-family: var(--cbc-font-display);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--cbc-navy);
  text-decoration: none;
}

.offcanvas_aside_right .offcanvas_minicart a.cbc-mini-cart-title:hover {
  color: var(--cbc-red);
}

.offcanvas_aside_right .offcanvas_minicart .cbc-mini-cart-body .variation {
  display: block;
  float: none !important;
  clear: both;
  width: 100%;
  max-width: 100%;
  margin: 0 0 8px;
  padding: 8px 10px;
  box-sizing: border-box;
  background: var(--cbc-offwhite);
  border: 0;
  border-left: 2px solid var(--cbc-red);
  border-radius: 0 2px 2px 0;
  font-family: var(--cbc-font-body);
  font-size: 11px;
  line-height: 1.45;
  font-weight: 400;
  opacity: 1;
  color: var(--cbc-navy-light);
}

.offcanvas_aside_right .offcanvas_minicart .cbc-mini-cart-body .variation dt,
.offcanvas_aside_right .offcanvas_minicart .cbc-mini-cart-body .variation dd {
  margin: 0;
  padding: 0;
  float: none !important;
  clear: none !important;
  display: inline;
}

.offcanvas_aside_right .offcanvas_minicart .cbc-mini-cart-body .variation dt {
  font-weight: 600;
  color: var(--cbc-red);
}

.offcanvas_aside_right .offcanvas_minicart .cbc-mini-cart-body .variation dd::after {
  content: "";
  display: block;
  margin-bottom: 2px;
}

.offcanvas_aside_right .offcanvas_minicart .cbc-mini-cart-body .variation dd p {
  margin: 0;
  display: inline;
  font-size: inherit;
  line-height: inherit;
}

.offcanvas_aside_right .offcanvas_minicart .cbc-mini-cart-body .quantity {
  display: block;
  width: auto;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-family: var(--cbc-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--cbc-navy);
}

.offcanvas_aside_right .offcanvas_minicart .cbc-mini-cart-item > a.remove,
.offcanvas_aside_right .offcanvas_minicart .widget_shopping_cart_content .cart_list li a.remove,
.offcanvas_aside_right .offcanvas_minicart .widget_shopping_cart_content .cart_list li .cbc-mini-cart-item > a.remove {
  position: static !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 26px;
  width: 26px !important;
  height: 26px !important;
  min-width: 26px;
  margin: 0;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: var(--cbc-red) !important;
  background-image: none !important;
  color: #fff !important;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0 !important;
  text-transform: none !important;
  text-decoration: none;
  box-shadow: none !important;
  z-index: 2;
  transition: background-color 0.2s ease;
}

.offcanvas_aside_right .offcanvas_minicart .cbc-mini-cart-item > a.remove::before,
.offcanvas_aside_right .offcanvas_minicart .cbc-mini-cart-item > a.remove::after,
.offcanvas_aside_right .offcanvas_minicart .widget_shopping_cart_content .cart_list li a.remove::before,
.offcanvas_aside_right .offcanvas_minicart .widget_shopping_cart_content .cart_list li a.remove::after {
  content: none !important;
  display: none !important;
}

.offcanvas_aside_right .offcanvas_minicart .cbc-mini-cart-item > a.remove:hover,
.offcanvas_aside_right .offcanvas_minicart .widget_shopping_cart_content .cart_list li a.remove:hover {
  background: var(--cbc-red-dark) !important;
  background-image: none !important;
  color: #fff !important;
  transform: none !important;
}

.offcanvas_aside_right .offcanvas_minicart .cbc-mini-cart-item > a.remove i,
.offcanvas_aside_right .offcanvas_minicart .widget_shopping_cart_content .cart_list li a.remove i {
  background: transparent !important;
  background-image: none !important;
  color: inherit !important;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 11px;
  border-radius: 0;
}

.offcanvas_aside_right .offcanvas_minicart .cbc-mini-cart-footer {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 100%;
  margin-top: auto;
  padding: 16px 0 0;
  border: 0;
  border-top: 1px solid rgba(11, 19, 43, 0.1);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  box-sizing: border-box;
}

.offcanvas_aside_right .offcanvas_minicart .widget_shopping_cart_content .total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  font-family: var(--cbc-font-body);
  font-size: 13px;
  color: var(--cbc-navy);
}

.offcanvas_aside_right .offcanvas_minicart .widget_shopping_cart_content .total strong {
  font-family: var(--cbc-font-body);
  font-weight: 600;
  opacity: 1;
  color: var(--cbc-navy-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
}

.offcanvas_aside_right .offcanvas_minicart .widget_shopping_cart_content .total .amount {
  font-family: var(--cbc-font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--cbc-navy);
}

.offcanvas_aside_right .offcanvas_minicart .widget_shopping_cart_content .buttons {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  width: 100%;
}

.offcanvas_aside_right .offcanvas_minicart .widget_shopping_cart_content .buttons .button,
.offcanvas_aside_right .offcanvas_minicart .widget_shopping_cart_content .buttons .wc-forward {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 13px 16px;
  border: 0;
  border-radius: 2px;
  font-family: var(--cbc-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  box-shadow: none;
  transform: none;
}

.offcanvas_aside_right .offcanvas_minicart .widget_shopping_cart_content .buttons .wc-forward:not(.checkout) {
  color: var(--cbc-navy);
  background: transparent;
  border: 1px solid rgba(11, 19, 43, 0.2);
}

.offcanvas_aside_right .offcanvas_minicart .widget_shopping_cart_content .buttons .wc-forward:not(.checkout):hover {
  border-color: var(--cbc-navy);
  background: var(--cbc-offwhite);
  color: var(--cbc-navy);
}

.button.checkout.wc-forward,
.offcanvas_aside_right .offcanvas_minicart .widget_shopping_cart_content .buttons .checkout {
  color: #fff;
  background: var(--cbc-red);
  border: 0;
  box-shadow: none;
}

.button.checkout.wc-forward:hover,
.offcanvas_aside_right .offcanvas_minicart .widget_shopping_cart_content .buttons .checkout:hover {
  background: var(--cbc-red-dark);
  color: #fff;
  transform: none;
  box-shadow: none;
}

.button.checkout.wc-forward span {
  color: #fff;
}

.offcanvas_aside_right .offcanvas_minicart .woocommerce-mini-cart__empty-message {
  margin: 48px 0;
  font-family: var(--cbc-font-script);
  font-size: 22px;
  color: var(--cbc-red);
  text-align: center;
}

.offcanvas_overlay:after,
.cd-cover-layer,
.nl-overlay {
  background: rgba(11, 19, 43, 0.7);
}

.mm-panels {
  display: none;
}

.offcanvas_aside_left .offcanvas_navigation {
  top: 50px;
  width: 100%;
  height: 100%;
  float: left;
  overflow: visible;
}

.offcanvas_navigation .menu-footer-container ul li a {
  color: var(--cbc-red);
  line-height: 40px;
  font-style: italic;
}

.main-navigation ul ul li a:hover {
  color: var(--cbc-red);
}

.woocommerce-page .offcanvas_main_content .single-product {
  background: #fff;
}

/* Image Header */
.image-header {
  color: #fff;
  background: var(--cbc-navy) var(--cbc-hero-image) no-repeat center;
  background-size: cover;
  margin-bottom: 20px;
  padding: 50px 0 40px;
}

.home .page-header {
  margin-top: 40px;
}

.page-template:not(.home) .page-header,
.page-template-default .page-header {
  padding-top: 110px;
  padding-bottom: 50px;
  margin-top: 0;
}

.woocommerce-checkout .page-header {
  margin-bottom: 0;
}

.archive .page-header,
body[data-topbar="has_topbar"].woocommerce-page .page-header {
  margin-top: 50px;
  margin-bottom: 0;
}

.image-header h1,
.image-header h2,
.image-header h3,
.image-header .image-header-subtitle {
  text-align: center;
  color: #fff;
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 400;
}

.image-header p {
  padding-top: 20px;
  font-size: 12px;
  text-align: center;
}

.image-header p span {
  font-size: 14px;
}

.sub-header {
  color: var(--cbc-navy-light);
  text-align: center;
  font-size: 16px;
  padding: 35px 0 45px;
}

.sub-header .section-title {
  font-family: var(--cbc-font-display);
}

.sub-header .section-sub-title {
  font-size: 12px;
}

.section-sub-title span {
  color: var(--cbc-red);
  font-size: 14px;
}

.page-header #breadcrumbs:before,
.page-header #breadcrumbs:after {
  background-color: var(--cbc-navy);
}

.page-header h1.page-title,
.page-header #breadcrumbs {
  color: var(--cbc-navy);
}

.home .category_name {
  text-align: center;
  bottom: 30px;
}

.home .entry-content {
  margin-top: 30px;
}

.home .product-category-list.zoom_hover li.category_grid_item .category_grid_box .category_item .category_name h3 span:before,
.home .product-category-list.zoom_hover li.category_grid_item .category_grid_box .category_item .category_name h3 span:after {
  content: "\f005";
  width: 20px;
  height: 20px;
  font: normal normal normal 12px/1 FontAwesome;
  color: var(--cbc-gold);
  bottom: 0;
  padding: 0 10px;
}

li.category_grid_item .category_grid_box .category_item_bkg {
  min-height: 100%;
}

.product-category-list.zoom_hover li.category_grid_item .category_grid_box .category_item .category_name {
  padding: 3%;
}

.home .product-category-list.zoom_hover li.category_grid_item .category_grid_box .category_item .category_name h3 span {
  display: block;
  font-family: var(--cbc-font-script);
  font-style: italic;
  font-weight: 600;
  color: var(--cbc-gold);
  text-transform: capitalize;
  opacity: 1;
  letter-spacing: normal;
  font-size: 18px;
}

span.category_name > span {
  /* Parent shows item counts; hide to match brand layout */
  display: none !important;
}

/* Sales Banner */
.sales-banner-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.sales-banner {
  background-color: var(--cbc-red);
  color: #fff;
  padding: 15px;
  position: relative;
  max-width: 500px;
  margin: -60px auto 0;
}

.sales-banner:hover {
  cursor: pointer;
}

.sales-banner-wrapper {
  border: 1px solid #fff;
  padding: 20px;
  text-align: center;
}

.sales-banner-wrapper:after {
  content: "";
  width: 50px;
  height: 50px;
  right: 15px;
  margin-top: -30px;
  position: absolute;
  background-image: var(--cbc-reindeer);
  background-size: 50px 50px;
  background-repeat: no-repeat;
}

.sales-banner .banner-pre-title {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 10px;
}

.sales-banner .banner-title:before,
.sales-banner .banner-title:after {
  content: "";
  width: 30px;
  height: 30px;
  margin-left: -30px;
  margin-top: -25px;
  position: absolute;
  background-image: var(--cbc-holly);
  background-size: 30px 30px;
  background-repeat: no-repeat;
  transform: rotate(-100deg);
}

.sales-banner .banner-title:after {
  margin-left: 0;
  margin-top: -20px;
  transform: rotate(70deg);
}

.sales-banner .banner-title {
  font-family: var(--cbc-font-display);
  font-size: 50px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 50px;
  position: relative;
}

.sales-banner .banner-post-title {
  font-family: var(--cbc-font-display);
  font-size: 25px;
  line-height: 25px;
  font-weight: 600;
}

/* Homepage Categories */
.home .product-category-list.zoom_hover li.category_grid_item .category_grid_box .category_item {
  height: 230px;
}

.home ul.products {
  margin: 0 auto;
  padding: 0 5%;
}

.home .category_grid_item.column {
  padding: 0 5px;
}

.product-category-list li {
  margin-bottom: 10px;
}

.home .product_after_shop_loop_buttons {
  display: none;
}

#primary.content-area,
#primary.blog-content-area {
  margin-bottom: 0;
}

/* Navigation / off-canvas categories */
ul.product-categories {
  margin-top: 15px;
  margin-left: 0;
}

ul.product-categories > li.cat-item a {
  padding: 15px 0;
  float: left;
  width: 100%;
  border-bottom: 1px solid #e8e8e1;
}

li.cat-item {
  opacity: 1;
  color: var(--cbc-navy);
  position: relative;
  display: block;
  font-size: 18px;
}

ul.product-categories > li > span.count {
  display: none;
}

ul.product-categories > li > ul > li span.count {
  display: inline-block;
  vertical-align: top;
  letter-spacing: 2px;
  color: var(--cbc-navy-light);
  font-weight: 800;
  font-size: 11px;
  margin-top: 0;
  margin-left: -1px;
}

.offcanvas_navigation .widget-title {
  text-transform: uppercase;
  font-size: 18px;
}

.widget_product_categories ul {
  margin-left: 0;
}

.widget_product_categories ul li {
  list-style: none;
}

.mm-menu .wishlist-button a span:before,
.mm-menu .login-button a span:before,
.mm-menu .account-button a span:before,
.mm-menu .logout-button a span:before {
  padding-right: 10px;
  font-size: 14px;
  float: left;
  line-height: 35px;
}

.mm-menu li.bot-menu-item {
  width: 100%;
  float: left;
  line-height: 36px;
}

.widget.woocommerce.widget_product_categories ul li ul.children li:before,
.widget.woocommerce.widget_product_categories ul li ul.children li:after {
  position: absolute;
  width: 10px;
  border-left: 1px solid var(--cbc-red);
  left: 2px;
  top: 7px;
  content: "";
}

.widget.woocommerce.widget_product_categories ul li ul.children li:before {
  height: 105%;
}

.widget.woocommerce.widget_product_categories ul li ul.children li:after {
  height: 21px;
  border-bottom: 1px solid var(--cbc-red);
}

.widget.woocommerce.widget_product_categories ul li ul.children li {
  padding-left: 20px;
  border: 0;
  position: relative;
  font-size: 16px;
  float: left;
  width: 100%;
}

.offcanvas_aside.offcanvas_aside_left {
  max-width: 500px;
  width: 100%;
  transform: translate3d(-500px, 0, 0);
}

body.offcanvas_left .offcanvas_aside_left {
  transform: translate3d(0, 0, 0);
}

.offcanvas_aside_left {
  overflow: visible;
}

.offcanvas_aside_left .offcanvas_close:before {
  font-size: 20px;
  font-weight: 600;
  float: right;
  line-height: 30px;
}

.offcanvas_aside_left .offcanvas_close:after {
  content: "close menu";
  font-size: 12px;
  line-height: 30px;
  height: 20px;
  float: right;
  padding-right: 10px;
}

.offcanvas_aside_left .offcanvas_close {
  right: 0;
  top: -50px;
  width: 100%;
  padding: 10px 25px;
  height: 50px;
  left: auto;
  background: var(--cbc-navy);
  position: absolute;
  color: #fff;
}

.anim li.cat-item {
  animation: cbcFadeIn 0.8s linear;
  animation-delay: 0.2s;
}

.mm-menu {
  position: relative;
  padding-bottom: 100px;
}

.menu-menu-1-container ul li {
  padding: 10px 0;
}

.mm-menu hr,
.offcanvas_bot_menu .bot-menu-divider hr {
  width: 50px;
  height: 1px;
  background-color: var(--cbc-red);
  border: none;
  margin: 10px 0 15px;
  padding: 0;
  display: block;
  clear: both;
  opacity: 1;
}

.mm-menu,
.mm-menu > li,
.offcanvas_bot_menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

@keyframes cbcFadeIn {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .anim li.cat-item {
    animation: none;
  }
}

/* Checkout / cart page product names (not mini-cart) */
.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout .checkout_right_wrapper .order_review_wrapper .woocommerce-checkout-review-order-table tbody td.product-name {
  font-family: var(--cbc-font-body);
  color: var(--cbc-navy);
  text-transform: capitalize;
}

/* Full cart page personalisation blocks keep a light panel */
.woocommerce-cart .widget_shopping_cart_content .cart_list li .variation,
.shop_table .cart_item .variation {
  background: var(--cbc-offwhite);
  padding: 12px 14px;
  margin-top: 5px;
  width: 100%;
}

.shop_table .cart_item {
  padding: 10px 30px;
  margin-bottom: 10px;
  background: #fff;
}

.woocommerce label {
  font-size: 14px;
  color: #555;
  font-weight: 400;
  margin-bottom: 4px;
  text-transform: capitalize;
}

/* Page Title Block */
.page-header-bg-wrapper,
.woocommerce-page .page-header {
  background: var(--cbc-offwhite);
  color: var(--cbc-navy-light);
  margin-top: 50px;
}

.archive.woocommerce-page .page-header h1.page-title {
  color: var(--cbc-navy-light);
  padding: 20px 0 15px;
  font-size: 25px;
}

.archive.woocommerce-page .page-header .title-section .term-description p {
  font-size: 12px;
  color: var(--cbc-navy-light);
  font-weight: 400;
}

.archive.woocommerce-page .page-header .title-section .term-description {
  margin: -30px auto 0;
  max-width: 500px;
  padding-bottom: 30px;
}

.archive.woocommerce-page #breadcrumbs {
  display: none;
}

.page-header .list_shop_categories.mobile li {
  border-color: var(--cbc-navy-light);
  color: var(--cbc-navy-light);
  background: var(--cbc-offwhite);
}

.page-header .list_shop_categories.desktop.active {
  border-color: var(--cbc-navy-light);
}

.archive .page-header {
  margin-bottom: 20px;
}

.list_shop_categories.desktop a.category_item_link {
  font-size: 16px;
}

/* Category Page */
.page-header .list_shop_categories li a,
.woocommerce ul.products li.product .shop_product_metas h3 a {
  text-transform: none;
  font-family: var(--cbc-font-body);
}

.top_bar_shop {
  display: none !important;
}

.archive.woocommerce ul.products li.product .product_after_shop_loop,
.archive.woocommerce .product_after_shop_loop .product_after_shop_loop_switcher {
  height: auto;
}

.archive.woocommerce ul.products li.product .product_thumbnail {
  margin-bottom: 10px;
}

.archive.woocommerce ul.products li.product .product_after_shop_loop {
  margin-top: 0;
}

.archive .shop_product_metas h3 {
  margin: 0;
}

.archive .product_after_shop_loop_buttons,
.single_product_summary_related .product_after_shop_loop_buttons {
  /* Parent reveals add-to-cart buttons on hover */
  display: none !important;
}

.archive .shop_product_title {
  font-size: 14px;
}

.woocommerce ul.products li .eva_product_quick_view_button:hover,
.woocommerce ul.products li:hover .eva_product_quick_view_button {
  color: #fff;
}

.woocommerce span.ribbon,
.woocommerce-page span.ribbon {
  top: -15px;
  left: -5px;
  font-size: 13px;
}

.woocommerce ul.products li.product .product_after_shop_loop .price ins {
  font-size: 16px;
  font-weight: 600;
}

.woocommerce ul.products li.product .product_after_shop_loop .price del .woocommerce-Price-amount,
.price del .woocommerce-Price-amount {
  color: #666;
}

.owl-carousel .owl-stage-outer {
  overflow: visible;
}

/* Product Details */
h1.product_title {
  text-transform: capitalize;
  font-size: 36px;
}

.product_infos p.price {
  margin: 5px 0;
}

.wc-pao-addon-name {
  font-size: 14px;
  margin-bottom: 0;
  color: var(--cbc-navy-light);
  text-transform: capitalize;
  font-weight: 400;
  display: block;
}

.price .woocommerce-Price-amount {
  color: var(--cbc-red);
}

.wc-pao-addon-container {
  width: 50%;
  float: left;
  padding-right: 10px;
  margin: 0;
}

.wc-pao-addon-include-current-year .wc-pao-addon-wrap {
  display: none;
}

#product-addons-total {
  clear: both;
  height: 30px;
}

.product-addon-totals {
  display: none !important;
}

.wc-pao-addon-include-current-year > p {
  display: inline-block;
  padding: 0 5px;
}

.woocommerce-product-details__short-description {
  font-size: 14px;
}

.woocommerce-product-details__short-description p {
  font-size: 14px;
  line-height: 1.5;
}

/* -------------------------------------------------------------------------
   Product USP strip — Free Gift Bag / Hand Personalised / Fast Delivery
--------------------------------------------------------------------------- */
.delivery_banner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 18px 8px;
  box-sizing: border-box;
  font-size: 12px;
  color: var(--cbc-navy);
  background: var(--cbc-offwhite);
  border-top: 1px solid rgba(11, 19, 43, 0.08);
  border-bottom: 1px solid rgba(11, 19, 43, 0.08);
}

.delivery_banner_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  min-height: 78px;
  padding: 4px 10px;
  text-align: center;
  position: relative;
}

.product-buttons-desktop .delivery_banner_item:not(:last-child)::after,
.product-buttons-mobile .delivery_banner_item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 44px;
  margin-top: -22px;
  background: rgba(159, 29, 33, 0.25);
  border: 0;
}

.product-buttons-desktop .delivery_banner_item:not(:last-child):after {
  display: block;
  height: 44px;
  margin-top: -22px;
  border-right: 0;
}

.product-buttons-mobile .delivery_banner {
  border-top: 1px solid rgba(11, 19, 43, 0.08);
  border-bottom: 1px solid rgba(11, 19, 43, 0.08);
}

.delivery_banner i,
.delivery_banner i[class^="flaticon-"],
.delivery_banner i[class*=" flaticon-"] {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  float: none;
  width: 48px;
  height: 48px;
  min-width: 48px;
  max-width: 48px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  box-sizing: border-box;
  background: var(--cbc-red);
  box-shadow: none;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.delivery_banner i::before,
.delivery_banner [class^="flaticon-"]::before,
.delivery_banner [class*=" flaticon-"]::before {
  font-size: 20px;
  line-height: 1;
  color: #fff;
  margin: 0;
}

.delivery_banner_item .main_text {
  display: block;
  float: none;
  width: 100%;
  text-align: center;
}

.delivery_banner .columns span {
  font-size: 13px;
  font-weight: 600;
  float: none;
}

.delivery_banner .main_text {
  float: none;
  margin: 0;
  padding: 0;
  font-family: var(--cbc-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: var(--cbc-navy);
}

.product-buttons-mobile .delivery_banner .main_text > span {
  display: block;
  max-width: none;
  margin: 0 auto;
  font-size: 10px;
  line-height: 1.25;
  letter-spacing: 0.08em;
}

input[type="text"]:hover,
input[type="text"]:focus {
  border: 1px solid var(--cbc-red);
}

/* Intentional: hide Stripe Payment Request (Apple Pay / Google Pay) buttons.
   Remove this rule to re-enable express checkout. */
#wc-stripe-payment-request-wrapper {
  display: none;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
  font-size: 50px;
}

.product_infos .woocommerce-product-rating {
  margin-top: 10px;
}

.cn-button.bootstrap {
  background: var(--cbc-red);
}

.cn-text-container a {
  color: #ffffff;
}

.woocommerce-Tabs-panel p {
  font-size: 14px;
}

.woocommerce .cart .quantity {
  margin-right: 5px;
}

.sku_wrapper {
  display: none !important;
}

.woocommerce-Tabs-panel--description {
  margin: 0 auto;
  max-width: 800px;
}

/* Checkout */
.woocommerce-checkout .site-content {
  background: var(--cbc-offwhite);
}

.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout .checkout_left_wrapper .woocommerce-validated input,
.select2-container .select2-selection,
.select2-container .select2-choice {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-bottom-color: #e5e5e5;
  padding: 10px 15px;
}

.button.wc-forward.cart-but {
  display: none;
}

.select2-container .select2-selection .select2-selection__rendered,
.select2-container .select2-selection .select2-selection__placeholder {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 400;
  letter-spacing: 0;
}

.required,
.optional {
  font-size: 10px;
}

.woocommerce-checkout:not(.woocommerce-order-received) .checkout_coupon_box {
  background: #fff;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.checkout_left_wrapper,
.checkout_right_wrapper {
  margin: 0 auto;
  max-width: 800px;
}

.woocommerce-checkout-review-order-table thead {
  display: none;
}

.woocommerce-checkout-review-order-table dd,
.woocommerce-checkout-review-order-table dt,
.woocommerce-checkout-review-order-table dd p,
.woocommerce-checkout-review-order-table dt p {
  font-size: 12px;
  font-weight: 400;
}

.woocommerce-checkout-review-order-table tr,
.woocommerce-checkout-review-order-table tfoot {
  width: 100%;
  display: block;
  float: left;
}

.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout .checkout_right_wrapper .order_review_wrapper .woocommerce-checkout-review-order-table th {
  padding: 10px;
  width: auto;
}

.woocommerce-checkout-review-order-table {
  width: 100%;
  display: block;
}

.woocommerce-checkout-review-order-table tbody {
  float: left;
}

.checkout_left_wrapper .woocommerce-billing-fields,
.checkout_left_wrapper .woocommerce-shipping-fields,
.checkout_left_wrapper .woocommerce-additional-fields {
  background: #fff;
  padding: 10%;
  margin: 30px 0;
}

.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout .checkout_right_wrapper .order_review_wrapper {
  border: none;
}

.order_review_heading,
.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout .checkout_right_wrapper .order_review_wrapper h2 {
  background: none;
}

select,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
textarea {
  padding: 25px;
}

.checkout_right_wrapper div#payment {
  background: #fff;
  padding: 30px;
  margin: 30px 0;
  display: block;
  float: left;
  width: 100%;
}

.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout .checkout_right_wrapper .order_review_wrapper .woocommerce-checkout-review-order-table tfoot tr.cart-subtotal td,
.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout .checkout_right_wrapper .order_review_wrapper .woocommerce-checkout-review-order-table tfoot .shipping li .amount,
.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout .checkout_right_wrapper .order_review_wrapper .woocommerce-checkout-review-order-table tfoot tr.order-total td {
  font-size: 16px;
  font-weight: 400;
}

#wc-stripe-cc-form > label {
  display: none;
}

.woocommerce-privacy-policy-text p {
  font-size: 14px;
}

.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout .checkout_right_wrapper {
  padding-left: 0;
}

/* Thank You */
p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
  font-size: 50px;
  color: var(--cbc-navy);
  line-height: 60px;
}

.woocommerce-order-received .woocommerce ul.order_details li {
  width: 50%;
  display: inline-block;
  float: left;
  margin-bottom: 20px;
  text-align: left;
}

.order_detail_box {
  background: #fff;
  border: none;
  padding: 30px;
}

.woocommerce-cart .entry-content .woocommerce .cart-collaterals h2.total-title,
.woocommerce-order-details__title,
.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout .checkout_left_wrapper h3,
.order_review_heading,
.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout .checkout_right_wrapper .order_review_wrapper h2 {
  font-family: var(--cbc-font-display);
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: 20px;
  font-style: normal;
  text-transform: capitalize;
}

.woocommerce-order-received .woocommerce .order_detail_box table.shop_table tbody td.product-name a {
  font-size: 16px;
  text-transform: capitalize;
  padding-right: 20px;
  font-weight: 400;
  font-family: var(--cbc-font-account);
}

.woocommerce-order-received .woocommerce .order_detail_box table.shop_table tfoot tr:last-child .amount,
tfoot .shipped_via {
  font-size: 16px;
  font-weight: 400;
}

tfoot .my_account_container .myaccount_user .woocommerce-MyAccount-navigation {
  border: none;
}

/* Footer */
.f-columns > div > section,
.f-columns .widget a {
  color: #fff;
}

.f-columns .social-icons a:before {
  color: #fff;
}

footer#site-footer {
  background: var(--cbc-navy);
  padding: 80px 4% 0;
}

.widget-area .widget h3.widget-title {
  margin-bottom: 10px;
}

footer#site-footer .f-copyright .socials .social-icons {
  background: var(--cbc-navy);
}

footer#site-footer .f-copyright .socials .social-icons a::before,
footer#site-footer .f-copyright .socials .footer-divider {
  color: #CF2831;
}

footer#site-footer .f-copyright .copytxt p {
  padding: 10px 0 20px;
}

h1.vc_custom_heading {
  color: var(--cbc-red);
}

.woocommerce-MyAccount-navigation {
  background: var(--cbc-offwhite);
  border: none;
}

.main-navigation > ul > li > a span {
  font-size: 14px;
  letter-spacing: 0;
}

/* Back to Top */
.progress-page {
  background: none;
}

.progress-page .scrolltotop .arrow-top-line {
  background-color: var(--cbc-navy);
}

.progress-page .scrolltotop .arrow-top {
  border-bottom: 2px solid var(--cbc-navy);
  border-left: 2px solid var(--cbc-navy);
}

.progress-page svg.progress-circle path {
  stroke: var(--cbc-navy);
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

/* Media Queries */
@media screen and (min-width: 1024px) {
  .main-navigation ul li a {
    color: #fff;
  }

  header.site-header .header-wrapper .tools i:before {
    color: #fff;
  }

  header.site-header .header-wrapper .cart-desc {
    display: none !important;
  }

  body[data-header-layout="3"] header.site-header .header-wrapper .tools {
    width: 100px;
  }

  body[data-header-layout="3"] header.site-header .header-wrapper .nav {
    width: calc(100% - 200px);
  }

  .page-header .list_shop_categories.desktop {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 20px;
  }

  .list_shop_categories.desktop a.category_item_link {
    font-size: 14px;
  }

  .image-header h1,
  .image-header h2,
  .image-header h3,
  .image-header .image-header-subtitle {
    font-size: 22px;
  }

  .image-header {
    padding: 70px 0 90px;
  }

  .sales-banner {
    margin-top: -90px;
  }

  .page-header .list_shop_categories li {
    float: left;
    width: 100%;
  }

  ul.list_shop_categories.desktop.category_block {
    column-count: 3;
    column-gap: 20px;
  }

  .product-buttons-mobile {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  body[data-header-layout="2"] header.site-header .header-wrapper .nav .header-nav .menu-trigger,
  body[data-header-layout="3"] header.site-header .header-wrapper .nav .header-nav .menu-trigger {
    display: inline-block;
  }

  .main-navigation {
    display: none;
  }

  body[data-header-layout="3"] header.site-header .header-wrapper .site-branding.sb-mobile {
    display: table-cell;
    text-align: center;
  }

  body[data-header-layout="3"] header.site-header .header-wrapper .nav {
    padding-left: 0;
    width: 50%;
  }

  body[data-header-layout="3"] header.site-header .header-wrapper .tools {
    width: 60%;
  }

  body[data-header-layout="3"] header.site-header .header-wrapper .site-branding {
    display: none;
  }

  body[data-header-layout="3"] header.site-header .header-wrapper .nav .header-nav {
    margin-left: 0;
  }
}

@media screen and (max-width: 1023px) {
  .wc-pao-addon-container {
    width: 100%;
  }

  .woocommerce-message,
  .woocommerce-info,
  .woocommerce-error {
    padding: 20px 30px 20px 60px;
    margin: 35px 10px 0;
  }

  .page-header .list_shop_categories.mobile li a {
    font-family: var(--cbc-font-display);
  }

  .home .product-category-list.zoom_hover li.category_grid_item .category_grid_box .category_item {
    height: 100px;
  }

  .f-columns .row {
    display: flex;
    flex-direction: column;
  }

  .f-columns section {
    text-align: left;
  }

  .page-header .list_shop_categories.desktop.active {
    z-index: 1;
    display: block;
    margin-top: -48px;
    padding: 45px 20px 30px;
    background-color: #fff;
    border: 1px solid var(--cbc-navy-light);
  }

  .page-header .list_shop_categories.mobile li {
    border: 1px solid var(--cbc-navy-light);
    padding: 5px 20px 5px 30px;
  }

  .page-header .list_shop_categories.mobile {
    display: block;
    margin-top: 0;
  }

  .page-header .list_shop_categories.desktop {
    display: none;
  }

  .page-header .list_shop_categories.desktop li {
    width: 100%;
  }

  .product-buttons-desktop {
    display: none;
  }

  .mobile-hide {
    display: none;
  }

  .widget-area .widget h3.widget-title {
    border-bottom: 1px solid #fff;
  }

  .header.site-header.header--narrow {
    top: 0;
    height: auto;
  }
}

@media screen and (max-width: 639px) {
  header.site-header .header-wrapper .site-branding img {
    height: 35px;
  }

  .header-wrapper.row {
    padding: 0 15px 0 0;
  }

  .mob_inputbox {
    background: #fff;
    top: auto;
  }

  .single-product .page-header {
    margin-top: 0;
    padding-top: 0;
  }

  .product .product-images-wrapper .woocommerce-product-gallery__image img {
    display: block;
    float: left;
    width: 100%;
  }

  h1.product_title {
    font-size: 22px;
  }

  .product_infos p.price {
    margin: -5px 0 5px;
    font-size: 20px;
  }

  .product-images-wrapper .mobile_gallery_thumbs {
    height: auto;
  }

  .archive .row {
    padding-left: 2%;
    padding-right: 2%;
  }

  .archive .shop_product_title {
    font-size: 12px;
  }

  .single-product.woocommerce span.ribbon,
  .single-product.woocommerce-page span.ribbon {
    top: 20px;
    left: 20px;
  }

  .f-columns > div > section:first-child aside {
    width: 100%;
  }

  .product-images-wrapper {
    margin: 20px -40px 40px;
  }

  .woocommerce-order-received .woocommerce ul.order_details li {
    width: 100%;
  }

  .delivery_banner {
    padding: 14px 4px;
  }

  .delivery_banner i {
    width: 40px;
    height: 40px;
  }

  .delivery_banner i:before,
  .delivery_banner [class^="flaticon-"]::before,
  .delivery_banner [class*=" flaticon-"]::before {
    font-size: 18px;
    margin-left: 0;
  }

  .delivery_banner .main_text {
    font-size: 9px;
    letter-spacing: 0.06em;
  }
}
