/* ═══════════════════════════════════════════
   SHOPTIPS HOMEPAGE — Interactive Design v3
   ═══════════════════════════════════════════ */

/* ─── HERO ─── */
.shp-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
    background: linear-gradient(160deg, #0a0a0a 0%, #1a1a2e 40%, #16213e 70%, #0a0a0a 100%);
}

.shp-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 107, 0, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(59, 130, 246, 0.1), transparent),
        radial-gradient(ellipse 40% 30% at 20% 80%, rgba(139, 92, 246, 0.08), transparent);
    pointer-events: none;
}

.shp-hero__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shp-hero__particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 107, 0, 0.4);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-20vh) rotate(720deg); opacity: 0; }
}

.shp-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.shp-hero__badge {
    display: inline-block;
    background: rgba(255, 107, 0, 0.15);
    color: #ff8533;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 107, 0, 0.3);
    animation: fadeInUp 0.6s ease-out;
}

.shp-hero__title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 20px;
    letter-spacing: -1px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.shp-hero__highlight {
    background: linear-gradient(135deg, #ff6b00, #ff8533, #ffa366);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shp-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0 0 40px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── SEARCH BOX ─── */
.shp-hero__search {
    position: relative;
    z-index: 100;
    max-width: 560px;
    margin: 0 auto 48px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.shp-search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 60px;
    padding: 6px 6px 6px 20px;
    transition: all 0.3s;
    backdrop-filter: blur(12px);
}

.shp-search-box:focus-within {
    border-color: #ff6b00;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.15);
}

.shp-search-box__icon {
    font-size: 1.2rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.shp-search-box input {
    flex: 1;
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-family: var(--stp-font);
    outline: none;
    padding: 12px 0;
}

.shp-search-box input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.shp-search-box__btn {
    background: #ff6b00;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s;
    font-family: var(--stp-font);
    flex-shrink: 0;
}

.shp-search-box__btn:hover {
    background: #e55f00;
    transform: scale(1.05);
}

/* Search Results */
.shp-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 12px;
    display: none;
    z-index: 9999;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-height: 400px;
    overflow-y: auto;
}

.shp-search-results.open {
    display: block;
    animation: fadeInDown 0.2s ease-out;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.shp-search-results__group {
    margin-bottom: 12px;
}

.shp-search-results__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    padding: 4px 12px;
}

.shp-search-results__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s;
}

.shp-search-results__item:hover {
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
}

.shp-search-results__icon {
    font-size: 1.2rem;
}

.shp-search-results__thumb {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.shp-search-results__count {
    margin-left: auto;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.shp-search-results__empty {
    padding: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* ─── HERO STATS ─── */
.shp-hero__stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
    position: relative;
    z-index: 1;
}

.shp-stat {
    text-align: center;
}

.shp-stat__number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #ff6b00;
    line-height: 1;
}

.shp-stat__label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ─── SECTIONS ─── */
.shp-section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.shp-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.shp-section__title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #0a0a0a;
    margin: 0 0 12px;
}

.shp-section__subtitle {
    font-size: 1.1rem;
    color: #737373;
    margin: 0;
}

.shp-accent {
    color: #ff6b00;
}

/* ─── CATEGORIES GRID ─── */
.shp-categories {
    background: #fafafa;
    max-width: 100%;
    padding: 80px 24px;
}

.shp-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.shp-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 16px;
    background: #fff;
    border-radius: 16px;
    text-decoration: none;
    color: #1a1a1a;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.shp-cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cat-color), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.shp-cat-card:hover {
    transform: translateY(-4px);
    border-color: var(--cat-color);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.shp-cat-card:hover::before {
    opacity: 0.05;
}

.shp-cat-card__icon {
    font-size: 2.2rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.shp-cat-card:hover .shp-cat-card__icon {
    transform: scale(1.15);
}

.shp-cat-card__name {
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.shp-cat-card__count {
    font-size: 0.75rem;
    color: #737373;
    position: relative;
    z-index: 1;
}

.shp-cat-card__arrow {
    position: absolute;
    bottom: 12px;
    right: 12px;
    font-size: 0.9rem;
    color: var(--cat-color);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s;
}

.shp-cat-card:hover .shp-cat-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

.shp-cat-card--featured {
    grid-column: span 2;
}

/* ─── TABS ─── */
.shp-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 24px;
}

.shp-tab {
    padding: 10px 24px;
    border: 2px solid #e5e5e5;
    border-radius: 50px;
    background: #fff;
    color: #737373;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s;
    font-family: var(--stp-font);
}

.shp-tab:hover {
    border-color: #ff6b00;
    color: #ff6b00;
}

.shp-tab--active {
    background: #ff6b00;
    border-color: #ff6b00;
    color: #fff;
}

.shp-tab-content {
    display: none;
}

.shp-tab-content--active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ─── POST GRID ─── */
.shp-post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.shp-post-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
}

.shp-post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.shp-post-card__image-link {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.shp-post-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.shp-post-card:hover .shp-post-card__image {
    transform: scale(1.05);
}

.shp-post-card__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    font-size: 3rem;
}

.shp-post-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 16px;
    opacity: 0;
    transition: opacity 0.3s;
}

.shp-post-card:hover .shp-post-card__overlay {
    opacity: 1;
}

.shp-post-card__read {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(255, 107, 0, 0.9);
    padding: 8px 20px;
    border-radius: 50px;
}

.shp-post-card__body {
    padding: 20px;
}

.shp-post-card__cat {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ff6b00;
    background: rgba(255, 107, 0, 0.08);
    padding: 4px 10px;
    border-radius: 50px;
    text-decoration: none;
    margin-bottom: 8px;
}

.shp-post-card__cat:hover {
    background: #ff6b00;
    color: #fff;
    text-decoration: none;
}

.shp-post-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 12px;
}

.shp-post-card__title a {
    color: #0a0a0a;
    text-decoration: none;
}

.shp-post-card__title a:hover {
    color: #ff6b00;
}

.shp-post-card__meta {
    display: flex;
    gap: 12px;
    font-size: 0.8rem;
    color: #a3a3a3;
}

/* ─── LOADING ─── */
.shp-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
}

.shp-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f0f0f0;
    border-top-color: #ff6b00;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ─── NEWSLETTER CTA ─── */
.shp-newsletter {
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.shp-newsletter__inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 24px;
}

.shp-newsletter__icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.shp-newsletter__title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
}

.shp-newsletter__text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 32px;
    line-height: 1.6;
}

.shp-newsletter__btn {
    display: inline-block;
    background: #ff6b00;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.25s;
}

.shp-newsletter__btn:hover {
    background: #e55f00;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.35);
    color: #fff;
    text-decoration: none;
}

/* ─── FILTER BAR ─── */
.shp-filter-bar {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.shp-filter {
    padding: 10px 20px;
    border: 2px solid #e5e5e5;
    border-radius: 50px;
    font-size: 0.9rem;
    font-family: var(--stp-font);
    background: #fff;
    color: #4a4a4a;
    cursor: pointer;
    outline: none;
    transition: border-color 0.25s;
}

.shp-filter:focus {
    border-color: #ff6b00;
}

/* ─── LOAD MORE ─── */
.shp-load-more {
    text-align: center;
    margin-top: 48px;
}

.shp-load-more__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    background: #0a0a0a;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.25s;
    font-family: var(--stp-font);
}

.shp-load-more__btn:hover {
    background: #ff6b00;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.3);
}

.shp-load-more__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.shp-load-more__count {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .shp-post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .shp-cat-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    .shp-cat-card--featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .shp-hero {
        min-height: auto;
        padding: 100px 16px 60px;
    }
    .shp-hero__stats {
        gap: 24px;
    }
    .shp-stat__number {
        font-size: 1.5rem;
    }
    .shp-section {
        padding: 48px 16px;
    }
    .shp-categories {
        padding: 48px 16px;
    }
    .shp-cat-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 10px;
    }
    .shp-cat-card {
        padding: 16px 12px;
    }
    .shp-cat-card__icon {
        font-size: 1.8rem;
    }
    .shp-post-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .shp-tabs {
        flex-wrap: wrap;
    }
    .shp-tab {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .shp-search-box {
        padding: 4px 4px 4px 16px;
    }
    .shp-search-box__btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    .shp-search-box input {
        font-size: 0.9rem;
    }
    .shp-hero__stats {
        gap: 16px;
    }
    .shp-stat__label {
        font-size: 0.7rem;
    }
    .shp-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ─── ARCHIVE / CATEGORY / TAG PAGES ─── */

/* Image size control */
.archive .post-thumbnail img,
.category .post-thumbnail img,
.tag .post-thumbnail img,
.search .post-thumbnail img,
.ast-archive-post .post-thumbnail img,
article .post-thumbnail img {
    max-width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: cover;
    width: 100%;
}

.archive .wp-post-image,
.category .wp-post-image,
.tag .wp-post-image {
    max-height: 280px !important;
    object-fit: cover;
    width: 100%;
}

/* Archive layout: content + sidebar */
.shoptips-archive #content,
.archive #content,
.category #content,
.tag #content,
.search #content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
}

.shoptips-archive .site-main,
.archive .site-main,
.category .site-main,
.tag .site-main,
.search .site-main {
    min-width: 0;
}

.shoptips-archive .sidebar,
.archive .sidebar,
.category .sidebar,
.tag .sidebar,
.search .sidebar,
.shoptips-archive #secondary,
.archive #secondary,
.category #secondary,
.tag #secondary,
.search #secondary {
    min-width: 0;
}

/* Archive header styling */
.shoptips-archive .page-header,
.archive .page-header,
.category .page-header,
.tag .page-header {
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 3px solid #ff6b00;
}

.shoptips-archive .page-title,
.archive .page-title,
.category .page-title,
.tag .page-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0a0a0a;
    margin: 0 0 8px;
}

.shoptips-archive .taxonomy-description,
.archive .taxonomy-description,
.category .taxonomy-description,
.tag .taxonomy-description {
    color: #737373;
    font-size: 1rem;
    line-height: 1.6;
}

/* Archive article cards */
.shoptips-archive article,
.archive article,
.category article,
.tag article,
.search article {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 32px;
    border: 1px solid #f0f0f0;
    transition: box-shadow 0.3s;
}

.shoptips-archive article:hover,
.archive article:hover,
.category article:hover,
.tag article:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.shoptips-archive .entry-header,
.archive .entry-header,
.category .entry-header,
.tag .entry-header {
    padding: 20px 24px 0;
}

.shoptips-archive .entry-title,
.archive .entry-title,
.category .entry-title,
.tag .entry-title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 8px;
}

.shoptips-archive .entry-title a,
.archive .entry-title a,
.category .entry-title a,
.tag .entry-title a {
    color: #0a0a0a;
    text-decoration: none;
}

.shoptips-archive .entry-title a:hover,
.archive .entry-title a:hover,
.category .entry-title a:hover,
.tag .entry-title a:hover {
    color: #ff6b00;
}

.shoptips-archive .entry-meta,
.archive .entry-meta,
.category .entry-meta,
.tag .entry-meta {
    font-size: 0.85rem;
    color: #a3a3a3;
    margin-bottom: 12px;
}

.shoptips-archive .entry-summary,
.archive .entry-summary,
.category .entry-summary,
.tag .entry-summary,
.shoptips-archive .entry-content,
.archive .entry-content,
.category .entry-content,
.tag .entry-content {
    padding: 0 24px 20px;
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.7;
}

.shoptips-archive .entry-summary p,
.archive .entry-summary p,
.category .entry-summary p,
.tag .entry-summary p {
    margin: 0 0 12px;
}

.shoptips-archive .post-thumbnail,
.archive .post-thumbnail,
.category .post-thumbnail,
.tag .post-thumbnail {
    display: block;
    margin: 0;
}

.shoptips-archive .post-thumbnail img,
.archive .post-thumbnail img,
.category .post-thumbnail img,
.tag .post-thumbnail img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 0;
}

/* Archive pagination */
.shoptips-archive .pagination,
.archive .pagination,
.category .pagination,
.tag .pagination,
.shoptips-archive .nav-links,
.archive .nav-links,
.category .nav-links,
.tag .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px 0;
    padding: 0;
    list-style: none;
}

.shoptips-archive .pagination a,
.shoptips-archive .pagination span,
.archive .pagination a,
.archive .pagination span,
.category .pagination a,
.category .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.25s;
}

.shoptips-archive .pagination a,
.archive .pagination a,
.category .pagination a {
    background: #f5f5f5;
    color: #4a4a4a;
}

.shoptips-archive .pagination a:hover,
.archive .pagination a:hover,
.category .pagination a:hover {
    background: #ff6b00;
    color: #fff;
}

.shoptips-archive .pagination .current,
.archive .pagination .current,
.category .pagination .current {
    background: #ff6b00;
    color: #fff;
}

/* Sidebar widgets */
.shoptips-archive .widget,
.archive .widget,
.category .widget,
.tag .widget {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.shoptips-archive .widget-title,
.archive .widget-title,
.category .widget-title,
.tag .widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ff6b00;
}

.shoptips-archive .widget ul,
.archive .widget ul,
.category .widget ul,
.tag .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shoptips-archive .widget ul li,
.archive .widget ul li,
.category .widget ul li,
.tag .widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

.shoptips-archive .widget ul li:last-child,
.archive .widget ul li:last-child,
.category .widget ul li:last-child,
.tag .widget ul li:last-child {
    border-bottom: none;
}

.shoptips-archive .widget ul li a,
.archive .widget ul li a,
.category .widget ul li a,
.tag .widget ul li a {
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.25s;
    font-size: 0.9rem;
}

.shoptips-archive .widget ul li a:hover,
.archive .widget ul li a:hover,
.category .widget ul li a:hover {
    color: #ff6b00;
}

/* Reduce inline styles impact */
.shoptips-modern img[style] {
    max-width: 100% !important;
    height: auto !important;
}

/* Archive responsive */
@media (max-width: 1024px) {
    .shoptips-archive #content,
    .archive #content,
    .category #content,
    .tag #content,
    .search #content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .shoptips-archive #secondary,
    .archive #secondary,
    .category #secondary,
    .tag #secondary,
    .search #secondary {
        order: 2;
    }
}

@media (max-width: 768px) {
    .shoptips-archive #content,
    .archive #content,
    .category #content,
    .tag #content,
    .search #content {
        padding: 24px 16px;
    }

    .shoptips-archive .page-title,
    .archive .page-title,
    .category .page-title,
    .tag .page-title {
        font-size: 1.5rem;
    }

    .shoptips-archive article,
    .archive article,
    .category article,
    .tag article {
        margin-bottom: 24px;
    }

    .shoptips-archive .entry-title,
    .archive .entry-title,
    .category .entry-title,
    .tag .entry-title {
        font-size: 1.1rem;
    }

    .shoptips-archive .post-thumbnail img,
    .archive .post-thumbnail img,
    .category .post-thumbnail img,
    .tag .post-thumbnail img {
        height: 200px;
    }
}
