body {
    padding:0 !important;
  -webkit-user-select: auto !important; /* Safari/Chrome */
  -ms-user-select: auto !important;     /* IE 10+ */
  user-select: auto !important;         /* Standard syntax */
}

.location-page-title{
    font-weight: 900;
}

.store-details-template .innerPgCont .wpb-content-wrapper > .vc_row > .vc_col-sm-9{
    width: 100%;
}

.store-details-template .innerPgCont .wpb-content-wrapper > .vc_row > .vc_col-sm-9 .vc_column-inner .wpb_wrapper .wpb_wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.store-details-template .innerPgCont .wpb-content-wrapper > .vc_row > .vc_col-sm-9 .vc_column-inner .wpb_wrapper .wpb_wrapper h3:first-child{
    display: block;
    width: 100%;
    clear: both;
    flex: 1 0 100%;
    text-align: center;
}

.store-details-template .innerPgCont .wpb-content-wrapper > .vc_row > .vc_col-sm-9 .vc_column-inner .wpb_wrapper br{
    display: none;
}

.store-details-template .innerPgCont .wpb-content-wrapper > .vc_row > .vc_col-sm-9 .vc_column-inner .wpb_wrapper h4,
.store-details-template .innerPgCont .wpb-content-wrapper > .vc_row > .vc_col-sm-9 .vc_column-inner .wpb_wrapper h3:not(:first-child){
    flex: 1 0 20%;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px !important;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 700;
}

.store-details-template .innerPgCont .wpb-content-wrapper > .vc_row > .vc_col-sm-9 .vc_column-inner .wpb_wrapper h4 a:last-child,
.store-details-template .innerPgCont .wpb-content-wrapper > .vc_row > .vc_col-sm-9 .vc_column-inner .wpb_wrapper h3 a:last-child
{
    background: #df4219;
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 7px;
    margin-top: auto;
    width: 100%;
}

.store-details-template .innerPgCont .wpb-content-wrapper > .vc_row > .vc_col-sm-9 .vc_column-inner .wpb_wrapper h4 a,
.store-details-template .innerPgCont .wpb-content-wrapper > .vc_row > .vc_col-sm-9 .vc_column-inner .wpb_wrapper h3:not(:first-child) a{
    margin-top: 10px;
    font-size: 18px;
}
.store-details-template .innerPgCont .wpb-content-wrapper > .vc_row > .vc_col-sm-9 .vc_column-inner .wpb_wrapper h4 a:last-child font,
.store-details-template .innerPgCont .wpb-content-wrapper > .vc_row > .vc_col-sm-9 .vc_column-inner .wpb_wrapper h3:not(:first-child) a:last-child font{
    color: #fff;
    font-size: 16px;
}



/* LOCATIONS */
/* Store Locator - Custom Styles */

.store-details-template {
    font-family: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    background: #f8fafc;
}

.store-details-template .storecontainer {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 0;
    box-shadow: none;
}

.store-details-template hr {
    display: none;
}

/* Main Section Titles (USA LOCATIONS, CANADA LOCATIONS) */
.store-details-template .storecontainer h2 {
    font-size: 36px !important;
    font-weight: 700 !important;
    color: #333 !important;
    margin-bottom: 50px !important;
    text-align: center;
    position: relative;
    padding-bottom: 20px !important;
}

.store-details-template .storecontainer h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #FF6B1A;
}

/* Locations Grid */
.store-details-template .storelocations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.store-details-template .storelocations-grid:last-child {
    margin-bottom: 0;
}

/* Location Column */
.store-details-template .storelocation-column {
    display: flex;
    flex-direction: column;
}

/* Region Titles (Northeast, Southeast, etc.) */
.store-details-template .storelocation-column h3 {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #FF6B1A !important;
    margin-bottom: 20px !important;
    padding-bottom: 10px !important;
    border-bottom: 2px solid #FF6B1A;
    text-transform: capitalize;
}

/* State/Province Links */
.store-details-template .storelocation-column a {
    display: block;
    padding: 10px 0 !important;
    color: #333 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    padding-left: 0 !important;
    text-transform: capitalize;
}

.store-details-template .storelocation-column a:last-child {
    border-bottom: none !important;
}

.store-details-template .storelocation-column a:before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
    color: #FF6B1A;
    font-weight: 700;
}

.store-details-template .storelocation-column a:hover {
    color: #FF6B1A !important;
    padding-left: 20px !important;
}

.store-details-template .storelocation-column a:hover:before {
    opacity: 1;
}

/* Override any inline styles */
.store-details-template .storelocation-column a storeh2 {
    display: inline;
    font-size: inherit !important;
    font-weight: inherit !important;
    color: inherit !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Responsive Design */
@media (max-width: 991px) {
    .store-details-template .storecontainer {
        padding: 50px 30px;
    }

    .store-details-template .storecontainer h2 {
        font-size: 32px !important;
        margin-bottom: 40px !important;
    }

    .store-details-template .storelocations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .store-details-template .storecontainer {
        padding: 40px 25px;
    }

    .store-details-template .storecontainer h2 {
        font-size: 28px !important;
        margin-bottom: 30px !important;
    }

    .store-details-template .storelocations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 50px;
    }

    .store-details-template .storelocation-column h3 {
        font-size: 18px !important;
        margin-top: 0 !important;
    }

    .store-details-template .storelocation-column a {
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .store-details-template {
        padding: 0;
    }

    .store-details-template .storecontainer {
        padding: 30px 20px;
        border-radius: 0;
    }

    .store-details-template .storecontainer h2 {
        font-size: 24px !important;
        margin-bottom: 25px !important;
    }

    .store-details-template .storelocations-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }

    .store-details-template .storelocation-column {
        margin-bottom: 15px;
    }

    .store-details-template .storelocation-column h3 {
        font-size: 18px !important;
        margin-bottom: 15px !important;
    }

    .store-details-template .storelocation-column a {
        font-size: 14px !important;
        padding: 8px 0 !important;
        line-height: 1.5 !important;
    }

    .store-details-template .storecontainer h2:after {
        width: 60px;
        height: 3px;
    }
}