@charset "UTF-8";

@font-face {
  font-family: "Helvetica Neue";
  font-display: swap;
  src: local("Helvetica Neue"), local("HelveticaNeue");
  font-synthesis: none;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #2980b9;
    --secondary-color: #3498db;
    --accent-color: #f39c12;
    --success-color: #27ae60;
    --dark-text: #2c3e50;
    --medium-text: #34495e;
    --light-text: #7f8c8d;
    --background: #fff;
    --light-bg: #f9f9f9;
    --border-color: #ecf0f1;
    --highlight: #fffde7;
}

hr {
    border: 0;
    height: 1px;
    margin: 1.5rem 0;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
    position: relative;
    overflow: visible;
}

html, body {
    background-color: var(--background);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark-text);
    height: 100%;
    margin: 0 auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark-text);
    margin: 2rem 0 1rem;
    text-rendering: optimizeLegibility;
}

h1 {
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-top: 0;
    margin-bottom: 1.2rem;
}

h2 {
    font-weight: 700;
    text-transform: none;
    line-height: 1.35;
    font-size: 1.7rem;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    margin-top: 1rem;
}

h3 {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.4;
}

h4 {
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 1.4;
}

p, li {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0 0 1.2rem;
    color: var(--medium-text);
}

blockquote, ol, ul, .articleImageContainer {
    color: var(--medium-text);
    margin: 0 0 1.2rem;
}

blockquote {
    background-color: var(--highlight);
    border-left: 5px solid var(--accent-color);
    padding: 1rem 1.2rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.footnote {
    font-size: 0.75rem;
    color: var(--light-text);
    line-height: 1.4;
}

.sectionContainer {
    margin-left: auto;
    margin-right: auto;
    max-width: 1140px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.contentContainer {
    margin-left: auto;
    margin-right: auto;
    max-width: 1140px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.content-wrapper {
    display: flex;
    flex-direction: row;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 0.5rem;
    gap: 1rem;
}

.main-content {
    width: 75%;
    background-color: var(--background);
    border-radius: 8px;
    overflow: hidden;
}

.sidebar {
    width: 25%;
    position: sticky;
    top: 50px;
    height: fit-content;
    padding-left: 0.8rem;
    padding-right: 0.5rem;
    border-radius: 5px;
    border: gray 1px solid;
}

.sidebar.sticky {
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    padding-top: 10px;
}

.sidebar h4 {
    margin-top: 3px;
    margin-bottom: 1px;
    font-size: 1.15rem;
    color: var(--dark-text);
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.sidebar img {
    max-width: 100%;
    margin-bottom: 1rem;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.sidebar img:hover {
    transform: translateY(-3px);
}

.sidebar p {
    font-size: 1.05rem;
    line-height: 1.4;
    color: var(--medium-text);
}

a, button {
    outline: none;
}

a {
    color: var(--primary-color);
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--secondary-color);
}

button.red {
    width: 100%;
    display: block;
    padding: 0.9rem 1.5rem;
    background: #e74c3c;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    margin: 1.5rem 0;
    outline: none;
    transition: all 0.2s ease;
    border-bottom: 3px solid #c0392b;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

button.red:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

button.red:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.product-showcase button.red {
    width: 100%;
    font-size: 0.9em;
    padding: 8px 5px;
}

.product-showcase {
    border-radius: 8px;
}

.product-showcase h2 {
    margin-top: 0;
    border-bottom: none;
    padding-bottom: 0.5rem;
}

.product-showcase img {
    border-radius: 6px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.tapAge {
    margin: 0 0 1rem;
}

.tapAge button {
    background-color: var(--primary-color);
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0.5rem 0.5rem 0;
    padding: 0.6rem 0.8rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.tapAge button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

header {
    background-color: #fff;
    height: 60px;
    width: 100%;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    position: relative;
}

header .sectionContainer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    max-width: 1140px;
    position: relative;
}

.header-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

#site-notice {
    color: var(--medium-text);
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0;
    position: absolute;
    right: 15rem;
    top: 50%;
    transform: translateY(-50%);
}

.wpLogo {
    height: 35px;
    width: auto;
    margin: 0;
    margin-right: 10px;
}

.articleContent {
    background-color: #fff;
    margin-bottom: 2rem;
    margin-top: 0.2rem;
    padding-bottom: 2rem;
    padding-top: 0.2rem;
}

.articleInfo {
    margin: 0.5rem 0 1.5rem;
    font-size: 0.85rem;
    color: var(--light-text);
    display: flex;
    align-items: center;
}

.sharethis-inline-share-buttons {
    margin-bottom: 1.5rem;
}

.articleAuthor {
    color: var(--primary-color);
    font-weight: 600;
    margin-right: 0.5rem;
}

.photoAuthor {
    width: 36px;
    height: 36px;
    margin-right: 0.6rem;
    vertical-align: middle;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.photoAuthorbig {
    height: 100px;
    margin-right: 1.5rem;
    width: 100px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.highlight {
    background-color: var(--highlight);
    padding: 0.2em 0;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.img-responsive:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.img-caption {
    font-size: 0.85rem;
    color: var(--light-text);
    margin-top: -1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.3;
    text-align: center;
}

footer {
    color: var(--light-text);
    background: var(--light-bg);
    padding: 3rem 0;
    margin-top: 3rem;
    font-size: 0.8rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

footer a {
    font-size: 0.9rem;
    color: var(--medium-text);
    transition: color 0.2s ease;
}

footer ul {
    margin-bottom: 1rem;
}

footer .wpLogo {
    height: 40px;
    margin-bottom: 1rem;
    width: auto;
}

footer a:hover {
    color: var(--primary-color);
}

.category {
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
    padding: 0.3rem 0.6rem;
    margin: 0 0.5rem 0.5rem 0;
    background: var(--light-bg);
    border-radius: 3px;
    color: var(--medium-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    animation: categoryPulse 2s ease-in-out;
}

.category:hover {
    background: #f5f9ff;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.category::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 70%);
    transform: translateX(-100%);
    transition: all 0.8s ease;
}

.category:hover::after {
    transform: translateX(100%);
}

@keyframes categoryPulse {
    0% { transform: scale(1); }
    10% { transform: scale(1.05); }
    20% { transform: scale(1); }
    100% { transform: scale(1); }
}

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.alert {
    padding: 1.2rem 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid transparent;
    border-radius: 6px;
}

.alert-warning {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
}

.review-score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--success-color);
    color: white;
    font-weight: 700;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.pros-cons {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.pros, .cons {
    flex: 1;
    padding: 1.2rem;
    border-radius: 6px;
}

.pros {
    background-color: rgba(46, 204, 113, 0.1);
    border-left: 3px solid #2ecc71;
}

.cons {
    background-color: rgba(231, 76, 60, 0.1);
    border-left: 3px solid #e74c3c;
}

.pros h4, .cons h4 {
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.pros ul, .cons ul {
    padding-left: 1.5rem;
}

.container {
    padding: 0 1.5rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .container { width: 750px; }
}

@media (min-width: 992px) {
    .container { width: 970px; }
}

@media (min-width: 1200px) {
    .container { width: 1140px; }
}

.row {
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

[class*="col-"] {
    position: relative;
    min-height: 1px;
    padding: 0 15px;
    flex: 1;
}

.text-center { text-align: center; }
.hidden { display: none !important; }

.list-inline {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.list-inline > li {
    display: inline-block;
    padding: 0 15px;
}

.bottom-action-wrapper {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 0.8rem;
    z-index: 9999;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.bottom-action-wrapper.active {
    display: block;
}

.bottom-action-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--success-color);
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    border-radius: 6px;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    max-width: 90%;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.bottom-action-button:hover,
.bottom-action-button:active {
    background: #219652;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.star-rating {
    color: #f39c12;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.review-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--light-text);
}

.review-meta > * {
    margin-right: 1rem;
}

.review-verified {
    color: var(--success-color);
    font-weight: 500;
}

/* User Comments Section */
.user-comments-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.user-comments-section h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.comments-intro {
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--medium-text);
}

.comments-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.user-comment {
    background-color: var(--light-bg);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.user-comment:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.comment-header {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.comment-avatar-initials {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: 2px solid rgba(255,255,255,0.7);
}

.comment-meta {
    display: flex;
    flex-direction: column;
}

.comment-author {
    font-weight: 600;
    color: var(--dark-text);
    font-size: 1rem;
}

.comment-date {
    font-size: 0.85rem;
    color: var(--light-text);
    margin-bottom: 0.2rem;
}

.comment-rating {
    color: #f39c12;
    font-size: 0.9rem;
}

.comment-body p {
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.5;
}

/* Comment helpful voting system */
.comment-helpful {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
}

.helpful-text {
    font-size: 0.8rem;
    color: var(--light-text);
    margin-bottom: 0.2rem;
}

.helpful-buttons {
    display: flex;
    gap: 0.4rem;
}

.helpful-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.2rem 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.helpful-btn:hover {
    background: var(--light-bg);
    transform: translateY(-1px);
}

.helpful-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.helpful-btn.helpful-yes:not(.disabled):hover {
    background: rgba(46, 204, 113, 0.1);
    border-color: #2ecc71;
}

.helpful-btn.helpful-no:not(.disabled):hover {
    background: rgba(231, 76, 60, 0.1);
    border-color: #e74c3c;
}

.helpful-icon {
    font-size: 1rem;
}

.helpful-count {
    font-weight: 500;
    color: var(--medium-text);
}

@media (max-width: 1199px) {
    .main-content {
        width: 100%;
    }
    
    .sidebar {
        position: static;
        width: 100%;
    }
    
    .content-wrapper {
        flex-direction: column;
    }
    
    .bottom-action-wrapper {
        display: block;
    }
    
    body {
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    html, body {
        font-size: 17px;
    }
    
    h1 { font-size: 1.6rem; line-height: 1.25; margin-bottom: 1rem; }
    h2 { font-size: 1.5rem; line-height: 1.3; padding-top: 1.2rem; margin-top: 2rem; }
    h3 { font-size: 1.3rem; }
    h4 { font-size: 1.1rem; }
    
    p, li {
        font-size: 1.15rem;
        line-height: 1.6;
        margin: 0 0 1.2rem;
    }
    
    .sectionContainer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .contentContainer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .content-wrapper {
        flex-direction: column;
        padding: 0 0.5rem;
    }
    
    .main-content {
        width: 100%;
        padding-right: 0;
    }
    
    .sidebar {
        position: static;
        width: 100%;
    }
    
    .pros-cons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .bottom-action-button {
        font-size: 0.95rem;
        padding: 0.7rem 1rem;
        width: 100%;
    }
    
    header .sectionContainer {
        justify-content: center;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .header-left {
        justify-content: center;
    }
    
    #site-notice {
        display: none;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .comment-avatar-initials {
        float: left;
        margin-right: 0.75rem;
    }
    
    .comment-meta {
        width: calc(100% - 65px);
        float: left;
    }
    
    .comment-helpful {
        margin-left: 0;
        margin-top: 0.75rem;
        clear: both;
        width: 100%;
        padding-top: 0.75rem;
        border-top: 1px dashed var(--border-color);
        align-items: flex-start;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    html, body { font-size: 17px; }
    h1 { font-size: 1.8rem; line-height: 1.3; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.4rem; }
    
    p, li {
        font-size: 1.2rem;
        line-height: 1.6;
    }
    
    header .sectionContainer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .contentContainer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .main-content {
        width: 100%;
        padding-right: 0;
    }
}

@media (min-width: 1200px) {
    html, body { font-size: 18px; }
    
    p, li {
        font-size: 1.15rem;
        line-height: 1.6;
    }
    
    .sectionContainer { max-width: 1140px; }
    .contentContainer { max-width: 1140px; }
}