/* ===========================
   CAMILA'S GIFTS — STYLESHEET
   =========================== */

:root {
    --rose-50: #fff5f7;
    --rose-100: #ffe4e9;
    --rose-200: #ffc9d4;
    --rose-300: #ff9eb3;
    --rose-400: #ff6b8f;
    --rose-500: #ff3d71;
    --rose-600: #f01757;
    --rose-700: #c40d44;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-500: #737373;
    --gray-700: #404040;
    --gray-900: #171717;
    --shadow-sm: 0 2px 10px rgba(255, 61, 113, 0.08);
    --shadow-md: 0 8px 30px rgba(255, 61, 113, 0.15);
    --shadow-lg: 0 20px 50px rgba(255, 61, 113, 0.25);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: var(--white);
    color: var(--gray-700);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    animation: slideDown 0.5s ease;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    font-family: 'Satisfy', 'Brush Script MT', cursive;
    font-size: 2.5rem;
    color: var(--rose-500);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.04);
}

.logo::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--rose-100);
    z-index: -1;
    border-radius: 4px;
    opacity: 0.7;
}

.nav {
    display: flex;
    gap: 1.8rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rose-500);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--rose-500);
}

.nav a:hover::after {
    width: 100%;
}

.nav a.active {
    color: var(--rose-500);
}

.cta-button {
    background: linear-gradient(135deg, var(--rose-400) 0%, var(--rose-600) 100%);
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 61, 113, 0.3);
}

.cta-button::after {
    display: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 61, 113, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--rose-500);
    cursor: pointer;
    padding: 0.4rem 0.8rem;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    min-height: 100vh;
    padding: 8rem 5% 4rem;
    background: linear-gradient(135deg, var(--rose-50) 0%, #fff 50%, var(--rose-100) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--rose-200) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.circle-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -100px;
    animation: pulse 6s ease-in-out infinite;
}

.circle-2 {
    width: 350px;
    height: 350px;
    bottom: -50px;
    left: -50px;
    animation: pulse 8s ease-in-out infinite reverse;
}

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

.hero-content {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.highlight {
    background: linear-gradient(120deg, var(--rose-200) 0%, var(--rose-200) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 88%;
    color: var(--rose-600);
    font-style: italic;
    padding: 0 0.2em;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--gray-700);
    margin-bottom: 2.2rem;
    max-width: 540px;
    line-height: 1.7;
}

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

.btn-primary, .btn-secondary {
    padding: 0.95rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--rose-400) 0%, var(--rose-600) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 61, 113, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 61, 113, 0.45);
}

.btn-secondary {
    background: white;
    color: var(--rose-500);
    border: 2px solid var(--rose-500);
}

.btn-secondary:hover {
    background: var(--rose-500);
    color: white;
    transform: translateY(-3px);
}

/* Hero image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(-2deg);
    transition: transform 0.5s ease;
    position: relative;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(255, 61, 113, 0.1));
    z-index: 1;
    pointer-events: none;
}

.hero-image-container:hover {
    transform: rotate(0deg) scale(1.02);
}

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

.floating-badge {
    position: absolute;
    background: white;
    padding: 1rem 1.4rem;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    animation: floatBadge 4s ease-in-out infinite;
    font-weight: 600;
    color: var(--rose-600);
    z-index: 2;
    text-align: center;
}

.badge-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 15%;
    right: -10%;
    animation-delay: 1s;
    background: white;
    color: var(--gray-700);
}

.badge-emoji {
    font-size: 1.6rem;
}

.badge-rating {
    font-weight: 700;
    color: var(--rose-500);
    font-size: 1.2rem;
}

.badge-label {
    font-size: 0.78rem;
    color: var(--gray-500);
    font-weight: 500;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ===========================
   SECTIONS — SHARED
   =========================== */
.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 3.5rem;
}

.section-header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--gray-900);
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.section-header h2 span {
    color: var(--rose-500);
    font-style: italic;
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.05rem;
}

/* ===========================
   CATEGORIES
   =========================== */
.categories {
    padding: 5rem 5%;
    background: var(--white);
}

.categories-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.category-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    display: flex;
    flex-direction: column;
}

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

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

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

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

.category-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.15));
    pointer-events: none;
}

.category-content {
    padding: 1.5rem 1.5rem 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-content h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.category-content p {
    color: var(--gray-500);
    font-size: 0.92rem;
    line-height: 1.55;
    flex: 1;
}

.category-cta {
    margin-top: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 0.7rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    user-select: none;
}

.category-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
    filter: brightness(1.05);
}

.category-cta:focus-visible {
    outline: 3px solid var(--rose-300);
    outline-offset: 3px;
}

.category-card:hover .category-cta {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.category-cta svg {
    flex-shrink: 0;
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.category-card:hover .cta-arrow {
    transform: translateX(4px);
}

/* ===========================
   FEATURED PRODUCTS
   =========================== */
.featured-products {
    padding: 5rem 5%;
    background: linear-gradient(180deg, var(--rose-50) 0%, white 100%);
}

.products-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.product-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

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

.product-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    background: var(--rose-50);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--rose-600);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    letter-spacing: 0.02em;
}

.product-info {
    padding: 1.4rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.product-info p {
    color: var(--gray-500);
    font-size: 0.92rem;
    margin-bottom: 1.2rem;
    line-height: 1.55;
    flex: 1;
}

.product-btn {
    width: 100%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 0.85rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* ===========================
   ABOUT
   =========================== */
.about {
    padding: 5rem 5%;
    background: white;
}

.about-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-text h2 span {
    color: var(--rose-500);
    font-style: italic;
}

.about-text p {
    color: var(--gray-700);
    margin-bottom: 1.2rem;
    font-size: 1.02rem;
    line-height: 1.75;
}

.about-text strong {
    color: var(--rose-600);
    font-weight: 700;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--rose-100);
}

.stat {
    text-align: center;
    position: relative;
}

.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: 2.6rem;
    font-weight: 400;
    color: var(--rose-500);
    line-height: 1;
}

.stat-suffix {
    font-family: 'DM Serif Display', serif;
    font-size: 2.2rem;
    color: var(--rose-500);
    line-height: 1;
    margin-left: 0.05em;
}

.stat-label {
    color: var(--gray-500);
    font-size: 0.88rem;
    font-weight: 600;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.about-image img:hover {
    transform: rotate(0deg) scale(1.02);
}

/* ===========================
   FAQ
   =========================== */
.faq {
    padding: 5rem 5%;
    background: linear-gradient(180deg, white 0%, var(--rose-50) 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    border: 1px solid var(--rose-100);
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(255, 61, 113, 0.1);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.3rem 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--rose-500);
}

.faq-icon {
    color: var(--rose-500);
    font-size: 1.6rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.4rem;
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-answer p {
    margin-top: 0.3rem;
}

.faq-answer strong {
    color: var(--rose-600);
}

/* ===========================
   CONTACT
   =========================== */
.contact {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--gray-900) 0%, #2a1418 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 61, 113, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 61, 113, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: -0.02em;
}

.contact-info h2 span {
    color: var(--rose-400);
    font-style: italic;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.55;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--rose-400) 0%, var(--rose-600) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 61, 113, 0.3);
}

.contact-item strong {
    color: white;
    font-size: 1.02rem;
}

/* Map */
.map-container {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
    display: block;
    filter: grayscale(0.2) contrast(1.05);
}

.map-link {
    display: block;
    text-align: center;
    padding: 0.85rem;
    background: rgba(255, 61, 113, 0.15);
    color: var(--rose-300);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.map-link:hover {
    background: rgba(255, 61, 113, 0.25);
    color: white;
}

/* Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.2rem;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.45rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9rem;
}

.required {
    color: var(--rose-400);
}

.form-group input,
.form-group textarea,
.form-group select,
.form-group input[type="date"] {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.98rem;
    transition: all 0.3s ease;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23ff6b8f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: #2a1418;
    color: white;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
    opacity: 0.7;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--rose-400);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(255, 61, 113, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Quicksand', sans-serif;
}

/* Form validation states */
.form-group.is-valid input,
.form-group.is-valid textarea {
    border-color: rgba(34, 197, 94, 0.5);
}

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.form-error {
    display: block;
    color: #fca5a5;
    font-size: 0.82rem;
    margin-top: 0.4rem;
    min-height: 1em;
    font-weight: 500;
}

.textarea-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 0.4rem;
}

.char-counter {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.char-counter.warning {
    color: #fbbf24;
}

.char-counter.danger {
    color: #ef4444;
    font-weight: 600;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--rose-400) 0%, var(--rose-600) 100%);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.6rem;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: 0 6px 20px rgba(255, 61, 113, 0.35);
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 61, 113, 0.5);
}

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

.submit-btn.loading {
    pointer-events: none;
    opacity: 0.85;
}

.submit-btn.loading .btn-text::after {
    content: '...';
    animation: loadingDots 1.4s infinite;
}

@keyframes loadingDots {
    0%, 80%, 100% { opacity: 0.3; }
    40% { opacity: 1; }
}

.form-success {
    margin-top: 1rem;
    padding: 1rem 1.2rem;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 12px;
    color: #86efac;
    display: none;
    align-items: center;
    gap: 0.7rem;
    animation: slideUp 0.4s ease;
}

.form-success.show {
    display: flex;
}

.success-icon {
    width: 32px;
    height: 32px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--gray-900);
    color: white;
    padding: 4rem 5% 1.5rem;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-brand h3 {
    font-family: 'Satisfy', 'Brush Script MT', cursive;
    font-size: 2.2rem;
    color: var(--rose-400);
    margin-bottom: 1rem;
    font-weight: 400;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.2rem;
    line-height: 1.65;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--rose-500);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 61, 113, 0.4);
}

.footer-section h4 {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

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

.footer-section ul li {
    margin-bottom: 0.55rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.92rem;
}

.footer-section ul li a:hover {
    color: var(--rose-400);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===========================
   FLOATING ELEMENTS
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    animation: floatWA 3s ease-in-out infinite;
    text-decoration: none;
}

@keyframes floatWA {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.03); }
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 3px solid #25D366;
    opacity: 0;
    animation: waRing 2.5s ease-in-out infinite;
}

@keyframes waRing {
    0% { opacity: 0.6; transform: scale(0.85); }
    100% { opacity: 0; transform: scale(1.35); }
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg) !important;
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-float svg {
    width: 33px;
    height: 33px;
    fill: white;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--rose-400), var(--rose-600));
    z-index: 1002;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(255, 61, 113, 0.5);
}

.scroll-top-btn {
    position: fixed;
    bottom: 105px;
    right: 35px;
    width: 46px;
    height: 46px;
    background: var(--rose-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(255,61,113,0.35);
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
    border: none;
    color: white;
    font-size: 22px;
    font-weight: bold;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(255,61,113,0.45);
    background: var(--rose-600);
}

/* ===========================
   MOBILE NAV
   =========================== */
.mobile-nav {
    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);
    z-index: 1001;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--gray-900);
    font-size: 1.4rem;
    font-weight: 600;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    background: var(--rose-100);
    color: var(--rose-500);
}

.mobile-nav .mobile-cta {
    margin-top: 1rem;
    color: white !important;
}

.mobile-nav .close-menu {
    position: absolute;
    top: 1.3rem;
    right: 1.3rem;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: var(--gray-900);
    cursor: pointer;
    padding: 0.3rem 0.6rem;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .categories-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav {
        gap: 1.2rem;
    }

    .nav a {
        font-size: 0.9rem;
    }
}

@media (max-width: 968px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero {
        min-height: auto;
        padding: 7rem 5% 4rem;
    }

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

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
        margin-bottom: 1rem;
    }

    .hero-image-container {
        max-width: 380px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .about-image img {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .header {
        padding: 0.85rem 5%;
    }

    .logo {
        font-size: 2rem;
    }

    .hero {
        padding: 6rem 5% 3rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .floating-badge {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }

    .badge-1 {
        left: 0;
    }

    .badge-2 {
        right: 0;
    }

    .categories,
    .featured-products,
    .about,
    .faq,
    .contact {
        padding: 3.5rem 5%;
    }

    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: auto;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-stats {
        gap: 1rem;
        padding-top: 2rem;
        margin-top: 2rem;
    }

    .stat-number,
    .stat-suffix {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.5rem 1.2rem;
    }

    .whatsapp-float {
        bottom: 18px;
        right: 18px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .scroll-top-btn {
        bottom: 88px;
        right: 22px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .faq-item summary {
        padding: 1.1rem 1.2rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1.2rem 1.2rem;
        font-size: 0.9rem;
    }
}

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

    .section-header h2 {
        font-size: 1.7rem;
    }

    .logo {
        font-size: 1.7rem;
    }

    .floating-badge {
        font-size: 0.78rem;
        padding: 0.6rem 0.85rem;
    }
}

/* Touch optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn-primary,
    .btn-secondary,
    .product-btn,
    .submit-btn,
    .cta-button {
        min-height: 44px;
    }

    .category-card:hover .category-image img,
    .product-card:hover .product-image img {
        transform: none;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}