/**
 * Vörulínur – Display Styles
 *
 * Minimal styles that work alongside WooCommerce's default product grid.
 */

/* ── Hero Image ── */
.vorulinur-hero {
    width: 100%;
    overflow: hidden;
    max-height: 500px;
    line-height: 0;
    margin: 0;
    padding: 0;
    position: relative;
}

.vorulinur-hero__image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Dark overlay */
.vorulinur-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

/* Centered title + breadcrumbs */
.vorulinur-hero__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    line-height: 1.4;
    width: 90%;
    max-width: 800px;
}

.vorulinur-hero__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 0.6rem 0;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.vorulinur-hero__breadcrumbs {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.9;
}

.vorulinur-hero__breadcrumbs a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.vorulinur-hero__breadcrumbs a:hover {
    opacity: 0.7;
}

.vorulinur-hero__separator {
    margin: 0 0.4em;
    opacity: 0.6;
}

.vorulinur-hero__current {
    opacity: 0.75;
}

/*
 * Hide theme's default post meta and title on Vörulína single pages.
 * The title and breadcrumbs are rendered inside the hero instead.
 */
.single-vorulina .entry-title,
.single-vorulina .page-title,
.single-vorulina .post-title,
.single-vorulina .entry-meta,
.single-vorulina .post-meta,
.single-vorulina .posted-on,
.single-vorulina .byline,
.single-vorulina .cat-links,
.single-vorulina .author-avatar,
.single-vorulina .post__meta,
.single-vorulina .entry-header .post-author,
.single-vorulina .entry-header .post-date {
    display: none !important;
}

/* ── Product Grid ── */
.vorulinur-products {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.vorulinur-products__heading {
    margin-bottom: 1.5rem;
    font-size: 1.5em;
}

/* Product link on single product page */
.vorulinur-product-link {
    margin-top: 0.75rem;
    font-size: 0.9em;
}

.vorulinur-product-link__label {
    font-weight: 600;
}

.vorulinur-product-link__link {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.vorulinur-product-link__link:hover {
    opacity: 0.8;
}
