/* ============================================
   AurisLane - Soft & Sweet Style
   Morandi Color Palette, Rounded Corners, Gentle Animations
   ============================================ */

/* CSS Variables - Soft Pink & White Palette */
:root {
    --color-primary: #FFB6C1;      /* Light pink */
    --color-secondary: #FFC0CB;    /* Pink */
    --color-accent: #FFD1DC;       /* Light pink accent */
    --color-bg: #FFF9F9;            /* Soft white pink */
    --color-bg-light: #FFF5F5;     /* Very light pink */
    --color-text: #6B4A5A;          /* Soft pink-gray */
    --color-text-dark: #8B4A5C;    /* Pink-gray dark */
    --color-text-light: #A67A8B;   /* Light pink-gray */
    --color-border: #FFE4E9;        /* Soft pink border */
    --color-shadow: rgba(255, 182, 193, 0.15);
    --color-hover: #FF8FA3;         /* Medium pink on hover */
    
    --border-radius: 20px;
    --border-radius-small: 12px;
    --border-radius-large: 30px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 40%, #FFFBFB 80%, #FFF9F9 100%);
    background-attachment: fixed;
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-small);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    background: rgba(255, 245, 245, 0.95);
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(255, 182, 193, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 228, 233, 0.5);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.logo h1 a {
    color: var(--color-primary);
}

.tagline {
    font-size: 12px;
    color: var(--color-text-light);
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    color: var(--color-text);
    font-weight: 400;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: var(--border-radius-small);
    transition: var(--transition);
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: var(--color-primary);
    background: rgba(184, 169, 169, 0.1);
}

/* Header Search */
.header-search {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.header-search-input {
    width: 250px;
    padding: 10px 45px 10px 16px;
    border: 2px solid rgba(255, 228, 233, 0.5);
    border-radius: var(--border-radius);
    font-size: 14px;
    font-family: var(--font-family);
    background: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
    color: #6B4A5A;
}

.header-search-input:focus {
    outline: none;
    border-color: #FFB6C1;
    box-shadow: 0 0 0 3px rgba(255, 182, 193, 0.2);
    background: rgba(255, 255, 255, 1);
    width: 300px;
}

.header-search-input::placeholder {
    color: #A67A8B;
}

.header-search-btn {
    position: absolute;
    right: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFB6C1;
    transition: var(--transition);
    border-radius: var(--border-radius-small);
}

.header-search-btn:hover {
    color: #FF8FA3;
    background: rgba(255, 182, 193, 0.1);
}

.header-search-btn:active {
    transform: scale(0.95);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
    }
    
    .header-search {
        order: 3;
        width: 100%;
        margin: 15px 0 0 0;
        display: flex;
    }
    
    .header-search-input {
        width: 100%;
        flex: 1;
    }
    
    .header-search-input:focus {
        width: 100%;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--color-bg-light);
        box-shadow: 0 4px 20px var(--color-shadow);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .nav ul li {
        width: 100%;
    }
    
    .nav a {
        display: block;
        padding: 16px;
        border-bottom: 1px solid var(--color-border);
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 252, 252, 0.9) 50%, rgba(255, 250, 250, 0.85) 100%);
    border-radius: var(--border-radius-large);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 228, 233, 0.3);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content,
.hero-illustration {
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 48px;
    font-weight: 600;
    color: #7A4A5A;
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(255, 182, 193, 0.1);
}

.hero-subtitle {
    font-size: 20px;
    color: #A67A8B;
    margin-bottom: 32px;
    font-weight: 300;
}

.hero-illustration {
    flex: 1;
    position: relative;
    height: 400px;
    animation: fadeInRight 0.8s ease-out;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.45) 0%, rgba(255, 192, 203, 0.35) 100%);
    opacity: 0.75;
    animation: float 6s ease-in-out infinite;
    border: 2px solid rgba(255, 182, 193, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(255, 182, 193, 0.25), 
                0 4px 16px rgba(255, 192, 203, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.5) 0%, rgba(255, 192, 203, 0.4) 100%);
    animation-delay: 0s;
    box-shadow: 0 10px 40px rgba(255, 182, 193, 0.3), 
                0 5px 20px rgba(255, 192, 203, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 20%;
    background: linear-gradient(135deg, rgba(255, 192, 203, 0.5) 0%, rgba(255, 209, 220, 0.4) 100%);
    animation-delay: 2s;
    box-shadow: 0 8px 32px rgba(255, 192, 203, 0.3), 
                0 4px 16px rgba(255, 209, 220, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    left: 30%;
    background: linear-gradient(135deg, rgba(255, 209, 220, 0.5) 0%, rgba(255, 228, 233, 0.4) 100%);
    animation-delay: 4s;
    box-shadow: 0 9px 36px rgba(255, 209, 220, 0.3), 
                0 4px 18px rgba(255, 228, 233, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-family);
}

.btn-primary {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.9) 0%, rgba(255, 192, 203, 0.85) 100%);
    color: #7A4A5A;
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.2);
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FF8FA3 0%, #FFB6C1 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 182, 193, 0.3);
    color: white;
}

.btn-secondary {
    background: rgba(255, 245, 245, 0.8);
    color: #8B4A5C;
    border: 2px solid rgba(255, 192, 203, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #FFB6C1 0%, #FFC0CB 100%);
    color: #8B4A5C;
    border-color: #FFB6C1;
    transform: translateY(-2px);
}

/* ============================================
   Categories Section
   ============================================ */
.categories {
    padding: 80px 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 253, 253, 0.9) 50%, rgba(255, 251, 251, 0.85) 100%);
    position: relative;
}

.categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 182, 193, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 192, 203, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: #7A4A5A;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

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

.category-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 252, 252, 0.9) 100%);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.1);
    cursor: pointer;
    border: 1px solid rgba(255, 228, 233, 0.4);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(255, 182, 193, 0.18);
    background: linear-gradient(135deg, rgba(255, 252, 252, 0.98) 0%, rgba(255, 250, 250, 0.95) 100%);
    border-color: rgba(255, 192, 203, 0.6);
}

.category-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.category-icon svg {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.category-card:hover .category-icon svg {
    transform: scale(1.1);
    stroke: #FF8FA3;
}

.category-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: #7A4A5A;
    margin-bottom: 10px;
}

.category-card p {
    color: #A67A8B;
    font-size: 14px;
}

/* ============================================
   Articles Section
   ============================================ */
.featured-articles,
.articles-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 253, 253, 0.8) 100%);
}

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

.article-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 252, 252, 0.9) 100%);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.1);
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out;
    border: 1px solid rgba(255, 228, 233, 0.3);
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(255, 182, 193, 0.18);
    background: linear-gradient(135deg, rgba(255, 252, 252, 0.98) 0%, rgba(255, 250, 250, 0.95) 100%);
}

.article-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0;
}

.article-card-content {
    padding: 24px;
}

.article-card-category {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.85) 0%, rgba(255, 192, 203, 0.8) 100%);
    color: #7A4A5A;
    border-radius: var(--border-radius-small);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 182, 193, 0.2);
}

.article-card-title {
    font-size: 22px;
    font-weight: 600;
    color: #7A4A5A;
    margin-bottom: 10px;
    line-height: 1.3;
}

.article-card-excerpt {
    color: #A67A8B;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.article-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #A67A8B;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 192, 203, 0.3);
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
    background: linear-gradient(135deg, rgba(255, 250, 250, 0.9) 0%, rgba(255, 248, 248, 0.85) 50%, rgba(255, 255, 255, 0.9) 100%);
    padding: 80px 20px;
    text-align: center;
    color: #7A4A5A;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 228, 233, 0.3);
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 192, 203, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1,
.page-header p {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 300;
}

/* ============================================
   Filters & Search
   ============================================ */
.filters-section {
    padding: 40px 20px;
    background: linear-gradient(180deg, rgba(255, 249, 249, 0.6) 0%, rgba(255, 255, 255, 0.4) 100%);
}

.filters-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-box {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-box input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    border: 2px solid rgba(255, 228, 233, 0.5);
    border-radius: var(--border-radius);
    font-size: 16px;
    font-family: var(--font-family);
    background: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
    color: #6B4A5A;
}

.search-box input:focus {
    outline: none;
    border-color: #FFB6C1;
    box-shadow: 0 0 0 3px rgba(255, 182, 193, 0.2);
    background: rgba(255, 255, 255, 1);
}

.search-box svg {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-light);
    width: 20px;
    height: 20px;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    gap: 12px;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid rgba(255, 228, 233, 0.5);
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-family);
    color: #6B4A5A;
    backdrop-filter: blur(10px);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.9) 0%, rgba(255, 192, 203, 0.85) 100%);
    color: #7A4A5A;
    border-color: #FFB6C1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 182, 193, 0.2);
}

/* ============================================
   Pagination
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-btn {
    padding: 10px 18px;
    border: 2px solid var(--color-border);
    background: white;
    border-radius: var(--border-radius-small);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-family);
    color: var(--color-text);
}

.pagination-btn:hover,
.pagination-btn.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============================================
   Article Detail
   ============================================ */
.article-detail {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 253, 253, 0.9) 50%, rgba(255, 255, 255, 1) 100%);
    border-radius: var(--border-radius-large);
    border: 1px solid rgba(255, 228, 233, 0.2);
}

.article-header {
    margin-bottom: 40px;
}

.article-header-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.article-header-content {
    text-align: center;
}

.article-header-category {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.85) 0%, rgba(255, 192, 203, 0.8) 100%);
    color: #7A4A5A;
    border-radius: var(--border-radius-small);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 182, 193, 0.2);
}

.article-header-title {
    font-size: 42px;
    font-weight: 600;
    color: #8B4A5C;
    margin-bottom: 16px;
    line-height: 1.2;
}

.article-header-meta {
    color: #A67A8B;
    font-size: 15px;
}

.article-content {
    font-size: 18px;
    line-height: 1.8;
    color: #6B4A5A;
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(255, 182, 193, 0.08);
    border: 1px solid rgba(255, 228, 233, 0.2);
}

.article-content h3 {
    font-size: 28px;
    font-weight: 600;
    color: #8B6A7A;
    margin: 40px 0 20px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 30px 0;
    box-shadow: 0 4px 20px rgba(255, 182, 193, 0.2);
    display: block;
    border: 2px solid rgba(255, 192, 203, 0.2);
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    margin-top: 40px;
    border-top: 2px solid rgba(255, 192, 203, 0.3);
    flex-wrap: wrap;
    gap: 20px;
}

.article-meta {
    color: #A67A8B;
    font-size: 14px;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-btn {
    padding: 8px 16px;
    background: rgba(255, 192, 203, 0.2);
    border-radius: var(--border-radius-small);
    font-size: 13px;
    transition: var(--transition);
    color: #A67A8B;
    border: 1px solid rgba(255, 192, 203, 0.3);
}

.share-btn:hover {
    background: linear-gradient(135deg, #FFB6C1 0%, #FFC0CB 100%);
    color: #8B4A5C;
    border-color: #FFB6C1;
}

.back-link {
    margin-top: 40px;
}

/* Recommended Product Section */
.article-recommended-product {
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 250, 250, 0.9) 0%, rgba(255, 248, 248, 0.85) 100%);
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 228, 233, 0.4);
    box-shadow: 0 4px 20px rgba(255, 182, 193, 0.1);
}

.recommended-product-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.recommended-product-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 182, 193, 0.15);
    border-radius: 50%;
}

.recommended-product-text {
    flex: 1;
    min-width: 200px;
}

.recommended-product-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #7A4A5A;
    margin-bottom: 8px;
}

.recommended-product-text p {
    font-size: 15px;
    color: #A67A8B;
    margin: 0;
}

.btn-recommend-product {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.9) 0%, rgba(255, 192, 203, 0.85) 100%);
    color: #7A4A5A;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.2);
    white-space: nowrap;
}

.btn-recommend-product:hover {
    background: linear-gradient(135deg, #FF8FA3 0%, #FFB6C1 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 182, 193, 0.3);
}

.btn-recommend-product svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .article-recommended-product {
        padding: 30px 20px;
        margin: 40px 0;
    }
    
    .recommended-product-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .recommended-product-text {
        min-width: auto;
    }
    
    .btn-recommend-product {
        width: 100%;
        max-width: 100%;
    }
}

/* ============================================
   Products Section
   ============================================ */
.products-section {
    padding: 60px 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--color-shadow);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card > div:first-child {
    cursor: pointer;
    flex: 1;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px var(--color-shadow);
}

.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.product-card-content {
    padding: 24px;
}

.product-card-category {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(255, 209, 220, 0.9) 0%, rgba(255, 228, 233, 0.85) 100%);
    color: #7A4A5A;
    border-radius: var(--border-radius-small);
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(255, 182, 193, 0.15);
}

.product-card-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.product-card-price {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.product-card-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--color-text-light);
}

.stars {
    color: #FFD700;
}

.product-card-description {
    color: var(--color-text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Product Card Actions */
.product-card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 24px 24px;
}

/* Buy Button */
.btn-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.9) 0%, rgba(255, 192, 203, 0.85) 100%);
    color: #7A4A5A;
    border-radius: var(--border-radius-small);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255, 182, 193, 0.2);
}

.btn-buy:hover {
    background: linear-gradient(135deg, #FF8FA3 0%, #FFB6C1 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 182, 193, 0.4);
}

.btn-buy svg {
    width: 16px;
    height: 16px;
}

/* Article Button */
.btn-article {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 245, 245, 0.8);
    color: #8B4A5C;
    border: 2px solid rgba(255, 192, 203, 0.5);
    border-radius: var(--border-radius-small);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.btn-article:hover {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2) 0%, rgba(255, 192, 203, 0.2) 100%);
    border-color: #FFB6C1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 182, 193, 0.2);
}

.btn-article svg {
    width: 16px;
    height: 16px;
}

.product-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.btn-buy-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.9) 0%, rgba(255, 192, 203, 0.85) 100%);
    color: #7A4A5A;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.2);
    width: 100%;
}

.btn-buy-large:hover {
    background: linear-gradient(135deg, #FF8FA3 0%, #FFB6C1 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 182, 193, 0.4);
}

.btn-buy-large svg {
    width: 20px;
    height: 20px;
}

.btn-article-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(255, 245, 245, 0.8);
    color: #7A4A5A;
    border: 2px solid rgba(255, 192, 203, 0.5);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    backdrop-filter: blur(10px);
    width: 100%;
}

.btn-article-large:hover {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2) 0%, rgba(255, 192, 203, 0.2) 100%);
    border-color: #FFB6C1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 182, 193, 0.3);
}

.btn-article-large svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   Product Detail
   ============================================ */
.product-detail {
    padding: 60px 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 253, 253, 0.8) 100%);
}

.product-detail-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.product-detail-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-detail-image-wrapper {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(255, 182, 193, 0.15);
    background: white;
}

.product-detail-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

.product-detail-info {
    padding-top: 0;
}

.product-detail-info h1 {
    font-size: 36px;
    font-weight: 600;
    color: #7A4A5A;
    margin-bottom: 16px;
    line-height: 1.2;
}

.product-detail-price {
    font-size: 32px;
    font-weight: 600;
    color: #FFB6C1;
    margin-bottom: 20px;
}

.product-detail-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 16px;
}

.product-detail-description {
    font-size: 16px;
    line-height: 1.8;
    color: #6B4A5A;
    margin-bottom: 30px;
}

.product-detail-features {
    margin-bottom: 30px;
}

.product-detail-features h3 {
    font-size: 20px;
    font-weight: 600;
    color: #7A4A5A;
    margin-bottom: 16px;
}

.product-detail-features ul {
    list-style: none;
    padding-left: 0;
}

.product-detail-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #6B4A5A;
    font-size: 15px;
}

.product-detail-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FFB6C1;
    font-weight: bold;
    font-size: 18px;
}

.product-detail-review {
    background: linear-gradient(135deg, rgba(255, 250, 250, 0.9) 0%, rgba(255, 248, 248, 0.85) 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 30px;
    border: 1px solid rgba(255, 228, 233, 0.3);
    box-shadow: 0 2px 10px rgba(255, 182, 193, 0.1);
}

.product-detail-review h3 {
    font-size: 20px;
    font-weight: 600;
    color: #7A4A5A;
    margin-bottom: 12px;
}

.product-detail-review p {
    color: #6B4A5A;
    line-height: 1.8;
    font-style: italic;
    font-size: 15px;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    padding: 60px 20px;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 24px;
}

.about-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin: 32px 0 16px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 20px;
}

.values-list {
    list-style: none;
    padding-left: 0;
}

.values-list li {
    padding: 16px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
}

.values-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 24px;
    line-height: 1;
}

.about-image {
    position: relative;
    height: 500px;
}

.about-illustration {
    position: relative;
    width: 100%;
    height: 100%;
}

.illustration-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.illustration-shape.shape-1 {
    width: 150px;
    height: 150px;
    background: var(--color-primary);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.illustration-shape.shape-2 {
    width: 120px;
    height: 120px;
    background: var(--color-secondary);
    top: 50%;
    right: 10%;
    animation-delay: 2.5s;
}

.illustration-shape.shape-3 {
    width: 100px;
    height: 100px;
    background: var(--color-accent);
    bottom: 10%;
    left: 30%;
    animation-delay: 5s;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    padding: 60px 20px;
}

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: start;
}

.contact-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-light);
    border-radius: var(--border-radius-small);
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 6px;
}

.contact-item p {
    color: var(--color-text-light);
    font-size: 15px;
}

.social-links h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.contact-form-wrapper h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 30px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px var(--color-shadow);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius-small);
    font-size: 16px;
    font-family: var(--font-family);
    transition: var(--transition);
    background: var(--color-bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(184, 169, 169, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--color-text-dark);
    color: white;
    padding: 60px 20px 30px;
    margin-top: 80px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section h3 {
    font-size: 24px;
    color: var(--color-primary);
}

.footer-section h4 {
    font-size: 18px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ============================================
   Related Articles
   ============================================ */
.related-articles {
    padding: 60px 20px;
    background: var(--color-bg-light);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-illustration {
        height: 300px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-detail-left {
        order: 1;
    }
    
    .product-detail-info {
        order: 2;
    }
    
    .product-detail-actions {
        margin-top: 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .article-header-title {
        font-size: 32px;
    }
    
    .article-header-image {
        height: 250px;
    }
    
    .article-content {
        font-size: 16px;
    }
    
    .article-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filters-wrapper {
        align-items: stretch;
    }
    
    .category-filters {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .contact-form {
        padding: 24px;
    }
}

