/* ========================================
   INAURA PROFESSIONAL - Company Profile
   Modern, Clean, Responsive with SVG Graphics
   ======================================== */

/* CSS Variables */
:root {
    --color-primary: #1a1a1a;
    --color-secondary: #c9a96e;
    --color-secondary-dark: #b8945a;
    --color-accent: #d4af37;
    --color-white: #ffffff;
    --color-light: #f8f6f3;
    --color-gray: #6b6b6b;
    --color-gray-light: #e5e5e5;
    --color-dark: #111111;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-primary);
    line-height: 1.7;
    background: var(--color-white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img, svg {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section */
.section {
    padding: 100px 0;
}

.bg-light {
    background: var(--color-light);
}

.bg-dark {
    background: var(--color-dark);
    color: var(--color-white);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.section-title .highlight {
    color: var(--color-secondary);
}

.bg-dark .section-title {
    color: var(--color-white);
}

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

.bg-dark .section-subtitle {
    color: rgba(255,255,255,0.7);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--color-secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--color-secondary);
    background: var(--color-secondary);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-sm:hover {
    background: var(--color-secondary);
}

.btn-full {
    width: 100%;
}

.btn-shopee {
    background: #ee4d2d;
    color: white;
}

.btn-shopee:hover {
    background: #d7391a;
}

.btn-tokopedia {
    background: #00aa5b;
    color: white;
}

.btn-tokopedia:hover {
    background: #008f4c;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.btn-instagram:hover {
    opacity: 0.9;
}

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

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

.navbar.scrolled .logo-text,
.navbar.scrolled .nav-link {
    color: var(--color-primary);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 2px;
}

.logo-svg {
    width: 36px;
    height: 36px;
    color: var(--color-secondary);
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--color-primary);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-dark);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.hero-glow-1 {
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--color-secondary);
}

.hero-glow-2 {
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--color-secondary);
}

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

.hero-tagline {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--color-secondary);
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Hero Product Preview */
.hero-product-preview {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
}

.hero-bottle {
    height: 180px;
    width: auto;
    filter: drop-shadow(0 10px 30px rgba(201,169,110,0.3));
    animation: float 3s ease-in-out infinite;
}

.hero-bottle-2 {
    position: absolute;
    height: 140px;
    right: 30%;
    opacity: 0.4;
    animation: float 3s ease-in-out infinite 0.5s;
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: rgba(255,255,255,0.5);
    font-size: 1.2rem;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========================================
   ABOUT
   ======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201,169,110,0.1) 0%, transparent 50%);
}

.about-illustration {
    width: 80%;
    max-width: 280px;
    position: relative;
    z-index: 1;
}

.about-image-label {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-secondary);
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-text {
    color: var(--color-gray);
    margin-bottom: 20px;
    font-size: 1rem;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--color-gray-light);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-top: 4px;
}

/* ========================================
   PRODUCTS
   ======================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

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

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-secondary);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    z-index: 2;
}

.badge-purple { background: #8b5cf6; }
.badge-green { background: #10b981; }
.badge-blue { background: #3b82f6; }

.product-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-svg {
    width: 100%;
    height: 100%;
    max-height: 160px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.product-info {
    padding: 28px;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.product-desc {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.product-features {
    margin-bottom: 20px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-bottom: 6px;
}

.product-features li i {
    color: var(--color-secondary);
    font-size: 0.8rem;
}

/* ========================================
   FEATURES
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--color-white);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--color-gray);
    font-size: 0.95rem;
}

/* ========================================
   CTA / BELI
   ======================================== */
.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--color-white);
}

.cta-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.cta-note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ========================================
   INSTAGRAM FEED
   ======================================== */
.instagram-feed {
    max-width: 800px;
    margin: 0 auto;
}

.instagram-feed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--color-white);
    border-radius: var(--radius) var(--radius) 0 0;
    border-bottom: 1px solid var(--color-gray-light);
}

.instagram-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.instagram-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.instagram-avatar svg {
    width: 100%;
    height: 100%;
}

.instagram-profile-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.instagram-profile-info p {
    color: var(--color-gray);
    font-size: 0.9rem;
}

.instagram-feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    background: var(--color-white);
    padding: 4px;
}

.feed-item {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.feed-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    transition: var(--transition);
}

.feed-placeholder svg {
    width: 100%;
    height: 100%;
}

.feed-item:hover .feed-placeholder {
    transform: scale(1.05);
}

.feed-label {
    position: absolute;
    bottom: 8px;
    left: 8px;
    font-size: 0.7rem;
    font-weight: 500;
    color: white;
    background: rgba(0,0,0,0.5);
    padding: 2px 8px;
    border-radius: 4px;
    opacity: 0;
    transition: var(--transition);
}

.feed-item:hover .feed-label {
    opacity: 1;
}

.instagram-cta {
    text-align: center;
    padding: 32px;
    background: var(--color-white);
    border-radius: 0 0 var(--radius) var(--radius);
}

.instagram-cta p {
    color: var(--color-gray);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

/* ========================================
   CONTACT
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
}

.contact-detail h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-detail p,
.contact-detail a {
    color: var(--color-gray);
    font-size: 0.95rem;
}

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

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--color-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-gray-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
    color: var(--color-white);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

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

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

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-secondary-dark);
    transform: translateY(-3px);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-image-placeholder {
        aspect-ratio: 16/9;
        padding: 30px;
    }
    
    .about-illustration {
        max-width: 200px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .instagram-feed-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-bottle {
        height: 140px;
    }
    
    .hero-bottle-2 {
        height: 100px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        transition: var(--transition);
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        color: var(--color-primary);
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        gap: 24px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .instagram-feed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-product-preview {
        height: 160px;
    }
    
    .hero-bottle {
        height: 120px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .instagram-feed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-image-placeholder {
        aspect-ratio: 1;
    }
}

/* Smooth animations */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
/* ========================================
   INAURA PROFESSIONAL - Dynamic Styles
   Added: Article styles, image improvements
   ======================================== */

/* Article Section on Homepage */
.articles-section {
    background: var(--color-light);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.article-card {
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.article-image {
    display: block;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-info {
    padding: 24px;
}

.article-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--color-gray);
    margin-bottom: 10px;
}

.article-info h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-info h3 a {
    color: var(--color-primary);
}

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

.article-info p {
    color: var(--color-gray);
    font-size: 0.9rem;
    margin-bottom: 14px;
    line-height: 1.6;
}

.article-readmore {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.article-readmore:hover {
    gap: 10px;
}

.articles-cta {
    text-align: center;
}

/* Article List Page */
.articles-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.article-page-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.article-page-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.article-page-card .article-image {
    aspect-ratio: auto;
    height: 100%;
    min-height: 220px;
}

.article-page-card .article-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Article Detail Page */
.article-header {
    background: linear-gradient(135deg, var(--color-dark) 0%, #2d2d2d 100%);
    color: var(--color-white);
    padding: 140px 0 80px;
    text-align: center;
}

.article-header .article-meta {
    color: var(--color-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.article-header h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.3;
}

.article-header .article-excerpt {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.article-featured-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    margin-top: -40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content-body {
    max-width: 800px;
    margin: 60px auto;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--color-primary);
}

.article-content-body h2,
.article-content-body h3 {
    font-family: var(--font-heading);
    margin: 40px 0 16px;
    color: var(--color-primary);
}

.article-content-body h2 { font-size: 1.8rem; }
.article-content-body h3 { font-size: 1.4rem; }

.article-content-body p {
    margin-bottom: 20px;
}

.article-content-body ul,
.article-content-body ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.article-content-body li {
    margin-bottom: 8px;
}

.article-content-body img {
    border-radius: var(--radius);
    margin: 24px 0;
}

.article-content-body blockquote {
    border-left: 4px solid var(--color-secondary);
    padding-left: 24px;
    margin: 24px 0;
    font-style: italic;
    color: var(--color-gray);
}

.article-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--color-gray-light);
}

.article-tag {
    background: var(--color-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--color-gray);
}

/* Image Improvements */
.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

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

.about-image-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(26, 26, 26, 0.85);
    color: var(--color-secondary);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.instagram-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-secondary);
}

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

/* Feature Icons with Font Awesome */
.feature-icon {
    font-size: 1.4rem;
}

.feature-icon i {
    font-size: 1.4rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
}

.pagination a,
.pagination span {
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.pagination a {
    background: var(--color-white);
    color: var(--color-primary);
    box-shadow: var(--shadow);
}

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

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

/* No articles message */
.no-articles {
    text-align: center;
    padding: 80px 20px;
    color: var(--color-gray);
}

.no-articles i {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--color-gray-light);
}

/* Responsive */
@media (max-width: 992px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .articles-page-grid {
        grid-template-columns: 1fr;
    }
    
    .article-page-card {
        grid-template-columns: 1fr;
    }
    
    .article-page-card .article-image {
        aspect-ratio: 16/9;
        min-height: auto;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .article-header {
        padding: 120px 0 60px;
    }
    
    .article-header h1 {
        font-size: 1.6rem;
    }
    
    .article-content-body {
        margin: 40px auto;
        padding: 0 20px;
    }
}


/* Fix about image responsiveness */
@media (max-width: 992px) {
    .about-image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .about-image {
        aspect-ratio: 1;
    }
    .about-image img {
        height: 100%;
        object-fit: cover;
    }
}

/* ========================================
   FASE 2: CONVERSION BOOSTER
   WhatsApp Widget, Sticky CTA, Testimonials, FAQ
   ======================================== */

/* WhatsApp Chat Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-widget:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* Back to top - moved above WhatsApp */
.back-to-top {
    bottom: 100px;
    right: 30px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #1a1a1a;
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #1a1a1a;
}

.whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Sticky Mobile CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    z-index: 998;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}

.sticky-buy {
    background: var(--primary, #c9a96e);
}

.sticky-buy:hover {
    background: #b8975a;
}

.sticky-wa {
    background: #25d366;
}

.sticky-wa:hover {
    background: #1da851;
}

/* Store Modal */
.store-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: flex-end;
    justify-content: center;
}

.store-modal.active {
    display: flex;
}

.store-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.store-modal-content {
    position: relative;
    background: white;
    width: 100%;
    max-width: 480px;
    max-height: 80vh;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.store-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
}

.store-modal-header h3 {
    margin: 0;
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.2rem;
    color: var(--color-primary, #1a1a1a);
}

.store-modal-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--color-gray, #888);
    cursor: pointer;
    padding: 4px;
}

.store-modal-body {
    padding: 20px 24px;
    overflow-y: auto;
    max-height: calc(80vh - 70px);
}

.store-platform-group {
    margin-bottom: 20px;
}

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

.store-platform-title {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.store-platform-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.store-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #f8f8f8;
    border-radius: 10px;
    text-decoration: none;
    color: var(--color-primary, #1a1a1a);
    transition: all 0.2s;
}

.store-link:hover {
    background: var(--primary, #c9a96e);
    color: white;
}

.store-link-name {
    font-weight: 500;
    font-size: 0.95rem;
}

.store-link i {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-secondary);
}

.testimonial-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 2px;
    color: white;
}

.testimonial-info p {
    font-size: 0.8rem;
    color: var(--color-secondary);
}

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

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

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    text-align: left;
    transition: all 0.2s;
}

.faq-question:hover {
    color: var(--color-secondary);
}

.faq-question i {
    color: var(--color-secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--color-gray);
    line-height: 1.8;
}

/* Responsive Fase 2 */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-widget {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 80px;
        right: 16px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .sticky-cta {
        display: grid;
    }
    
    body {
        padding-bottom: 60px;
    }
}

/* Mobile adjustments for WhatsApp, Back-to-top, and Sticky CTA */
@media (max-width: 768px) {
    /* Hide floating WhatsApp widget on mobile — Sticky CTA already has WhatsApp button */
    .whatsapp-widget {
        display: none;
    }
    
    .back-to-top {
        bottom: 80px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
    
    .back-to-top svg {
        width: 16px;
        height: 16px;
    }
}

/* ========================================
   FASE 3: ENGAGEMENT & TRUST
   Gallery, Newsletter, Google Maps
   ======================================== */

/* Gallery Before & After */
.gallery-section {
    background: var(--color-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gallery-card {
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    position: relative;
}

.gallery-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

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

.gallery-card:hover .gallery-image-wrapper img {
    transform: scale(1.05);
}

.gallery-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(26, 26, 26, 0.85);
    color: var(--color-white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.gallery-label-after {
    background: var(--color-secondary);
}

.gallery-info {
    padding: 20px 24px;
}

.gallery-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.gallery-info p {
    color: var(--color-gray);
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--color-dark) 0%, #2d2d2d 100%);
    color: var(--color-white);
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-section .section-title {
    color: var(--color-white);
    margin-bottom: 12px;
}

.newsletter-content > p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form input:focus {
    border-color: var(--color-secondary);
    background: rgba(255,255,255,0.15);
}

.newsletter-form button {
    padding: 14px 32px;
    white-space: nowrap;
}

.newsletter-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.newsletter-note i {
    margin-right: 4px;
}

/* Google Maps */
.contact-map {
    margin-top: 24px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-map iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

/* Responsive Fase 3 */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

/* ========================================
   FASE 4: ADVANCED FEATURES
   Cookie Consent, Dark Mode, Language Switcher
   ======================================== */

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-dark);
    color: white;
    padding: 16px 24px;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 0.9rem;
    margin: 0;
    flex: 1;
}

.cookie-content i {
    color: var(--color-secondary);
    margin-right: 8px;
}

.cookie-btn {
    padding: 10px 24px;
    background: var(--color-secondary);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

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

/* Dark Mode Toggle */
.dark-mode-toggle {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    background: var(--color-dark);
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 998;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.dark-mode-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    background: var(--color-secondary);
    color: var(--color-dark);
}

/* Dark Mode Styles */
body.dark-mode {
    --color-primary: #f0f0f0;
    --color-secondary: #d4af37;
    --color-secondary-dark: #c9a96e;
    --color-white: #1a1a1a;
    --color-light: #242424;
    --color-gray: #a0a0a0;
    --color-gray-light: #333;
    --color-dark: #f8f6f3;
}

body.dark-mode .navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
}

body.dark-mode .product-card,
body.dark-mode .feature-card,
body.dark-mode .article-card,
body.dark-mode .testimonial-card,
body.dark-mode .gallery-card,
body.dark-mode .faq-item {
    background: #242424;
    border-color: #333;
}

body.dark-mode .contact-form-wrapper {
    background: #242424;
}

body.dark-mode .newsletter-form input {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: var(--color-dark);
}

body.dark-mode .footer {
    background: #111;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 16px;
}

.lang-switcher a {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    color: rgba(255,255,255,0.7);
    transition: all 0.2s;
}

.lang-switcher a:hover,
.lang-switcher a.active {
    color: var(--color-secondary);
    background: rgba(201,169,110,0.15);
}

.navbar.scrolled .lang-switcher a {
    color: var(--color-primary);
}

/* Responsive Fase 4 */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .dark-mode-toggle {
        bottom: 80px;
        left: 16px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .lang-switcher {
        margin-left: 0;
        margin-top: 12px;
    }
}


/* Page Preloader */
.page-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-content {
    text-align: center;
}
.preloader-logo {
    width: 60px;
    height: 60px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}
.preloader-text {
    margin-top: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: #c9a96e;
    animation: preloaderFade 1.5s ease-in-out infinite;
}
@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}
@keyframes preloaderFade {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
body.dark-mode .page-preloader {
    background: #0d0d0d;
}
