/* Open Sans self-hosted (variavel, latin) */
@font-face{font-family:'Open Sans';font-style:normal;font-weight:300 800;font-display:swap;
src:url('../fonts/opensans-latin.woff2') format('woff2');
unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Open Sans';font-style:italic;font-weight:300 800;font-display:swap;
src:url('../fonts/opensans-latin-italic.woff2') format('woff2');
unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    color: #222;
    background: #fff;
    line-height: 1.6;
}

a { color: #c0392b; text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

/* ---- ADVERTORIAL DISCLOSURE BAR ---- */
.disclosure-bar {
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
    text-align: center;
    padding: 6px 20px;
    font-size: 11px;
    color: #777;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.disclosure-bar a {
    color: #999;
    text-decoration: underline;
}

/* ---- HEADER ---- */
.site-header {
    border-bottom: 3px solid #c0392b;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.site-logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-logo .logo-mark {
    background: #c0392b;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 5px 9px;
    border-radius: 3px;
    text-transform: uppercase;
}

.site-logo .logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.3px;
}

.site-logo .logo-text span {
    color: #c0392b;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}

.site-nav li a {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 3px;
    transition: color 0.2s;
}

.site-nav li a:hover,
.site-nav li a.active {
    color: #c0392b;
}

.header-subscribe a {
    background: #c0392b;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    white-space: nowrap;
}

.header-subscribe a:hover {
    background: #a93226;
}

/* ---- PAGE WRAPPER ---- */
.page-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px 40px;
}

/* ---- TWO-COLUMN LAYOUT ---- */
.content-row {
    display: flex;
    gap: 36px;
    align-items: flex-start;
}

.main-article {
    flex: 1 1 0;
    min-width: 0;
}

.sidebar {
    flex: 0 0 300px;
    width: 300px;
}

/* ---- CATEGORY / META ---- */
.article-cat {
    display: inline-block;
    background: #c0392b;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 6px;
}

.article-cat-advertorial {
    display: inline-block;
    background: #f0f0f0;
    color: #888;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 2px;
    border: 1px solid #ddd;
    margin-bottom: 14px;
    margin-left: 6px;
}

.main-article h1 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    color: #111;
    margin-bottom: 14px;
}

.article-byline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e5e5e5;
}

.byline-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.byline-text {
    font-size: 13px;
    color: #666;
}

.byline-text strong {
    color: #333;
}

.sponsored-label {
    display: inline-block;
    background: #fffde7;
    border: 1px solid #f9c74f;
    color: #7a5c00;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 2px;
    margin-left: 8px;
}

/* ---- ARTICLE BODY ---- */
.article-body p {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 22px;
    color: #2a2a2a;
}

.article-body p strong {
    color: #111;
}

.article-body h2 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin: 30px 0 14px;
    line-height: 1.3;
}

.article-body .lead-img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 22px;
}

/* ---- QUOTE CALLOUT ---- */
.quote-callout {
    border-left: 4px solid #c0392b;
    background: #fdf6f5;
    padding: 14px 20px;
    margin: 24px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    font-style: italic;
    line-height: 28px;
}

/* ---- DAY DIARY ---- */
.day-block {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 26px;
}

.day-block-header {
    background: #2c3e50;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.day-block-body {
    padding: 18px 20px;
}

.day-block-body p {
    font-size: 17px;
    line-height: 29px;
    color: #333;
    margin: 0;
}

.day-block-img {
    width: 100%;
    max-width: 280px;
    border-radius: 4px;
    margin: 0 auto 14px;
}

/* ---- UPDATE BOX ---- */
.update-box {
    border: 1px dotted #333;
    background: #effff7;
    padding: 10px 14px;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 24px;
    border-radius: 3px;
}

.update-box .stock-note {
    color: #c0392b;
    font-weight: 700;
}

/* ---- OFFER BOX ---- */
.offer-box {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 22px;
    background: #f9f9f9;
    margin-bottom: 28px;
    text-align: center;
}

.offer-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.offer-box .offer-date {
    font-size: 13px;
    color: #666;
    margin-bottom: 14px;
    text-align: center;
    font-weight: 600;
}

.offer-box .bottle-img {
    max-width: 220px;
    margin: 0 auto 16px;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    padding: 14px 28px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(192,57,43,0.35);
    transition: background 0.2s, box-shadow 0.2s;
    margin: 6px auto;
    display: block;
    width: 100%;
    text-align: center;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    box-shadow: 0 6px 16px rgba(192,57,43,0.45);
    text-decoration: none;
    color: #fff;
}

.offer-box .limited-tag {
    font-size: 12px;
    color: #888;
    margin-top: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---- SIDEBAR ---- */
.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-section h2 {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    border-bottom: 3px solid #c0392b;
    padding-bottom: 8px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reader-result {
    margin-bottom: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid #eee;
}

.reader-result img {
    border-radius: 4px;
    margin-bottom: 10px;
}

.reader-result p {
    font-size: 15px;
    line-height: 24px;
    color: #444;
    font-style: italic;
}

.reader-result .reader-name {
    font-style: normal;
    font-weight: 700;
    color: #c0392b;
    display: block;
    margin-top: 6px;
    font-size: 13px;
}

/* ---- FULL-WIDTH OFFER (below article/sidebar) ---- */
.offer-full {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 28px;
    background: #f9f9f9;
    margin-top: 36px;
}

.offer-full-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.offer-full-bottle {
    flex: 0 0 200px;
    text-align: center;
}

.offer-full-bottle img {
    max-width: 200px;
    margin: 0 auto;
}

.offer-full-text {
    flex: 1 1 0;
}

.offer-full-text h3 {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

.offer-full-text p {
    font-size: 16px;
    line-height: 26px;
    color: #444;
    margin-bottom: 14px;
}

.highlight-note {
    background: #fffde7;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    line-height: 24px;
}

/* ---- COMMENTS ---- */
.comments-section {
    max-width: 1100px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.comments-section h2 {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    border-bottom: 3px solid #c0392b;
    padding-bottom: 10px;
    margin-bottom: 24px;
}

.comment {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid #eee;
}

.comment-avatar {
    flex: 0 0 50px;
}

.comment-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-body {
    flex: 1 1 0;
}

.comment-body h4 {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
}

.comment-body p {
    font-size: 15px;
    line-height: 24px;
    color: #444;
    margin-bottom: 6px;
}

.comment-meta {
    font-size: 12px;
    color: #999;
}

/* ---- FOOTER ---- */
.site-footer {
    border-top: 1px solid #e0e0e0;
    padding: 20px;
    text-align: center;
}

.site-footer img {
    max-height: 40px;
    margin: 0 auto 10px;
}

.footer-legal {
    font-size: 12px;
    color: #777;
    line-height: 1.7;
    max-width: 900px;
    margin: 20px auto 0;
    text-align: left;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}

.footer-legal p { margin-bottom: 10px; font-size: 12px; }
.footer-legal a { color: #999; }
.footer-legal strong { color: #555; }

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 18px;
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}
.footer-nav li { margin: 0; }
.footer-nav a { color: #aaa; font-size: 13px; font-weight: 600; text-decoration: none; }
.footer-nav a:hover { color: #333; text-decoration: underline; }

/* ---- MOBILE ---- */
@media (max-width: 900px) {
    .content-row {
        flex-direction: column;
    }
    .sidebar {
        flex: 0 0 auto;
        width: 100%;
    }
    .main-article h1 {
        font-size: 24px;
    }
    .header-inner {
        flex-wrap: wrap;
    }
    .site-nav {
        display: none;
    }
}

@media (max-width: 600px) {
    .page-wrap { padding: 16px 14px 30px; }
    .offer-full-inner { flex-direction: column; }
    .offer-full-bottle { flex: 0 0 auto; }
}
