/* ===================== RESET ===================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f2f6fb;
    color: #222;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================== LAYOUT ===================== */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    padding: 2rem;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===================== HEADER ===================== */
.site-header {
    background: #0a4ea3;
    color: #fff;
    padding: 1.5rem 1rem;
    text-align: center;
}

.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
}

.header-logo a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.header-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.header-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.header-menu a:hover {
    color: #ffd000;
}

.header-trust {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 25px;              /* space between the two lines */
    align-items: center;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.header-trust span {
    display: flex;
    align-items: center;
}

.header-trust .check {
    color: #4caf50;
    font-weight: bold;
    margin-right: 6px;
}









.logo-text a {
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 1.5rem; /* adjust as needed */
    display: inline-flex;
    align-items: center;
    gap: 4px; /* space between parts */
}

.logo-primary {
    color: #ffffff; /* main color, white */
}

.logo-highlight {
    color: #ffd700; /* gold highlight */
}

.logo-star {
    color: #ffb400; /* star color */
    font-size: 1.2rem; /* slightly smaller */
    margin-left: 2px;
}



/* ===================== HERO ===================== */
.hero {
    background: linear-gradient(rgba(0,70,150,0.7), rgba(0,150,255,0.6)),
                url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 8rem 1rem;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero span {
    color: #ffd000;
}

.cta-btn {
    background: #ffd000;
    color: black;
    padding: 0.9rem 2rem;
    font-weight: bold;
    border-radius: 40px;
    text-decoration: none;
    font-size: 1rem;
    display: inline-block;
    margin-top: 1rem;
    transition: transform 0.2s;
}

.cta-btn:hover {
    transform: scale(1.05);
}

/* ===================== SECTION TITLES ===================== */
.section-title {
    text-align: center;
    font-size: 1.6rem;
    margin: 3rem 0 1.5rem;
    color: #0a4ea3;
}

/* ===================== DEAL GRID ===================== */
.deals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}

.card, .highlight-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.card:hover, .highlight-card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.card-content, .highlight-card p {
    padding: 1rem;
}

.discount-badge {
    background: #ff3c3c;
    color: white;
    padding: 0.3rem 0.6rem;
    font-weight: bold;
    border-radius: 0.3rem;
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

.card h3, .highlight-card h3 {
    margin: 0.5rem 0;
    font-size: 1rem;
    color: #0a4ea3;
}

.price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #0a4ea3;
}

.button {
    display: inline-block;
    background: #0a4ea3;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.4rem;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: background 0.2s;
}

.button:hover {
    background: #083c82;
}

/* ===================== FOOTER ===================== */
.site-footer {
    background: #0a4ea3;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-menu a {
    color: #ffffffcc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-menu a:hover {
    color: #ffd000;
}

.footer-social {
    margin-bottom: 1rem;
}

.footer-social a {
    font-size: 1.2rem;
    color: #fff;
    margin: 0 0.5rem;
    text-decoration: none;
    transition: transform 0.2s, color 0.2s;
}

.footer-social a:hover {
    transform: scale(1.2);
    color: #ffd000;
}

.footer-copy {
    font-size: 0.75rem;
    color: #ffffffaa;
}

/* ===================== TABLES ===================== */
.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    margin-top: 1rem;
}

table th, table td {
    padding: 0.6rem;
    border: 1px solid #ddd;
    text-align: left;
    font-size: 0.85rem;
}

table th {
    background: #1976d2;
    color: #fff;
}

table tr:nth-child(even) { background:#f5f5f5; }
table tr:hover { background:#e3f2fd; }

/* ===================== CUSTOMER REVIEWS ===================== */
.customer-reviews-fancy {
    overflow:hidden; 
    padding:1rem; 
    background:#f5f5f5; 
}

.reviews-track-fancy { 
    display:flex; 
    gap:1rem; 
    animation: scrollReviewsFancy 30s linear infinite; 
}

.review-fancy { 
    flex:0 0 220px; 
    background:#fff;
    padding:0.8rem; 
    border-radius:0.6rem; 
    box-shadow:0 4px 10px rgba(0,0,0,0.1); 
    color:#333;
}

.review-text { color:#333; }
.stars { color:#ffb400; margin-bottom:0.3rem; }

/* ===================== KEYFRAMES ===================== */
@keyframes scrollReviewsFancy {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.customer-reviews-fancy:hover .reviews-track-fancy {
    animation-play-state: paused;
}

/* ===================== MEDIA QUERIES ===================== */
@media (max-width: 1024px) {
    .hero { padding: 6rem 1rem; }
    .hero h1 { font-size: 1.6rem; }
    .section-title { font-size: 1.4rem; }
}

@media (max-width: 768px) {
    .header-container { flex-direction: column; align-items: center; gap: 0.5rem; }
    .header-menu { flex-direction: column; gap: 0.5rem; }
    .hero { padding: 4rem 1rem; }
    .hero h1 { font-size: 1.4rem; }
    .cta-btn, .button { width: 100%; font-size: 1rem; padding: 0.8rem 0; }
    .deals { grid-template-columns: 1fr; padding: 1rem; }
    .card h3 { font-size: 1rem; }
    .price { font-size: 1rem; }
    .footer-menu { flex-direction: column; gap: 0.5rem; }
    .footer-social a { margin: 0 0.3rem; font-size: 1rem; }
}


.deal-gallery .thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.deal-gallery .thumbnails img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.2s ease;
}
.deal-gallery .thumbnails img:hover {
    border-color: #1976d2;
}


