/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.3;
    color: #000000;
    background-color: #f9f9f9;
    font-size: 18px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #000000;
}

.review-link {
    color: #1e4fab;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.review-link:hover {
    color: #2D3748;
}

/* Main Color Scheme */
:root {
    --primary-color: #2D3748;
    --secondary-color: #718096;
    --accent-color: #38B2AC;
    --light-color: #ffffff;
    --dark-color: #1a202c;
    --gray-color: #718096;
    --light-gray: #f0f0f0;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header/Navigation */
header {
    background-color: #002c55;
    padding: 1px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: static;
    z-index: 1000;
    height: 20px;
}

.nav-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 100%;
}

.uk-flag {
    width: 20px;
    height: 15px;
    display: inline-block;
    object-fit: contain;
    vertical-align: middle;
}

.nav-title {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    text-transform: none;
    letter-spacing: 0.5px;
}
/* Detailed Review */
.detailed-review {
    background-color: #f9f9f9;
}

.article-content {
    line-height: 1.4;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.article-content p {
    margin-bottom: 13px;
    font-size: 1.2rem;
    color: #000000;
}

.article-content h3 {
    margin: 13px 0 8px;
    color: #000000;
    font-size: 1.8rem;
}

.article-content h1 {
    color: #000000;
}

.article-text {
    flex: 1;
    max-width: calc(100% - 340px);
    margin: 0 auto;
    width: 100%;
}

.summary-date {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    color: #666;
    text-align: left;
    margin-bottom: 5px;
}

.summary-box {
    background-color: #fbdb95;
    padding: 12px 15px;
    border-radius: 6px;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-left: 3px solid #fbdb95;
}

.summary-content {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.0rem;
    line-height: 1.3;
    color: #333;
}

.highlight-image {
    width: 100%;
    padding: 0;
    margin: 20px 0;
}

.highlight-image img {
    width: 100%;
    max-width: 100%;
}

h3 em {
    color: #000000;
    font-style: normal;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.feature-item {
    background-color: #f0f8ff;
    border: 2px dashed #38B2AC;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: #e0f0ff;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.feature-content {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.4;
}

.promo-module {
    background-color: #fbdb95;
    border-left: 4px solid #ff0000;
    padding: 20px;
    margin: 5px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.update-header {
    color: #ff0000;
    font-weight: bold;
    margin-bottom: 10px;
}

.promo-content p {
    margin: 15px 0;
}

.date-display {
    color: #ff0000;
    font-weight: bold;
}

/* Bottom CTA */
.bottom-cta {
    margin: 5px auto;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.bottom-cta .cta-button {
    display: block;
    width: 100%;
    margin: 0;
    padding: 20px;
    font-size: 1.5rem;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 15px 12px;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.primary-button {
    background-color: #51bd50;
    color: #000000;
    border: none;
}

.primary-button:hover {
    background-color: #2D3748;
}

/* Footer */
footer {
    background-color: #ffffff;
    color: #000000;
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid #eee;
    margin-top: 15px;
    width: 100%;
    clear: both;
}

.footer-links {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
}

.footer-links a {
    color: #2D3748;
    margin: 0;
    font-size: 1.1rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-links {
        gap: 5px;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        padding: 5px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        gap: 3px;
    }
    
    .footer-links a {
        font-size: 0.8rem;
        padding: 3px;
    }
}

.copyright {
    font-size: 1rem;
    color: #000000;
}

.disclaimer {
    font-size: 0.7rem;
    display: block;
    margin-top: 10px;
    line-height: 1.4;
}

/* Lazy Loading for Images */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .article-content {
        display: block;
    }

    .article-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .logo {
        justify-content: center;
    }

    .logo-left {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .logo-left {
        font-size: 24px;
    }
}

.floating-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    width: 240px;
    height: 200px;
}

.sidebar-content {
    background: rgba(0, 0, 0, 0.9);
    border-radius: 120px 0 0 120px;
    padding: 15px 10px 15px 35px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.85);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: relative;
    backdrop-filter: blur(2px);
}

.sidebar-image {
    width: 170px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    margin-left: 15px;
    position: relative;
    border: none;
    border-radius: 10px;
    background: transparent;
}

.sidebar-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
}

.sidebar-button {
    width: 170px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}

.discount-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(76, 175, 80, 0.9);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    border: none;
    cursor: pointer;
    backdrop-filter: blur(1px);
}

.discount-btn:hover {
    background: rgba(69, 160, 73, 1);
    transform: scale(1.05);
}

.discount-text {
    display: block;
    font-size: 14px;
    margin-bottom: 3px;
    color: #000000;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.buy-text {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.off-text {
    color: #ff4444;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.mobile-text {
    display: none;
}

.mobile-line1,
.mobile-line2 {
    display: none;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .floating-sidebar {
        width: 200px;
        height: 180px;
    }
    
    .sidebar-content {
        border-radius: 100px 0 0 100px;
        padding: 12px 8px 12px 30px;
    }
    
    .sidebar-image {
        width: 150px;
        height: 75px;
        margin-left: 10px;
        margin-bottom: 0;
    }
    
    .sidebar-button {
        width: 150px;
        height: 60px;
        margin-left: 10px;
    }
}

@media (max-width: 768px) {
    .floating-sidebar {
        width: 170px;
        height: 160px;
        top: 50%;
        right: 0;
    }
    
    .sidebar-content {
        padding: 10px 8px 10px 25px;
        background: rgba(0, 0, 0, 0.85);
        border-radius: 80px 0 0 80px;
        backdrop-filter: blur(1px);
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    
    .sidebar-image {
        width: 140px;
        height: 80px;
        margin-bottom: 0;
        margin-left: 0;
        background: transparent;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .sidebar-product-img {
        width: 120%;
        height: 120%;
        object-fit: contain;
        filter: none;
        transform: scale(1.1);
    }
    
    .sidebar-button {
        width: 140px;
        height: 60px;
        margin-left: 10px;
    }
    
    .discount-btn {
        background: transparent;
        box-shadow: none;
        padding: 6px 12px;
        font-size: 16px;
        backdrop-filter: none;
        width: 100%;
        height: 100%;
    }
    
    .discount-btn:hover {
        background: transparent;
        transform: scale(1.02);
    }
    
    .discount-text,
    .buy-text {
        display: none;
    }
    
    .mobile-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1.1;
        width: 100%;
        height: 100%;
        padding: 3px 8px 3px 3px;
        margin-left: 5px;
    }
    
    .mobile-line1 {
        display: block;
        font-size: 16px;
        font-weight: 600;
        color: #ffffff;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        margin-bottom: 3px;
        white-space: nowrap;
        letter-spacing: 0.5px;
    }
    
    .mobile-line2 {
        display: block;
        font-size: 28px;
        font-weight: 900;
        color: #ff4444;
        text-shadow: 3px 3px 6px rgba(0,0,0,0.9);
        white-space: nowrap;
        letter-spacing: 1px;
        -webkit-text-stroke: 1px rgba(0,0,0,0.3);
    }
}

@media (max-width: 480px) {
    .floating-sidebar {
        width: 150px;
        height: 140px;
        top: 45%;
    }
    
    .sidebar-content {
        padding: 8px 5px 8px 20px;
        border-radius: 70px 0 0 70px;
    }
    
    .sidebar-image {
        width: 120px;
        height: 70px;
        margin-bottom: 0;
    }
    
    .sidebar-product-img {
        width: 125%;
        height: 125%;
        transform: scale(1.15);
    }
    
    .sidebar-button {
        width: 120px;
        height: 50px;
        margin-left: 8px;
    }
    
    .mobile-text {
        padding: 2px 6px 2px 2px;
        margin-left: 4px;
    }
    
    .mobile-line1 {
        font-size: 14px;
        margin-bottom: 2px;
    }
    
    .mobile-line2 {
        font-size: 24px;
    }
}

@media (max-width: 360px) {
    .floating-sidebar {
        width: 130px;
        height: 120px;
    }
    
    .sidebar-content {
        padding: 6px 3px 6px 18px;
        border-radius: 60px 0 0 60px;
    }
    
    .sidebar-image {
        height: 60px;
        margin-bottom: 0;
    }
    
    .sidebar-product-img {
        transform: scale(1.2);
    }
    
    .mobile-text {
        padding: 2px 5px 2px 2px;
        margin-left: 3px;
    }
    
    .mobile-line1 {
        font-size: 12px;
        margin-bottom: 2px;
    }
    
    .mobile-line2 {
        font-size: 20px;
    }
}

.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    display: none;
    margin-bottom: 0;
}

.floating-cta.show {
    transform: translateY(0);
    display: block;
}

.floating-cta-button {
    display: block;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.5rem;
    background-color: #51bd50;
    color: #000000;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}


@media (max-width: 768px) {
    .floating-cta-button {
        padding: 8px 15px;
        font-size: 1rem;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.floating-cta-button:hover {
    background-color: #2D3748;
    color: #ffffff;
}

footer {
    background-color: #ffffff;
    color: #000000;
    padding: 15px 0 80px 0;
    text-align: center;
    border-top: 1px solid #eee;
    margin-top: 15px;
}

body.floating-cta-visible footer {
    padding-bottom: 120px;
}