/* Add your css code here */
/*
Variable Definitions:
  --r-bg: Region background color. Sets the overall background color of the region wrapper.
  --r-tx: Region text color. Sets the default text color for all paragraph and inline text within the region.
  --r-h1: Region heading color. Specifically sets the color for headings (h1, h2, h3) within the region, allowing heading color control independently from body text.
  --r-lk: Region link color. Sets the color for anchor (<a>) links within the region in their normal (non-hover) state.
  --r-lk-h: Region link hover color. Sets the color of links within the region when hovered or focused, providing clear interactive feedback.
  --r-br: Region border color. Sets the border color for the region, useful for visual separation of sections.
  --r-bg-fr: Form background color within the region. Sets the background color specifically for input forms (e.g., login forms, search bars) within the region, enabling clear visual separation of form areas.
  --r-tx-lk: Menu link text color within the region. Sets the text color for menu links in navigation blocks or region-based menus, ensuring consistency with your theme’s navigation design.
  --r-tx-lk-h: Menu link hover text color within the region. Sets the hover or focus color for menu link text, aiding in clear navigation feedback for users.
  --r-bg-lk: Menu link background color within the region. Sets the background color of menu links in their normal state within the region for better menu styling control.
  --r-bg-lk-h: Menu link background hover color within the region. Sets the background color for menu links on hover/focus, ensuring clear user interaction indication.
  --r-tx-bt:  Button text color within the region. Sets the text color for buttons within the region (e.g., call-to-action buttons, form submit buttons).
  --r-tx-bt-h: Button text hover color within the region. Sets the text color for buttons when hovered/focused, providing interactive feedback.
  --r-bg-bt: Button background color within the region. Sets the background color for buttons in their normal state, aligning them visually with your design system.
  --r-bg-bt-h:  Button background hover color within the region. Sets the background color for buttons on hover/focus, improving interactivity and user experience.
*/

/*
Regions Names, each region has an ID and a Class with the same name.
You can use .page-wrapper or #page-wrapper
#page-wrapper {}
#primary-sidebar-menu {}
#fixed-search-block {}
#popup-login-block {}
#header {}
*/
#header {
  background-image: url('../../images/backgrounds/background.png');  /* absolute path from site root */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f5f0e6; /* fallback color if image fails */
}
#header-inner {
  background-image: none;  /* absolute path from site root */
  background: transparent;
}
.site-logo
{
    margin-top: 20px;
    max-width: 70px;
}
#header.name-l-64 .site-name-link {
        font-size: 48px;
        line-height: 2em;
    }

/* Force taller + better visibility on mobile */
@media (max-width: 768px) {
  #header {
    background-image: url('../../images/backgrounds/background1.png');
    background-size: inherit;
  }
  
}

.page-title-text {
    font-size: 2.5em;
    line-height: inherit!important;
    -webkit-text-stroke: 1px #21005b;
    text-stroke: 1px black;
}
.site-name-link
{
    -webkit-text-stroke: 0.4px #fff3de;
    text-stroke: 0.4px #fff3de;
}
.field--name-field-media-image, .field--name-price
{
    width: fit-content;
    margin: 0 auto;
}

.page-wrapper a:hover
{
     color: #9c27b0!important;
}

.view-id-candle_catalog .views-field-title
{
    text-align: center;
}
/*
#primary-menu {}
#welcome-text {}

#top-container {}
#top-box-first {}
#top-box-second {}
#top-box-third {}

#system-messages {}
#breadcrumb {}
#page-title {}

#main-container {}
#sidebar-box-first {}
#sidebar-box-main {}
#sidebar-box-second {}

#bottom-container {}
#bottom-box-first {}
#bottom-box-second {}
#bottom-box-third {}
#bottom-box-fourth {}

#footer-container {}
#footer-box-first {}
#footer-box-second {}
#footer-box-third {}

#footer-menu {}
#copyright {}

Examples:

#page-wrapper {
  background-color: var(--r-bg);
  color: var(--r-tx);
  border-color: var(--r-br);
}

h1, h2, h3 {
  color: var(--r-h1);
}

a:not(li.nav__menu-item a) {
  color: var(--r-lk);
  color: var(--r-lk-h);
}

input:not(.button) {
  background-color: var(--r-bg-fr);
}

li.nav__menu-item a {
  color: var(--r-tx-lk);
  background-color: var(--r-bg-lk);
}

li.nav__menu-item a:hover {
  color: var(--r-tx-lk-h);
  background-color: var(--r-bg-lk-h);
}

button:not(li.nav__menu-item button) {
  color: var(--r-tx-bt);
  background-color: var(--r-bg-bt);
}

button:not(li.nav__menu-item button):hover {
  color: var(--r-tx-bt-h);
  background-color: var(--r-bg-bt-h);
}
https://www.drupal.org/docs/extending-drupal/themes/contributed-themes/solo/instructions-for-developers-on-using-colors-in-solo-theme
*/

.branding-second.site-name-outer.site-slogan-outer .site-slogan {
    letter-spacing: 2.8px;
    background: #fff3de;
    padding: 0px 8px;
    border-radius: 2px;
}
@media (max-width: 768px) {
    .branding-second.site-name-outer.site-slogan-outer .site-slogan {
    letter-spacing: 2.6px;
  }
}
 .site-name, .site-slogan {
    font-weight: inherit!important;
 }
 


.views-view-responsive-grid__item {
  border: 2px solid transparent;
  border-radius: 14px;
  background: white;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.views-view-responsive-grid__item::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.views-view-responsive-grid__item:hover {
  transform: scale(1.05) translateY(-8px);
  border-color: transparent;
}

.views-view-responsive-grid__item:hover::before {
  opacity: 0.7;
}

.cart--cart-block
{
    font-size: 0.7em;
}

.cart-offcanvas.is-open {
    background: #fbf2ff;
    border: 10px solid #5f2879;
    padding: 0px 10px;
    margin: 10px;
}

.cart-block--offcanvas-contents__update
{
    background:#7eb2fc ;
    border: 3px solid #5f2879;
    
}
.cart-block--offcanvas-contents__update:hover
{
    background:#5f2879 ;
    border: 3px solid #7eb2fc;
    color: white;
    
}

.cart-block--offcanvas-contents__links
{
    background: #5f2879;
    color: #fff;
    text-align: center;
    display: inline-block;
    padding: 10px;
    border-radius: 5px;
    border: 3px solid #7eb2fc;
}
.cart-block--offcanvas-contents__links:hover
{
    background: #7eb2fc;
    color: #000;
    border-color: #5f2879;
}

.cart--cart-offcanvas__close
{
    text-align: center;
    display: inline-block;
    font-size: 2em;
}

.cart--cart-offcanvas__close .button
{
    margin: 0;
}

.cart--cart-offcanvas
{
    text-align: center
}

.cart-block--offcanvas-contents__items
{
    float: right;
}

h1.page-title-text
{
    font-size: 2.5em;
}
.views-field-title h2
{
    font-size: 2.5em;
}

.block-commerce-cart-flyout {
    margin: 0 auto;
    background: #6b80ae;
    border-radius: 5px;
    text-align: center;
}
.block-commerce-cart-flyout:hover {
    background: #935aef;
    border-radius: 5px;
}
.cart-block--summary__count
{
    color: #fff;
}


.cart-block--summary__icon img
{
    margin: 0 auto;
    display: inline-block;
}
.cart-block--summary__count
{
    font-size: 0.8em;
}

.messages__content a
{
    color: #b9b6df!important;
}

.field--name-weight
{
    text-align: center;
    margin: 0 auto;
    width: 140px;
}

.block-field-blockcommerce-productcandlevariations .block__title/*,
.block-field-blockcommerce-productcandlebody .block__title*/
{
    display: none;
}

.quantity-edit-input
{
    text-align: center;
}

.page-wrapper a.button, .page-wrapper input.button, .page-wrapper .solo-file-button, .page-wrapper .search-button-close button
 {
    border-color: #aeb1e3;
    color: var(--r-tx-bt, #000);
    background-color: var(--r-bg-bt, #afd0fc);
}
.page-wrapper a.button:hover, .page-wrapper input.button:hover, .page-wrapper .solo-file-button:hover, .page-wrapper .search-button-close button:hover
 {
    border-color: #afd0fc;
    color: var(--r-tx-bt, #fff)!important;
    background-color: var(--r-bg-bt, #5f4185);
    
}

.blessing {
    background-color: #f4f4f4;
    /* Or for a subtle gradient: */
    /* background: linear-gradient(to bottom, #e0f7fa, #b2ebf2); */
    
    padding: 20px 25px;                 /* Inner space so text doesn't touch edges */
    border-radius: 12px;                /* Soft rounded corners — very beach-vibe */
    margin: 20px 0;                     /* Space above/below the paragraph */
    font-family: 'Georgia', serif;      /* Optional: nicer font for blessings/poetic text */
    color: #004d40;                     /* Dark teal text for contrast */
    border: 1px solid #81d4fa;         /* Optional light border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Soft shadow for depth */
}

.gallery-container .main-image-container,
.inline-image img
{
    border-radius: 10px;
}

.field--name-quantity
{
    max-width: 140px;
    margin: 0 auto;
}

#edit-quantity-0-value,
.field--name-quantity .form-item__label
{
    text-align: center;
    display: block;
}

.messages.messages--status {
    background: linear-gradient(135deg, #4caf50 0%, #5f1870 3%, #21005b 100%);
    border-radius: 10px;
}

.solo-outer
{
    background-color: transparent;
}