/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f4f4f9;
    line-height: 1.6;
}
.seo-content {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    background: white;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(50,0,0,0.05);
    font-size: 0.95em;
    line-height: 1.6;
}

.seo-content h2 {
    margin-bottom: 10px;
}

.seo-content p {
    margin-bottom: 10px;
}

/* HEADER */
.logo-header {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    background-image: url('icon.png');
    background-repeat: no-repeat;
    background-size: 70px auto;
    background-position: left center;
    background-color: #000000;
    color: white;
    padding: 30px 20px 30px 100px;
}

.logo-header h1 {
    font-size: 2em;
}

.affiliate-note {
    font-size: 0.85em;
    margin-top: 8px;
    opacity: 0.9;
}

/* MOBILE HEADER */
@media (max-width: 600px) {
    .logo-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 100px 20px 30px;
        background-position: top center;
        background-size: 90px auto;
    }
}

/* HERO */
.hero {
    text-align: center;
    padding: 20px;
    background: white;
}

/* NAV */
nav {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
}

nav ul li a {
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    color: #333;
    font-size: 0.9em;
}

nav ul li a:hover,
nav ul li a.active {
    background: #2575fc;
    color: white;
    border-radius: 6px;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 8px 14px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85em;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.05);
}

.main-btn {
    display: block;
    width: fit-content;
    margin: 20px auto;
}

/* GRID - SMALLER CARDS */
.category-cards {
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

/* CARD */
.card {
    background: white;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 12px rgba(0,0,0,0.08);
    transition: 0.25s;
    padding-bottom: 10px;
}

.card img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    padding: 8px;
}

.card h3 {
    font-size: 1.05em;
    margin: 10px 0 5px;
}

.card p {
    font-size: 0.85em;
    padding: 0 10px 10px;
}

.card .btn {
    margin-bottom: 10px;
}

.card:hover {
    transform: translateY(-5px);
}

/* STORE OPTIONS */
.store-option {
    margin-top: 10px;
    padding: 10px;
    border-top: 1px solid #eee;
    text-align: center;
}

.store-option h3 {
    margin-bottom: 8px;
    font-size: 1em;
}

.store-option p {
    margin: 6px 0;
    font-size: 0.85em;
}

.store-option strong {
    display: block;
    margin-top: 8px;
    font-size: 14px;
}

.store-option .btn {
    margin: 6px 4px;
    font-size: 0.8em;
}
.team-section {
    margin-bottom: 30px;
}
/* IMAGE SLIDER */
.image-slider {
    position: relative;
    width: 100%;
    max-height: 180px;
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: 8px;
}

.slides {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.slides img {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    flex-shrink: 0;
}

/* SLIDER BUTTONS */
.image-slider button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    font-size: 16px;
    padding: 4px 8px;
    cursor: pointer;
    border-radius: 50%;
}

.image-slider .prev { left: 5px; }
.image-slider .next { right: 5px; }

/*TEAM SECTION*/
.section-desc {
    max-width: 800px;
    margin: 0 auto 10px;
    font-size: 0.9em;
    color: #555;
    text-align: center;
}
.team-section h2 {
    margin: 20px 15px 10px;
}
/* TRUST */
.trust {
    text-align: center;
    padding: 25px;
    background: white;
}

.trust p {
    margin: 6px 0;
    font-size: 0.9em;
}

/* CONTACT */
.contact {
    padding: 30px 15px;
    text-align: center;
    background: #f9fafc;
}

.contact form {
    max-width: 450px;
    margin: 15px auto;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 8px;
    margin: 6px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 0.9em;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 18px;
    background: #222;
    color: #aaa;
    font-size: 0.85em;
}
footer a {
    color: #aaa;
    text-decoration: none;
    margin: 0 5px;
}

footer a:hover {
    text-decoration: underline;
}
/* BACK TO TOP */
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;

  padding: 10px 15px;
  font-size: 18px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  z-index: 9999;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  background: #333;
}
