:root {
    --dark-red: #6A0505;
    --medium-red: #8B0A0A;
    --light-red: #AA0C0C;
    --accent-gold: #FFD700;
    --text-white: #F8F9FA;
    --text-dark: #212529;
    --bg-dark-section: #2C0303;
    --bg-light-section: #F8F9FA;
    --border-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-red);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll from AOS animations */
}

/* General Styles */
.container {
    max-width: 1200px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-white);
}

p {
    color: var(--text-white);
}

a {
    color: var(--accent-gold);
    text-decoration: none;
}

a:hover {
    color: var(--light-red);
    text-decoration: underline;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.hover-light:hover {
    color: var(--text-white) !important;
}

.bg-dark-red {
    background-color: var(--dark-red);
}

.bg-dark-section {
    background-color: var(--bg-dark-section);
}

.bg-light-section {
    background-color: var(--bg-light-section);
    color: var(--text-dark);
}

.text-dark-text {
    color: var(--text-dark) !important;
}

.text-primary-custom {
    color: var(--accent-gold) !important;
}

/* Buttons */
.btn-primary-custom-outline {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    background-color: transparent;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom-outline:hover {
    color: var(--dark-red);
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.btn-secondary-custom-outline {
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.5);
    background-color: transparent;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-custom-outline:hover {
    color: var(--dark-red);
    background-color: var(--text-white);
    border-color: var(--text-white);
}

/* Header */
header {
    z-index: 1030;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-link {
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('visuals/pics/hero-background_32.jpg') no-repeat center center/cover;
    padding-top: 80px !; /* Adjust for fixed header */
}

.hero-section .display-3 {
    color: var(--accent-gold);
}

.hero-section .lead {
    color: rgba(255, 255, 255, 0.8);
}

.hero-section .img-fluid {
    max-height: 500px;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
}

/* Rating List */
.rating-card {
    background-color: var(--medium-red);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.rating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.rating-card .card-title {
    color: var(--accent-gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.rating-card .product-logo {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.star-rating i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.rating-score {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
}

.pros-list li, .cons-list li {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.pros-list i, .cons-list i {
    font-size: 1.1rem;
}

.pros-list i {
    color: #28a745; /* Green for pros */
}

.cons-list i {
    color: #dc3545; /* Red for cons */
}

/* Comparison Table */
.comparison-table {
    background-color: var(--text-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comparison-table th {
    background-color: var(--medium-red);
    color: var(--text-white);
    font-weight: 600;
    padding: 1rem;
}

.comparison-table td {
    color: var(--text-dark);
    padding: 1rem;
    vertical-align: middle;
}

.comparison-table tbody tr:nth-of-type(odd) {
    background-color: #f2f2f2;
}

.comparison-table tbody tr:hover {
    background-color: #e9ecef;
}

.btn-outline-primary-custom {
    color: var(--medium-red);
    border-color: var(--medium-red);
    transition: all 0.3s ease;
}

.btn-outline-primary-custom:hover, .btn-outline-primary-custom.active {
    background-color: var(--medium-red);
    color: var(--text-white);
    border-color: var(--medium-red);
}

/* User Reviews */
.review-card {
    background-color: var(--medium-red);
    border-radius: 15px;
    max-width: 700px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
}

.review-card .lead {
    font-style: italic;
    color: var(--text-white);
}

.review-card .small {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Rating Criteria */
.accordion-item {
    background-color: var(--text-white);
    border: 1px solid var(--border-color);
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header button {
    background-color: var(--medium-red);
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 1.25rem;
    border: none;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s ease;
}

.accordion-header button:not(.collapsed) {
    background-color: var(--dark-red);
    color: var(--accent-gold);
}

.accordion-header button:focus {
    box-shadow: none;
}

.accordion-body {
    background-color: var(--text-white);
    color: var(--text-dark);
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* Contact Form */
.contact-form {
    background-color: var(--medium-red);
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form .form-label {
    color: var(--text-white);
    font-weight: 600;
}

.contact-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
    color: var(--text-white);
}

.contact-form .invalid-feedback {
    color: var(--accent-gold);
}

/* Disclaimer Block */
.disclaimer-section {
    background-color: var(--bg-light-section);
    color: var(--text-dark);
    padding: 3rem 0;
}

.disclaimer-content {
    background-color: #FFF3CD; /* Light yellow background for warning */
    border: 2px solid #FFC107; /* Orange border */
    color: #856404; /* Dark yellow text */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.disclaimer-icon {
    font-size: 3.5rem;
    color: #FFC107; /* Orange icon */
    margin-bottom: 1rem;
}

.disclaimer-title {
    color: #856404;
    font-weight: 700;
    font-size: 1.8rem;
}

.disclaimer-text {
    color: #856404;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Footer */
.footer-section {
    background-color: var(--dark-red);
    border-top: 1px solid var(--border-color);
}

.footer-section .text-primary-custom {
    color: var(--accent-gold) !important;
}

.footer-list li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-list li a:hover {
    color: var(--text-white);
    text-decoration: none;
}

.footer-list li i {
    color: var(--accent-gold);
}

.footer-logos-wrapper {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.footer-logos {
    gap: 1.5rem; /* Space between logos */
}

.footer-logo-img {
    max-width: 120px; /* Adjusted based on number of images */
    height: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.footer-logo-img.logo-18plus {
    max-width: 60px;
    filter: brightness(1.2) saturate(1.5); /* Make 18+ more vibrant */
}

.footer-logo-link:hover .footer-logo-img {
    transform: scale(1.05);
}

.logo-img-small {
    height: 30px;
    width: auto;
}

/* Cookie Consent Modal */
.cookie-modal-content {
    background-color: var(--medium-red);
    color: var(--text-white);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.cookie-modal-content .modal-header, .cookie-modal-content .modal-footer {
    border-color: var(--border-color);
}

.cookie-modal-content .modal-title {
    color: var(--accent-gold);
}

.cookie-modal-content .form-check-label {
    color: var(--text-white);
}

.cookie-modal-content .form-check-input:checked {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.cookie-modal-content .btn-primary {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--dark-red);
    font-weight: 600;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.cookie-modal-content .btn-primary:hover {
    background-color: #E6B800;
    border-color: #E6B800;
}

.cookie-modal-content .btn-outline-secondary {
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.5);
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cookie-modal-content .btn-outline-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

.cookie-modal-content .btn-link {
    color: var(--accent-gold) !important;
    font-weight: 600;
    transition: color 0.2s ease;
}

.cookie-modal-content .btn-link:hover {
    color: #E6B800 !important;
}

.cookie-modal-content .btn-success {
    background-color: #28a745;
    border-color: #28a745;
    color: var(--text-white);
    font-weight: 600;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.cookie-modal-content .btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.cookie-modal-content .text-sm {
    font-size: 0.875em;
}

.cookie-modal-content .text-sm a {
    color: var(--accent-gold);
}

.cookie-modal-content .text-sm a:hover {
    color: #E6B800;
}

/* Tooltip for cookie info icons */
.tooltip-inner {
    background-color: var(--dark-red);
    color: var(--text-white);
    border: 1px solid var(--accent-gold);
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}

.tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: var(--dark-red);
}

.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: var(--dark-red);
}

.tooltip.bs-tooltip-start .tooltip-arrow::before {
    border-left-color: var(--dark-red);
}

.tooltip.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: var(--dark-red);
}

/* Responsive adjustments */

@media (max-width: 992px) {
    .fixed-top {
        position: relative !important;
    }
} 

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }

    .hero-section .order-md-1 {
        order: 2 !important;
    }

    .hero-section .order-md-2 {
        order: 1 !important;
        margin-bottom: 2rem;
    }

    .hero-section .img-fluid {
        max-height: 300px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        padding: 0.5rem 0.75rem;
    }

    .btn-group .btn {
        flex: 1 1 auto;
    }

    .footer-list {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .btn-lg {
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 1rem !important;
    }

    .rating-card .card-title {
        font-size: 1.5rem;
    }

    .review-card {
        padding: 1.5rem !important;
    }

    .disclaimer-content {
        padding: 1.5rem;
    }

    .disclaimer-icon {
        font-size: 2.5rem;
    }

    .disclaimer-title {
        font-size: 1.5rem;
    }

    .disclaimer-text {
        font-size: 0.95rem;
    }

    .footer-logos-wrapper h5 {
        font-size: 1.3rem;
    }

    .footer-logo-img {
        max-width: 90px;
    }
}
/* Styles for the secure policy grid section */
.securePolicyGrid {
    padding-top: 3rem; /* Top padding for the section */
    padding-bottom: 3rem; /* Bottom padding for the section */
    padding-left: 1rem; /* Left padding for content */
    padding-right: 1rem; /* Right padding for content */
    /* Ensure content within max-width for readability on large screens */
    max-width: 960px; /* Maximum width for content */
    margin-left: auto; /* Center the content horizontally */
    margin-right: auto; /* Center the content horizontally */
    color: var(--text-dark); /* Default text color for this section, assuming a light background */
}

/* Heading styles within securePolicyGrid */
.securePolicyGrid h1 {
    font-size: 2.25rem; /* Font size for H1 */
    margin-bottom: 1.5rem; /* Bottom margin for H1 */
    color: var(--dark-red); /* Color for H1, making it stand out */
}

.securePolicyGrid h2 {
    font-size: 1.75rem; /* Font size for H2 */
    margin-top: 2rem; /* Top margin for H2, to separate sections */
    margin-bottom: 1.25rem; /* Bottom margin for H2 */
    color: var(--accent-gold); /* Color for H2 */
}

.securePolicyGrid h3 {
    font-size: 1.5rem; /* Font size for H3 */
    margin-top: 1.5rem; /* Top margin for H3 */
    margin-bottom: 1rem; /* Bottom margin for H3 */
    color: var(--accent-gold); /* Color for H3 */
}

.securePolicyGrid h4 {
    font-size: 1.25rem; /* Font size for H4 */
    margin-top: 1.25rem; /* Top margin for H4 */
    margin-bottom: 0.75rem; /* Bottom margin for H4 */
    color: var(--text-white); /* Color for H4 */
}

.securePolicyGrid h5 {
    font-size: 1rem; /* Font size for H5 */
    margin-top: 1rem; /* Top margin for H5 */
    margin-bottom: 0.5rem; /* Bottom margin for H5 */
    color: var(--text-white); /* Color for H5 */
}

/* Paragraph styles within securePolicyGrid */
.securePolicyGrid p {
    font-size: 1rem; /* Base font size for paragraphs */
    line-height: 1.7; /* Line height for readability */
    margin-bottom: 1rem; /* Bottom margin for paragraphs */
    color: var(--text-white); /* Text color for paragraphs */
}

/* Unordered list styles within securePolicyGrid */
.securePolicyGrid ul {
    list-style: disc; /* Default disc bullet for unordered lists */
    padding-left: 1.5rem; /* Left padding for list items */
    margin-bottom: 1rem; /* Bottom margin for the entire list */
    color: var(--text-white); /* Default text color for list items */
}

/* List item styles within securePolicyGrid */
.securePolicyGrid li {
    font-size: 1rem; /* Font size for list items */
    line-height: 1.6; /* Line height for list items */
    margin-bottom: 0.5rem; /* Bottom margin for individual list items */
    color: var(--text-white); /* Text color for list items */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .securePolicyGrid {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .securePolicyGrid h1 {
        font-size: 1.75rem;
    }

    .securePolicyGrid h2 {
        font-size: 1.5rem;
    }

    .securePolicyGrid h3 {
        font-size: 1.25rem;
    }

    .securePolicyGrid h4 {
        font-size: 1.1rem;
    }

    .securePolicyGrid h5 {
        font-size: 0.95rem;
    }

    .securePolicyGrid p,
    .securePolicyGrid li {
        font-size: 0.95rem;
    }
}
