/* Professional Blog Design System - SOLOSUCCESS */

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

:root {
    /* Modern Vibrant Color Palette - Top USA Blogger Style */
    --primary-color: #ff4757;
    --primary-dark: #ff3742;
    --secondary-color: #2ed573;
    --accent-color: #5352ed;
    --success-color: #7bed9f;
    --warning-color: #ffa502;
    --error-color: #ff3838;
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
    --gradient-secondary: linear-gradient(135deg, #2ed573 0%, #1e90ff 100%);
    --gradient-accent: linear-gradient(135deg, #5352ed 0%, #3742fa 100%);
    --gradient-warm: linear-gradient(135deg, #ff6b6b 0%, #ffa502 100%);
    --gradient-cool: linear-gradient(135deg, #2ed573 0%, #5352ed 100%);
    
    /* Text Colors */
    --text-primary: #2f3542;
    --text-secondary: #57606f;
    --text-light: #747d8c;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-accent: #f1f2f6;
    --bg-dark: #2f3542;
    
    /* Border Colors */
    --border-color: #dfe4ea;
    --border-light: #f1f2f6;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(255, 71, 87, 0.1);
    --shadow-md: 0 4px 16px rgba(255, 71, 87, 0.15);
    --shadow-lg: 0 8px 32px rgba(255, 71, 87, 0.2);
    --shadow-xl: 0 12px 48px rgba(255, 71, 87, 0.25);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

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

a:hover {
    color: var(--primary-dark);
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

/* ===== CONTENT SPACING IMPROVEMENTS ===== */
.page-content {
    padding: var(--spacing-2xl) 0;
}

.page-content main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Professional content spacing */
.content-section {
    margin-bottom: var(--spacing-3xl);
}

.content-section h1,
.content-section h2,
.content-section h3,
.content-section h4 {
    margin-bottom: var(--spacing-lg);
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

.content-section p {
    margin-bottom: var(--spacing-lg);
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
    line-height: 1.7;
    font-size: 1.1rem;
}

.content-section ul,
.content-section ol {
    margin-bottom: var(--spacing-lg);
    padding-left: calc(var(--spacing-xl) + var(--spacing-md));
    padding-right: var(--spacing-md);
}

.content-section li {
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

/* ===== HEADER ===== */
.header {
    background: white;
	height:120px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.header-top {
    background: var(--gradient-primary);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #e60023 0%, #ff4757 100%);
    transition: all var(--transition-fast);
    box-shadow: 0 2px 8px rgba(230, 0, 35, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 0, 35, 0.4);
    background: linear-gradient(135deg, #ff4757 0%, #e60023 100%);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(230, 0, 35, 0.3);
}

.social-link svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Pinterest button icon-only style */
.social-link.pinterest-btn {
    padding: var(--spacing-sm);
    min-width: 44px;
    justify-content: center;
    border-radius: 50%;
}

.social-link.pinterest-btn svg {
    width: 20px;
    height: 20px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.search-toggle {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
}

.search-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.search-toggle svg {
    width: 16px;
    height: 16px;
}

.navbar {
    padding: 2.25rem 0px;
    background: white;
    position: relative;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    min-height: 60px;
}

.navbar-brand {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.navbar-menu {
    flex: 1;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .navbar-actions {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        gap: var(--spacing-md);
        position: relative;
        z-index: 1003;
        min-width: 60px;
        justify-content: flex-end;
    }

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    transition: transform var(--transition-fast);
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.logo:hover .logo-icon {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.logo-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 10;
}

.nav-item {
    position: relative;
    z-index: 10;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    text-decoration: none;
    position: relative;
    cursor: pointer;
    user-select: none;
    pointer-events: auto;
    z-index: 10;
}

.nav-link svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
    pointer-events: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(255, 71, 87, 0.1);
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.2);
    cursor: pointer;
}

.nav-link:hover svg {
    transform: scale(1.1);
}

.nav-link:active {
    transform: scale(0.98);
    box-shadow: 0 1px 4px rgba(255, 71, 87, 0.3);
}

.nav-link:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 71, 87, 0.3);
}

.nav-link:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Ensure dropdown arrow is clickable */
.dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
    pointer-events: none;
}

.nav-item.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

/* Ensure mobile menu toggle is hidden on desktop */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

.mobile-menu-toggle .hamburger-icon,
.mobile-menu-toggle .close-icon {
    width: 28px;
    height: 28px;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.mobile-menu-toggle .close-icon {
    display: none;
}

.mobile-menu-toggle.active .hamburger-icon {
    display: none;
}

.mobile-menu-toggle.active .close-icon {
    display: block;
}

.mobile-menu-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.search-bar {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: var(--spacing-md) 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--transition-normal);
}

.search-bar.active {
    transform: translateY(0);
    opacity: 1;
}

.search-form {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    max-width: 600px;
    margin: 0 auto;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: var(--spacing-md);
    width: 20px;
    height: 20px;
    color: var(--text-light);
    z-index: 2;
}

.search-input {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-md) 3rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 1rem;
    background: var(--bg-secondary);
    transition: all var(--transition-fast);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: var(--shadow-sm);
}

.search-clear {
    position: absolute;
    right: var(--spacing-md);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: var(--spacing-xs);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.search-clear:hover {
    color: var(--text-primary);
    background: var(--bg-accent);
}

.search-clear svg {
    width: 16px;
    height: 16px;
}

.search-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== MAIN CONTENT ===== */
main {
    min-height: 100vh;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    margin-top: 0;
    padding: 0;
    padding-top: 100px; /* Increased to ensure text visibility */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.8) 0%, rgba(83, 82, 237, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-title-accent {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.5rem 0;
}

.hero-title-subtitle {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: #f8f9fa;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem; /* Reduced from 2.5rem */
    color: #f8f9fa;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 0.5rem; /* Reduced from 1rem */
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
}

.hero-actions .btn-primary {
    background: linear-gradient(45deg, var(--primary-color), #ff6b6b);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.hero-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
}

.hero-actions .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-actions .btn-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* ===== SECTIONS ===== */
.featured-collections,
.latest-posts {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== COLLECTIONS GRID ===== */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-3xl);
}

.collection-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.collection-card.featured {
    grid-column: span 2;
}

.collection-image {
    position: relative;
    height: 280px;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.collection-card:hover .collection-image img {
    transform: scale(1.08);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.collection-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--gradient-primary);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
}

.collection-content {
    padding: var(--spacing-xl);
}

.collection-content h3 {
    font-size: 1.375rem;
    margin-bottom: var(--spacing-sm);
}

.collection-stats {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
}

.collection-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

/* ===== NEWSLETTER ===== */
.newsletter {
    background: var(--gradient-cool);
    padding: var(--spacing-3xl) 0;
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    color: white;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-2xl);
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-md);
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: var(--spacing-lg);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--spacing-3xl) 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.about-text h2 {
    margin-bottom: var(--spacing-lg);
}

.about-description {
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: var(--spacing-2xl);
    font-size: 1.05rem;
    font-weight: 400;
}

.social-stats {
    display: flex;
    gap: var(--spacing-2xl);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-visual {
    position: relative;
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-overlay {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    background: var(--gradient-primary);
    color: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-brand .logo {
    margin-bottom: var(--spacing-lg);
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand .logo-accent {
    color: var(--primary-color);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
}

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

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

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .collections-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--spacing-xl);
    }
    
    .collection-card.featured {
        grid-column: span 1;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-2xl);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .container-wide {
        padding: 0 var(--spacing-md);
    }
    
    .page-content main {
        padding: 0 var(--spacing-md);
    }
    
    .content-section h1,
    .content-section h2,
    .content-section h3,
    .content-section h4 {
        padding: 0 var(--spacing-lg);
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .content-section p {
        padding: 0 var(--spacing-lg);
        font-size: 1rem;
    }
    
    .content-section ul,
    .content-section ol {
        padding: 0 var(--spacing-lg);
        font-size: 1rem;
    }
    
    .nail-design-showcase {
        padding: var(--spacing-lg);
        margin: var(--spacing-lg) 0;
    }
    
    .design-details {
        padding: var(--spacing-lg);
    }
    
    .header-top-content {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .navbar-content {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease-in-out;
        width: 100%;
        opacity: 0;
        transform: translateY(-10px);
    }
    
    .navbar-menu.active {
        display: block !important;
        max-height: 500px !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    /* Force mobile menu to show when display is set to block */
    .navbar-menu[style*="display: block"] {
        display: block !important;
        max-height: 500px !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        overflow: visible !important;
    }
    
    .navbar-menu.active {
        display: block;
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-list {
        display: none;
        flex-direction: column;
        padding: var(--spacing-md);
        gap: var(--spacing-sm);
    }
    
    /* Show nav list when parent is visible */
    .navbar-menu[style*="display: block"] .nav-list {
        display: flex !important;
    }
    
    .navbar-menu.active .nav-list {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 1002;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        background: #f8f9fa;
        border: 1px solid #dee2e6;
        color: #333;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
    
    .mobile-menu-toggle:hover {
        background: #e9ecef;
    }
    
    /* Debug styles to ensure mobile menu is visible */
    .mobile-menu-toggle {
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .mobile-menu-toggle .hamburger-icon {
        color: #333 !important;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
    }
    
    .logo-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .logo-main {
        font-size: 1.1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .nav-link svg {
        width: 16px;
        height: 16px;
    }
    
    .hero {
        padding: var(--spacing-xl) var(--spacing-md);
        margin-top: 60px;
        position: relative;
        z-index: 1;
        min-height: 60vh;
        padding-top: 100px;
    }
    
    .hero-content {
        padding-top: 80px;
        padding-bottom: var(--spacing-xl);
        position: relative;
        z-index: 2;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title-accent {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: var(--spacing-md);
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .collection-card.featured {
        grid-column: 1 / -1;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .social-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    /* Header social link responsive */
    .social-link {
        font-size: 0.85rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .social-link svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title-accent {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions .btn {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .collection-content,
    .post-content {
        padding: var(--spacing-lg);
    }
    
    .about {
        padding: var(--spacing-2xl) 0;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
    }
    
    .logo-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .logo-main {
        font-size: 1.125rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: var(--spacing-xs);
    }
    
    .nav-link svg {
        width: 14px;
        height: 14px;
    }
}

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

[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }

.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
} 

/* ===== CONTACT PAGE STYLES ===== */
.contact-content {
    padding: var(--spacing-3xl) 0 var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

.contact-form-section {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-info-section {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-form-section h2,
.contact-info-section h2 {
    color: var(--text-primary);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--border-light);
    padding-bottom: var(--spacing-sm);
}

.contact-methods {
    margin: var(--spacing-xl) 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--bg-accent);
    border-radius: var(--radius-md);
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: var(--spacing-xs);
}

.contact-details h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
    font-size: 0.9rem;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-faq {
    margin-top: var(--spacing-xl);
}

.contact-faq h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--border-light);
    padding-bottom: var(--spacing-sm);
}

.faq-item {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--bg-accent);
    border-radius: var(--radius-md);
}

.faq-item h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* Responsive contact page */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
}

@media (max-width: 768px) {
    .contact-content {
        padding: var(--spacing-xl) 0 var(--spacing-lg) 0;
    }
    
    .contact-form-section,
    .contact-info-section {
        padding: var(--spacing-lg);
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto var(--spacing-sm) auto;
    }
}

/* ===== FOOTER BOTTOM PADDING ===== */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: var(--spacing-3xl) 0 var(--spacing-2xl) 0;
    margin-top: auto;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: white;
}

/* Ensure proper spacing at bottom of pages */
.page-content {
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
}

.page-content main {
    flex: 1;
}

/* ===== EXISTING CONTACT FORM STYLES ===== */
.contact-form {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.checkbox-group {
    margin-bottom: var(--spacing-md);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 2px;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--primary-dark);
}

.btn {
    position: relative;
    overflow: hidden;
}

.btn-loading {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn.loading .btn-text {
    opacity: 0;
}

.btn.loading .btn-loading {
    display: block;
}

/* Responsive form */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .contact-form {
        padding: var(--spacing-lg);
    }
} 

/* ===== POLICY PAGE STYLES ===== */
.policy-content {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
}

.policy-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

.policy-main {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.policy-section {
    margin-bottom: var(--spacing-2xl);
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    color: var(--text-primary);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--border-light);
    padding-bottom: var(--spacing-sm);
}

.policy-section h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin: var(--spacing-xl) 0 var(--spacing-md) 0;
}

.policy-section h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin: var(--spacing-lg) 0 var(--spacing-sm) 0;
}

.policy-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.policy-section ul {
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-lg);
}

.policy-section li {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.cookie-usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
}

.usage-item {
    background: var(--bg-accent);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.usage-item h4 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
}

.usage-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.retention-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.retention-item {
    background: var(--bg-accent);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
}

.retention-item h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-size: 1rem;
}

.retention-item p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

.contact-info {
    background: var(--bg-accent);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin: var(--spacing-lg) 0;
}

.contact-info p {
    margin-bottom: var(--spacing-sm);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-info a:hover {
    color: var(--primary-dark);
}

/* Sidebar Styles */
.policy-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-lg);
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--border-light);
    padding-bottom: var(--spacing-sm);
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    margin-bottom: var(--spacing-sm);
}

.sidebar-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
    display: block;
    padding: var(--spacing-xs) 0;
}

.sidebar-links a:hover {
    color: var(--primary-color);
}

.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--bg-accent);
    border-radius: var(--radius-md);
}

.category-name {
    font-weight: 600;
    color: var(--text-primary);
}

.category-status {
    font-size: 0.8rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.category-status.always {
    background: var(--success-color);
    color: white;
}

.category-status.optional {
    background: var(--warning-color);
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .policy-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .policy-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .policy-main {
        padding: var(--spacing-lg);
    }
    
    .cookie-usage-grid {
        grid-template-columns: 1fr;
    }
    
    .retention-table {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sidebar-widget {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .retention-table {
        grid-template-columns: 1fr;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.1rem;
    }
} 

/* Nail Design Showcase */
.nail-design-showcase {
    margin: var(--spacing-2xl) 0;
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.design-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    max-width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.design-image:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.design-details {
    padding: var(--spacing-lg);
}

.design-details h3 {
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
}

.design-details p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
    line-height: 1.6;
}

.design-details ul {
    margin-bottom: var(--spacing-lg);
    padding-left: var(--spacing-lg);
}

.design-details li {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
    line-height: 1.5;
}

.design-details .btn {
    margin-top: 1rem;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #ff4757;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.design-details .btn:hover {
    background: #e63946;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
} 

.featured-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    margin: 2rem 0;
    display: block;
    max-width: 100%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.featured-image:hover {
    transform: scale(1.01);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
} 

/* Responsive Design for Blog Post Images */
@media (max-width: 768px) {
    .nail-design-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .design-image {
        height: 250px;
        width: 100%;
    }
    
    .featured-image {
        height: 300px;
        width: 100%;
    }
    
    .design-details h3 {
        font-size: 1.2rem;
    }
    
    .design-details .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nail-design-showcase {
        padding: 1rem;
        gap: 1rem;
    }
    
    .design-image {
        height: 200px;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .design-details h3 {
        font-size: 1.1rem;
    }
} 

/* Social Share */
.social-share {
    text-align: center;
    margin: 3rem 0 4rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.social-share h3 {
    margin-bottom: 1.5rem;
    color: #2f3542;
    font-size: 1.3rem;
}

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

.share-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pinterest-btn { 
    background: #e60023; 
}

.pinterest-btn:hover { 
    background: #d1001f; 
}

.facebook-btn { 
    background: #1877f2; 
}

.facebook-btn:hover { 
    background: #166fe5; 
}

.twitter-btn { 
    background: #1da1f2; 
}

.twitter-btn:hover { 
    background: #1a91da; 
}

/* Blog Post Bottom Spacing */
.blog-post {
    margin-bottom: 3rem;
}

.post-content {
    margin-bottom: 2rem;
} 

/* Professional Breadcrumb Styles */
.breadcrumb-nav {
  margin: 24px 0 16px 0;
  font-size: 0.95rem;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb-item a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-item a:hover {
  color: #ff4757;
}
.breadcrumb-separator {
  margin: 0 8px;
  color: #bbb;
}
.breadcrumb-current {
  color: #222;
  font-weight: 600;
} 

/* Soft blue rounded background for post actions */
.post-actions-bg {
  background: linear-gradient(135deg, #e3f0ff 60%, #f6fbff 100%);
  border-radius: 2em;
  box-shadow: 0 4px 24px rgba(30, 144, 255, 0.10);
  padding: 1.2em 1.5em 1.5em 1.5em;
  margin: 1.5em 0 0.5em 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.post-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1.5em;
}

.stats {
  display: flex;
  gap: 1.2em;
  font-size: 1.1em;
  color: #1a237e;
  font-weight: 500;
}

.read-btn {
  background: #1976d2;
  color: #fff;
  border-radius: 2em;
  padding: 0.6em 1.6em;
  font-weight: 600;
  font-size: 1em;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.10);
  transition: background 0.2s, transform 0.2s;
  margin-left: auto;
}

.read-btn:hover {
  background: #1565c0;
  transform: translateY(-2px) scale(1.04);
}

@media (max-width: 600px) {
  .post-actions-bg {
    padding: 1em 0.7em 1.2em 0.7em;
  }
  .post-actions {
    flex-direction: column;
    gap: 1em;
  }
  .read-btn {
    width: 100%;
    text-align: center;
    margin-left: 0;
  }
} 

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2em 0;
    text-align: center;
    color: white;
    margin-bottom: 0;
}

.page-header-content h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 0.5em;
    font-family: 'Playfair Display', serif;
}

.page-header-content p {
    font-size: 1.2em;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    color: #fff;
}

/* Posts Section */
.posts-section {
    padding: 2em 0;
    background: #f8fafc;
    position: relative;
    z-index: 1;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2em;
    margin-bottom: 3em;
}

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

.page-link {
    display: flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.8em 1.2em;
    background: white;
    color: #1a237e;
    text-decoration: none;
    border-radius: 0.5em;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-link:hover,
.page-link.active {
    background: #1a237e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.3);
}

.page-link.prev {
    background: #e60023;
    color: white;
}

.page-link.prev:hover {
    background: #ad081b;
}

.page-link.next {
    background: #e60023;
    color: white;
}

.page-link.next:hover {
    background: #ad081b;
}

.page-link svg {
    width: 18px;
    height: 18px;
}

/* Load More Button Styling */
.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 1em 2em;
    background: #e60023;
    color: white;
    text-decoration: none;
    border-radius: 2em;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 0, 35, 0.3);
}

.load-more-btn:hover {
    background: #ad081b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 0, 35, 0.4);
    color: white;
}

.load-more-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.load-more-btn:hover svg {
    transform: translateY(2px);
}

@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 2.5em;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 0.3em;
    }
    
    .page-link {
        padding: 0.6em 1em;
        font-size: 0.9em;
    }
} 

/* ===== AD SECTIONS ===== */
.ad-section {
    padding: 2rem 0;
    text-align: center;
    background: #f8f9fa;
    width: 100%;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin: 2rem 0;
}

.ad-section.ad-header {
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 2rem;
}

.ad-section.ad-in-content {
    margin: 3rem 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.ad-section.ad-footer {
    border-top: 1px solid #e9ecef;
    margin-top: 3rem;
}

.ad-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 728px;
    min-height: 250px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    margin: 0 auto;
    position: relative;
}

.ad-wrapper ins {
    display: block !important;
    width: 100% !important;
    min-width: 300px !important;
    min-height: 250px !important;
    max-width: 728px !important;
    margin: 0 auto !important;
}

/* AdSense container styling - hidden by default, shown only when ad loads */
.ad-section,
.ad-wrapper {
    /* No min-height or placeholder styling - completely hidden until ad loads */
    margin: 0;
    padding: 0;
}

/* When ad is loaded, show the container */
.ad-section.ad-loaded,
.ad-wrapper.ad-loaded {
    display: block !important;
}

/* When ad is not loaded, keep hidden */
.ad-section.ad-not-loaded,
.ad-wrapper.ad-not-loaded {
    display: none !important;
}

/* Lazy Loading Styles */
img[data-src] {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

img[data-src].loaded {
    opacity: 1;
}

img[data-src].error {
    opacity: 1;
    background: #f5f5f5;
    border: 1px dashed #ddd;
}

/* Loading placeholder */
.image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    background: #f5f5f5;
    color: #666;
    border: 1px dashed #ddd;
    font-size: 14px;
}

/* Performance optimizations */
* {
    box-sizing: border-box;
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    /* Faster animations for mobile */
    [data-aos] {
        transition-duration: 300ms !important;
        transition-delay: 50ms !important;
    }
    
    /* Optimize transitions */
    * {
        transition-duration: 0.2s !important;
    }
    
    /* Reduce shadow complexity for better performance */
    .collection-card,
    .hero-btn,
    .btn {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* Optimize transforms */
    .collection-card:hover,
    .hero-btn:hover {
        transform: translateY(-2px) !important;
    }
    
    /* Reduce blur effects */
    .hero-overlay {
        backdrop-filter: blur(2px) !important;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    /* Disable AOS animations */
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Low-end device optimizations */
@media (max-width: 480px) {
    /* Further reduce animations on small screens */
    [data-aos] {
        transition-duration: 200ms !important;
        transition-delay: 0ms !important;
    }
    
    /* Simplify gradients for better performance */
    .hero {
        background: linear-gradient(135deg, #ff4757 0%, #2ed573 100%) !important;
    }
    
    /* Reduce image quality for faster loading */
    img {
        image-rendering: optimizeSpeed;
    }
}

/* Optimize for Core Web Vitals */
img {
    max-width: 100%;
    height: auto;
    display: block;
    background: white;
}

/* Ensure all nail design images show full content */
.nail-design-image,
.featured-image,
.collection-image img,
.design-image {
    background: white;
    object-position: center;
}

/* Prevent layout shift */
.hero-image img,
.post-card img,
.featured-post img {
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Responsive ad containers */
@media (max-width: 768px) {
    .ad-wrapper {
        max-width: 320px;
        min-height: 250px;
    }
    
    .ad-wrapper ins {
        min-width: 300px !important;
        min-height: 250px !important;
    }
    
    .ad-section {
        padding: 1rem 0;
        margin: 1rem 0;
    }
}

@media (max-width: 480px) {
    .ad-wrapper {
        max-width: 300px;
        min-height: 250px;
    }
    
    .ad-wrapper ins {
        min-width: 300px !important;
        min-height: 250px !important;
    }
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-overlay.active {
    display: flex;
}

.search-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
}

.search-form {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-input-wrapper {
    position: relative;
    flex: 1;
}

.search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 3rem;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #ff4757;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #666;
}

.search-clear {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    width: 20px;
    height: 20px;
    color: #666;
    display: none;
}

.search-input:not(:placeholder-shown) + .search-clear {
    display: block;
}

.search-btn {
    padding: 1rem 2rem;
    background: #ff4757;
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #e63946;
}

@media (max-width: 768px) {
    .search-container {
        padding: 1rem;
        width: 95%;
    }
    
    .search-form {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .search-btn {
        width: 100%;
    }
}

/* Mobile Responsive Hero Section */
@media (max-width: 1024px) {
    .hero {
        min-height: 90vh;
        padding-top: 90px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-title-accent {
        font-size: 3.5rem;
    }
    
    .hero-title-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 0 1rem;
        padding-top: 80px; /* Increased for better text visibility */
    }
    
    .hero-content {
        padding: 1.5rem;
        max-width: 100%;
        margin-top: 30px; /* Increased margin for text visibility */
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-title-accent {
        font-size: 2.8rem;
        margin: 0.3rem 0;
    }
    
    .hero-title-subtitle {
        font-size: 1.5rem;
        margin-top: 0.3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem; /* Reduced from 2rem */
        padding: 0 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.8rem; /* Reduced from 1rem */
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
        padding: 0 0.5rem;
        padding-top: 70px; /* Increased for better text visibility */
    }
    
    .hero-content {
        padding: 1rem;
        margin-top: 25px; /* Increased margin for text visibility */
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .hero-title-accent {
        font-size: 2.2rem;
        margin: 0.2rem 0;
    }
    
    .hero-title-subtitle {
        font-size: 1.2rem;
        margin-top: 0.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.2rem; /* Reduced from 1.5rem */
        padding: 0 0.5rem;
    }
    
    .hero-actions {
        gap: 0.6rem; /* Reduced spacing between buttons */
    }
    
    .hero-actions .btn {
        max-width: 250px;
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .hero {
        min-height: 65vh;
        padding-top: 60px; /* Increased for better text visibility */
    }
    
    .hero-content {
        margin-top: 20px; /* Increased margin for text visibility */
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-title-accent {
        font-size: 2rem;
    }
    
    .hero-title-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0;
        margin-bottom: 1rem; /* Reduced spacing */
    }
    
    .hero-actions {
        gap: 0.5rem; /* Minimal spacing between buttons */
    }
    
    .hero-actions .btn {
        max-width: 220px;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 60vh;
        padding-top: 60px;
    }
    
    .hero-content {
        margin-top: 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-title-accent {
        font-size: 2.5rem;
        margin: 0.2rem 0;
    }
    
    .hero-title-subtitle {
        font-size: 1.3rem;
        margin-top: 0.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.2rem; /* Reduced spacing */
    }
    
    .hero-actions {
        flex-direction: row;
        gap: 0.6rem; /* Reduced spacing */
    }
    
    .hero-actions .btn {
        width: auto;
        min-width: 140px;
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}