/* --- START OF REDUCED style-layout.css --- */

/* Base Resets and Defaults (Keep essential ones) */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-family: sans-serif; /* Base font */
    height: 100%; /* Often needed */
  }
  
  body {
    margin: 0;
    color: #333; /* Default text color */
    background-color: #fff; /* Default background */
    min-height: 100%;
    font-family: Arial, sans-serif; /* Fallback font-family */
    font-size: 14px; /* Base font size */
    line-height: 20px; /* Base line height */
  }
  
  /* Keep box-sizing */
  * {
    box-sizing: border-box;
  }
  
  article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block; /* Ensure block display for semantic elements */
  }
  
  a {
    background-color: #0000; /* transparent */
    color: #1a1b1f; /* Default link color from original */
    text-decoration: underline; /* Default link underline from original */
    transition: opacity .2s; /* Transition from original */
    display: block; /* Set in original for links */
  }
  
  a:hover {
    color: #32343a; /* From original */
    opacity: 1; /* Common hover effect */
  }
  
  a:active {
    color: #43464d; /* From original */
    opacity: .7; /* Common active effect */
  }
  
  b, strong {
    font-weight: bold;
  }
  
  img {
    border: 0; /* Remove default image border */
    vertical-align: middle; /* Align images nicely */
    max-width: 100%; /* Responsive images */
    display: inline-block; /* Original display setting */
  }
  
  /* Basic Typography (Keep h1-h6, p from original, adjust as needed) */
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  h1 {
    margin-top: 20px;
    font-size: 38px; /* Adjusted based on later rules */
    line-height: 44px; /* Adjusted based on later rules */
  }
  
  h2 {
    margin-top: 10px; 
    margin-bottom: 10px;
    font-size: 36px; 
    font-weight: 400; /* From original .section-heading */
    line-height: 50px; 
  }
  
  h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 400;
    line-height: 46px;
  }
  
  h4 {
    margin-top: 10px; 
    margin-bottom: 10px; 
    font-size: 18px; /* Based on .footer-heading */
    font-weight: 600; /* Based on .footer-heading */
    line-height: 24px; /* Default */
    font-family: Montserrat, sans-serif; /* Added from .footer-heading */
  }
  
  h5 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
    line-height: 34px;
  }
  
  h6 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
  }
  
  p {
    margin-top: 0;
    margin-bottom: 10px;
  }
  
  ul, ol {
    margin-top: 0; /* Reset */
    margin-bottom: 10px; /* Default spacing */
    padding-left: 40px; /* Default indent */
  }
  
  li {
    margin-bottom: 10px; /* Default spacing from original */
  }
  
  /* Webflow Base (Keep necessary ones) */
  .w-inline-block {
    max-width: 100%;
    display: inline-block;
  }
  
  .w-layout-grid {
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }
  
  /* Body Styling from Theme */
  body.body { /* More specific selector from HTML */
    color: #1a1b1f;
    background-color: #fff;
    padding-left: 0; /* Added from body.body rule */
    padding-right: 0; /* Added from body.body rule */
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
  }
  
  /* Layout Containers and Sections */
  .container {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .container:before, .container:after { /* Clearfix from w-container */
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
  }
  
  .container:after {
    clear: both;
  }
  
  .section {
    margin-left: 0px; /* Default */
    margin-right: 0px; /* Default */
    padding-top: 00px;
    padding-bottom: 00px;
  }
  
  .section.cc-store-home-wrap {
    margin-left: 80px; /* Override */
    margin-right: 80px; /* Override */
    padding-top: 0px; /* Override */
    padding-left: 0px; /* Override */
    padding-right: 0px; /* Override */
    padding-bottom: 0px; /* Added default */
    
  }
  
  /* Navigation Styles (Keep relevant .navigation, w-nav, etc.) */
  .navigation {
    color: #000; /* Overridden by items? */
    background-color: #004369; /* Specific nav color */
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    padding: 0 30px; /* Default */
    display: flex;
  }
  
  .w-nav {
    z-index: 1000;
    background: #004369; /* Base nav background, overridden by .navigation */
    position: relative;
  }
  
  .w-nav:before, .w-nav:after {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
  }
  
  .w-nav:after {
    clear: both;
  }
  
  .navigation-wrap {
    flex: 1;
    justify-content: space-between;
    align-items: center;
    display: flex;
    position: relative;
  }
  
  .logo-link {
    z-index: 1;
    float: left; /* From w-nav-brand */
    color: #333; /* From w-nav-brand */
    text-decoration: none; /* From w-nav-brand */
    position: relative; /* From w-nav-brand */
    display: block; /* Added for consistency */
  }
  
  .logo-image {
    display: block;
  }
  
  .w-nav-brand { /* Base styles for brand link if needed elsewhere */
    float: left;
    color: #333;
    text-decoration: none;
    position: relative;
  }
  
  .menu {
    z-index: 0;
    justify-content: center;
    align-self: center;
    align-items: center;
    display: flex;
    position: absolute; /* From original */
    inset: 0%; /* From original */
  }
  
  .navigation-items {
    color: #fff; /* Specific color */
    flex: none;
    justify-content: center;
    align-items: center;
    display: flex;
    float: right; /* From w-nav-menu */
    position: relative; /* From w-nav-menu */
  }
  
  .w-nav-menu {
    float: right;
    position: relative;
  }
  
  .navigation-item {
    opacity: 1;
    color: #fff; /* Specific nav item color */
    letter-spacing: 1px;
    text-transform: uppercase;
    align-self: auto;
    padding: 9px 20px; /* Adjusted from base w-nav-link and nav-item */
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
    text-decoration: none; /* Ensure no underline */
    display: inline-block; /* From w-nav-link */
    position: relative; /* From w-nav-link */
    vertical-align: top; /* From w-nav-link */
  }
  
  .navigation-item:hover {
    color: #01949a; /* Specific hover color */
    opacity: 1; /* Reset opacity */
  }
  
  .navigation-item:active {
    opacity: .4; /* Specific active opacity */
  }
  
  .navigation-item.w--current {
    opacity: 1;
    color: #1a1b1f; /* Specific current color */
    font-weight: 600;
  }
  
  .navigation-item.w--current:hover {
    opacity: 1;
    color: #32343a;
  }
  
  .navigation-item.w--current:active {
    opacity: .7;
    color: #32343a;
  }
  
  .w-nav-link { /* Base styles if needed elsewhere */
    vertical-align: top;
    color: #ffffff;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    text-decoration: none;
    display: inline-block;
    position: relative;
  }
  
  .w-nav-link.w--current {
    color: #0082f3; /* Base current color */
  }

  .w-nav-menu {
    float: right;
    position: relative;
  }
  

  
  .w--nav-link-open {
    display: block;
    position: relative;
  }
  
  .w-nav-overlay {
    width: 100%;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    overflow: hidden;
  }
  
  .w-nav-overlay [data-nav-menu-open] {
    top: 0;
  }
  
  .w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
  }
  
  .w-nav[data-animation="over-left"] .w-nav-overlay, .w-nav[data-animation="over-left"] [data-nav-menu-open] {
    z-index: 1;
    top: 0;
    right: auto;
  }
  
  .w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
  }
  
  .w-nav[data-animation="over-right"] .w-nav-overlay, .w-nav[data-animation="over-right"] [data-nav-menu-open] {
    z-index: 1;
    top: 0;
    left: auto;
  }
  
  .w-nav-button {
    float: right;
    cursor: pointer;
    -webkit-tap-highlight-color: #0000;
    tap-highlight-color: #0000;
    -webkit-user-select: none;
    user-select: none;
    padding: 18px;
    font-size: 24px;
    display: none;
    position: relative;
  }
  
  .w-nav-button:focus {
    outline: 0;
  }
  
  .w-nav-button.w--open {
    color: #fff;
    background-color: #c8c8c8;
  }
  
  .w-nav[data-collapse="all"] .w-nav-menu {
    display: none;
  }
  
  .w-nav[data-collapse="all"] .w-nav-button, .w--nav-dropdown-open, .w--nav-dropdown-toggle-open {
    display: block;
  }
  
  .w--nav-dropdown-list-open {
    position: static;
  }
  
  @media screen and (max-width: 991px) {
    .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none;
      /* Keep your existing absolute positioning, background etc. here */
      background-color: #fff;
      position: absolute;
      left: 0;
      right: 0;
      top: 100%; /* Position below the nav bar */
      overflow: visible;
      border-top: 1px solid #e4e4e4; /* Add a separator */
      box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Optional: Add shadow */
    }

    /* Show the menu when the parent .navigation has the 'menu-is-open' class */
    .navigation.menu-is-open .navigation-items {
       display: block; /* Or 'flex' if you want flexbox control inside */
    }

    /* Style the individual items for vertical layout */
    .navigation.menu-is-open .navigation-item {
      display: block; /* Make each link take full width */
      text-align: center;
      padding: 15px 30px;
      color: #333; /* Adjust color for light background */
      border-bottom: 1px solid #eee; /* Separator lines */
    }
    .navigation.menu-is-open .navigation-item:last-child {
      border-bottom: none;
    }
    .navigation.menu-is-open .navigation-item:hover {
      background-color: #f7f8f9;
      color: #01949a; /* Hover color */
    }

    [data-nav-menu-open] {
      display: block !important;
      text-align: center;
      background: #fff;
      min-width: 200px;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      overflow: visible;
    }
    .w-nav[data-collapse="medium"] .w-nav-button {
      display: block;
    }

/* Rule from Webflow base: Hide the menu by default when collapsed */
    .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none;
      /* Add essential styles for how it should look when *opened* by JS */
      position: absolute; /* Position it below the navbar */
      left: 0;
      right: 0;
      top: 100%; /* Place it right below the parent .w-nav */
      background-color: #fff; /* Give it a background */
      border-top: 1px solid #e4e4e4; /* Optional separator */
      box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1); /* Optional shadow */
      overflow: visible; /* Ensure content isn't clipped */
      z-index: 999; /* Ensure it's above content below */
}

/* CORE CHANGE: Show the menu ONLY when it has the 'data-nav-menu-open' attribute */
.w-nav[data-collapse="medium"] .w-nav-menu[data-nav-menu-open] {
    display: block; /* Or 'flex' if you prefer flexbox for layout inside */
}

/* --- Styling for items INSIDE the opened menu --- */
.w-nav-menu[data-nav-menu-open] .navigation-item {
    display: block; /* Stack items vertically */
    padding: 15px 20px; /* Adjust padding for mobile */
    text-align: center;
    color: #333; /* Ensure text is visible on light background */
    border-bottom: 1px solid #eee; /* Separator lines */
    text-decoration: none; /* Remove underline if needed */
}

.w-nav-menu[data-nav-menu-open] .navigation-item:last-child {
    border-bottom: none; /* No border on the last item */
}

.w-nav-menu[data-nav-menu-open] .navigation-item:hover {
    background-color: #f7f8f9; /* Mobile hover effect */
    color: #01949a;
}
}
  
  @media screen and (max-width: 767px) {
    .w-nav[data-collapse="small"] .w-nav-menu {
      display: none;
    }
  
    .w-nav[data-collapse="small"] .w-nav-button {
      display: block;
    }
  
    .w-nav-brand {
      padding-left: 10px;
    }
  }
  
  @media screen and (max-width: 479px) {
    .w-nav[data-collapse="tiny"] .w-nav-menu {
      display: none;
    }
  
    .w-nav[data-collapse="tiny"] .w-nav-button {
      display: block;
    }
  }
  
  .w-tabs {
    position: relative;
  }
  
  .w-tabs:before, .w-tabs:after {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
  }
  
  .w-tabs:after {
    clear: both;
  }
  
  .w-tab-menu {
    position: relative;
  }
  
  .w-tab-link {
    vertical-align: top;
    text-align: left;
    cursor: pointer;
    color: #222;
    background-color: #ddd;
    padding: 9px 30px;
    text-decoration: none;
    display: inline-block;
    position: relative;
  }
  
  .w-tab-link.w--current {
    background-color: #c8c8c8;
  }
  
  .w-tab-link:focus {
    outline: 0;
  }
  
  .w-tab-content {
    display: block;
    position: relative;
    overflow: hidden;
  }
  
  .w-tab-pane {
    display: none;
    position: relative;
  }
  
  .w--tab-active {
    display: block;
  }
  
  /* Mobile Menu Button (Keep structure) */
  .menu-button {
    padding: 0; /* Reset default */
    float: right; /* From w-nav-button */
    cursor: pointer; /* From w-nav-button */
    -webkit-tap-highlight-color: #0000;
    tap-highlight-color: #0000;
    -webkit-user-select: none;
    user-select: none;
    font-size: 24px; /* From w-nav-button */
    display: none; /* Hidden by default */
    position: relative; /* From w-nav-button */
  }
  
  .w-nav-button { /* Base styles */
    float: right;
    cursor: pointer;
    -webkit-tap-highlight-color: #0000;
    tap-highlight-color: #0000;
    -webkit-user-select: none;
    user-select: none;
    padding: 18px;
    font-size: 24px;
    display: none;
    position: relative;
  }
  
  .menu-icon {
    display: block; /* Ensure visibility */
  }
  
  .menu-button:focus {
    outline: 0;
  }
  
  .w-nav-button:focus {
    outline: 0;
  }
  
  .menu-button.w--open {
    background-color: #01949a; /* transparent */
  }
  
  .w-nav-button.w--open {
    color: #fff;
    background-color: #c8c8c8; /* Base open color */
    border: 1px solid #1a1b1f; /* Base open border */
  }
  
  /* Nav collapse logic - Keep the one used: data-collapse="medium" */
  @media screen and (max-width: 991px) {
    .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none; /* Hide menu */
    }
  
    .w-nav[data-collapse="medium"] .w-nav-button {
      display: block; /* Show button */
    }
  
    /* Adjustments from original template's responsive styles */
      .logo-link.w--current { /* Not sure if w--current is used on logo link */
      flex: 1;
    }
      .menu {
      margin-left: 10px;
      position: static;
    }
      .navigation-wrap {
      
    }
      .navigation {
      padding: 0px 10px; /* Padding changes */
    }
      .navigation-item {
      text-align: center;
      padding: 15px 30px; /* Padding changes */
      transition: background-color .4s, opacity .4s, color .4s;
      display: block; /* Stack vertically */
    }
      .navigation-item:hover {
      background-color: #f7f8f9;
    }
      .navigation-item:active {
      background-color: #eef0f3;
    }
      .menu-button {
      padding: 0;
    }
      .menu-button.w--open {
      background-color: #01949a;
    }
      .navigation-items {
      background-color: #fff; /* Background for opened menu */
      position: absolute; /* Position opened menu */
      left: 0;
      right: 0;
      top: 100%;
      overflow: visible;
      display: none; /* Hidden until opened */
    }
     [data-nav-menu-open] { /* Style for the container when menu is open */
      display: block !important; /* Show the menu */
      text-align: center;
      background: #fff; /* Match navigation-items */
      min-width: 200px;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      overflow: visible;
    }
    .w-nav-overlay [data-nav-menu-open] {
       top: 0;
    }
     .w-nav-overlay { /* If overlay animation is used */
      width: 100%;
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      overflow: hidden;
    }
  }
  
  /* Buttons */
  .primary-button {
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    background-color: #db1f48; /* Specific primary color */
    border-radius: 0;
    padding: 12px 25px;
    font-size: 12px;
    line-height: 20px;
    text-decoration: none;
    transition: background-color .4s, opacity .4s, color .4s;
    display: inline-block; /* Ensure it behaves like a button */
    border: 0; /* From w-button */
    cursor: pointer; /* From w-button */
  }
  
  .primary-button:hover {
    color: #fff;
    background-color: #32343a; /* Specific hover */
    opacity: 1; /* Reset opacity */
  }
  
  .primary-button:active {
    background-color: #43464d; /* Specific active */
  }
  
  .primary-button.cc-contact-us {
    z-index: 5; /* Specific */
    background-color: #01949a; /* Specific color */
    margin-left: 20px; /* Specific margin */
    padding-left: 22px; /* Specific padding */
    padding-right: 22px; /* Specific padding */
    display: flex; /* Overrides inline-block if needed */
    position: sticky; /* Specific positioning */
    /* Removed grid properties as they might not apply directly */
  }
  
  .primary-button.cc-contact-us:hover {
    background-color: #db1f48; /* Specific hover */
  }
  
  .primary-button.footer-button { /* Style for footer buttons */
    padding: 10px 15px;
    font-size: 14px;
    display: inline-block;
    text-align: center;
  }
  
  /* Text Blocks inside buttons */
  .text-block {
    margin-left: 4px;
    margin-right: 4px;
    font-weight: 600;
  }
  
  .text-block-2 {
    font-weight: 600;
  }
  
  /* Main Content Area Styles */
  .motto-wrap {
    text-align: center;
    width: 80%;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .heading-jumbo-small {
    text-transform: none;
    margin-top: 50px;
    margin-bottom: 0;
    font-family: Vollkorn, serif; /* Specific font */
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
  }
  
  .divider {
    background-color: #eee;
    height: 1px;
    margin-top: 20px; /* Add some spacing */
    margin-bottom: 20px; /* Add some spacing */
  }
  
  .home-content-wrap {
     margin-top: 40px; /* Original spacing */
     /* Removed aspect-ratio, object-fit as they apply to video/img */
  }
  
  .about-grid {
    grid-column-gap: 80px;
    grid-row-gap: 30px;
    grid-template: ". ." / 1fr 2fr; /* Specific template */
    align-items: center;
    margin-bottom: 80px;
    position: static; /* Default */
  }
  
  .about-grid.cc-about-2 {
    grid-template-columns: 2fr 1fr; /* Different column setup */
    grid-template-areas: ". ."; /* Reset areas if needed */
  }
  
  /* Grid item placement (Keep these ID styles) */
  #w-node-_86e64837-0616-515b-4568-76c147234d34-730724b2 {
    grid-area: 1 / 1 / 2 / 2;
  }
  
  #w-node-_86e64837-0616-515b-4568-76c147234d41-730724b2 {
    grid-area: 1 / 2 / 2 / 3;
  }
  
  @media screen and (max-width: 1536px) {
    .section.cc-store-home-wrap {
      margin-left: 40px; 
      margin-right: 40px; 
    }
    .menu {
      margin-left: 0 15px;
    }
    .navigation {
      padding: 0px 15px; /* Padding changes */
    }
  }


  /* Responsive Grid item placement */
  @media screen and (max-width: 991px) {
    #w-node-_86e64837-0616-515b-4568-76c147234d34-730724b2 {
       grid-area: 1 / 1 / 2 / 2; /* Stays same or changes? Check visual */
    }
    #w-node-_86e64837-0616-515b-4568-76c147234d41-730724b2 {
       grid-area: 2 / 1 / 3 / 2; /* Stacks below */
    }
    .about-grid, .about-grid.cc-about-2 { /* Stack grid items */
        grid-template-columns: 1fr; /* Single column */
        grid-template-areas: "." "."; /* Define rows */
        text-align: center; /* Center content */
        grid-row-gap: 50px;
    }
    .section.cc-store-home-wrap {
      margin-left: 0px; 
      margin-right: 0px; 
    }

  }
  
  
  .home-section-wrap {
    margin-bottom: 30px;
  }
  
  .label {
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    display: block; /* Ensure it takes space */
  }
  
  .label.cc-light {
    opacity: .6;
  }
  
  .section-heading {
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: 400; /* Specific weight */
    /* Inherits h2 size/line-height */
  }
  
  .paragraph-light {
    opacity: .6;
  }
  
  .blog-heading { /* Used empty in HTML, provide base style */
    text-align: center;
    margin-bottom: 60px;
  }
  
  /* Footer Styles */
  .footer-section {
    background-color: #e4e4e4; /* Footer background */
    padding: 60px 0 20px;
    border-top: 1px solid #e4e4e4; /* Use same color for consistency */
  }
  
  .footer-content-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  
  .footer-logo {
    margin-bottom: 15px;
    width: 200px; /* Explicit width from HTML */
    display: block; /* Ensure proper layout */
  }
  
  .footer-heading {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
    /* Inherits h4 styles basically */
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-link {
    color: #333;
    text-decoration: none; /* Override default 'a' style */
    transition: color 0.3s;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    display: block; /* Make link clickable area larger */
  }
  
  .footer-link:hover {
    color: #007bff; /* Standard link hover color */
    opacity: 1; /* Reset opacity */
  }
  
  .account-links {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .contact-info p { /* Style text within contact-info */
    margin-bottom: 0; /* Adjust spacing if needed */
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e4e4e4; /* Match section border */
  }
  
  .footer-legal {
    display: flex;
    gap: 20px;
  }
  
  .footer-link.legal-link {
    font-size: 12px;
  }
  
  .copyright p { /* Style copyright text */
    font-size: 12px;
    margin: 0;
  }
  
  /* Responsive Footer */
  @media (max-width: 991px) {
    .footer-content-wrap {
      grid-template-columns: repeat(2, 1fr); /* 2 columns */
    }
  }
  
  @media screen and (max-width: 767px) {
    .footer-content-wrap {
      grid-template-columns: 1fr; /* 1 column */
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
  
    .footer-legal {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .account-links {
      flex-direction: column; /* Stack buttons */
      align-items: center; /* Center stacked buttons */
    }
    .primary-button.footer-button {
       width: 80%; /* Make buttons wider on mobile */
       max-width: 250px;
    }
  
    /* General Responsive Adjustments */
    .section {
      margin-left: 0px; /*was 15*/
      margin-right: 0px;
    }
    .section.cc-store-home-wrap {
      margin-left: 0px; /* Adjust padding */
      margin-right: 0px;
    }
    .container {
      /* max-width: none; */ /* Allow container to be full width if needed */
    }
     .heading-jumbo-small {
        font-size: 30px;
        line-height: 52px;
     }
     .about-grid {
        width: 100%; /* Ensure grid takes full width */
     }
     .motto-wrap {
        width: 90%;
     }
  }
  
  @media screen and (max-width: 479px) {
    .navigation {
      padding-left: 0px;
      padding-right: 5px;
    }
    .heading-jumbo-small {
      font-size: 28px; 
      line-height: 40px;
    }
    .primary-button.cc-contact-us {
      padding-left: 10px; 
      padding-right: 10px;
      padding-top: 10px;
      padding-bottom: 10px; 
      margin-right: 0px;
    }
    .text-block {
      margin-left: 2px;
      margin-right: 2px;
      font-weight: 500;
      margin-top: 0px; 
      margin-bottom: 0px; 
    }
  
    .text-block-2 {
      font-weight: 500;
    }
     .about-grid img {
         margin-left: auto; 
         margin-right: auto;
     }
     .section.cc-store-home-wrap {
      margin-left: 00px; 
      margin-right: 00px; 
     }
  }
  
  /* --- END OF REDUCED style-layout.css --- */