/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/

html {
  font-size: 100%; /* 1rem = 16px */
}

body {
  font-family: system-ui, sans-serif;
  font-size: 1rem;       /* 16px */
  line-height: 1.5;
  color: #1a1a1a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 { font-size: 2.5rem; }   /* 40px */
h2 { font-size: 2rem; }     /* 32px */
h3 { font-size: 1.5rem; }   /* 24px */
h4 { font-size: 1.25rem; }  /* 20px */
h5 { font-size: 1.125rem; } /* 18px */
p, li, a, label {
  font-size: 1rem;          /* 16px */
}

small {
  font-size: 0.875rem;      /* 14px */
}

button, .button {
  font-size: 1rem;          /* 16px */
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  line-height: 1.2;
  border-radius: 5px;
}

.brxe-container {	
	width:100%;
	max-width:100%;
}



/* ============================================
   HEADER LAYOUT
============================================ */
#brx-header {

  top: 0;
  width: 100%;
  backdrop-filter: blur(6px);
  z-index: 9999;
}

#peb-header {

  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 1200px;
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  gap: 20px;
  flex-wrap: nowrap;
	    left: 50%!important;
    transform: translateX(-50%)!important;
}



/* ============================================
   COMMON HEADER CHILD STYLING
============================================ */
#header-logo,
#peb-top-nav-menu,
#peb-mini-cart,
#brx-header .cart-icon i {
  display: flex;
  align-items: center;
  height: 100%;
}

/* ============================================
   LOGO IMAGE
============================================ */
#header-logo img {
  height: 30px;
  max-height: 100%;
  object-fit: contain;
}

/* ============================================
   NAV MENU – STRUCTURE & ITEM STYLING
============================================ */
#brx-header .bricks-nav-menu {
  display: flex;
  gap: 10px;
}

#brx-header .bricks-nav-menu li:first-child { margin-left: 0; }
#brx-header .bricks-nav-menu li:last-child { margin-right: 0; }

#brx-header .bricks-nav-menu a {
  color: white;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
}

#brx-header .bricks-nav-menu a:hover,
#brx-header .bricks-nav-menu a:focus {
  color: #FF6F00;
}

#brx-header .menu-item.current-menu-item > a {
  border-bottom: 2px solid #FF6F00;
  padding-bottom: 3px;
}

/* ============================================
   CART BADGE
============================================ */
#brx-header .cart-count {
  background-color: #f44336;
  color: white;
  font-size: 11px;
  padding: 3px 6px;
  border-radius: 50%;
  position: relative;
  top: -10px;
  right: -8px;
}

/* ============================================
   MINI CART CONTAINER WITH HOVER EFFECT
============================================ */
#peb-mini-cart {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 8px;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.2s ease;
}

#peb-mini-cart:hover {
  color: #FF6F00; /* Playa orange on hover */
  transform: scale(1.05); /* slight zoom effect */
}

/* =============================
   GLOBAL FOOTER STYLING
============================= */


#brx-footer {
  background-color: #333;
  color: #fff;
  padding: 40px 5%;
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

#brx-footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

#brx-footer a:hover,
#brx-footer a:focus {
  color: #00aced;
  text-decoration: underline;
}

/* Main horizontal layout container */
#brxe-yppznp {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* Each section column */
#brx-footer .brxe-container {
  flex: 1 1 0px;
}

/* Left column: Logo and Social */
#brx-footer .footer-left-column {
  flex: 1 1 250px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#brx-footer .brxe-logo img {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
}

/* Social icons */
#brx-footer .footer-social-icons {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  padding: 10px 0;
}

#brx-footer .footer-social-icons a {
  color: #fff;
  font-size: 20px;
  padding: 6px;
}

/* Section headings */
#brx-footer .footer-menu-heading {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
	color:white;
}

/* Link lists */
#brx-footer .footer-menu-items ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#brx-footer .footer-menu-items li {
  margin-bottom: 8px;
}

#brx-footer .footer-menu-items a {
  color: #ccc;
  display: inline-block;
  padding: 2px 0;
}

#brx-footer .footer-menu-items a:hover,
#brx-footer .footer-menu-items a:focus {
  color: #fff;
}

/* Contact block */
#footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer-contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

#brx-footer .contact-icon {
  margin-right: 10px;
}

#brx-footer .contact-text {
  color: #ccc;
}

/* Trustpilot embed */
#brx-footer .trustpilot-widget {
  margin-top: 10px;
margin-left:-40px
}

/* Tribe image block */
#brxe-qhrqyf {
  flex: 1 1 180px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  margin-top: 0; /* Remove the offset pushing it to a new row */
}

#brxe-qhrqyf img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 10px;
}

#brxe-bvdbep p {
  color: #ccc;
  font-style: italic;
  font-size: 14px;
}


/* Responsive layout */
@media (max-width: 768px) {
  #brxe-yppznp {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

#brx-footer  .brxe-container,
  .footer-left-column {
    align-items: center;
    text-align: center;
  }

#brx-footer  .footer-social-icons {
    justify-content: center;
		color:white;
  }
#brx-footer	.trustpilot-widget {
  margin-top: 10px;
margin-left:0px;
}
}
