/* ============================================
   Blink Accessories - Landing Page Stylesheet
   Pink Pastel Theme with Glassmorphism
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --pink-pastel: #F8B4C8;
    --pink-light: #FFD4E5;
    --pink-dark: #E8849C;
    --pink-deep: #D4607C;
    --lavender: #D8B4F8;
    --lavender-light: #ECD4FF;
    --mint: #B4F8D8;
    --mint-light: #D4FFE8;
    --sky: #B4D8F8;
    --sky-light: #D4ECFF;
    --cream: #FFF8F0;
    --yellow-pastel: #F8E4B4;
    --coral-pastel: #F8B4B4;
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-400: #BDBDBD;
    --gray-600: #757575;
    --gray-800: #424242;
    --gray-900: #212121;
    --shadow-sm: 0 2px 8px rgba(248, 180, 200, 0.15);
    --shadow-md: 0 4px 20px rgba(248, 180, 200, 0.2);
    --shadow-lg: 0 8px 40px rgba(248, 180, 200, 0.25);
    --shadow-xl: 0 12px 60px rgba(248, 180, 200, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Poppins', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* ---------- Gradient Text ---------- */
.gradient-text {
    background: linear-gradient(135deg, var(--pink-pastel), var(--lavender), var(--pink-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Section Badge ---------- */
.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, var(--pink-light), var(--lavender-light));
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--pink-deep);
    margin-bottom: 12px;
}

/* ---------- Section Header ---------- */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.section-header p {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink-pastel), var(--pink-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(248, 180, 200, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(248, 180, 200, 0.5);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.8);
    color: var(--pink-deep);
    border: 2px solid var(--pink-pastel);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--pink-light);
    transform: translateY(-2px);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--pink-deep);
    text-decoration: none;
}

.nav-logo i {
    color: var(--pink-pastel);
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.2) rotate(15deg); opacity: 0.8; }
}

.nav-logo span {
    background: linear-gradient(135deg, var(--pink-pastel), var(--lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pink-pastel), var(--lavender));
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--pink-deep);
}

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

.nav-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--pink-pastel), var(--lavender));
    color: var(--white);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(248, 180, 200, 0.3);
}

.nav-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(248, 180, 200, 0.4);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--pink-deep);
    cursor: pointer;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #FFF0F5 0%, #FDE8F0 30%, #F0E6FF 60%, #E8F4FD 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--pink-pastel), transparent);
    top: 10%; left: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, var(--lavender), transparent);
    top: 60%; right: -3%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px; height: 150px;
    background: radial-gradient(circle, var(--mint), transparent);
    bottom: 20%; left: 30%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px; height: 100px;
    background: radial-gradient(circle, var(--yellow-pastel), transparent);
    top: 20%; right: 20%;
    animation-delay: 1s;
}

.shape-5 {
    width: 180px; height: 180px;
    background: radial-gradient(circle, var(--sky), transparent);
    top: 40%; left: 50%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--pink-deep);
    border: 1px solid rgba(248, 180, 200, 0.3);
    margin-bottom: 16px;
    animation: fadeInDown 0.8s ease;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--pink-deep), var(--lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Hero Visual - Floating cards */
.hero-visual {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-pastel), var(--lavender));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-xl);
    z-index: 2;
    animation: pulse 3s ease-in-out infinite;
}

.hero-main-circle i {
    font-size: 2rem;
    margin-bottom: 4px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: var(--shadow-xl); }
    50% { transform: scale(1.05); box-shadow: 0 16px 80px rgba(248, 180, 200, 0.4); }
}

.hero-card {
    position: absolute;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(248, 180, 200, 0.2);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-800);
    transition: var(--transition);
    animation: floatCard 4s ease-in-out infinite;
}

.hero-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.hero-card i {
    font-size: 1.3rem;
}

.hero-card-1 {
    top: 20px; left: 10%;
    animation-delay: 0s;
}
.hero-card-1 i { color: var(--pink-pastel); }

.hero-card-2 {
    top: 40%; right: 5%;
    animation-delay: 1s;
}
.hero-card-2 i { color: var(--sky); }

.hero-card-3 {
    bottom: 60px; left: 5%;
    animation-delay: 2s;
}
.hero-card-3 i { color: var(--mint); }

.hero-card-4 {
    bottom: 20px; right: 15%;
    animation-delay: 3s;
}
.hero-card-4 i { color: var(--yellow-pastel); }

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

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products-section {
    padding: 80px 0;
    background: var(--white);
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.cat-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    background: var(--white);
    font-family: var(--font);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}

.cat-tab:hover {
    border-color: var(--pink-pastel);
    color: var(--pink-deep);
    background: var(--pink-light);
}

.cat-tab.active {
    background: linear-gradient(135deg, var(--pink-pastel), var(--lavender));
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(248, 180, 200, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(248, 180, 200, 0.15);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.product-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pink-pastel);
}

.product-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image i {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-card:hover .product-image i {
    transform: scale(1.15) rotate(5deg);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--pink-deep);
}

.product-badge.custom-badge {
    background: linear-gradient(135deg, var(--pink-pastel), var(--lavender));
    color: var(--white);
}

.product-info {
    padding: 20px;
}

.product-cat {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--pink-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.product-info h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.product-info p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 12px;
    line-height: 1.5;
}

.product-price {
    font-size: 1.15rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pink-deep), var(--lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   DIY SECTION
   ============================================ */
.diy-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF5F8 0%, #F8F0FF 50%, #F0F8FF 100%);
}

.diy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.diy-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.diy-text > p {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.7;
}

.diy-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.diy-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(248, 180, 200, 0.15);
    transition: var(--transition);
    opacity: 0;
    transform: translateX(-20px);
}

.diy-feature.animate-in {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.diy-feature:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.diy-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--pink-light), var(--lavender-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.diy-feature-icon i {
    font-size: 1.2rem;
    color: var(--pink-deep);
}

.diy-feature h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.diy-feature p {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.diy-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.diy-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-xl);
    padding: 36px;
    border: 1px solid rgba(248, 180, 200, 0.2);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 350px;
}

.diy-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.diy-step:hover {
    background: var(--pink-light);
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-pastel), var(--lavender));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.diy-step span {
    font-weight: 500;
    color: var(--gray-800);
}

.diy-price-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--pink-pastel), var(--lavender));
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(248, 180, 200, 0.3);
}

.diy-price-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.diy-price-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
}

.about-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid rgba(248, 180, 200, 0.15);
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.about-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pink-pastel);
}

.about-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--pink-light), var(--lavender-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.about-icon i {
    font-size: 1.6rem;
    color: var(--pink-deep);
}

.about-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.about-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF5F8 0%, #FFF0FF 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.contact-info > p {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(248, 180, 200, 0.15);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(15px);
}

.contact-item.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--pink-light), var(--lavender-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--pink-deep);
}

.contact-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.contact-map {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    width: 100%;
    height: 320px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--pink-light), var(--lavender-light));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px dashed var(--pink-pastel);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--pink-deep);
    margin-bottom: 16px;
}

.map-placeholder h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pink-deep);
    margin-bottom: 8px;
}

.map-placeholder p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo i {
    color: var(--pink-pastel);
}

.footer-logo span {
    color: var(--pink-pastel);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--pink-pastel);
    padding-left: 4px;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
}

.footer-bottom i {
    color: var(--pink-pastel);
}

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

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-md);
        border-bottom: 2px solid var(--pink-light);
    }

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

    .nav-login-btn {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        margin: 0 auto 24px;
    }

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

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

    .hero-visual {
        height: 300px;
    }

    .hero-main-circle {
        width: 120px;
        height: 120px;
        font-size: 1rem;
    }

    .hero-card {
        padding: 12px 16px;
        font-size: 0.8rem;
    }

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

    .diy-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .diy-text h2 {
        font-size: 1.8rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

    .category-tabs {
        gap: 6px;
    }

    .cat-tab {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
}

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

    .container {
        padding: 0 16px;
    }

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

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

/* ============================================
   WHATSAPP INTEGRATION
   ============================================ */

/* Product Footer with WA Button */
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 4px;
}

.wa-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    background: #25D366;
    color: white;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.wa-order-btn:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.wa-order-btn i {
    font-size: 1rem;
}

/* Floating WhatsApp Button */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
    animation: waFloat 3s ease-in-out infinite;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

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