/*
Theme Name: 3D Polidekor
Theme URI: https://3dpolidekor.com
Author: 3D Polidekor
Author URI: https://3dpolidekor.com
Description: Modern ve şık 3D dekorasyon teması. Dekorasyon ve iç tasarım odaklı, özgün ve profesyonel WordPress teması.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 3dpolidekor
Tags: custom-menu, featured-images, threaded-comments, translation-ready, responsive-layout, custom-colors, custom-header, custom-logo, editor-style, theme-options, full-width-template, sticky-post, two-columns, three-columns, left-sidebar, right-sidebar, flexible-header, custom-background, blog, portfolio, e-commerce, business
*/

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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #e74c3c;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

a:hover {
    color: var(--secondary-color);
}

/* ============================================
   HEADER & NAVIGATION - MODERN DESIGN
   ============================================ */
/* Top Bar */
.header-top-bar {
    background: #000000;
    color: #ffffff;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    position: relative;
    z-index: 1001;
}

.header-top-bar .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar-item svg {
    color: #e74c3c;
    flex-shrink: 0;
}

.top-bar-item:hover {
    color: #e74c3c;
}

.site-header {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header.header-sticky {
    position: sticky;
    top: 0;
}

.site-header.header-sticky.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.site-header.header-style-transparent {
    background: transparent;
    box-shadow: none;
    border-bottom: none;
    position: absolute;
    width: 100%;
    top: 0;
}

.site-header.header-style-transparent.header-sticky {
    position: fixed;
}

.site-header.header-style-transparent.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header.header-style-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.site-header.header-style-solid {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: white;
    border-bottom: none;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.header-container.header-padding-compact {
    padding: 0.875rem 2rem;
}

.header-container.header-padding-large {
    padding: 1.75rem 2.5rem;
}

.site-branding {
    flex-shrink: 0;
    position: relative;
}

.site-branding .custom-logo {
    max-height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.site-branding .custom-logo:hover {
    transform: scale(1.05);
}

.site-logo {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
}

.site-logo::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-logo:hover::before {
    width: 100%;
}

.site-logo a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.site-logo a:hover {
    transform: translateY(-2px);
}

.site-header.header-style-solid .site-logo,
.site-header.header-style-transparent .site-logo {
    color: white;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-menu li {
    margin: 0;
    position: relative;
}

.main-menu li a {
    font-weight: 600;
    font-size: 0.95rem;
    color: inherit;
    padding: 0.75rem 1.25rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    display: block;
    letter-spacing: 0.2px;
}

.main-menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(243, 156, 18, 0.1));
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-menu li a:hover::before,
.main-menu li.current-menu-item a::before {
    opacity: 1;
}

.main-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-menu li a:hover::after,
.main-menu li.current-menu-item a::after {
    transform: translateX(-50%) scaleX(1);
}

.main-menu li a:hover {
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    padding: 0.75rem;
    z-index: 1001;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

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

.site-header.header-style-solid .menu-toggle:hover,
.site-header.header-style-transparent .menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    position: relative;
}

.menu-line {
    width: 100%;
    height: 2.5px;
    background: currentColor;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    padding: 0.65rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid transparent;
}

.header-phone:hover {
    background: rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.site-header.header-style-solid .header-phone,
.site-header.header-style-transparent .header-phone {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.site-header.header-style-solid .header-phone:hover,
.site-header.header-style-transparent .header-phone:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

.header-phone svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.header-phone:hover svg {
    transform: rotate(15deg) scale(1.1);
}

.header-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    background: #e74c3c;
    color: white;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.header-cta-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    color: white;
}

.header-cta-btn:active {
    transform: translateY(0);
}

.site-header.header-style-transparent .header-cta-btn {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.site-header.header-style-transparent .header-cta-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: white;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero-content h1 {
    color: white;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================
   PRODUCT GALLERY
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: var(--bg-light);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #e74c3c;
}

.product-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* ============================================
   CONTENT AREA
   ============================================ */
.site-main {
    min-height: 60vh;
}

.content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Products page specific - wider layout for sidebar */
.content-area .container {
    max-width: 1400px;
}

.content-area .products-page-layout {
    max-width: 100%;
    margin: 0;
    width: 100%;
    padding: 0;
}

.post {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

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

.post-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.post-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

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

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 2rem 0;
}

/* ============================================
   FOOTER - MODERN DESIGN (OVERRIDE)
   ============================================ */
.site-footer {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 50%, #34495e 100%);
    color: white;
    padding: 0;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(243, 156, 18, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2.5rem 3rem;
    position: relative;
    z-index: 1;
}

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

.footer-widget {
    position: relative;
}

.footer-widget-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(231, 76, 60, 0.5);
}

.footer-icon {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.3), rgba(243, 156, 18, 0.3));
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(231, 76, 60, 0.4);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
}

.footer-widget h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800;
    color: #e74c3c;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-widget a {
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.footer-widget a:hover {
    color: #ff6b6b;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    text-align: left;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-bottom p strong {
    color: white;
    font-weight: 700;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.footer-bottom-links a:hover {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.15);
    text-shadow: 0 0 8px rgba(255, 107, 107, 0.4);
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
        gap: 0;
        z-index: 999;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .main-menu.active {
        display: flex;
        transform: translateX(0);
    }

    .main-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }

    .main-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .main-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .main-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .main-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .main-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .main-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    .main-menu.active li:nth-child(6) { transition-delay: 0.35s; }

    .main-menu li:last-child {
        border-bottom: none;
    }

    .main-menu li a {
        display: block;
        padding: 1.25rem 0;
        width: 100%;
        font-size: 1.1rem;
        border-radius: 0;
    }

    .main-menu li a::before {
        display: none;
    }

    .main-menu li a::after {
        display: none;
    }
    
    .header-actions {
        gap: 0.75rem;
    }
    
    .header-phone span {
        display: none;
    }
    
    .header-phone {
        padding: 0.65rem;
        min-width: 44px;
        justify-content: center;
    }
    
    .header-cta-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .header-top-bar .container {
        padding: 0 1.5rem;
    }
    
    .top-bar-left {
        gap: 1rem;
    }
    
    .top-bar-item {
        font-size: 0.8rem;
    }
    
    .top-bar-item span {
        display: none;
    }
    
    .top-bar-item svg {
        width: 14px;
        height: 14px;
    }
    
    .header-container {
        padding: 1rem 1.5rem;
        flex-wrap: wrap;
    }
    
    .main-navigation {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        margin-top: 1rem;
    }
    
    .header-actions {
        order: 2;
        margin-left: auto;
    }
    
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        order: 1;
    }
    
    .site-logo {
        font-size: 1.6rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .header-container {
        padding: 1rem;
    }
}

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

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

/* ============================================
   UTILITIES
   ============================================ */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ============================================
   COMMENTS
   ============================================ */
.comments-area {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.comments-title {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.comment {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.comment-author .avatar {
    border-radius: 50%;
    margin-right: 1rem;
}

.comment-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.comment-content {
    line-height: 1.7;
}

.comment-form {
    margin-top: 2rem;
}

.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

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

.pagination .nav-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination a,
.pagination span {
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    background: var(--bg-light);
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.pagination a:hover {
    background: var(--secondary-color);
    color: white;
}

.pagination .current {
    background: var(--secondary-color);
    color: white;
}

/* ============================================
   SEARCH FORM
   ============================================ */
.search-form {
    display: flex;
    gap: 0.5rem;
    margin: 2rem 0;
}

.search-form label {
    display: none;
}

.search-form .search-field {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
    transition: var(--transition);
}

.search-form .search-field:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.search-form .search-submit {
    padding: 0.8rem 2rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.search-form .search-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* ============================================
   ARCHIVE HEADER
   ============================================ */
.archive-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.archive-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.archive-description {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ============================================
   POST NAVIGATION
   ============================================ */
.post-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.nav-previous,
.nav-next {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.nav-previous:hover,
.nav-next:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow);
}

.nav-subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.nav-title {
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================
   WIDGETS
   ============================================ */
.widget {
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

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

.widget ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget a {
    color: var(--text-dark);
    transition: var(--transition);
}

.widget a:hover {
    color: var(--secondary-color);
    padding-left: 0.5rem;
}

/* ============================================
   NO POSTS
   ============================================ */
.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.no-posts h2 {
    margin-bottom: 1rem;
}

/* ============================================
   FOOTER WIDGET AREA - ENHANCED COLORS
   ============================================ */
.footer-widget-area {
    margin-bottom: 0;
}

.footer-widget-area h3,
.footer-widget-area h4 {
    color: #e74c3c;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(231, 76, 60, 0.5);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.footer-widget-area p,
.footer-widget-area a {
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.footer-widget-area a:hover {
    color: #ff6b6b;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 0.75rem;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-weight: 500;
}

.footer-widget ul li a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    color: #ff6b6b;
    font-weight: 700;
}

.footer-widget ul li a:hover {
    color: white;
    background: rgba(255, 107, 107, 0.15);
    transform: translateX(5px);
    padding-left: 1rem;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.footer-widget ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   MODERN HERO SECTION
   ============================================ */
.hero-section-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    overflow: hidden;
    padding: 2rem;
}

.hero-section-modern[style*="background-image"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255,255,255,0.2), transparent);
    background-size: 200% 200%;
    animation: particles 20s linear infinite;
}

.hero-content-modern {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
}

.hero-badge span {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-title-modern {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.title-line-1 {
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease 0.2s both;
}

.title-line-2 {
    font-size: 3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-description-modern {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons-modern {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease 0.8s both;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary-modern {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.btn-primary-modern svg {
    transition: transform 0.3s ease;
}

.btn-primary-modern:hover svg {
    transform: translateX(5px);
}

.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    animation: fadeInUp 1s ease 1s both;
    text-align: center !important;
    width: auto;
    min-width: 200px;
    z-index: 10;
    margin: 0 !important;
}

.hero-scroll-indicator span {
    display: block;
    text-align: center !important;
    width: 100%;
    margin: 0 auto;
    white-space: nowrap;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.5);
    position: relative;
    animation: scrollDown 2s ease-in-out infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
}

/* ============================================
   QUICK CONTACT CARDS SECTION
   ============================================ */
.quick-contact-section {
    padding: 4rem 2rem;
    background: var(--bg-light);
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-contact-card {
    background: #2c3e50;
    border-radius: 20px;
    padding: 2.5rem;
    color: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.quick-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

.quick-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.customer-line-card {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.whatsapp-card {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.card-header {
    margin-bottom: 1rem;
}

.card-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.whatsapp-label {
    color: #25D366;
    background: rgba(37, 211, 102, 0.15);
}

.card-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.2;
}

.card-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-phone {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.whatsapp-card .phone-number {
    color: white;
}

.phone-number:hover {
    color: #c0392b;
}

.whatsapp-indicator {
    width: 12px;
    height: 12px;
    background: #25D366;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
    animation: pulse-dot 2s infinite;
}

.card-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-card {
    flex: 1;
    min-width: 150px;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-call {
    background: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-call:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.btn-quote {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-quote:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    width: 100%;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .quick-contact-section {
        margin-top: -2rem;
        padding: 3rem 1rem;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quick-contact-card {
        padding: 2rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .phone-number {
        font-size: 1.5rem;
    }
    
    .card-buttons {
        flex-direction: column;
    }
    
    .btn-card {
        width: 100%;
    }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 4rem 2rem;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ============================================
   MODERN FEATURES SECTION
   ============================================ */
.features-section-modern {
    background: var(--bg-light);
    padding: 6rem 2rem;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(231, 76, 60, 0.1);
    color: var(--secondary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title-modern {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card-modern {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-card-modern:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(243, 156, 18, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card-modern:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon-modern {
    font-size: 2.5rem;
}

.feature-card-modern h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.feature-card-modern p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-link {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.feature-link:hover {
    gap: 1rem;
}

/* ============================================
   MODERN PRODUCTS SECTION
   ============================================ */
.products-section-modern {
    padding: 6rem 2rem;
}

.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card-modern {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-image-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-modern:hover .product-image-modern {
    transform: scale(1.1);
}

.product-badge-modern {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.product-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.product-card-modern:hover .product-overlay-modern {
    opacity: 1;
}

.product-overlay-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.product-card-modern:hover .product-overlay-buttons {
    transform: translateY(0);
}

.product-view-btn {
    background: white;
    color: var(--primary-color);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
}

.product-view-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.product-info-modern {
    padding: 2rem;
}

.product-info-modern h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-info-modern h3 a {
    color: #e74c3c;
    transition: color 0.3s ease;
}

.product-info-modern h3 a:hover {
    color: #c0392b;
}

.product-info-modern p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-price-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 1rem;
}

/* ============================================
   MODERN CTA SECTION - ENHANCED
   ============================================ */
.cta-section-modern {
    position: relative;
    padding: 8rem 2rem;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 30%, #34495e 60%, #1a252f 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(231, 76, 60, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(243, 156, 18, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: patternMove 20s ease infinite;
}

.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: floatShape 20s ease-in-out infinite;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: 10%;
    animation-delay: 5s;
}

.cta-shape-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: -75px;
    animation-delay: 10s;
}

.cta-content-modern {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: white;
    animation: fadeInUp 1s ease;
}

.cta-badge-modern {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
}

.cta-badge-modern span {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.cta-content-modern h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
    letter-spacing: -1px;
}

.cta-content-modern p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.7;
    animation: fadeInUp 1s ease 0.4s both;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-white-modern {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-white-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 62, 80, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-white-modern:hover::before {
    left: 100%;
}

.btn-white-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: #f8f9fa;
}

.btn-white-modern svg {
    transition: transform 0.3s ease;
}

.btn-white-modern:hover svg {
    transform: translateX(5px);
}

.btn-outline-modern {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-outline-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.btn-outline-modern:hover::before {
    transform: scaleX(1);
}

.btn-outline-modern:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.btn-outline-modern svg {
    transition: transform 0.3s ease;
}

.btn-outline-modern:hover svg {
    transform: translateX(5px);
}

@keyframes patternMove {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -20px);
    }
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.5;
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.4;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes particles {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

/* ============================================
   RESPONSIVE - MODERN SECTIONS
   ============================================ */
@media (max-width: 768px) {
    .title-line-1 {
        font-size: 2.5rem;
    }
    
    .title-line-2 {
        font-size: 1.8rem;
    }
    
    .hero-description-modern {
        font-size: 1.1rem;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .products-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-content-modern h2 {
        font-size: 2rem;
    }
}

/* ============================================
   PRODUCT FILTERS
   ============================================ */
.product-filters {
    margin-bottom: 3rem;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.product-filters .btn {
    margin: 0.25rem;
}

/* ============================================
   PRODUCT DETAILS PAGE
   ============================================ */
.product-image-container {
    position: sticky;
    top: 100px;
}

.product-info-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.product-price-section {
    margin-bottom: 1.5rem;
}

.product-meta-details {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.related-products {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

/* ============================================
   FOOTER MODERN STYLES - ADDITIONAL
   ============================================ */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
    opacity: 0;
    transform: translateX(-10px);
    animation: slideInLeft 0.5s ease forwards;
}

.footer-links li:nth-child(1) { animation-delay: 0.1s; }
.footer-links li:nth-child(2) { animation-delay: 0.15s; }
.footer-links li:nth-child(3) { animation-delay: 0.2s; }
.footer-links li:nth-child(4) { animation-delay: 0.25s; }
.footer-links li:nth-child(5) { animation-delay: 0.3s; }
.footer-links li:nth-child(6) { animation-delay: 0.35s; }

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.contact-item:hover {
    color: white;
    transform: translateX(5px);
    background: rgba(231, 76, 60, 0.1);
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: #e74c3c;
    filter: drop-shadow(0 2px 4px rgba(231, 76, 60, 0.3));
    transition: all 0.3s ease;
}

.contact-item:hover svg {
    color: #ff5252;
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(255, 107, 107, 0.5));
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-item a:hover {
    color: #ff6b6b;
    text-shadow: 0 0 8px rgba(255, 107, 107, 0.4);
}

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

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(231, 76, 60, 0.15);
    border: 2px solid rgba(231, 76, 60, 0.3);
    border-radius: 12px;
    color: #e74c3c;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    border-color: #e74c3c;
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.2);
}

/* Facebook */
.social-link[aria-label="Facebook"]:hover {
    background: #1877F2;
    border-color: #1877F2;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.5);
}

/* Instagram */
.social-link[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e6683c;
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.5);
}

/* Twitter */
.social-link[aria-label="Twitter"]:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.5);
}

/* LinkedIn */
.social-link[aria-label="LinkedIn"]:hover {
    background: #0077B5;
    border-color: #0077B5;
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.5);
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-newsletter input {
    padding: 0.875rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

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

.footer-newsletter input:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

.footer-newsletter button {
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color), #c0392b);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.footer-newsletter button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    background: linear-gradient(135deg, #c0392b, var(--secondary-color));
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .product-image-container {
        position: static;
    }
    
    .product-details {
        grid-template-columns: 1fr !important;
    }
    
    /* Footer Responsive */
    .footer-container {
        padding: 3rem 1.5rem 2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-widget-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .footer-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        padding: 0 1.5rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-bottom-links span {
        display: none;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-newsletter {
        max-width: 100%;
    }
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    animation: floatUp 0.6s ease-out;
}

.whatsapp-float-btn {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: white;
    position: relative;
    overflow: visible;
}

.whatsapp-float-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: #25D366;
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    z-index: -1;
}

.whatsapp-float-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #20BA5A 0%, #25D366 100%);
}

.whatsapp-float-btn:active {
    transform: translateY(-2px) scale(1.05);
}

.whatsapp-float-btn svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.whatsapp-float-btn:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-50%) translateX(-10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.9);
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

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

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .whatsapp-float-btn {
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-float-btn svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* ============================================
   ABOUT PAGE - MODERN DESIGN
   ============================================ */
.about-content {
    padding: 0;
}

.about-hero {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 20px;
    margin-bottom: 5rem;
    overflow: hidden;
    text-align: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.about-badge {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
}

.about-badge span {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease 0.2s both;
}

.about-hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s both;
}

.about-mission-vision {
    margin-bottom: 5rem;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mission-vision-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mission-vision-card:hover::before {
    transform: scaleX(1);
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(243, 156, 18, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.mission-vision-card:hover .card-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.2), rgba(243, 156, 18, 0.2));
}

.card-icon {
    font-size: 2.5rem;
}

.mission-vision-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #e74c3c;
    letter-spacing: -0.5px;
}

.mission-vision-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.mission-card .card-icon-wrapper {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.15), rgba(231, 76, 60, 0.05));
}

.vision-card .card-icon-wrapper {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.15), rgba(52, 152, 219, 0.05));
}

.about-values {
    margin-bottom: 5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.03), rgba(243, 156, 18, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.value-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(243, 156, 18, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(231, 76, 60, 0.2);
}

.value-card:hover .value-icon-wrapper {
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.2), rgba(243, 156, 18, 0.2));
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.value-icon {
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.2);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.about-team {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 5rem 3rem;
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.about-team::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.team-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.team-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.team-stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.about-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 50%, var(--secondary-color) 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    border-radius: 20px;
    padding: 5rem 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.about-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.about-cta h2 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.about-cta p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.about-cta .btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 1.5rem;
        margin-bottom: 3rem;
    }
    
    .about-hero-title {
        font-size: 2.2rem;
    }
    
    .about-hero-description {
        font-size: 1.1rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-vision-card {
        padding: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-team {
        padding: 3rem 1.5rem;
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .team-stat-number {
        font-size: 2.5rem;
    }
    
    .about-cta {
        padding: 3rem 1.5rem;
    }
    
    .about-cta h2 {
        font-size: 2rem;
    }
    
    .about-cta p {
        font-size: 1.1rem;
    }
}

/* ============================================
   PRODUCT SINGLE PAGE STYLES
   ============================================ */
.product-single-page {
    padding: 2rem 0;
}

.product-single-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Product Image Section */
.product-image-section {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.product-carousel-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.product-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    position: relative;
}

.product-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.carousel-dot.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.product-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--bg-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.placeholder-content {
    text-align: center;
    color: var(--text-light);
}

.placeholder-content svg {
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Product Info Section */
.product-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-main-info {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.product-header {
    margin-bottom: 1.5rem;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-status-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-price-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.current-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1;
}

.old-price {
    font-size: 1.8rem;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 600;
}

.price-contact {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 600;
}

.product-meta-info {
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.meta-label {
    font-weight: 600;
    color: var(--text-dark);
    min-width: 120px;
}

.meta-value {
    color: var(--text-light);
}

.meta-value a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.meta-value a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.btn-cart-primary {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c0392b 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

/* Product card buttons - smaller size */
.product-card .btn-cart-primary,
.products-grid .btn-cart-primary {
    width: auto;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 8px;
}

.btn-cart-primary:hover {
    background: linear-gradient(135deg, #c0392b 0%, var(--secondary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

.btn-cart-primary:active {
    transform: translateY(-1px);
}

.btn-cart-primary.added {
    background: #27ae60;
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.btn-contact {
    width: 100%;
    padding: 1rem 2rem;
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: var(--bg-light);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Categories Sidebar */
.product-categories-sidebar {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

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

.category-item {
    margin-bottom: 0.5rem;
}

.category-item a {
    display: block;
    padding: 1rem 1.25rem;
    background: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 2px solid transparent;
}

.category-item a:hover {
    background: rgba(231, 76, 60, 0.1);
    border-color: rgba(231, 76, 60, 0.3);
    transform: translateX(5px);
    color: var(--secondary-color);
}

.category-item.active a {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c0392b 100%);
    color: white;
    border-color: var(--secondary-color);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.category-item.active a:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* Product Description Section */
.product-description-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 4rem;
}

.description-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--secondary-color);
}

.description-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.description-content p {
    margin-bottom: 1.5rem;
}

/* Related Products Section */
.related-products-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 3px solid var(--border-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.related-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.related-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.related-product-image {
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.product-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-product-card:hover .product-thumb {
    transform: scale(1.1);
}

.related-product-info {
    padding: 1.5rem;
}

.related-product-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.related-product-info h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-product-info h3 a:hover {
    color: var(--secondary-color);
}

.related-product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.btn-view-product {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-view-product:hover {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

@media (max-width: 968px) {
    .product-single-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-image-section {
        position: static;
    }
    
    .product-categories-sidebar {
        position: static;
        order: -1;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .product-single-page {
        padding: 1rem 0;
    }
    
    .product-main-info,
    .product-categories-sidebar,
    .product-description-section {
        padding: 1.5rem;
    }
    
    .product-title {
        font-size: 1.75rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .related-products-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PRODUCT GROUPS SECTION
   ============================================ */
.product-groups-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.product-groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-group-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.product-group-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(231, 76, 60, 0.3);
}

.group-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.group-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.group-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-group-card:hover .group-card-image img {
    transform: scale(1.15);
}

.group-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(243, 156, 18, 0.1));
    color: var(--secondary-color);
}

.group-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-group-card:hover .group-card-overlay {
    opacity: 1;
}

.group-view-btn {
    background: white;
    color: var(--primary-color);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.product-group-card:hover .group-view-btn {
    transform: translateY(0);
}

.group-card-info {
    padding: 2rem;
}

.group-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.product-group-card:hover .group-card-title {
    color: var(--secondary-color);
}

.group-card-count {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.group-card-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.no-categories {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 15px;
    color: var(--text-light);
}

@media (max-width: 968px) {
    .product-groups-section {
        padding: 4rem 1.5rem;
    }
    
    .product-groups-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .product-groups-section {
        padding: 3rem 1rem;
    }
    
    .product-groups-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .main-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.02);
        margin-top: 0;
        border-radius: 0;
        padding-left: 1.5rem;
        border: none;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .main-menu li.menu-item-has-children > a::after {
        transform: rotate(0deg);
    }
    
    .main-menu .sub-menu li a {
        padding: 1rem 1.5rem;
    }
    
    .main-menu .sub-menu li a:hover {
        padding-left: 2rem;
    }
}

/* ============================================
   CART SYSTEM STYLES
   ============================================ */
.header-cart-btn {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    color: inherit;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.header-cart-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    color: inherit;
}

.site-header.header-style-solid .header-cart-btn,
.site-header.header-style-transparent .header-cart-btn {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.site-header.header-style-solid .header-cart-btn:hover,
.site-header.header-style-transparent .header-cart-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

.btn-add-to-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-add-to-cart.added {
    background: #27ae60 !important;
    color: white !important;
}

.btn-add-to-cart.added svg {
    animation: checkmark 0.5s ease;
}

.product-add-btn {
    background: white;
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.product-add-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

/* Cart Page Styles */
.cart-page-wrapper {
    padding: 2rem 0 4rem;
}

.cart-page-header {
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--border-color);
}

.cart-page-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.cart-page-title svg {
    color: var(--secondary-color);
}

.cart-page-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

.cart-empty-state {
    text-align: center;
    padding: 5rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.empty-cart-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(243, 156, 18, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.empty-cart-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.empty-cart-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-empty-cart {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c0392b 100%);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.btn-empty-cart:hover {
    background: linear-gradient(135deg, #c0392b 0%, var(--secondary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    color: white;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

.cart-empty-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.cart-empty h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cart-empty p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    margin-top: 2rem;
}

.cart-items-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.cart-items-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.cart-items-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item-card {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 120px 1fr auto auto;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cart-item-card:hover {
    border-color: rgba(231, 76, 60, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.cart-item-image-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    flex-shrink: 0;
}

.cart-item-image-wrapper a {
    display: block;
    width: 100%;
    height: 100%;
}

.cart-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cart-item-image-wrapper:hover .cart-item-image {
    transform: scale(1.1);
}

.cart-item-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0.7;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.cart-item-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.cart-item-title a:hover {
    color: var(--secondary-color);
}

.cart-item-price-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.item-unit-price {
    font-size: 0.95rem;
    color: var(--text-light);
}

.item-total-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    padding: 0.5rem;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.1);
}

.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.cart-item-actions {
    display: flex;
    align-items: center;
}

.cart-remove-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 10px;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-remove-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: rotate(90deg);
}

.cart-summary-section {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.cart-summary-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.summary-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.summary-details {
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    font-size: 1rem;
}

.summary-label {
    color: var(--text-light);
    font-weight: 500;
}

.summary-value {
    font-weight: 700;
    color: var(--text-dark);
}

.summary-divider {
    border-top: 1px solid var(--border-color);
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.summary-total-row {
    border-top: 3px solid var(--border-color);
    margin-top: 1rem;
    padding-top: 1.5rem;
    font-size: 1.2rem;
}

.summary-total-row .summary-label {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
}

.cart-subtotal,
.cart-total {
    font-weight: 800;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.summary-total-row .cart-total {
    font-size: 1.8rem;
}

.btn-whatsapp-order {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    margin-bottom: 1rem;
}

.btn-whatsapp-order:hover {
    background: linear-gradient(135deg, #20BA5A 0%, #25D366 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    color: white;
}

.btn-whatsapp-order svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn-continue-shopping {
    width: 100%;
    padding: 1rem 2rem;
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-continue-shopping:hover {
    background: var(--bg-light);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 100px;
    right: 2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid var(--secondary-color);
    max-width: 300px;
}

.cart-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.cart-notification.success {
    border-left-color: #27ae60;
}

.cart-notification.error {
    border-left-color: var(--secondary-color);
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(45deg);
    }
    50% {
        transform: scale(1.2) rotate(45deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

@media (max-width: 968px) {
    .cart-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cart-summary-section {
        position: static;
    }
    
    .cart-item-card {
        grid-template-columns: 100px 1fr;
        gap: 1rem;
    }
    
    .cart-item-quantity-controls,
    .cart-item-actions {
        grid-column: 1 / -1;
        justify-content: center;
    }
    
    .cart-item-image-wrapper {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .cart-page-wrapper {
        padding: 1rem 0 2rem;
    }
    
    .cart-page-title {
        font-size: 2rem;
    }
    
    .cart-items-section,
    .cart-summary-card {
        padding: 1.5rem;
    }
    
    .cart-item-card {
        grid-template-columns: 80px 1fr;
        padding: 1rem;
        gap: 1rem;
    }
    
    .cart-item-image-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .cart-item-title {
        font-size: 1.1rem;
    }
    
    .item-total-price {
        font-size: 1.2rem;
    }
    
    .cart-notification {
        right: 1rem;
        left: 1rem;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .cart-notification.show {
        transform: translateY(0);
    }
}

/* ============================================
   DROPDOWN MENU STYLES
   ============================================ */
.main-menu li.menu-item-has-children {
    position: relative;
}

.main-menu li.menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 0.5rem;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.main-menu li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

.main-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    list-style: none;
    margin-left: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.main-menu li.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mega Menu Styles for Product Groups */
.main-menu li.product-groups-menu {
    position: static !important;
}

.header-container {
    position: relative;
}

.main-menu li.product-groups-menu .mega-menu-wrapper {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: calc(100vw - 4rem);
    max-width: 1200px;
    background: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    margin-top: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.main-menu li.product-groups-menu:hover .mega-menu-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: space-between;
}

.mega-menu-column {
    flex: 1;
    min-width: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mega-menu-group-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(231, 76, 60, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-menu-list > li {
    margin-bottom: 0.5rem;
}

.mega-menu-list > li > a {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    padding: 0.875rem 1.25rem;
    display: block;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    border-left: 3px solid transparent;
}

.mega-menu-list > li > a:hover {
    background: rgba(231, 76, 60, 0.08);
    color: var(--secondary-color);
    padding-left: 1.75rem;
    border-left-color: var(--secondary-color);
    transform: translateX(3px);
}

.menu-count {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    margin-left: 0.25rem;
}

.sub-sub-menu {
    list-style: none;
    margin: 0.5rem 0 0 0;
    padding: 0 0 0 1.5rem;
    border-left: 2px solid rgba(231, 76, 60, 0.2);
}

.sub-sub-menu li {
    margin-bottom: 0.4rem;
}

.sub-sub-menu li a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    padding: 0.5rem 0.75rem;
    display: block;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.sub-sub-menu li a:hover {
    background: rgba(231, 76, 60, 0.05);
    color: var(--secondary-color);
    padding-left: 1rem;
}

.main-menu .sub-menu li {
    margin: 0;
    border-bottom: none;
}

.main-menu .sub-menu li a {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    border-radius: 0;
    display: block;
    transition: all 0.3s ease;
}

.main-menu .sub-menu li a::before,
.main-menu .sub-menu li a::after {
    display: none;
}

.main-menu .sub-menu li a:hover {
    background: rgba(231, 76, 60, 0.1);
    color: var(--secondary-color);
    padding-left: 2rem;
}

.main-menu .sub-menu li:last-child a {
    border-bottom: none;
}

/* ============================================
   PRODUCT GROUPS SECTION
   ============================================ */
.product-groups-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.product-groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-group-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.product-group-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(231, 76, 60, 0.3);
}

.group-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.group-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.group-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-group-card:hover .group-card-image img {
    transform: scale(1.15);
}

.group-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(243, 156, 18, 0.1));
    color: var(--secondary-color);
}

.group-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-group-card:hover .group-card-overlay {
    opacity: 1;
}

.group-view-btn {
    background: white;
    color: var(--primary-color);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.product-group-card:hover .group-view-btn {
    transform: translateY(0);
}

.group-card-info {
    padding: 2rem;
}

.group-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.product-group-card:hover .group-card-title {
    color: var(--secondary-color);
}

.group-card-count {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.group-card-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.no-categories {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 15px;
    color: var(--text-light);
}

@media (max-width: 968px) {
    .product-groups-section {
        padding: 4rem 1.5rem;
    }
    
    .product-groups-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .product-groups-section {
        padding: 3rem 1rem;
    }
    
    .product-groups-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .main-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.02);
        margin-top: 0;
        border-radius: 0;
        padding-left: 1.5rem;
        border: none;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .main-menu li.menu-item-has-children > a::after {
        transform: rotate(0deg);
    }
    
    .main-menu .sub-menu li a {
        padding: 1rem 1.5rem;
    }
    
    .main-menu .sub-menu li a:hover {
        padding-left: 2rem;
    }
}


@media (max-width: 768px) {
    .mega-menu-wrapper {
        position: static;
        transform: none;
        max-width: 100%;
        padding: 1.5rem 1rem;
        margin-top: 0;
        border-radius: 0;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.02);
        border: none;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .product-groups-menu:hover .mega-menu-wrapper {
        transform: none;
    }
    
    .mega-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mega-menu-column {
        width: 100%;
    }
    
    .mega-menu-list > li > a {
        padding: 1rem 1.5rem;
    }
    
    .sub-sub-menu {
        padding-left: 2rem;
        margin-top: 0.5rem;
    }
}

/* ============================================
   PRODUCT GROUPS SECTION - MODERN DESIGN (3 COLUMNS)
   ============================================ */
.product-groups-section {
    padding: 6rem 2rem;
    background: #ffffff;
    position: relative;
}

.product-groups-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.product-group-card-modern {
    background: white;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-group-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.group-card-link-modern {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.group-image-modern {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f5f5f5;
}

.group-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-group-card-modern:hover .group-image-modern img {
    transform: scale(1.1);
}

.group-placeholder-modern {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05), rgba(243, 156, 18, 0.05));
    color: #999;
}

.group-content-modern {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.group-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s ease;
}

.group-title-modern .group-arrow {
    color: #e74c3c;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.product-group-card-modern:hover .group-title-modern {
    color: #c0392b;
}

.product-group-card-modern:hover .group-title-modern .group-arrow {
    color: #c0392b;
    transform: translateX(5px);
}

.group-desc-modern {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
    flex: 1;
}

.group-count-modern {
    display: inline-block;
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
    margin-top: auto;
}

@media (max-width: 1200px) {
    .product-groups-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-groups-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .group-content-modern {
        padding: 1.5rem;
    }
    
    .group-title-modern {
        font-size: 1.3rem;
    }
}

/* ============================================
   PRODUCT GROUPS - GROUPED BY HEADINGS (Dış Cephe, İç Cephe, Otantik Ürünler)
   ============================================ */
.product-group-section {
    margin-bottom: 4rem;
}

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

.product-group-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #e74c3c;
    position: relative;
}

.product-group-heading::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
    background: #c0392b;
}

.product-groups-grid-grouped {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-category-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.15);
    border-color: #e74c3c;
}

.category-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.category-images-gallery {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f5f5f5;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2px;
}

.category-image-item {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

.category-image-item.main-image {
    grid-column: 1 / -1;
    grid-row: 1 / 2;
}

.category-image-item:not(.main-image) {
    grid-column: auto;
    grid-row: 2 / 3;
}

.category-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-category-card:hover .category-image-item img {
    transform: scale(1.1);
}

.category-image-item.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05), rgba(243, 156, 18, 0.05));
    color: #999;
}

.category-image-item.placeholder svg {
    width: 60px;
    height: 60px;
}

/* Tek görsel varsa tam genişlik - fallback */
.category-images-gallery .category-image-item:only-child {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
}

.category-card-content {
    padding: 1.5rem;
}

.category-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.product-category-card:hover .category-card-title {
    color: #e74c3c;
}

.category-card-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.category-card-count {
    display: inline-block;
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .product-groups-grid-grouped {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .product-group-heading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .product-groups-grid-grouped {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-group-heading {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .category-card-content {
        padding: 1.25rem;
    }
    
    .category-card-title {
        font-size: 1.2rem;
    }
}

/* ============================================
   PRODUCTS PAGE - SIDEBAR FILTERS
   ============================================ */
.products-page-layout {
    display: grid !important;
    grid-template-columns: 280px 1fr !important;
    gap: 3rem;
    margin-top: 2rem;
    align-items: start;
    width: 100%;
}

.products-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
    height: fit-content;
    display: block !important;
    width: 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0;
    z-index: 10;
}

.sidebar-filters {
    background: #f8f9fa;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    display: block !important;
    width: 100% !important;
    min-height: 200px;
    position: relative;
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 3px solid #e74c3c;
    background: white;
}

.filter-group {
    margin: 0;
    padding: 0;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    padding: 1rem 1.5rem 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #f8f9fa;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: white;
}

.filter-list li {
    margin: 0;
}

.filter-link {
    display: block;
    padding: 0.875rem 1.5rem;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    font-size: 0.95rem;
    background: #f5f5f5;
    margin-bottom: 2px;
    font-weight: 500;
}

.filter-link:hover {
    background: white;
    color: #e74c3c;
    border-left-color: #e74c3c;
    padding-left: 1.75rem;
}

.filter-link.active {
    background: white;
    color: #e74c3c;
    border-left-color: #e74c3c;
    font-weight: 600;
    padding-left: 1.75rem;
}

.category-count {
    color: #999;
    font-size: 0.85rem;
    font-weight: normal;
    margin-left: 0.5rem;
}

.filter-link.active .category-count {
    color: #e74c3c;
}

.products-main-content {
    min-width: 0;
}

.products-main-content .archive-header {
    margin-bottom: 2rem;
}

.products-main-content .archive-title {
    color: #e74c3c;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.products-main-content .archive-description {
    color: #666;
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .products-page-layout {
        grid-template-columns: 240px 1fr;
        gap: 2rem;
    }
    
    .sidebar-filters {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .products-page-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .products-sidebar {
        position: static !important;
        order: 2;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
    }
    
    .products-main-content {
        order: 1;
    }
    
    .sidebar-filters {
        padding: 1.5rem;
    }
    
    .filter-group-title {
        font-size: 1rem;
    }
    
    .filter-link {
        padding: 0.65rem 0.85rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   PRODUCT GROUPS PAGE - POLIPUDEKOR STYLE
   ============================================ */
.product-groups-page-section {
    margin-top: 3rem;
}

.product-groups-grid-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.product-group-block {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.product-group-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.15);
    border-color: #e74c3c;
}

.group-block-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f5f5f5;
}

.group-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-group-block:hover .group-block-image img {
    transform: scale(1.1);
}

.group-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05), rgba(243, 156, 18, 0.05));
    color: #999;
}

.group-block-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.group-block-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.group-block-title {
    font-size: 2rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #e74c3c;
    transition: color 0.3s ease;
}

.product-group-block:hover .group-block-title {
    color: #e74c3c;
}

.group-block-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.group-block-count {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: auto;
}

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

.group-categories-list li {
    margin: 0;
}

.group-categories-list li a {
    display: block;
    padding: 0.75rem 1rem;
    color: #666;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.02);
}

.group-categories-list li a:hover {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border-left-color: #e74c3c;
    padding-left: 1.25rem;
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .product-groups-grid-large {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .group-block-content {
        padding: 1.5rem;
    }
    
    .group-block-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .product-groups-grid-large {
        gap: 1.5rem;
    }
    
    .group-block-content {
        padding: 1.25rem;
    }
    
    .group-block-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .group-categories-list li a {
        padding: 0.65rem 0.85rem;
        font-size: 0.95rem;
    }
}
