.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.site-header {
    background: #111827;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 800;
}

.main-nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.hero,
.page-section,
.home-cards,
.scraper-section {
    padding: 50px 0;
}

.hero-content {
    max-width: 760px;
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    margin-bottom: 16px;
}

.hero h1,
.page-section h1,
.scraper-section h1 {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero p,
.page-intro {
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    text-decoration: none;
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
}

.btn-primary {
    background: #2563eb;
    color: #ffffff;
}

.btn-secondary {
    background: #1f2937;
    color: #ffffff;
}

.cards-grid,
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.info-card {
    background: #111827;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 22px;
}

.info-card h2 {
    margin-bottom: 12px;
    font-size: 24px;
}

.info-card p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 16px;
}

.info-card a {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 700;
}

.scraper-top {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.scraper-controls {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.scraper-controls select {
    min-width: 220px;
    height: 48px;
    border-radius: 12px;
    border: none;
    padding: 0 14px;
    font-size: 15px;
}

.scraper-status {
    margin-bottom: 20px;
    padding: 14px;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    color: #e2e8f0;
}

.shirt-card {
    background: #ffffff;
    color: #111827;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.shirt-image-wrap {
    position: relative;
    background: #f8fafc;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shirt-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
}

.no-image {
    color: #64748b;
    font-weight: 700;
}

.discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #dc2626;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 10px;
    border-radius: 999px;
}

.shirt-info {
    padding: 18px;
}

.shirt-info h3 {
    font-size: 16px;
    margin-bottom: 12px;
    min-height: 44px;
}

.price-box {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.current-price {
    font-size: 20px;
    font-weight: 800;
}

.old-price {
    font-size: 14px;
    color: #6b7280;
    text-decoration: line-through;
}

.view-link {
    display: inline-block;
    text-decoration: none;
    background: #111827;
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
}

.site-footer {
    margin-top: 40px;
    padding: 22px 0;
    background: #111827;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    color: #cbd5e1;
}