/*
Theme Name: Love Doll Premium
Theme URI: https://example.com/lovedoll-premium
Author: Antigravity
Author URI: https://example.com
Description: A premium affiliate theme for love dolls. Features rankings, comparisons, and elegant design.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: affiliate, ranking, premium, responsive
Text Domain: lovedoll-premium
*/

/* Reset & Basic Variables */
:root {
    --color-gold: #d4af37;
    /* Slightly warmer gold */
    --color-pink: #ffb7c5;
    /* Sakura pink */
    --color-soft-pink: #fff0f5;
    /* Lavender blush */
    --color-deep-pink: #ff8da1;
    --color-charcoal: #4a4a4a;
    /* Softer text color */
    --color-bg: #fffbfd;
    /* Very subtle pinkish white */
    --color-light-gray: #f2f2f2;
    --font-serif: "Playfair Display", serif;
    --font-sans: "Inter", sans-serif;
    --border-radius-lg: 20px;
    --border-radius-btn: 50px;
}

body {
    background-color: var(--color-bg);
    color: var(--color-charcoal);
    font-family: var(--font-sans);
    line-height: 1.6;
    margin: 0;
    text-rendering: optimizeLegibility;
}

/* Layout & Containers */
.site {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.site-main {
    flex-grow: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.site-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(255, 183, 197, 0.15);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 5%;
    padding-right: 5%;
}

.site-branding {
    display: flex;
    align-items: center;
    padding: 0;
}

.site-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.site-title a {
    text-decoration: none;
    background: linear-gradient(45deg, var(--color-deep-pink), var(--color-gold));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: opacity 0.3s;
}

.site-title a:hover {
    opacity: 0.8;
}

.site-description {
    display: none;
    /* Hide description for cleaner header */
}

/* Main Navigation */
.main-navigation {
    display: block;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2000;
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: background 0.3s;
}

.menu-toggle:hover {
    background: var(--color-soft-pink);
}

/* Hamburger Icon */
.hamburger-box {
    width: 24px;
    height: 20px;
    display: inline-block;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 24px;
    height: 2.5px;
    background-color: var(--color-deep-pink);
    border-radius: 5px;
    position: absolute;
    transition: transform 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger-inner {
    top: 50%;
    margin-top: -1.25px;
}

.hamburger-inner::before {
    content: "";
    top: -7px;
}

.hamburger-inner::after {
    content: "";
    bottom: -7px;
}

/* Hamburger Active State */
.menu-toggle[aria-expanded="true"] .hamburger-inner {
    transform: rotate(45deg);
    background-color: var(--color-deep-pink);
    /* Keep pink on active for contrast against white menu */
}

.menu-toggle[aria-expanded="true"] .hamburger-inner::before {
    top: 0;
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
}

/* Desktop Menu */
.menu-container ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
    align-items: center;
}

.menu-container a {
    text-decoration: none;
    color: var(--color-charcoal);
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    /* Pill shape */
    display: inline-block;
}

.menu-container a::after {
    display: none;
    /* remove pointer underline */
}

.menu-container a:hover {
    color: var(--color-deep-pink);
    background: var(--color-soft-pink);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 183, 197, 0.3);
}

/* Mobile Menu Media Query */
@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding-top: 100px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1500;
        display: flex;
        justify-content: center;
    }

    .site-header {
        padding-left: 20px;
        padding-right: 20px;
    }

    .main-navigation.toggled .menu-container {
        transform: translateX(0);
    }

    .menu-container ul {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .menu-container a {
        color: var(--color-charcoal);
        font-size: 1.4rem;
        font-weight: 700;
        padding: 0.5rem 2rem;
    }

    .menu-container a:hover {
        background: var(--color-soft-pink);
        color: var(--color-deep-pink);
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    margin-top: 0;
    color: #5d4037;
    /* Warm brown for headings */
}

.text-gold {
    color: var(--color-gold);
}

.text-pink {
    color: var(--color-pink);
}

.text-center {
    text-align: center;
}

/* Components */
.btn {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background: var(--color-pink);
    color: #fff;
    text-decoration: none;
    border-radius: var(--border-radius-btn);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 183, 197, 0.4);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--color-deep-pink);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 183, 197, 0.6);
}

.card {
    background: #fff;
    border: none;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 183, 197, 0.2);
}

/* Hero Section */
.hero-section {
    background: #fdfcfb;
    padding: 4rem 0;
    border-bottom: 1px solid var(--color-light-gray);
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-primary {
    background: var(--color-gold);
}

.btn-lg {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: #fff;
}

/* Sections */
.section-padding {
    padding: 3rem 0;
}

.section-title {
    margin-bottom: 2rem;
    font-size: 2rem;
}

/* Grids */
.ranking-grid,
.grid-3 {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {

    .ranking-grid,
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ranking-card img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.bg-light {
    background: var(--color-light-gray);
}

/* Review Specific */
.merit-card h3 {
    color: #2e7d32;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #fff;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 183, 197, 0.3);
    border-color: var(--color-soft-pink);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card-image {
    position: relative;
    padding-top: 60%;
    /* Slightly taller */
    background: var(--color-soft-pink);
    overflow: hidden;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.blog-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.placeholder-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-deep-pink);
    background-color: var(--color-soft-pink);
}

.placeholder-img .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
}

.blog-card-meta-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    padding: 20px 20px 10px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
}

.blog-card-content {
    padding: 1.8rem;
}

.blog-card-categories .cat-label {
    background: var(--color-soft-pink);
    color: var(--color-deep-pink);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.blog-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    font-weight: 700;
    color: #5d4037;
    transition: color 0.3s;
}

.blog-card:hover .blog-card-title {
    color: var(--color-deep-pink);
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: #888;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.7;
}

/* Pagination */
.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-light-gray);
    border-radius: 50%;
    color: var(--color-charcoal);
    text-decoration: none;
    transition: all 0.3s;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--color-gold);
    color: #fff;
    border-color: var(--color-gold);
}

/* Single Post */
.single-post-article {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    /* Fallback */
    border-radius: 8px;
}

@media (min-width: 768px) {
    .single-post-article {
        padding: 4rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }
}

.entry-meta {
    color: #888;
    font-size: 0.9rem;
}

.cat-separator {
    margin: 0 0.5rem;
}

.cat-link {
    color: var(--color-gold);
    text-decoration: none;
}

.entry-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.entry-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.entry-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-gold);
}

.entry-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--color-gold);
    padding-left: 1rem;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content blockquote {
    background: #fdfcfb;
    border-left: 4px solid #ccc;
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    font-style: italic;
    color: #555;
}

.post-tags {
    margin-top: 2rem;
    border-top: 1px solid var(--color-light-gray);
    padding-top: 1rem;
    font-size: 0.9rem;
}

.tags-label {
    font-weight: 700;
}

.post-navigation .nav-links a {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
}

.post-navigation .nav-links a:hover {
    text-decoration: underline;
}
/* Website Ranking Styles */
.website-ranking-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.ranking-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ranking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.ranking-card-inner {
    display: grid;
    grid-template-columns: 80px 200px 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    align-items: center;
}

.ranking-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-pink), var(--color-deep-pink));
    color: #fff;
    border-radius: 12px;
    padding: 1rem 0.5rem;
    min-height: 80px;
}

.rank-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.rank-label {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.ranking-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ranking-thumbnail {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    max-height: 150px;
}

.ranking-no-image {
    width: 200px;
    height: 150px;
    background: var(--color-light-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.ranking-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ranking-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: var(--color-charcoal);
}

.ranking-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    color: #ffd700;
}

.rating-text {
    font-size: 0.875rem;
    color: var(--color-charcoal);
}

.ranking-action {
    margin-top: 0.5rem;
}

.btn-ranking {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-pink), var(--color-deep-pink));
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius-btn);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 141, 161, 0.3);
}

.btn-ranking:hover {
    background: linear-gradient(135deg, var(--color-deep-pink), var(--color-pink));
    box-shadow: 0 4px 12px rgba(255, 141, 161, 0.5);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .ranking-card-inner {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .ranking-image {
        grid-column: 1 / -1;
        grid-row: 2;
    }
    
    .ranking-content {
        grid-column: 2;
        grid-row: 1;
    }
    
    .ranking-badge {
        grid-column: 1;
        grid-row: 1;
        min-height: 60px;
        padding: 0.5rem;
    }
    
    .rank-number {
        font-size: 1.5rem;
    }
    
    .ranking-title {
        font-size: 1.25rem;
    }
    
    .ranking-no-image {
        width: 100%;
        height: 120px;
    }
}

/* ============================================
   Blog Section Styles
   ============================================ */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.blog-thumbnail {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--color-light-gray);
}

.blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-thumbnail img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--color-charcoal);
}

.blog-date {
    color: #666;
}

.blog-category {
    background: linear-gradient(135deg, var(--color-pink), var(--color-deep-pink));
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.blog-title a {
    color: var(--color-charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--color-pink);
}

.blog-excerpt {
    color: #666;
    font-size: 0.9375rem;
    line-height: 1.6;
    flex-grow: 1;
}

.blog-read-more {
    color: var(--color-pink);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.3s ease;
}

.blog-read-more:hover {
    gap: 0.5rem;
    color: var(--color-deep-pink);
}

/* Blog Archive Page */
.archive .blog-grid,
.blog .blog-grid,
.home .blog-grid {
    margin-top: 2rem;
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-title {
        font-size: 1.125rem;
    }
    
    .blog-content {
        padding: 1.25rem;
    }
}

/* ============================================
   Blog List Card Styles (No Image)
   ============================================ */

.blog-list-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.blog-list-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.blog-list-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-left-color: var(--color-pink);
    transform: translateX(4px);
}

.blog-list-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-list-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
}

.blog-list-date {
    color: #666;
    font-weight: 500;
}

.blog-list-category {
    background: linear-gradient(135deg, var(--color-pink), var(--color-deep-pink));
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-list-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.blog-list-title a {
    color: var(--color-charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-list-title a:hover {
    color: var(--color-pink);
}

.blog-list-excerpt {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.blog-list-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.blog-list-read-more {
    color: var(--color-pink);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.3s ease;
    white-space: nowrap;
}

.blog-list-read-more:hover {
    gap: 0.5rem;
    color: var(--color-deep-pink);
}

.blog-list-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.blog-list-tags .tag-item {
    color: #888;
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    background: #f5f5f5;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.blog-list-tags .tag-item:hover {
    background: #ffe0e6;
    color: var(--color-pink);
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination .nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e0e0e0;
    color: var(--color-charcoal);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover {
    background: var(--color-pink);
    color: #fff;
    border-color: var(--color-pink);
}

.pagination .page-numbers.current {
    background: linear-gradient(135deg, var(--color-pink), var(--color-deep-pink));
    color: #fff;
    border-color: transparent;
}

.pagination .page-numbers.dots {
    border: none;
    background: transparent;
}

/* Responsive Design for Blog List */
@media (max-width: 768px) {
    .blog-list-card {
        padding: 1.5rem;
    }
    
    .blog-list-title {
        font-size: 1.25rem;
    }
    
    .blog-list-excerpt {
        font-size: 0.9375rem;
    }
    
    .blog-list-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-list-tags {
        width: 100%;
    }
}

/* Ranking Description */
.ranking-description {
    margin: 15px 0;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 105, 180, 0.2);
}

.ranking-description p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 768px) {
    .ranking-description p {
        font-size: 13px;
    }
}

/* ============================================
   Enhanced Footer Styles
   ============================================ */

.site-footer {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #e0e0e0;
    padding: 4rem 0 0;
    margin-top: 4rem;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-pink), var(--color-deep-pink), var(--color-gold));
}

.footer-content {
    padding-bottom: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #fff;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-pink), var(--color-deep-pink));
    border-radius: 2px;
}

.footer-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #b0b0b0;
    margin: 0;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-menu li {
    position: relative;
    padding-left: 1rem;
}

.footer-menu li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-pink);
    font-size: 0.875rem;
}

.footer-menu a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

.footer-menu a:hover {
    color: var(--color-pink);
    padding-left: 0.5rem;
}

.footer-posts li::before {
    content: '📄';
    font-size: 0.75rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright {
    margin: 0;
    font-size: 0.9375rem;
    color: #888;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #888;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-pink);
}

/* Footer Responsive */
@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* ============================================
   Enhanced Tag Styles
   ============================================ */

.post-tags {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--color-light-gray);
}

.tags-label {
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 0.75rem;
    display: inline-block;
    font-size: 1rem;
}

.tag-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.tag-links a {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    border: 2px solid var(--color-pink);
    border-radius: 20px;
    color: var(--color-charcoal);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.tag-links a::before {
    content: '#';
    color: var(--color-pink);
    margin-right: 0.25rem;
    font-weight: 700;
}

.tag-links a:hover {
    background: linear-gradient(135deg, var(--color-pink), var(--color-deep-pink));
    color: #fff;
    border-color: var(--color-deep-pink);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 141, 161, 0.3);
}

.tag-links a:hover::before {
    color: #fff;
}

/* Tag Cloud Widget */
.tagcloud a,
.wp-block-tag-cloud a {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    border: 2px solid var(--color-pink);
    border-radius: 20px;
    color: var(--color-charcoal);
    text-decoration: none;
    font-size: 0.875rem !important;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.tagcloud a:hover,
.wp-block-tag-cloud a:hover {
    background: linear-gradient(135deg, var(--color-pink), var(--color-deep-pink));
    color: #fff;
    border-color: var(--color-deep-pink);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 141, 161, 0.3);
}

/* ============================================
   Breadcrumb Navigation Styles
   ============================================ */

.breadcrumb-nav {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    padding: 1rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #666;
}

.breadcrumb-item::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--color-pink);
    font-weight: 700;
}

.breadcrumb-item:last-child::after {
    content: '';
}

.breadcrumb-item a {
    color: var(--color-charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: var(--color-pink);
}

.breadcrumb-item.active {
    color: var(--color-pink);
    font-weight: 600;
}

/* Breadcrumb Responsive */
@media (max-width: 768px) {
    .breadcrumb {
        font-size: 0.8125rem;
    }
}

/* ============================================
   Enhanced Button Styles
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius-btn);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.5;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-pink), var(--color-deep-pink));
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 141, 161, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-deep-pink), var(--color-pink));
    box-shadow: 0 6px 16px rgba(255, 141, 161, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #fff;
    color: var(--color-pink);
    border: 2px solid var(--color-pink);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--color-pink);
    color: #fff;
    border-color: var(--color-pink);
    box-shadow: 0 4px 12px rgba(255, 141, 161, 0.3);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

/* ============================================
   Enhanced Card Styles
   ============================================ */

.card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.card-header-pink {
    background: linear-gradient(135deg, var(--color-pink), var(--color-deep-pink));
    color: #fff;
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 1.125rem;
}

.card-body {
    padding: 1.5rem;
}

/* ============================================
   Loading Animation
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ============================================
   Accessibility Improvements
   ============================================ */

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-pink);
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Focus Styles */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--color-pink);
    outline-offset: 2px;
}

/* Screen Reader Only */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* ============================================
   Feature Cards
   ============================================ */

.feature-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    border-color: var(--color-pink);
    box-shadow: 0 8px 24px rgba(255, 141, 161, 0.2);
    transform: translateY(-8px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-charcoal);
}

.feature-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* ============================================
   Review Cards
   ============================================ */

.review-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.review-rating {
    color: #ffd700;
    font-size: 1.25rem;
    letter-spacing: 0.25rem;
}

.review-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin: 0;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-light-gray);
}

.review-name {
    font-weight: 700;
    color: var(--color-charcoal);
}

.review-age {
    font-size: 0.875rem;
    color: #888;
}

/* ============================================
   FAQ Styles
   ============================================ */

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.faq-question {
    background: linear-gradient(135deg, var(--color-pink), var(--color-deep-pink));
    color: #fff;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
}

.faq-answer {
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.faq-answer .faq-icon {
    background: var(--color-soft-pink);
    color: var(--color-pink);
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.faq-answer strong {
    color: var(--color-pink);
    font-weight: 700;
}

/* ============================================
   Purchase Flow
   ============================================ */

.purchase-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.flow-step {
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    transition: all 0.3s ease;
}

.flow-step:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.flow-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-pink), var(--color-deep-pink));
    color: #fff;
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.flow-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-charcoal);
}

.flow-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--color-pink);
    font-weight: 700;
}

/* Flow Responsive */
@media (max-width: 768px) {
    .purchase-flow {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .flow-step {
        max-width: 100%;
        width: 100%;
    }
}

/* ============================================
   Enhanced CTA Section
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-deep-pink) 100%);
    padding: 4rem 0;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.cta-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: #fff;
    color: var(--color-pink);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary:hover {
    background: var(--color-soft-pink);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-section .btn-secondary:hover {
    background: #fff;
    color: var(--color-pink);
}

/* CTA Responsive */
@media (max-width: 768px) {
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   Grid Utilities
   ============================================ */

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Background Utilities
   ============================================ */

.bg-pink-light {
    background: linear-gradient(135deg, #fff5f8 0%, #ffe8f0 100%);
}

.bg-cute-pattern {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
}

.bg-cute-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255, 183, 197, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

/* ============================================
   Section Utilities
   ============================================ */

.section-padding {
    padding: 4rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.badge-cute {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-pink), var(--color-deep-pink));
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-charcoal);
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* ========================================
   用途別おすすめページ・キャンペーン情報・販売店比較ページ用スタイル
   ======================================== */

/* Purpose Section */
.purpose-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.purpose-header {
    border-bottom: 3px solid #ff6b9d;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.purpose-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.purpose-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.purpose-content {
    line-height: 1.8;
}

.purpose-description p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.feature-list {
    background: #fef5f8;
    border-left: 4px solid #ff6b9d;
    padding: 25px;
    margin: 30px 0;
    border-radius: 10px;
}

.feature-list h3 {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.feature-list ul {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b9d;
    font-weight: bold;
    font-size: 1.2rem;
}

.recommended-models {
    margin-top: 30px;
}

.recommended-models h3 {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.model-card {
    background: white;
    border: 2px solid #ffd1dc;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.2);
    border-color: #ff6b9d;
}

.model-card h4 {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.model-weight,
.model-price {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 8px;
}

.model-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Budget Table */
.budget-table {
    margin: 30px 0;
}

.table-cute {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.table-cute thead {
    background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 100%);
    color: white;
}

.table-cute th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.table-cute td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.table-cute tbody tr:hover {
    background: #fef5f8;
}

.budget-tips {
    margin-top: 30px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.tip-card {
    background: white;
    border: 2px solid #ffd1dc;
    border-radius: 15px;
    padding: 25px;
}

.tip-card h4 {
    font-size: 1.1rem;
    color: #ff6b9d;
    margin-bottom: 12px;
}

.tip-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Campaign Section */
.campaign-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.campaign-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.campaign-card.hot {
    border: 3px solid #ff6b9d;
}

.campaign-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.25);
}

.campaign-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.campaign-shop {
    background: linear-gradient(135deg, #fef5f8 0%, #fff 100%);
    padding: 25px;
    border-bottom: 3px solid #ffd1dc;
}

.campaign-shop h3 {
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.shop-tag {
    display: inline-block;
    background: #ff6b9d;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.campaign-content {
    padding: 25px;
}

.campaign-title {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.campaign-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.campaign-details {
    background: #fef5f8;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ffd1dc;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #666;
}

.detail-value {
    color: #ff6b9d;
    font-weight: 600;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Regular Campaign */
.regular-campaign-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.regular-campaign-item {
    display: flex;
    align-items: flex-start;
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.regular-campaign-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 25px rgba(255, 107, 157, 0.15);
}

.regular-icon {
    font-size: 3rem;
    margin-right: 25px;
    flex-shrink: 0;
}

.regular-content h3 {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.regular-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

.regular-timing {
    display: inline-block;
    background: #fef5f8;
    color: #ff6b9d;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ff6b9d 0%, #c06c84 100%);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.timeline-date {
    width: 80px;
    flex-shrink: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b9d;
    text-align: center;
    background: white;
    padding: 10px;
    border-radius: 10px;
    border: 3px solid #ff6b9d;
    position: relative;
    z-index: 10;
}

.timeline-content {
    flex: 1;
    margin-left: 30px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #555;
    line-height: 1.7;
}

/* Shop Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.comparison-table thead {
    background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 100%);
    color: white;
}

.comparison-table th {
    padding: 18px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
}

.comparison-table td {
    padding: 18px 15px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.shop-row {
    transition: all 0.3s ease;
}

.shop-row:hover {
    background: #fef5f8;
}

.shop-row.recommended {
    background: #fff8fa;
}

.shop-row.warning {
    background: #fff3f3;
}

.shop-name {
    text-align: left !important;
    font-weight: 600;
}

.shop-badge {
    display: inline-block;
    background: #ff6b9d;
    color: white;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.75rem;
    margin-left: 8px;
}

.shop-badge.caution {
    background: #e74c3c;
}

.status-yes {
    color: #27ae60;
    font-weight: 600;
}

.status-no {
    color: #e74c3c;
    font-weight: 600;
}

.status-caution {
    color: #f39c12;
    font-weight: 600;
}

.price-level {
    font-weight: 600;
    color: #ff6b9d;
}

.warranty {
    font-weight: 600;
    color: #3498db;
}

.features ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.features li {
    padding: 4px 0;
    font-size: 0.85rem;
}

.rating {
    color: #f39c12;
    font-size: 1.1rem;
}

/* Shop Detail Card */
.shop-detail-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.shop-detail-header {
    background: linear-gradient(135deg, #fef5f8 0%, #fff 100%);
    padding: 30px;
    border-bottom: 3px solid #ffd1dc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop-detail-header h3 {
    font-size: 1.8rem;
    color: #2c2c2c;
    margin: 0;
}

.shop-badge-large {
    background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.shop-detail-body {
    padding: 30px;
}

.shop-rating {
    margin-bottom: 20px;
}

.rating-stars {
    color: #f39c12;
    font-size: 1.5rem;
    margin-right: 10px;
}

.rating-text {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
}

.shop-description {
    margin: 20px 0;
    line-height: 1.8;
    color: #555;
}

.shop-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    background: #fef5f8;
    border-radius: 12px;
    padding: 20px;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.feature-item ul {
    list-style: none;
    padding: 0;
}

.feature-item li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
}

.feature-item li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff6b9d;
    font-size: 1.5rem;
}

.shop-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.info-item {
    background: white;
    border: 2px solid #ffd1dc;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 8px;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff6b9d;
}

.shop-recommend {
    background: linear-gradient(135deg, #fef5f8 0%, #fff 100%);
    border-left: 4px solid #ff6b9d;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.shop-recommend strong {
    color: #ff6b9d;
    font-size: 1.1rem;
}

.shop-recommend p {
    margin-top: 10px;
    color: #555;
    line-height: 1.7;
}

/* Caution Section */
.caution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.caution-card {
    background: white;
    border: 2px solid #ffd1dc;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.caution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.2);
}

.caution-card h3 {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.caution-card p {
    color: #555;
    line-height: 1.7;
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-question {
    background: linear-gradient(135deg, #fef5f8 0%, #fff 100%);
    padding: 20px 25px;
    margin: 0;
    font-size: 1.1rem;
    color: #2c2c2c;
    border-bottom: 2px solid #ffd1dc;
}

.faq-answer {
    padding: 20px 25px;
}

.faq-answer p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* Notice Box */
.notice-box {
    background: #fff8dc;
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 30px;
}

.notice-box h3 {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.notice-box ul {
    list-style: none;
    padding: 0;
}

.notice-box li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.7;
}

.notice-box li:before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: #f39c12;
    font-size: 1.2rem;
}

/* Update Date */
.update-date {
    color: #999;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .purpose-section {
        padding: 25px;
    }
    
    .purpose-title {
        font-size: 1.5rem;
    }
    
    .model-grid {
        grid-template-columns: 1fr;
    }
    
    .campaign-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-features-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline:before {
        left: 30px;
    }
    
    .timeline-date {
        width: 60px;
        font-size: 1rem;
    }
    
    .timeline-content {
        margin-left: 20px;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
    
    .shop-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}
