@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ==========================================
   GLOBAL CONTAINER & HARD SPECIFICITY RESETS
   ========================================== */
.dsw-container {
    font-family: 'Inter', sans-serif !important;
    box-sizing: border-box !important;
    width: 100% !important;
    margin: 0 auto !important;
}

/* ==========================================
   WIDGET TYPE 1: TOP STORES SYSTEM LAYOUT
   ========================================== */
.dsw-stores-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.dsw-store-card {
    display: flex !important;
    align-items: center !important;
    padding: 10px 12px !important;
    background-color: #F9F8F6 !important;
    border: 1px solid #E8E6E0 !important;
    border-radius: 14px !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.dsw-store-badge {
    width: 32px !important;
    height: 32px !important;
    background-color: #FFFFFF !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
    margin-right: 10px !important;
    flex-shrink: 0 !important;
}

.dsw-store-name {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #2D3142 !important;
}

/* ==========================================
   WIDGET TYPE 2: CATEGORIES SYSTEM ARCHITECTURE
   ========================================== */
.dsw-cat-header-main {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 18px !important;
}

.dsw-cat-header-main h3 {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: #A1A1AA !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.dsw-cat-see-all-anchor {
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #F04F23 !important;
    text-decoration: none !important;
    line-height: 1 !important;
    transition: opacity 0.2s ease !important;
}

.dsw-cat-see-all-anchor:hover {
    opacity: 0.85 !important;
}

.dsw-categories-list-wrapper {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.dsw-category-list-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 8px 10px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background-color: transparent;
}

.dsw-cat-row-left-wrap {
    display: flex !important;
    align-items: center !important;
    min-width: 0 !important;
}

.dsw-cat-row-icon-box {
    width: 36px !important;
    height: 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    transition: all 0.22s ease !important;
}

.dsw-cat-row-icon-box i {
    line-height: 1 !important;
}

.dsw-cat-row-icon-box svg {
    fill: currentColor !important;
}

.dsw-cat-row-label-text {
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    transition: all 0.22s ease !important;
}

.dsw-cat-row-badge-span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 3px 10px !important;
    border-radius: 999px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    flex-shrink: 0 !important;
    transition: all 0.22s ease !important;
    line-height: 1.2 !important;
}

/* Category Item Active Highlight States */
.dsw-category-list-row.dsw-cat-row-state--active {
    background-color: #FFF5F2 !important;
}
.dsw-category-list-row.dsw-cat-row-state--active .dsw-cat-row-icon-box {
    background-color: #FEECE7 !important;
    color: #F04F23 !important;
}
.dsw-category-list-row.dsw-cat-row-state--active .dsw-cat-row-label-text {
    color: #F04F23 !important;
    font-weight: 600 !important;
}
.dsw-category-list-row.dsw-cat-row-state--active .dsw-cat-row-badge-span {
    background-color: #FEECE7 !important;
    color: #F04F23 !important;
}

/* ==========================================
   WIDGET TYPE 3: DEAL OF THE DAY REFACTORED ENGINE
   ========================================== */

/* Master Structural Layout Card Container Canvas Frame */
.dsw-container.dsw-layout-deal_of_the_day.dsw-dotd-main-card {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    background-color: #ffffff !important;
    border-radius: 16px !important;
    padding: 20px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04) !important;
    box-sizing: border-box !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.dsw-hotspot-bar {
    display: flex !important;
    align-items: center !important;
    box-sizing: border-box !important;
    transition: all 0.25s ease !important;
}

.dsw-hotspot-icon-wrap {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.dsw-hotspot-icon-wrap svg,
.dsw-hotspot-icon-wrap i {
    width: 1em !important;
    height: 1em !important;
}

/* Configurable Full-Width Horizontal Divider Section Element */
.dsw-container.dsw-layout-deal_of_the_day .dsw-dotd-row-divider {
    border: 0 !important;
    border-top: 1px solid #e2e8f0 !important;
    margin: 16px 0 !important;
    width: 100% !important;
    height: 0 !important;
    display: block !important;
    padding: 0 !important;
}

.dsw-store-row-container {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    transition: all 0.25s ease !important;
}

.dsw-store-badge-box {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    transition: all 0.25s ease !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
}

.dsw-brand-img-obj {
    display: block !important;
    max-width: 100% !important;
    width: 130px;
    height: auto !important;
}

.dsw-headline-render {
    font-family: 'Inter', sans-serif !important;
    margin: 12px 0 !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    transition: color 0.25s ease !important;
}

.dsw-description-render {
    font-family: 'Inter', sans-serif !important;
    margin: 8px 0 !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
}

.dsw-offer-wrapper-block {
    display: flex !important;
    flex-direction: column !important;
    transition: all 0.25s ease !important;
}

.dsw-offer-banner-main {
    font-size: 40px !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.1 !important;
    transition: color 0.25s ease !important;
}

.dsw-offer-subtext-line {
    font-size: 14px !important;
    margin-top: 4px !important;
    transition: color 0.25s ease !important;
}

/* ==========================================
   ROBUST SPECIFICITY BASELINE RESET
   ========================================== */
.dsw-container .dsw-countdown-timer-box {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}

.dsw-container .dsw-countdown-icon-container {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    line-height: 1 !important;
}

.dsw-container .dsw-countdown-icon-container i,
.dsw-container .dsw-countdown-icon-container svg {
    display: inline-block !important;
    vertical-align: middle !important;
    line-height: 1 !important;
}

.dsw-container .dsw-timer-string {
    display: inline-block !important;
    line-height: 1 !important;
}

/* ==========================================
   DYNAMIC TIMER SYSTEM SPECIFICITY LAYOUTS
   ========================================== */
.dsw-countdown-timer-box {
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background-color: #ffe8e8 !important;
    padding: 14px 0px !important;
    font-size: 14px !important;
    color: #ff3700 !important;
    border-style: solid !important;
    border-radius: 6px !important;
    border-width: 1px !important;
    border-color: #ff3700 !important;
    margin: 12px 0px !important;
    gap: 8px !important;
}

/* ==========================================
   NATIVE CTA LINK ANCHOR OVERRIDES
   ========================================== */
.dsw-cta-button-container {
    width: 100% !important;
    clear: both !important;
    box-sizing: border-box !important;
}

.dsw-cta-anchor {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background-color: #F04F23 !important;
    padding: 14px 0px !important;
    font-size: 14px !important;
    color: #ffffff !important;
    border-style: solid !important;
    border-radius: 6px !important;
    border-width: 0px !important;
    margin: 12px 0px !important;
    gap: 8px !important;
}

.dsw-cta-icon-container {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* ==========================================
   RESPONSIVE LAYOUT RESPONSIVENESS MATRICES
   ========================================== */
@media (max-width: 767px) {
    .dsw-stores-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    .dsw-category-list-row,
    .dsw-cta-anchor,
    .dsw-countdown-timer-box {
        width: 100% !important;
    }
}













/* Store Side Widget — 834b00fa v1.3.0 */

/* Card Container */
.ssw-834b00fa-card {
	background-color: #ffffff;
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
	box-sizing: border-box;
}

/* Header */
.ssw-834b00fa-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.ssw-834b00fa-header-left {
	display: flex;
	align-items: center;
	min-width: 0;
}

.ssw-834b00fa-header-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	font-size: 28px;
	line-height: 1;
	color: #e05d44;
}

.ssw-834b00fa-header-icon svg {
	width: 28px;
	height: 28px;
	fill: #e05d44;
}

.ssw-834b00fa-header-text {
	font-size: 20px;
	font-weight: 700;
	color: #1e293b;
	line-height: 1.3;
}

/* View All Button — Solid */
.ssw-834b00fa-view-all {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: #ffffff;
	background-color: #3b82f6;
	text-decoration: none;
	white-space: nowrap;
	padding: 6px 14px;
	border-radius: 6px;
	border: 1px solid transparent;
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
	flex-shrink: 0;
	cursor: pointer;
	box-sizing: border-box;
}

.ssw-834b00fa-view-all:hover {
	background-color: #2563eb;
	color: #ffffff;
}

.ssw-834b00fa-view-all-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	line-height: 1;
}

.ssw-834b00fa-view-all-icon svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
}

/* Divider */
.ssw-834b00fa-divider {
	border: 0;
	border-top: 1px solid #e2e8f0;
	margin: 16px 0;
}

/* ===== DESIGN 1 — Grid ===== */
.ssw-834b00fa-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.ssw-834b00fa-store-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: #f8fafc;
	border-radius: 12px;
	padding: 16px;
	text-decoration: none;
	transition: background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	border: 1px solid #e2e8f0;
	cursor: pointer;
	box-sizing: border-box;
}

.ssw-834b00fa-store-card:hover {
	background-color: #f1f5f9;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ssw-834b00fa-store-img {
	object-fit: contain;
	margin-bottom: 6px;
}

.ssw-834b00fa-store-card .ssw-834b00fa-store-img {
	width: 50px;
	height: 50px;
	border-radius: 8px;
}

.ssw-834b00fa-short-name {
	font-size: 18px;
	font-weight: 600;
	color: #334155;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}

.ssw-834b00fa-desc {
	font-size: 12px;
	font-weight: 400;
	color: #64748b;
	line-height: 1.4;
	margin-top: 2px;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Count row with icon */
.ssw-834b00fa-deals-text {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	font-weight: 400;
	color: #94a3b8;
	line-height: 1.4;
	margin-top: 2px;
}

.ssw-834b00fa-count-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.ssw-834b00fa-count-icon svg {
	width: 12px;
	height: 12px;
	fill: currentColor;
}

/* Coupon Badge (Design 1) */
.ssw-834b00fa-coupon-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background-color: #f0fdf4;
	color: #16a34a;
	font-size: 11px;
	font-weight: 600;
	border-radius: 20px;
	padding: 3px 10px;
	white-space: nowrap;
	margin-top: 4px;
	line-height: 1.4;
}

.ssw-834b00fa-coupon-badge .ssw-834b00fa-count-icon svg {
	width: 11px;
	height: 11px;
}

/* ===== DESIGN 2 — List ===== */
.ssw-834b00fa-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
}

.ssw-834b00fa-list-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 14px;
	background-color: #ffffff;
	border-radius: 8px;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease;
	cursor: pointer;
	border: 1px solid #f1f5f9;
	box-sizing: border-box;
}

.ssw-834b00fa-list-row:hover {
	background-color: #f8fafc;
}

.ssw-834b00fa-list-left {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.ssw-834b00fa-list-info {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.ssw-834b00fa-list-desc {
	font-size: 12px;
	font-weight: 400;
	color: #64748b;
	line-height: 1.4;
	margin-top: 2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ssw-834b00fa-list-right {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.ssw-834b00fa-list-row .ssw-834b00fa-store-img {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	flex-shrink: 0;
}

.ssw-834b00fa-list-name {
	font-size: 14px;
	font-weight: 600;
	color: #1e293b;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ssw-834b00fa-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	background-color: #eff6ff;
	color: #3b82f6;
	font-size: 14px;
	font-weight: 600;
	border-radius: 20px;
	padding: 4px 12px;
	white-space: nowrap;
	flex-shrink: 0;
	line-height: 1.4;
}

.ssw-834b00fa-badge .ssw-834b00fa-count-icon svg {
	width: 12px;
	height: 12px;
}

/* Coupon Badge (Design 2) — reuses .ssw-834b00fa-coupon-badge from above */


/* ==========================================
   WIDGET TYPE 5: STORE HERO HEADER ARCHITECTURE SYSTEMS
   ========================================== */
.shh-wrapper-3959b8f2 {
    --shh-bg: #f4f6fb;
    --shh-surface: #ffffff;
    --shh-accent: #e8441a;
    --shh-border: #e8ecf4;
    --shh-heading: #0f1523;
    --shh-text: #3d4a63;
    --shh-gold: #f59e0b;
    --shh-radius-lg: 16px;
    --shh-radius-pill: 50px;
    --shh-font: 'Inter', sans-serif;
    font-family: var(--shh-font);
    width: 100%;
    box-sizing: border-box;
}

.shh-wrapper-3959b8f2 *,
.shh-wrapper-3959b8f2 *::before,
.shh-wrapper-3959b8f2 *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.shh-hero {
    background: var(--shh-surface);
    border-radius: var(--shh-radius-lg);
    padding: 32px 36px;
    border: 1px solid var(--shh-border);
}

.shh-hero__content {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

.shh-hero__logo-col {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.shh-hero__logo-box {
    width: 100px;
    height: 100px;
    border-radius: 14px;
    background: var(--shh-surface);
    border: 1px solid var(--shh-border);
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.shh-hero__logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.shh-hero__logo-placeholder {
    font-size: 36px;
    color: var(--shh-text);
    opacity: .4;
}

.shh-hero__rating {
    display: flex;
    justify-content: center;
}

.shh-hero__info-col {
    flex: 1;
    min-width: 0;
}

.shh-hero__top-row { margin-bottom: 10px; }

.shh-hero__title-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.shh-hero__title {
    font-family: var(--shh-font);
    font-size: 26px;
    font-weight: 700;
    color: var(--shh-heading);
    line-height: 1.25;
    margin: 0;
}

.shh-hero__badges {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.shh-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #f59e0b 0%, #e8441a 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    padding: 5px 14px;
    border-radius: var(--shh-radius-pill);
    white-space: nowrap;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .25s ease;
}

a.shh-hero__badge:hover { opacity: .85; }

.shh-hero__badge i,
.shh-hero__badge svg {
    font-size: 10px;
    width: 10px;
    height: 10px;
    fill: currentColor;
}

.shh-hero__desc {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--shh-text);
    margin-bottom: 14px;
    max-width: 620px;
}

.shh-hero__section-group { margin-bottom: 14px; }

.shh-section-heading {
    font-family: var(--shh-font);
    font-size: 13px;
    font-weight: 600;
    color: var(--shh-heading);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shh-hero__meta,
.shh-hero__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.shh-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--shh-surface);
    border: 1px solid var(--shh-border);
    border-radius: var(--shh-radius-pill);
    padding: 7px 16px;
    font-size: 13px;
    color: var(--shh-text);
    text-decoration: none;
    transition: all .25s ease;
    white-space: nowrap;
}

.shh-chip i,
.shh-chip svg {
    font-size: 12px;
    width: 12px;
    height: 12px;
    color: var(--shh-accent);
    fill: var(--shh-accent);
}

.shh-chip strong {
    font-weight: 600;
    color: var(--shh-heading);
}

a.shh-chip { cursor: pointer; }
a.shh-chip:hover { background-color: #f8f9fc; }
.shh-chip--meta:hover { border-color: #c5cdd9; }
.shh-chip--cat:hover { border-color: var(--shh-accent); color: var(--shh-accent); }

.shh-chip--rating i,
.shh-chip--rating svg { color: var(--shh-gold); fill: var(--shh-gold); }

.shh-chip--rating strong { color: var(--shh-gold); font-size: 14px; }

.shh-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.shh-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--shh-radius-pill);
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease;
    text-decoration: none;
    border: 2px solid transparent;
    line-height: 1;
    white-space: nowrap;
    font-family: var(--shh-font);
}

.shh-btn i,
.shh-btn svg { font-size: 14px; width: 14px; height: 14px; fill: currentColor; }

.shh-btn--primary {
    background: var(--shh-accent);
    color: #fff;
    border-color: var(--shh-accent);
    box-shadow: 0 4px 14px rgba(232,68,26,.30);
}

.shh-btn--primary:hover { background: #d13a14; border-color: #d13a14; }
.shh-btn--primary i, .shh-btn--primary svg { color: #fff; fill: #fff; }

.shh-btn--outline { background: var(--shh-surface); color: var(--shh-heading); border-color: var(--shh-border); }
.shh-btn--outline:hover { border-color: #b0b8c9; background: #f8f9fc; }

.shh-metrics-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr) !important;
    margin-top: 8px;
    border: 1px solid var(--shh-border);
    border-radius: var(--shh-radius-lg);
    overflow: hidden;
    background: var(--shh-surface);
}

.shh-metrics-grid__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    border-right: 1px solid var(--shh-border);
    border-bottom: 1px solid var(--shh-border);
    background: var(--shh-surface);
    text-align: center;
    transition: background .2s ease;
}

.shh-metrics-grid__item:nth-child(2n) { border-right: none; }
.shh-metrics-grid__item:nth-last-child(-n+2) { border-bottom: none; }
.shh-metrics-grid__item:last-child:nth-child(odd) { border-right: none; border-bottom: none; }

.shh-metrics-grid__icon { display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.shh-metrics-grid__icon i, .shh-metrics-grid__icon svg { font-size: 20px; width: 20px; height: 20px; color: var(--shh-accent); fill: var(--shh-accent); }

.shh-metrics-grid__value { font-family: var(--shh-font); font-size: 28px; font-weight: 700; color: var(--shh-heading); line-height: 1.2; margin-bottom: 4px; }
.shh-metrics-grid__label { font-size: 13px; color: var(--shh-text); white-space: nowrap; text-align: center; }

.shh-nav {
    background: var(--shh-surface);
    border-radius: var(--shh-radius-lg);
    border: 1px solid var(--shh-border);
    margin-top: 8px;
    padding: 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.shh-nav::-webkit-scrollbar { height: 0; display: none; }
.shh-nav__inner { display: flex; align-items: center; gap: 8px; min-width: max-content; }

.shh-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 16px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--shh-text);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all .25s ease;
}

.shh-nav__link i, .shh-nav__link svg { font-size: 13px; width: 13px; height: 13px; fill: currentColor; }
.shh-nav__link:hover { color: var(--shh-accent); }
.shh-nav__link--active { color: var(--shh-accent); border-bottom-color: var(--shh-accent); font-weight: 600; }
.shh-nav__link--active i, .shh-nav__link--active svg { color: var(--shh-accent); fill: var(--shh-accent); }

@media (max-width: 1023px) {
    .shh-hero { padding: 24px 20px; }
    .shh-hero__content { flex-direction: column; align-items: stretch; }
    .shh-hero__logo-col { flex-direction: row; align-items: center; gap: 14px; }
    .shh-hero__logo-box { width: 80px; height: 80px; }
    .shh-hero__title { font-size: 22px; }
    .shh-metrics-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 600px) {
    .shh-hero { padding: 18px 14px; }
    .shh-hero__title { font-size: 19px; }
    .shh-hero__desc { font-size: 13.5px; }
    .shh-hero__actions { flex-direction: column; }
    .shh-btn { justify-content: center; width: 100%; }
    .shh-metrics-grid { grid-template-columns: 1fr 1fr !important; }
    .shh-metrics-grid__value { font-size: 22px; }
    .shh-metrics-grid__item { padding: 18px 12px; }
    .shh-nav { padding: 0 12px; }
    .shh-nav__link { padding: 14px 10px; font-size: 13px; }
}











