/** Shopify CDN: Minification failed

Line 17:9 Unexpected "{"
Line 17:18 Expected ":"
Line 32:9 Unexpected "{"
Line 32:18 Expected ":"
Line 39:9 Unexpected "{"
Line 39:18 Expected ":"
Line 46:9 Unexpected "{"
Line 46:18 Expected ":"
Line 55:9 Unexpected "{"
Line 55:18 Expected ":"
... and 6 more hidden warnings

**/
/* Target the button within the banner */
#Banner-{{ section.id }} .banner__buttons .button {
    font-size: 2.4rem; /* Doubled font size (1.6rem * 1.5) - Adjust as needed */
    padding: 30px 60px; /* Doubled padding (20px * 1.5 and 40px * 1.5) - Adjust as needed */
    line-height: 2.1; /* Adjust if necessary */
    border-radius: 15px; /* Adjust if necessary */
    background-color: #846f6f;
    border: none;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

#Banner-{{ section.id }} .banner__buttons .button:hover {
    background-color: #614f4f;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
    transform: scale(1.05); /* Optional: Scale up slightly on hover */
}

/* Adjust the button container if needed */
#Banner-{{ section.id }} .banner__buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px; /* Adjust as needed */
}

/* If you have a secondary button */
#Banner-{{ section.id }} .banner__buttons .button--secondary {
    background-color: #846f6f;
    font-size: 2.4rem; /* Match the primary button size */
    padding: 30px 60px; /* Match the primary button padding */
    line-height: 2.1;
    border: none;
    color: white;
}

#Banner-{{ section.id }} .banner__buttons .button--secondary:hover {
    background-color: #614f4f;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
    transform: scale(1.05); /* Optional: Scale up slightly on hover */
}

@media (max-width: 768px) {
  #Banner-{{ section.id }} .banner__buttons .button {
    font-size: 1.6rem; /* Adjust font size for mobile */
    padding: 20px 40px; /* Adjust padding for mobile */
  }
    #Banner-{{ section.id }} .banner__buttons .button--secondary {
    font-size: 1.6rem; /* Adjust font size for mobile */
    padding: 20px 40px; /* Adjust padding for mobile */
  }
}

/* Positioning adjustments (choose one of the methods) */
/* Example 1: Margin on the button container (adjust -40px as needed) */
#Banner-{{ section.id }} .banner__buttons {
    margin-top: -40px; 
}

/* Example 2: Absolute positioning (adjust top as needed) */
/* #Banner-{{ section.id }} .banner__content {
    position: relative;
}
#Banner-{{ section.id }} .banner__buttons {
    position: absolute;
    top: 30%;  
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    width: 100%;
}
#Banner-{{ section.id }} .banner__buttons .button {
    margin: 0;
} */

/* Example 3: Flexbox adjustments (if applicable) */
/* #Banner-{{ section.id }} .banner__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
#Banner-{{ section.id }} .banner__buttons {
    margin-top: 0;
} */