/* ============================================
   Cocuk Yagmurlugu - Professional & Modern CSS
   ============================================ */

:root {
    --primary: #667eea;
    --primary-dark: #5a6fd6;
    --secondary: #764ba2;
    --accent-red: #FF6B6B;
    --accent-green: #4ECDC4;
    --accent-blue: #45B7D1;
    --accent-yellow: #FECA57;
    --accent-orange: #FF9F43;
    --accent-pink: #f093fb;
    --bg-light: #f8f9ff;
    --text-dark: #1a1a2e;
    --text-body: #4a4a5a;
    --text-muted: #7c7c8a;
    --border-color: #e8eaf0;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
    --font-main: 'Nunito', 'Segoe UI', sans-serif;
    --font-heading: 'Baloo 2', 'Nunito', sans-serif;
}

/* Reset & Base */
* { box-sizing: border-box; }
body {
    font-family: var(--font-main);
    color: var(--text-body);
    background: #fff;
    line-height: 1.7;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
}
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
.lead { color: var(--text-muted); line-height: 1.8; }

/* ============================================
   Buttons
   ============================================ */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(102,126,234,0.3);
}
.btn-primary-custom:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(102,126,234,0.45);
}
.btn-outline-custom {
    border: 2px solid rgba(255,255,255,0.7);
    color: white;
    background: transparent;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 700;
    font-size: 0.95rem;
}
.btn-outline-custom:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}
.btn-outline-rainbow {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    border-radius: 50px;
    padding: 6px 20px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-rainbow:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}
.btn-rainbow {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white; border: none; border-radius: 50px;
    padding: 12px 32px; font-weight: 700;
    box-shadow: 0 4px 15px rgba(102,126,234,0.3);
}
.btn-rainbow:hover { color: white; transform: translateY(-2px); box-shadow: 0 6px 25px rgba(102,126,234,0.45); }

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
    background: var(--text-dark);
    color: rgba(255,255,255,0.8);
    padding: 8px 0;
    font-size: 13px;
}
.top-bar a { color: rgba(255,255,255,0.8); margin-right: 20px; }
.top-bar a:hover { color: #fff; }
.top-bar i { margin-right: 5px; }
.top-bar .social-links a { margin-right: 10px; font-size: 14px; }
.lang-switch a {
    color: rgba(255,255,255,0.6); font-weight: 600;
    padding: 2px 8px; border-radius: 4px; font-size: 12px;
}
.lang-switch a.active { color: #fff; background: rgba(255,255,255,0.15); }
.lang-switch span { color: rgba(255,255,255,0.3); margin: 0 4px; }

/* ============================================
   Navbar
   ============================================ */
.main-navbar {
    background: white;
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
    z-index: 1030;
    transition: var(--transition);
}
.navbar-brand {
    display: flex; align-items: center; gap: 10px;
    font-weight: 800; font-size: 1.2rem; color: var(--text-dark) !important;
}
.brand-logo { flex-shrink: 0; }
.logo-text { font-family: var(--font-heading); }
.nav-link {
    font-weight: 600; color: var(--text-dark) !important;
    padding: 8px 16px !important; border-radius: var(--radius);
    transition: var(--transition); font-size: 0.95rem;
}
.nav-link:hover, .nav-link.active { color: var(--primary) !important; background: rgba(102,126,234,0.06); }
.dropdown-menu {
    border: none; box-shadow: var(--shadow-lg);
    border-radius: var(--radius); padding: 8px; margin-top: 8px;
}
.dropdown-item { border-radius: 8px; padding: 8px 16px; font-weight: 500; }
.dropdown-item:hover { background: var(--bg-light); color: var(--primary); }
.nav-search-form { max-width: 220px; }
.nav-search-form .form-control {
    border-radius: 20px 0 0 20px; border: 2px solid var(--border-color);
    border-right: none; font-size: 14px; padding: 6px 14px;
}
.nav-search-form .form-control:focus { border-color: var(--primary); box-shadow: none; }
.btn-search {
    background: var(--primary); color: white;
    border: 2px solid var(--primary); border-radius: 0 20px 20px 0; padding: 6px 14px;
}
.btn-search:hover { background: var(--primary-dark); color: white; }

/* ============================================
   Hero Section - Modern Design
   ============================================ */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    overflow: hidden;
    color: white;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    background: white;
}
.hero-shape-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.hero-shape-2 { width: 400px; height: 400px; bottom: -150px; left: -100px; }
.hero-shape-3 { width: 200px; height: 200px; top: 50%; left: 30%; }
.min-vh-hero { min-height: 580px; padding: 60px 0; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
    padding: 8px 18px; border-radius: 50px; font-size: 0.85rem;
    font-weight: 600; margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.2);
}
.hero-title {
    font-size: 3rem; font-weight: 800; line-height: 1.2;
    margin-bottom: 18px; letter-spacing: -0.5px;
}
.hero-subtitle {
    font-size: 1.1rem; opacity: 0.9; margin-bottom: 30px;
    line-height: 1.8; max-width: 500px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
    display: flex; gap: 20px; align-items: center;
    background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
    padding: 20px 28px; border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.15); max-width: fit-content;
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 1.5rem; font-weight: 800; }
.hero-stat span { font-size: 0.75rem; opacity: 0.8; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* Hero Image Cards */
.hero-image-wrapper {
    position: relative; height: 450px;
}
.hero-image-card {
    position: absolute; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    transition: transform 0.5s ease;
}
.hero-image-card img {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-card-1 {
    width: 260px; height: 320px; top: 20px; left: 50%;
    transform: translateX(-50%) rotate(3deg); z-index: 3;
}
.hero-card-2 {
    width: 180px; height: 220px; top: 80px; left: 10%;
    transform: rotate(-6deg); z-index: 2; opacity: 0.9;
}
.hero-card-3 {
    width: 160px; height: 200px; bottom: 30px; right: 10%;
    transform: rotate(5deg); z-index: 1; opacity: 0.85;
}
.hero-image-card:hover { transform: translateY(-5px) rotate(0deg) !important; z-index: 10; }

/* ============================================
   Features
   ============================================ */
.features-section { background: var(--bg-light); }
.feature-card {
    background: white; border-radius: var(--radius); padding: 20px;
    text-align: center; box-shadow: var(--shadow-sm);
    transition: var(--transition); height: 100%;
    border: 1px solid var(--border-color);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.feature-icon {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white; display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin: 0 auto 12px;
}
.feature-card h6 { font-weight: 700; margin-bottom: 4px; font-size: 0.88rem; color: var(--text-dark); }
.feature-card p { font-size: 0.78rem; color: var(--text-muted); margin: 0; }

/* ============================================
   Section Styles
   ============================================ */
.section-padding { padding: 70px 0; }
.bg-light-custom { background: var(--bg-light); }
.section-header { margin-bottom: 45px; }
.section-title { font-size: 2.1rem; font-weight: 800; margin-bottom: 12px; }
.section-badge {
    display: inline-block; background: rgba(102,126,234,0.1);
    color: var(--primary); padding: 6px 16px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 700; margin-bottom: 12px;
    text-transform: uppercase; letter-spacing: 1px;
}
.section-divider {
    width: 60px; height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 2px; margin: 0 auto;
}
.section-divider.left { margin: 0; }

/* ============================================
   Category Cards
   ============================================ */
.category-card {
    display: block; background: white; border-radius: var(--radius-lg);
    padding: 32px 24px; text-align: center; box-shadow: var(--shadow-sm);
    transition: var(--transition); color: var(--text-dark); height: 100%;
    border: 1px solid var(--border-color);
}
.category-card:hover {
    transform: translateY(-8px); box-shadow: var(--shadow-lg);
    color: var(--text-dark); border-color: transparent;
}
.category-icon-wrap {
    width: 70px; height: 70px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin: 0 auto 16px;
    color: white; background: var(--cat-color, var(--primary));
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: var(--transition);
}
.category-card:hover .category-icon-wrap { transform: scale(1.1); }
.category-card h5 { font-weight: 700; margin-bottom: 8px; font-size: 1.05rem; }
.category-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 12px; }
.category-link { color: var(--primary); font-weight: 600; font-size: 0.88rem; }

/* ============================================
   Product Cards
   ============================================ */
.product-card {
    background: white; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: var(--transition);
    height: 100%; display: flex; flex-direction: column;
    position: relative; border: 1px solid var(--border-color);
}
.product-card:hover {
    transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent;
}
.product-badge {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700;
}
.badge-sale { background: var(--accent-red); color: white; }
.product-image {
    height: 220px; overflow: hidden; background: #f5f6fa;
    display: flex; align-items: center; justify-content: center;
}
.product-image img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease;
}
.product-card:hover .product-image img { transform: scale(1.06); }
.product-info { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-category {
    font-size: 0.72rem; color: var(--primary); font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.8px;
}
.product-name { font-size: 0.98rem; margin: 6px 0; line-height: 1.4; }
.product-name a { color: var(--text-dark); }
.product-name a:hover { color: var(--primary); }
.product-desc { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 12px; flex: 1; }
.product-footer {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border-color);
}
.product-price-ask {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.88rem; font-weight: 700; color: var(--primary);
}

/* ============================================
   About Home Section
   ============================================ */
.about-image-grid {
    position: relative; min-height: 400px;
}
.about-img-main {
    width: 75%; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 320px; object-fit: cover; }
.about-img-secondary {
    position: absolute; bottom: -20px; right: 0;
    width: 45%; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-lg); border: 4px solid white;
}
.about-img-secondary img { width: 100%; height: 180px; object-fit: cover; }
.about-experience-badge {
    position: absolute; top: 20px; right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white; padding: 18px 22px; border-radius: var(--radius);
    text-align: center; box-shadow: var(--shadow-lg);
}
.about-experience-badge strong { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.about-experience-badge span { font-size: 0.7rem; opacity: 0.9; text-transform: uppercase; letter-spacing: 1px; }
.about-feature-item {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 14px; font-weight: 600; font-size: 0.95rem;
}
.about-feature-icon {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(78,205,196,0.15); color: var(--accent-green);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; flex-shrink: 0;
}

/* ============================================
   Blog Cards
   ============================================ */
.blog-card {
    background: white; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: var(--transition);
    height: 100%; display: flex; flex-direction: column;
    border: 1px solid var(--border-color);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-image { height: 200px; overflow: hidden; position: relative; background: #f5f6fa; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-date {
    position: absolute; bottom: 10px; left: 10px;
    background: var(--primary); color: white;
    padding: 4px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 600;
}
.blog-content { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-content h5 { margin-bottom: 8px; font-size: 1.02rem; line-height: 1.4; }
.blog-content h5 a { color: var(--text-dark); }
.blog-content h5 a:hover { color: var(--primary); }
.blog-content p { font-size: 0.88rem; color: var(--text-muted); flex: 1; }
.blog-footer {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 12px; border-top: 1px solid var(--border-color); margin-top: auto;
}
.blog-meta { font-size: 0.8rem; color: var(--text-muted); }
.blog-read-more { font-weight: 600; font-size: 0.88rem; color: var(--primary); }
.blog-read-more:hover { color: var(--primary-dark); }

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--text-dark), #2d2d44);
    color: white; padding: 60px 0;
}
.cta-section h2 { font-weight: 800; margin-bottom: 8px; color: white; }
.cta-section p { opacity: 0.8; margin-bottom: 0; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 14px; justify-content: flex-end; flex-wrap: wrap; }

/* ============================================
   Page Header
   ============================================ */
.page-header { padding: 50px 0 30px; color: white; }
.page-header h1 { font-weight: 800; font-size: 2.2rem; margin-bottom: 10px; color: white; }
.page-header .breadcrumb { background: none; margin: 0; padding: 0; }
.page-header .breadcrumb-item a { color: rgba(255,255,255,0.8); }
.page-header .breadcrumb-item.active { color: white; }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.6); }
.page-header-sm { padding: 30px 0 20px; }

/* ============================================
   Product Detail
   ============================================ */
.product-detail-image {
    border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
}
.product-detail-image img { width: 100%; }
.thumbnail-img {
    cursor: pointer; opacity: 0.6; border: 2px solid transparent; transition: var(--transition);
}
.thumbnail-img:hover, .thumbnail-img.active { opacity: 1; border-color: var(--primary); }
.product-detail-category {
    display: inline-block; background: var(--bg-light); color: var(--primary);
    padding: 4px 16px; border-radius: 20px; font-size: 0.85rem;
    font-weight: 600; margin-bottom: 12px;
}
.product-detail-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; }
.product-detail-price-ask {
    display: flex; align-items: center; gap: 14px;
    background: linear-gradient(135deg, rgba(102,126,234,0.08), rgba(118,75,162,0.08));
    border: 2px solid rgba(102,126,234,0.15); border-radius: var(--radius);
    padding: 16px 20px; margin-bottom: 20px;
}
.product-detail-price-ask i {
    font-size: 1.8rem; color: var(--primary);
}
.product-detail-price-ask strong {
    display: block; font-size: 1.2rem; color: var(--primary);
}
.product-detail-price-ask small {
    display: block; color: var(--text-muted); font-size: 0.85rem; margin-top: 2px;
}
.product-detail-desc { font-size: 1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.product-detail-meta { margin-bottom: 24px; }
.meta-item { padding: 8px 0; border-bottom: 1px solid var(--border-color); }
.meta-item strong { min-width: 100px; display: inline-block; }
.product-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.product-share { display: flex; align-items: center; gap: 10px; }
.share-btn {
    width: 36px; height: 36px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--bg-light); color: var(--text-muted); transition: var(--transition);
}
.share-btn:hover { background: var(--primary); color: white; }
.description-content { line-height: 1.9; }
.description-content h3 { margin-top: 24px; font-size: 1.3rem; }

/* ============================================
   Sidebar
   ============================================ */
.sidebar-widget {
    background: white; border-radius: var(--radius-lg); padding: 24px;
    box-shadow: var(--shadow-sm); margin-bottom: 24px;
    border: 1px solid var(--border-color);
}
.widget-title {
    font-weight: 700; font-size: 1.05rem; margin-bottom: 16px;
    padding-bottom: 12px; border-bottom: 2px solid var(--border-color);
}
.category-list { list-style: none; padding: 0; margin: 0; }
.category-list li { margin-bottom: 4px; }
.category-list li a {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 14px; border-radius: var(--radius);
    color: var(--text-body); font-weight: 500; transition: var(--transition);
}
.category-list li a:hover, .category-list li.active a {
    background: var(--bg-light); color: var(--primary);
}
.category-list .count { font-size: 0.8rem; color: var(--text-muted); }
.sidebar-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white; text-align: center; border: none;
}
.sidebar-cta h6 { color: white; font-weight: 700; }
.sidebar-cta p { opacity: 0.9; font-size: 0.85rem; }
.cta-icon { font-size: 2.2rem; margin-bottom: 8px; }

/* ============================================
   Contact
   ============================================ */
.contact-info-card {
    background: var(--bg-light); border-radius: var(--radius-lg); padding: 24px;
}
.contact-info-item {
    display: flex; gap: 16px; padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
}
.contact-info-item h6 { margin-bottom: 2px; font-weight: 700; }
.contact-info-item p { margin: 0; color: var(--text-muted); font-size: 0.9rem; }
.contact-info-item a { color: var(--text-muted); }
.contact-info-item a:hover { color: var(--primary); }
.contact-form .form-control {
    border-radius: var(--radius); border: 2px solid var(--border-color); padding: 12px 16px;
}
.contact-form .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 0.2rem rgba(102,126,234,0.12); }
.contact-form .form-label { font-weight: 600; }

/* ============================================
   Blog Detail
   ============================================ */
.blog-detail-header { margin-bottom: 24px; }
.blog-detail-header h1 { font-size: 2rem; line-height: 1.4; }
.blog-detail-meta { display: flex; gap: 20px; color: var(--text-muted); font-size: 0.9rem; flex-wrap: wrap; }
.blog-detail-meta i { margin-right: 4px; }
.blog-detail-image { margin-bottom: 30px; }
.blog-detail-content { line-height: 1.9; font-size: 1.05rem; }
.blog-detail-content h3 { margin-top: 30px; margin-bottom: 15px; }
.blog-share { padding: 24px; background: var(--bg-light); border-radius: var(--radius-lg); }
.share-buttons { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.share-buttons a {
    padding: 8px 20px; border-radius: 20px; color: white;
    font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px;
}
.share-buttons .facebook { background: #1877f2; }
.share-buttons .twitter { background: #1da1f2; }
.share-buttons .whatsapp { background: #25d366; }

/* ============================================
   Stats
   ============================================ */
.stat-card {
    background: white; border-radius: var(--radius-lg); padding: 30px;
    box-shadow: var(--shadow-sm); transition: var(--transition);
    border: 1px solid var(--border-color);
}
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.stat-number {
    font-size: 2.5rem; font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ============================================
   Empty State & 404
   ============================================ */
.empty-state { padding: 60px 20px; text-align: center; }
.empty-icon { font-size: 4rem; margin-bottom: 16px; color: var(--text-muted); opacity: 0.5; }
.empty-icon i { font-size: inherit; }
.empty-state h4 { color: var(--text-muted); font-weight: 600; }
.error-icon { font-size: 5rem; margin-bottom: 20px; color: var(--primary); opacity: 0.4; }
.error-icon i { font-size: inherit; }
.text-rainbow {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent-blue));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ============================================
   Page Content
   ============================================ */
.page-content { line-height: 1.9; font-size: 1.05rem; }
.page-content h2, .page-content h3 { margin-top: 30px; margin-bottom: 15px; }
.page-content ul { padding-left: 20px; }
.page-content li { margin-bottom: 8px; }
.category-description { background: var(--bg-light); padding: 16px 20px; border-radius: var(--radius); }

/* ============================================
   Footer
   ============================================ */
.site-footer { background: #0f0f1a; color: rgba(255,255,255,0.75); }
.footer-top { padding: 50px 0 30px; }
.footer-title {
    color: white; font-weight: 700; font-size: 1.05rem;
    margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
}
.footer-widget p { font-size: 0.88rem; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.08); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: white; padding-left: 6px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    display: flex; gap: 10px; margin-bottom: 12px;
    font-size: 0.88rem; align-items: flex-start;
}
.footer-contact i { color: var(--primary); margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: white; }
.footer-bottom {
    padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.84rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: white; }

/* ============================================
   WhatsApp Float
   ============================================ */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25d366; color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; z-index: 1000;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1); color: white;
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

/* ============================================
   Back to Top
   ============================================ */
.back-to-top {
    position: fixed; bottom: 90px; right: 24px;
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--primary); color: white; border: none;
    display: none; align-items: center; justify-content: center;
    font-size: 1.1rem; z-index: 999; cursor: pointer;
    transition: var(--transition); box-shadow: var(--shadow);
}
.back-to-top.show { display: flex; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ============================================
   Pagination
   ============================================ */
.pagination { margin-top: 30px; }
.page-link {
    border: none; color: var(--text-body); padding: 10px 16px;
    border-radius: 10px !important; margin: 0 3px;
    font-weight: 600; transition: var(--transition);
}
.page-link:hover { background: var(--bg-light); color: var(--primary); }
.page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white;
}

/* ============================================
   Swiper
   ============================================ */
.swiper-pagination-bullet { background: white; opacity: 0.5; width: 12px; height: 12px; }
.swiper-pagination-bullet-active { opacity: 1; background: white; }

/* ============================================
   No Image Placeholders
   ============================================ */
.product-image img[src*="no-product"], .blog-image img[src*="no-blog"] {
    padding: 40px; opacity: 0.3; object-fit: contain !important;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1199px) {
    .hero-card-1 { width: 220px; height: 280px; }
    .hero-card-2 { width: 150px; height: 190px; }
    .hero-card-3 { width: 140px; height: 170px; }
}
@media (max-width: 991px) {
    .hero-title { font-size: 2.2rem; }
    .min-vh-hero { min-height: auto; padding: 50px 0; }
    .section-padding { padding: 50px 0; }
    .nav-search-form { max-width: 100%; margin-top: 12px; }
    .top-bar-info { text-align: center; }
    .cta-buttons { justify-content: flex-start; }
    .about-image-grid { min-height: 340px; }
}
@media (max-width: 767px) {
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-stats { flex-direction: row; gap: 14px; padding: 14px 18px; }
    .hero-stat strong { font-size: 1.2rem; }
    .hero-stat span { font-size: 0.65rem; }
    .hero-stat-divider { height: 30px; }
    .section-title { font-size: 1.6rem; }
    .product-actions { flex-direction: column; }
    .product-actions .btn { width: 100%; }
    .cta-buttons { flex-direction: column; align-items: stretch; }
    .page-header h1 { font-size: 1.6rem; }
    .product-detail-title { font-size: 1.4rem; }
    .blog-detail-header h1 { font-size: 1.5rem; }
    .stat-number { font-size: 1.8rem; }
    .top-bar { font-size: 12px; }
    .top-bar a { margin-right: 10px; }
    .about-img-main img { height: 240px; }
    .about-img-secondary img { height: 140px; }
    .about-image-grid { min-height: 280px; }
}
@media (max-width: 576px) {
    .feature-card { padding: 14px; }
    .feature-card h6 { font-size: 0.78rem; }
    .feature-card p { font-size: 0.68rem; }
    .feature-icon { width: 40px; height: 40px; font-size: 1rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
}
