/* ===== CSS ORGANIZADO - CASCADA CORRECTA ===== */
/* Cache-Control: no-cache, no-store, must-revalidate */
/* Pragma: no-cache */
/* Expires: 0 */

/* 1. RESET Y BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #CB6CE6;
    --brand-color: #CB6CE6;
    --secondary-color: #f39c12;
    --accent-color: #d35400;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #fdf2e9;
    --white: #ffffff;
    --gradient-warm: linear-gradient(135deg, #CB6CE6, #f39c12);
    --gradient-soft: linear-gradient(135deg, #fdf2e9, #ffffff);
    --shadow-soft: 0 4px 20px rgba(203, 108, 230, 0.1);
    --shadow-medium: 0 8px 30px rgba(203, 108, 230, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    padding-top: 80px;
}

body.menu-open {
    overflow: hidden;
}

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

/* 2. TIPOGRAFÍA */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Graduate', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

/* 3. NAVEGACIÓN MODERNA */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(203, 108, 230, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(203, 108, 230, 0.15);
}

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    position: relative;
    z-index: 1001;
}

.nav-logo img {
    height: 60px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(203, 108, 230, 0.2));
}

.nav-logo:hover img {
    transform: scale(1.05) rotate(-2deg);
    filter: drop-shadow(0 8px 16px rgba(203, 108, 230, 0.4));
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-warm);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::before {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    background: transparent;
    border: none;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    z-index: 1001;
}

.hamburger:hover {
    background: rgba(203, 108, 230, 0.1);
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger.active .hamburger-line {
    background: var(--white);
}

.hamburger-line:not(:last-child) {
    margin-bottom: 4px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* 4. BREADCRUMBS PROFESIONALES */
.breadcrumbs {
    background: var(--white);
    border-bottom: 1px solid rgba(203, 108, 230, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 80px;
    z-index: 999;
    transition: var(--transition);
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.breadcrumb-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--primary-color);
}

.breadcrumb-link:hover::after {
    width: 100%;
}

.breadcrumb-current {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

.breadcrumb-current::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.breadcrumb-separator {
    color: var(--text-light);
    font-size: 0.8rem;
    opacity: 0.6;
    margin: 0 0.5rem;
}

/* 5. HERO SECTION */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('img/hero2.png?v=1');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    font-family: 'Graduate', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-accent {
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* 6. BOTONES CTA */
.cta-primary, .cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 126, 34, 0.4);
}

.cta-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

/* 7. SECCIONES PRINCIPALES */
section {
    padding: 4rem 0;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    max-width: 500px;
}

.about-image img {
    width: 100%;
    height: 530px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

/* Unique Section */
.unique-section {
    background: var(--bg-light);
}

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

.unique-item {
    background: var(--white);
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    overflow: hidden;
}

.unique-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.unique-item img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: var(--transition);
}

.unique-item:hover img {
    transform: scale(1.05);
}

.unique-item-content {
    padding: 2rem;
}

/* Why Choose Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-light);
}

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

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Utility Classes */
.brand-accent {
    color: var(--primary-color);
}

.ilen-text {
    font-family: 'Graduate', serif;
    color: var(--primary-color);
}

.internal-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.internal-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* CATALOG STYLES */
/* Catalog Hero */
.catalog-hero {
    background: var(--gradient-soft);
    padding: 4rem 0;
    text-align: center;
}

.catalog-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.catalog-hero p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Filters Section */
.filters-section {
    background: var(--white);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(203, 108, 230, 0.1);
}

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

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* Products Grid */
.catalog-gallery {
    padding: 4rem 0;
}

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

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(203, 108, 230, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(203, 108, 230, 0.25);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

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

.product-card:hover .product-image img {
    transform: scale(1.08);
    filter: brightness(1.05) saturate(1.1);
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(203, 108, 230, 0.1), rgba(243, 156, 18, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-info {
    padding: 2rem;
    text-align: center;
}

.product-info h3 {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 600;
}

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

.product-btn {
    display: inline-block;
    background: var(--gradient-warm);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(203, 108, 230, 0.4);
}

/* Modal de Imagen */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    overflow: auto;
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.image-modal-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-modal.active .image-modal-content {
    transform: scale(1);
}

.image-modal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.image-modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

/* Catalog Info Section */
.catalog-info {
    background: var(--bg-light);
    padding: 4rem 0;
}

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

.info-item {
    background: var(--white);
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-warm);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* AMIGURUMIS PAGE STYLES */
.amigurumi-hero {
    background: var(--gradient-soft);
    padding: 4rem 0;
}

.amigurumi-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.amigurumi-hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.amigurumi-hero-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.amigurumi-hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.amigurumi-process {
    padding: 4rem 0;
    background: var(--white);
}

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

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

.amigurumi-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.amigurumi-step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-warm);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.amigurumi-gallery {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-light), rgba(203, 108, 230, 0.05));
    overflow: hidden;
    position: relative;
}

.amigurumi-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(203, 108, 230, 0.03) 100%);
    pointer-events: none;
}

.amigurumi-gallery-container {
    margin-top: 4rem;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.amigurumi-gallery-container::before,
.amigurumi-gallery-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.amigurumi-gallery-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
}

.amigurumi-gallery-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
}

.amigurumi-gallery-track {
    display: flex;
    animation: amigurumiScroll 15s linear infinite;
    gap: 2rem;
}

.amigurumi-gallery-track.paused {
    animation-play-state: paused;
}

.amigurumi-gallery-item {
    flex: 0 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(203, 108, 230, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.amigurumi-gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(203, 108, 230, 0.1), rgba(243, 156, 18, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.amigurumi-gallery-item:hover::before {
    opacity: 1;
}

.amigurumi-gallery-item img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 0;
}

.amigurumi-gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(203, 108, 230, 0.25);
}

.amigurumi-gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.1) saturate(1.2);
}

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

.amigurumi-features {
    padding: 4rem 0;
    background: var(--white);
}

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

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

.amigurumi-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

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

.amigurumi-feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.amigurumi-testimonials {
    padding: 4rem 0;
    background: var(--gradient-soft);
}

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

.amigurumi-testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: var(--transition);
}

.amigurumi-testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.amigurumi-testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
    opacity: 0.3;
}

.amigurumi-testimonial-author {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: right;
}

.amigurumi-final-cta {
    background: var(--gradient-warm);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.amigurumi-final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.amigurumi-final-cta p {
    font-size: 1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.amigurumi-cta-primary {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.amigurumi-cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.amigurumi-cta-primary:hover,
.amigurumi-cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.amigurumi-cta-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* 8. FOOTER */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 200px 200px 1fr 200px;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
    justify-items: start;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

.footer-logo-image {
    height: 200px;
    width: auto;
    transition: var(--transition);
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    transition: var(--transition);
}

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

/* 9. RESPONSIVE - MOBILE FIRST */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(44, 62, 80, 0.97), rgba(52, 73, 94, 0.97));
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-menu.active {
        left: 0;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .nav-link {
        color: var(--white);
        font-size: 1.5rem;
        font-weight: 700;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 1rem 2rem;
        border-radius: 12px;
        position: relative;
    }
    
    .nav-menu.active .nav-link {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-menu.active .nav-list li:nth-child(1) .nav-link { transition-delay: 0.1s; }
    .nav-menu.active .nav-list li:nth-child(2) .nav-link { transition-delay: 0.2s; }
    .nav-menu.active .nav-list li:nth-child(3) .nav-link { transition-delay: 0.3s; }
    .nav-menu.active .nav-list li:nth-child(4) .nav-link { transition-delay: 0.4s; }
    
    .nav-link::before {
        background: var(--white);
    }
    
    .nav-link:hover {
        color: var(--text-dark);
        background: rgba(255, 255, 255, 0.95);
        transform: translateY(-5px) scale(1.05);
        text-shadow: none;
        box-shadow: 0 8px 25px rgba(203, 108, 230, 0.3);
    }
    
    .hero-section {
        height: 80vh;
        margin-top: -80px;
        padding-top: 80px;
    }
    
    .breadcrumbs {
        padding: 0.8rem 0;
        position: relative;
        top: auto;
    }
    
    .breadcrumb-container {
        padding: 0 1rem;
    }
    
    .breadcrumb-nav {
        font-size: 0.85rem;
        justify-content: flex-start;
    }
    
    .breadcrumb-separator {
        margin: 0 0.3rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    p {
        font-size: 0.95rem;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100vh;
        min-height: 100vh;
        padding: 2rem 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    /* About Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-image img {
        height: 300px;
    }
    
    /* Unique Mobile */
    .unique-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Benefits Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        justify-items: center;
    }
    
    .footer-logo-image {
        height: 120px;
    }
    
    /* Catalog Mobile */
    .catalog-hero h1 {
        font-size: 1.8rem;
    }
    
    .filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .product-image {
        height: 380px;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .image-modal-close {
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        background: rgba(0, 0, 0, 0.7);
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    /* Amigurumis Mobile */
    .amigurumi-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .amigurumi-hero-text h1 {
        font-size: 1.8rem;
    }
    
    .amigurumi-hero-image img {
        height: 300px;
        object-fit: cover;
    }
    
    .amigurumi-process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .amigurumi-gallery-track {
        animation-duration: 12s;
        gap: 1.5rem;
    }
    
    .amigurumi-gallery-item img {
        width: 280px;
        height: 280px;
    }
    
    .amigurumi-gallery-container::before,
    .amigurumi-gallery-container::after {
        width: 50px;
    }
    
    .amigurumi-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .amigurumi-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .amigurumi-final-cta h2 {
        font-size: 1.8rem;
    }
    
    .amigurumi-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .amigurumi-cta-primary,
    .amigurumi-cta-secondary {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-content {
        width: 95%;
        padding: 0 2.5%;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    p {
        font-size: 0.9rem;
    }
    
    .cta-primary, .cta-secondary {
        width: 95%;
        max-width: none;
    }
    
    .footer-logo-image {
        height: 100px;
    }
}