/* Color Palette */
:root {
    --primary-bg: #fff8f3;
    --dark-green: #0b3d33;
    --accent-orange: #ff7f50;
    --text-muted: #6c757d;
}

body {
    background-color: #fcfcfc;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}
.quick-links-color {
    background-color: #f5f5f5;
}
/* Header */
.header-banner {
    background-color: var(--primary-bg);
    border-radius: 8px;
}

.text-dark-green {
    color: var(--dark-green);
}

.btn-dark-green {
    background-color: var(--dark-green);
    color: white;
    border-radius: 20px;
    font-weight: 600;
}

.btn-dark-green:hover {
    background-color: #145a4d;
    color: white;
}

.quick-links {
    padding: 0;
}
.quick-links li {
    list-style-type: none;
    margin-left: 1rem;
}

.quick-links li a {
    text-decoration: none;
    color: #555;
    font-size: 0.85rem;
}

.quick-links li a.active {
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 27.99px;
    vertical-align: middle;
    position: relative;
}

.quick-links li a.active::before {
    content: "•";
    color: #000;
    margin-left: -10px;
    margin-right: 5px;
    margin-top: 5px;
    font-size: 1.5rem;
}
/* Logos Placeholder */
.placeholder-logo {
    padding: 10px;
    font-weight: bold;
    display: inline-block;
    border-radius: 4px;
    width: 100%;
}
.placeholder-logo img {
    width: 80%;
}
.placeholder-logo-sm {
    font-size: 0.7rem;
    padding: 4px 8px;
    font-weight: bold;
}
.placeholder-logo-sm img {
    width: 50%;
}
/* CTA Bar */
.cta-bar {
    border: 1px solid #e9ecef;
}

.btn-orange {
    background-color: #ff7f5d;
    color: white;
    font-weight: bold;
    border-radius: 8px;
}

/* Pros & Cons Tags */
.feature-tag {
    padding: 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    height: 100%;
    display: flex;
    align-items: center;
    border: 1px solid #f0f0f0;
    background: #fff;
}

.feature-tag.pros i {
    color: #28a745;
    margin-right: 10px;
}

.feature-tag.cons i {
    color: #dc3545;
    margin-right: 10px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .border-start {
        border-left: none !important;
        border-top: 1px solid #dee2e6;
        padding-top: 20px;
        margin-top: 20px;
    }

    .cta-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Review Cards */
.review-card {
    background-color: #fff;
    border: 1px solid #f0f0f0 !important;
}

.avatar {
    width: 45px;
    height: 45px;
    background-color: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #495057;
    font-size: 0.9rem;
}

/* Rating List */
.rating-list li {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.rating-list li i {
    color: #0b3d33;
    margin-right: 10px;
    font-weight: bold;
}

/* Image Placeholder */
.placeholder-img-main img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 500px;
}

/* Typography adjustment for long text */
p.small.text-muted {
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* Responsive fixes for new sections */
@media (max-width: 768px) {
    .review-card {
        margin-bottom: 10px;
    }
}

/* Table General Styling */
.table thead th {
    background-color: #0b3d33;
    color: white;
    font-weight: 600;
    border: none;
    padding: 15px;
}

.table-bordered td,
.table-bordered th {
    border: 1px solid #dee2e6;
}

/* Pricing Table */
.pricing-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.pricing-table td:first-child {
    text-align: left;
    font-weight: 500;
    padding-left: 15px;
}

/* Comparison Table */
.comparison-table .compare-head {
    text-transform: lowercase;
    font-style: italic;
    font-weight: bold;
}

.comparison-table td:first-child {
    background-color: #ffffff;
    text-align: left;
    padding-left: 15px;
    color: #333;
}

/* Mobile Table Scrolling Hint */
.table-responsive {
    border-radius: 8px;
    /* overflow: hidden; */
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .table {
        font-size: 0.75rem;
    }
    .table thead th {
        padding: 10px 5px;
    }
}

/* Footer specific styles */
footer .card {
    border-radius: 12px;
}

/* Ensure images take full width of container */
.placeholder-img-main {
    width: 100%;
    overflow: hidden;
}

.placeholder-img-main img {
    transition: transform 0.3s ease;
}

.placeholder-img-main img:hover {
    transform: scale(1.01);
}

.sticky-sidebar {
    position: sticky;
    top: 1rem;
    align-self: flex-start;
}
#quickLinks .nav-link {
    color: #555;
    transition: all 0.2s ease;
    padding: 0 !important;
}

#quickLinks .quick-links.active {
    color: #0d6efd;
    font-weight: 600;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 6px;
}
.back-button {
    font-weight: 600;
    font-style: bold;
    font-size: 15.5px;
    line-height: 24px;
    letter-spacing: 1px;
    text-align: center;
    vertical-align: middle;
    text-transform: capitalize;
    text-decoration: none;
    color: #0f3739;
}
.top-shop-now {
    width: 50% !important;
    border-radius: 14px !important;
}
/* Custom alignment for the exploration footer on mobile */
@media (max-width: 576px) {
    footer .card {
        text-align: center;
        justify-content: center !important;
    }
    footer .btn {
        width: 100%;
    }
}
