:root {
    --primary: #ff6b35;
    --secondary: #f7c59f;
    --dark: #1a1a1a;
    --darker: #0a101a;
    --text-muted: #9ba6b5;
    --light: #ffffff;
    --gradient: linear-gradient(135deg, #ff6b35, #ff8c42);
    --gradient-dark: linear-gradient(135deg, #150b07, #7d7570);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    flex: 1 1 auto;
}

/* Optional: for extra-wide screens */
@media screen and (min-width: 1600px) {
    .container {
        max-width: 1600px;
    }
}

header {
    background: var(--gradient);
    padding: 0px 0;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.8em;
}

.logo i {
    font-size: 1.3em;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-selector {
    padding: 5px 10px;
    border: 2px solid var(--secondary);
    border-radius: 16px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.country-selector:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.user-avatar:hover {
    transform: scale(1.1);
}

.user-avatar i {
    color: var(--primary);
    font-size: 20px;
}

.btn-light {
    background-color: #ffffff;
    color: var(--primary);
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-light:hover {
    background-color: #fdcbb9;
}

.intro-message {
    background: var(--gradient-dark);
    padding: 20px;
    margin: 0px 0;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-weight: 500;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease, margin 0.3s ease, padding 0.3s ease;
    height: auto;
}

.intro-message.hidden {
    opacity: 0;
    visibility: hidden;
    margin: 0;
    padding: 0;
    height: 0;
}


.close-btn {
    cursor: pointer;
    padding: 5px 10px;
    transition: transform 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
}

 .content-container {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }


.content-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .content-image {
            width: 100px;
            height: 100px;
            border-radius: 20px;
            object-fit: cover;
            background: var(--secondary);
        }

        .content-title h1 {
            font-size: 2em;
            margin-bottom: 5px;
        }

        .content-details {
            color: #666;
            font-size: 1.1em;
        }

.search-container {
    position: relative;
    margin: 10px 0;
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
}

.markets-list {
    max-height: 300px;
    overflow-y: auto;
    margin-top: 15px;
}

.markets-list .market-item {
    padding: 12px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: all 0.3s ease;
}

.markets-list .market-item:hover {
    background: #f5f5f5;
}

#marketSearch {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 10px;
    margin-top: 15px;
}

#searchForm {
    flex: 1;
    display: flex;
    position: relative;
}

.search-container .fa-search {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    z-index: 1;
}

#searchForm select {
    padding: 15px;
    border: 2px solid var(--secondary);
    border-radius: 25px;
    font-size: 16px;
}

input[type="search"] {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid var(--secondary);
    border-radius: 25px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.filter-btn {
    position: relative;
    background: var(--gradient);
    color: white;
    border: none;
    min-width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 0;
}

.search-container .filter-btn i {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    font-size: 16px;
    color: white;
    margin: 0;
    padding: 0;
    display: block;
    width: auto;
    height: auto;
    line-height: 1;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}


.filter-btn-markets {
            padding: 8px 15px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn-markets:hover {
            background: #e85a25;
        }

input[type="search"]:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.2);
}

.markets-scroll {
    margin: 10px 0;
    overflow-x: auto;
    white-space: nowrap;
    padding: 5px 0;
    -webkit-overflow-scrolling: touch;
}

.markets-scroll::-webkit-scrollbar {
    height: 6px;
}

.markets-scroll::-webkit-scrollbar-thumb {
    background: #faefea;
    border-radius: 3px;
}

.market-btn {
    display: inline-block;
    padding: 8px 20px;
    margin-right: 6px;
    background: #faefea;
    border: 1px solid var(--secondary);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.market-btn.active {
    background: var(--gradient);
    color: white;
    border: none;
}

.market-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.commodities-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 15px;
}

.commodity-card {
    background: var(--light);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.commodity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

.commodity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.commodity-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.commodity-info {
    flex: 1;
}

.market-name {
    color: #666;
    font-size: 0.9em;
    margin-top: 2px;
}

.arrow-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px;
    color: var(--primary);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.arrow-btn:hover {
    transform: translateY(-50%) translateX(5px);
}

.commodity-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.commodity-icon img {
    width: 45px;
    height: 45px;
    border-radius: 15px;
    object-fit: cover;
}

.price-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.price-item {
    padding: 12px;
    background: #f8f8f8;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.price-range {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed #eee;
}

.price-range span {
    font-weight: 500;
}

.price-item:hover {
    background: #f0f0f0;
}

.update-date {
    text-align: center;
    color: #999;
    margin-top: 20px;
    font-size: 14px;
}

.price-item .price-change {
    font-size: 12px;
    margin-top: 5px;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
}

.price-item .price-change.positive {
    background: #e6f4ea;
    color: #137333;
}

.price-item .price-change.negative {
    background: #fce8e6;
    color: #c5221f;
}

.price-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.price-value {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
}

.price-change {
    margin-top: 20px;
    padding: 12px;
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
    font-size: 20px;
}

.price-change.positive {
    background: #e6f4ea;
    color: #137333;
}

.price-change.negative {
    background: #fce8e6;
    color: #c5221f;
}

.change-date {
    color: #999;
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
}

.load-more-container {
    text-align: center;
    margin: 40px 0;
}

.load-more-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.load-more-btn i {
    font-size: 14px;
}

footer {
    display: block;
    width: 100%;
    margin-top: auto;
    padding: 20px 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 10px;
}

.footer-links a {
    color: var(--secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
}

.footer-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    position: relative;
    transform: translateY(-20px);
    animation: modalSlide 0.3s forwards;
}

@keyframes modalSlide {
    to {
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-close {
    cursor: pointer;
    font-size: 24px;
    color: #666;
}

.login-form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #ddd;
    border-radius: 10px;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Product page specific styles */
.back-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    color: var(--primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-link:hover {
    transform: translateX(-5px);
}

.product-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.product-image {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    object-fit: cover;
    background: var(--secondary);
}

.product-title h1 {
    font-size: 2em;
    margin-bottom: 5px;
}

.product-details {
    color: #666;
    font-size: 1.1em;
}

.last-updated {
    color: #999;
    font-size: 0.9em;
    margin-top: 5px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
}

.primary-btn {
    background: var(--gradient);
    color: white;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.outline-btn {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.outline-btn:hover {
    background: #fff5f0;
    transform: translateY(-3px);
}

.market-selector {
    background: var(--gradient);
    max-width: 280px;
    padding: 10px 20px;
    border: 2px solid var(--gradient);
    color: black;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.market-selector:hover {
    border-color: var(--primary);
}

.prices-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.price-card {
    background: #f8f8f8;
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.price-type {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 10px;
}

.price-history {
    margin-top: 40px;
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filter-container {
    display: flex;
    gap: 15px;
    align-items: center;
}

.date-input {
    padding: 8px 15px;
    border: 2px solid var(--secondary);
    border-radius: 8px;
}

.records-selector {
    padding: 8px 15px;
    border: 2px solid var(--secondary);
    border-radius: 8px;
}

.history-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.history-table th, .history-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.history-table th {
    background: #f8f8f8;
    color: #666;
    font-weight: 500;
}

.history-table tr:hover {
    background: #f8f8f8;
}

/* Share modal */
.share-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-option:hover {
    background: #f8f8f8;
}

.share-icon {
    font-size: 24px;
    color: var(--primary);
}

/* More Products and Offers Sections */
.more-products-section,
.offers-section {
    margin-top: 40px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.more-products-section h2,
.offers-section h2 {
    font-size: 1.5em;
    color: var(--dark);
    margin-bottom: 20px;
    padding-left: 10px;
}

.carousel-container,
.offers-carousel {
    position: relative;
    padding: 0 40px;
    margin-top: 20px;
}

.carousel-track,
.offers-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
}

.carousel-track::-webkit-scrollbar,
.offers-track::-webkit-scrollbar {
    display: none;
}

.carousel-item,
.offer-card {
    flex: 0 0 300px;
    background: #f8f8f8;
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.carousel-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.carousel-item h3,
.offer-card h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: var(--dark);
}

.carousel-item a {
    color: var(--dark);
}

.carousel-item .details,
.offer-card .details {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.offer-info {
    margin-top: 15px;
}

.price,
.offer-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    color: #666;
}

.change {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.85em;
}

.change.positive {
    background: #e6f4ea;
    color: #137333;
}

.change.negative {
    background: #fce8e6;
    color: #c5221f;
}

.updated,
.offer-date {
    color: #666;
    font-size: 0.85em;
    margin-top: 15px;
}

.carousel-button,
.offers-carousel .carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.carousel-button:hover,
.offers-carousel .carousel-button:hover {
    background: var(--dark);
    transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev,
.offers-carousel .carousel-button.prev {
    left: 0;
}

.carousel-button.next,
.offers-carousel .carousel-button.next {
    right: 0;
}

/* Offer Card Specific Styles */
.offer-card .offer-type {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.offer-card .offer-type.buy {
    background: #e6f4ea;
    color: #137333;
}

.offer-card .offer-type.sell {
    background: #fce8e6;
    color: #c5221f;
}

.offer-card .contact-info {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.offer-card .whatsapp-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #25D366;
    font-size: 0.9em;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128C7E;
}

/* Buy/Sell Modal Styles */
.offer-form {
    margin-top: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #666;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.char-count {
    display: block;
    text-align: right;
    color: #666;
    font-size: 0.8em;
    margin-top: 5px;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}


.alert {
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            text-align: center;
        }

        .alert.success {
            background: #e6f4ea;
            color: #137333;
            border: 1px solid #137333;
        }

        .alert.error {
            background: #fce8e6;
            color: #c5221f;
            border: 1px solid #c5221f;
        }

/* Responsive styles */
@media (max-width: 1200px) {
    .carousel-item,
    .offer-card {
        flex: 0 0 280px;
    }
}

@media (max-width: 992px) {
    .carousel-item,
    .offer-card {
        flex: 0 0 260px;
    }
}

@media (max-width: 768px) {
    .product-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-image {
        width: 100%;
        height: 160px;
    }

    .action-buttons {
        flex-direction: column;
        width: 100%;
    }

    .action-btn {
        width: 100%;
        justify-content: center;
    }

    .history-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .filter-container {
        flex-wrap: wrap;
    }

    .history-table {
        display: block;
        overflow-x: auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-content {
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .more-products-section,
    .offers-section {
        padding: 20px 15px;
        margin-top: 20px;
    }

    .carousel-container,
    .offers-carousel {
        padding: 0 10px;
    }
    
    .carousel-item,
    .offer-card {
        flex: 0 0 240px;
    }
    
    .carousel-button,
    .offers-carousel .carousel-button {
        display: none;
    }

    .carousel-item img {
        height: 140px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .carousel-item,
    .offer-card {
        flex: 0 0 220px;
    }
    
    .carousel-container,
    .offers-carousel {
        padding: 0 5px;
    }

    .carousel-item img {
        height: 120px;
    }
}

.no-offers {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    color: #666;
    gap: 15px;
}

.no-offers i {
    font-size: 48px;
    color: var(--secondary);
}

.no-offers p {
    font-size: 1.2em;
}


.searchable-select {
            position: relative;
            width: 100%;
        }
        .searchable-select input {
            width: 100%;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        .searchable-select .options {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            max-height: 200px;
            overflow-y: auto;
            background: white;
            border: 1px solid #ddd;
            border-top: none;
            display: none;
            z-index: 1000;
        }
        .searchable-select .option {
            padding: 8px;
            cursor: pointer;
        }
        .searchable-select .option:hover {
            background: #f5f5f5;
        }


 .tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tab-btn {
    padding: 0.5rem 1rem;
    border: none;
    background: none;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    border-bottom: 2px solid var(--primary);
    color: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}


        .price-report-section {
            background: #fff;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .price-report-section h2 {
            color: #333;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .price-report-content {
            line-height: 1.6;
            color: #666;
        }

        .loading-spinner {
            text-align: center;
            color: #888;
            padding: 20px;
        }


        .grecaptcha-badge { visibility: hidden; }
