/* v1777151024527 */
/* ── Certified Store Profile ── */

/* Store label — green instead of red */
.sscs-store-label {
    color: #1a6b3a !important;
}

/* Store logo — square with rounded corners, not circular */
.sscs-store-logo {
    border-radius: 8px !important;
    box-shadow: 0 0 0 2.5px #1a6b3a !important;
    object-fit: contain !important;
    background: #f8f7f4;
}

.sscs-store-logo-empty {
    border-radius: 8px !important;
}

/* Open/Closed badge */
.sscs-store-status {
    display: inline-block;
    font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: .9rem;
}

.sscs-store-open {
    background: #edf7ee;
    color: #1a6b3a;
    border: 1px solid #b8debb;
}

.sscs-store-closed {
    background: #fef0f0;
    color: #c0190f;
    border: 1px solid #f5c2c0;
}

/* Two column layout */
.sscs-store-two-col {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 0 3rem;
    margin-bottom: 1rem;
}

@media (max-width: 680px) {
    .sscs-store-two-col { grid-template-columns: 1fr; }
}

/* Hours */
.sscs-store-hours {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sscs-store-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
    font-size: 13px;
    padding: 4px 0;
    border-bottom: 1px solid #f4f1ec;
    color: #555;
}

.sscs-store-hours-row:last-child {
    border-bottom: none;
}

.sscs-hours-today {
    font-weight: 700;
    color: #1a1a1a;
}

.sscs-hours-day {
    min-width: 90px;
}

.sscs-hours-closed-text {
    color: #bbb;
    font-style: italic;
}

/* Stringer cards at store */
.sscs-store-stringer-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 540px) {
    .sscs-store-stringer-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .sscs-store-stringer-card {
        flex: 0 0 calc(50% - 5px);
    }
}

@media (min-width: 800px) {
    .sscs-store-stringer-card {
        flex: 0 0 calc(33.333% - 7px);
    }
}

.sscs-store-stringer-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #e8e4dd;
    border-radius: 8px;
    text-decoration: none !important;
    color: inherit !important;
    transition: box-shadow .2s, transform .2s;
}

.sscs-store-stringer-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    transform: translateY(-1px);
}

.sscs-store-stringer-photo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px #c0190f;
}

.sscs-store-stringer-photo-empty {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #f0eeea;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sscs-store-stringer-info {
    min-width: 0;
}

.sscs-store-stringer-badge {
    font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #c0190f;
    margin-bottom: 2px;
}

.sscs-store-stringer-name {
    font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -.01em;
    margin-bottom: 2px;
}

.sscs-store-stringer-specs {
    font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
    font-size: 11px;
    color: #aaa;
    margin-bottom: 4px;
}

.sscs-store-stringer-link {
    font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #c0190f;
}

/* ── DBA / Also Known As ──────────────────────────────────────────────────── */
.sscs-store-dba {
    font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
    font-size: 12px;
    color: #999;
    margin-bottom: .5rem;
    font-style: italic;
}

/* ── Info grid — three columns ────────────────────────────────────────────── */
.sscs-store-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 3rem;
    border-top: 1px solid #e8e4dd;
    padding-top: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 760px) {
    .sscs-store-info-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.sscs-info-section {
    border-top: none !important;
    padding-top: 0 !important;
}

/* ── Info list — clean line items ─────────────────────────────────────────── */
.sscs-info-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.sscs-info-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
    font-size: 13.5px;
    color: #333;
    margin: 0 !important;
    padding: 0 !important;
}

.sscs-info-list li a {
    color: #333 !important;
    text-decoration: none !important;
    transition: color .15s;
}

.sscs-info-list li a:hover { color: #c0190f !important; }

.sscs-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 5px;
    background: #f4f1ec;
    color: #555;
    flex-shrink: 0;
}

/* Icon color variants */
.sscs-icon-ig { background: #f7f0fd; color: #7b3fb0; }
.sscs-icon-yt { background: #fff5f5; color: #cc0000; }
.sscs-icon-fb { background: #f0f5ff; color: #1877f2; }
.sscs-icon-ss { background: #edf7f1; color: #1a6b3a; }

/* Business details in info grid — compact */
.sscs-info-section .sscs-biz-types,
.sscs-info-section .sscs-materials {
    margin-bottom: 8px;
}

.sscs-info-section .sscs-materials {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.sscs-info-section .sscs-materials-label {
    margin-bottom: 2px;
}

/* ── Open Now — desktop position fix ──────────────────────────────────────── */
.sscs-store-status {
    display: inline-flex;
    margin-top: .5rem;
    margin-bottom: 0;
}

/* ── YouTube Shorts — mobile contained ────────────────────────────────────── */
.sscs-yt-shorts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
@media (max-width: 680px) {
    .sscs-yt-shorts-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
@media (max-width: 420px) {
    .sscs-yt-shorts-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
}
.sscs-yt-short-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.sscs-yt-short-embed {
    position: relative;
    width: 100%;
    padding-top: 177.78%; /* 9:16 aspect ratio for Shorts */
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}
.sscs-yt-short-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.sscs-yt-short-title {
    font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
    font-size: 12px;
    color: #555;
    margin: 6px 0 0 !important;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Force 3-col grid on store info section ───────────────────────────────── */
.sscs-store-wrap .sscs-store-info-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0 3rem !important;
    border-top: 1px solid #e8e4dd;
    padding-top: 2rem;
    margin-bottom: 2rem;
}
@media (max-width: 760px) {
    .sscs-store-wrap .sscs-store-info-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem 0 !important;
    }
}
.sscs-store-wrap .sscs-info-section {
    border-top: none !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* ── Shorts — click-to-play ───────────────────────────────────────────────── */
.sscs-yt-short-thumb-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sscs-yt-short-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform .15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sscs-yt-short-play:hover {
    transform: translate(-50%, -50%) scale(1.15);
}

.sscs-yt-short-embed {
    position: relative;
    width: 100%;
    padding-top: 177.78%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

/* ── Business Details — full width, horizontal layout ─────────────────────── */
.sscs-biz-detail-section {
    border-top: 1px solid #e8e4dd;
    padding-top: 2rem;
}

.sscs-biz-detail-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 3rem;
}

@media (max-width: 680px) {
    .sscs-biz-detail-cols { grid-template-columns: 1fr; gap: 1rem 0; }
}

/* Each group (Materials heading + list, Brands heading + list) fills one column */
.sscs-biz-detail-cols .sscs-detail-heading { margin-top: 0 !important; }

/* ── Unified Info Card ────────────────────────────────────────────────────── */
.sscs-info-card {
    border: 1.5px solid #e8e4dd;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    background: #fff;
}

.sscs-ic-row {
    padding: 20px 24px;
    border-bottom: 1px solid #f0ede8;
}
.sscs-ic-row:last-child { border-bottom: none; }

.sscs-ic-heading {
    font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #bbb;
    margin-bottom: 12px;
}

/* Contact row */
.sscs-ic-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    align-items: center;
    padding-top: 18px;
    padding-bottom: 18px;
}

.sscs-ic-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
    font-size: 13.5px;
    color: #333 !important;
    text-decoration: none !important;
    transition: color .15s;
}
.sscs-ic-item:hover { color: #c0190f !important; }

/* Hours + At a Glance */
.sscs-ic-hours-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
    padding: 0;
}

.sscs-ic-hours,
.sscs-ic-glance {
    padding: 20px 24px;
}

.sscs-ic-hours { border-right: 1px solid #f0ede8; }

@media (max-width: 680px) {
    .sscs-ic-hours-stats { grid-template-columns: 1fr; }
    .sscs-ic-hours { border-right: none; border-bottom: 1px solid #f0ede8; }
}

.sscs-ic-hours-row {
    display: flex;
    justify-content: space-between;
    font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
    font-size: 13px;
    color: #555;
    padding: 5px 0;
    border-bottom: 1px solid #f8f6f3;
    gap: 12px;
}
.sscs-ic-hours-row:last-child { border-bottom: none; }
.sscs-ic-today { font-weight: 700; color: #1a1a1a; }
.sscs-ic-closed { color: #ccc; font-style: italic; }

/* Social row */
.sscs-ic-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sscs-ic-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    color: #444 !important;
    background: #f4f1ec;
    border: 1px solid #e8e4dd;
    padding: 5px 12px;
    border-radius: 999px;
    text-decoration: none !important;
    transition: background .15s, color .15s, border-color .15s;
}
.sscs-ic-social-btn:hover {
    background: #1a1a1a;
    color: #fff !important;
    border-color: #1a1a1a;
}
.sscs-ic-ig:hover { background: #7b3fb0; border-color: #7b3fb0; }
.sscs-ic-yt:hover { background: #cc0000; border-color: #cc0000; }
.sscs-ic-fb:hover { background: #1877f2; border-color: #1877f2; }
.sscs-ic-ss:hover { background: #1a6b3a; border-color: #1a6b3a; }

/* Materials row */
.sscs-ic-mat-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0 3rem;
}
.sscs-ic-mat-body .sscs-biz-group { min-width: 0; }
.sscs-ic-mat-body .sscs-detail-heading { margin-top: 0 !important; }

/* About row */
.sscs-ic-about .ssp-bio {
    font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.65;
}
