/*
Theme Name: Oopbuyy Shop Redirect Theme
Theme URI: http://oopbuyy.shop
Description: A modern, fresh, full-width custom SEO theme designed for cross-border e-commerce affiliates and spreadsheet indexing.
Version: 1.0.0
Author: Affiliate Developer
Text Domain: oopbuyy-shop
*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

a {
    color: #111;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo a {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.5px;
}

.logo span {
    color: #ff4757;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

nav ul li {
    position: relative;
    margin-left: 25px;
}

nav ul li a {
    font-size: 15px;
    font-weight: 600;
    color: #444;
    padding: 10px 0;
    transition: color 0.2s;
}

nav ul li a:hover {
    color: #ff4757;
}

/* Dropdown styling */
nav ul li ul.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-radius: 6px;
    padding: 10px 0;
    width: 220px;
}

nav ul li:hover ul.dropdown {
    display: block;
}

nav ul li ul.dropdown li {
    margin: 0;
    width: 100%;
}

nav ul li ul.dropdown li a {
    display: block;
    padding: 10px 20px;
    color: #666;
    font-weight: 500;
}

nav ul li ul.dropdown li a:hover {
    background: #fdf1f2;
    color: #ff4757;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f4f7f6 100%);
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.hero h1 {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #ff4757;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.btn-primary:hover {
    background-color: #ff2a3b;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #2ed573;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(46, 213, 115, 0.3);
}

.btn-secondary:hover {
    background-color: #26af5f;
    transform: translateY(-2px);
}

.btn-dark {
    background-color: #1e2229;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(30, 34, 41, 0.3);
}

.btn-dark:hover {
    background-color: #000;
    transform: translateY(-2px);
}

/* Content Layout */
.main-layout {
    padding: 50px 0;
    display: flex;
    gap: 40px;
}

.content-area {
    flex: 1;
}

.seo-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
    margin-bottom: 30px;
}

.seo-card h2 {
    font-size: 26px;
    color: #111;
    margin-bottom: 20px;
    border-left: 5px solid #ff4757;
    padding-left: 15px;
}

.seo-card h3 {
    font-size: 20px;
    margin: 25px 0 10px 0;
    color: #222;
}

.seo-card p {
    margin-bottom: 15px;
    color: #4a4a4a;
    font-size: 15px;
}

.internal-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: #ff4757;
}

.internal-link:hover {
    text-decoration: underline;
}

footer {
    background: #111;
    color: #999;
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
    border-top: 3px solid #ff4757;
}