/* ==========================================
   BOHO NATURAL - LIGHT SKEUOMORPHISM THEME
   Srinithi Outlet - Handmade Macrame Creations
   ========================================== */

/* CSS Variables */
:root {
    /* Color Palette - Warm Earth Tones */
    --color-sand: #F5EDE4;
    --color-cream: #FBF8F4;
    --color-natural-white: #FFFCF7;
    --color-rust: #C4715B;
    --color-terracotta: #D98B6B;
    --color-mustard: #D4A84B;
    --color-olive: #8A9A6D;
    --color-sage: #B5C4A8;
    --color-brown: #6B5344;
    --color-dark-brown: #4A3728;
    --color-text: #4A3728;
    --color-text-light: #7D6B5D;
    --color-white: #FFFFFF;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Quicksand', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50%;
    
    /* Shadows - Skeuomorphic */
    --shadow-raised: 
        0 2px 4px rgba(74, 55, 40, 0.08),
        0 4px 8px rgba(74, 55, 40, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    --shadow-pressed: 
        inset 0 2px 4px rgba(74, 55, 40, 0.1),
        inset 0 1px 2px rgba(74, 55, 40, 0.15);
    --shadow-soft: 0 8px 32px rgba(74, 55, 40, 0.12);
    --shadow-card: 
        0 4px 16px rgba(74, 55, 40, 0.08),
        0 8px 32px rgba(74, 55, 40, 0.04);
    
    /* Transitions */
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-sand);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23d4a84b' fill-opacity='0.03'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Container */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-dark-brown);
}

.section-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-rust);
    background: linear-gradient(135deg, rgba(196, 113, 91, 0.15), rgba(212, 168, 75, 0.15));
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-cream);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--space-md);
}

.section-title.light {
    color: var(--color-natural-white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 500px;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* Buttons - Skeuomorphic */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: var(--space-md) var(--space-xl);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(145deg, var(--color-rust), var(--color-terracotta));
    color: var(--color-white);
    box-shadow: 
        0 4px 12px rgba(196, 113, 91, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(196, 113, 91, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-pressed);
}

.btn-outline {
    background: var(--color-natural-white);
    color: var(--color-brown);
    border: 2px solid var(--color-terracotta);
    box-shadow: var(--shadow-raised);
}

.btn-outline:hover {
    background: var(--color-terracotta);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--color-natural-white);
    color: var(--color-brown);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp {
    background: linear-gradient(145deg, #25D366, #20BD5A);
    color: var(--color-white);
    box-shadow: 
        0 4px 16px rgba(37, 211, 102, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    padding: var(--space-md) var(--space-2xl);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    background: rgba(245, 237, 228, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(74, 55, 40, 0.08);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-icon {
    width: 48px;
    height: 48px;
    color: var(--color-rust);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-dark-brown);
    line-height: 1;
}

.logo-tagline {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    padding: var(--space-xs) 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--color-rust), var(--color-mustard));
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-brown);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(80px + var(--space-xl)) var(--space-lg) var(--space-xl);
    position: relative;
    overflow: hidden;
}

.hero-bg-texture {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 168, 75, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(196, 113, 91, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--color-natural-white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-raised);
    margin-bottom: var(--space-lg);
}

.hero-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-rust);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: var(--space-lg);
    line-height: 1.15;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    max-width: 500px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--color-natural-white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-raised);
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-images {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.hero-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.hero-image.main {
    width: 400px;
    height: 500px;
}

.hero-image.main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image.secondary {
    width: 200px;
    height: 250px;
    position: absolute;
    bottom: -30px;
    left: -80px;
    border: 4px solid var(--color-natural-white);
}

.hero-image.secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.hero-scroll span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-rust), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* About Section */
.about {
    padding: var(--space-3xl) 0;
    background: var(--color-cream);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-images {
    position: relative;
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.about-image.large {
    width: 100%;
    height: 500px;
}

.about-image.large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image.small {
    width: 200px;
    height: 250px;
    position: absolute;
    bottom: -30px;
    right: -30px;
    border: 4px solid var(--color-cream);
}

.about-image.small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    padding: var(--space-lg) 0;
}

.about-text {
    margin-bottom: var(--space-xl);
}

.about-text p {
    margin-bottom: var(--space-md);
    font-size: 1.05rem;
}

.about-uses h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.use-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.use-tag {
    background: var(--color-natural-white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-raised);
    transition: var(--transition);
}

.use-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.about-mission {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    background: linear-gradient(135deg, rgba(196, 113, 91, 0.1), rgba(212, 168, 75, 0.1));
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-rust);
}

.mission-icon {
    font-size: 1.5rem;
}

.about-mission p {
    font-style: italic;
    color: var(--color-brown);
    font-size: 1.1rem;
}

/* Shop Section */
.shop {
    padding: var(--space-3xl) 0;
    background: var(--color-sand);
}

.products-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.product-card {
    background: var(--color-natural-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 40px rgba(74, 55, 40, 0.15),
        0 4px 12px rgba(74, 55, 40, 0.1);
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(74, 55, 40, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--space-lg);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-order {
    background: var(--color-natural-white);
    color: var(--color-brown);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.product-card:hover .quick-order {
    transform: translateY(0);
}

.quick-order:hover {
    background: var(--color-rust);
    color: var(--color-white);
}

.product-info {
    padding: var(--space-lg);
}

.product-category {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-rust);
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin: var(--space-xs) 0 var(--space-sm);
}

.product-desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.product-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-rust);
}

.product-btn svg {
    transition: var(--transition);
}

.product-btn:hover svg {
    transform: translateX(5px);
}

.more-products {
    text-align: center;
    background: var(--color-natural-white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-raised);
}

.more-products h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
}

.product-tag {
    background: linear-gradient(135deg, rgba(196, 113, 91, 0.1), rgba(212, 168, 75, 0.1));
    color: var(--color-brown);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.product-tag:hover {
    background: var(--color-rust);
    color: var(--color-white);
}

/* Custom Orders Section */
.custom {
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.custom-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-rust) 0%, var(--color-terracotta) 50%, var(--color-mustard) 100%);
}

.custom-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    z-index: 1;
}

.custom-content {
    padding: var(--space-lg) 0;
}

.custom-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    max-width: 450px;
}

.custom-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.custom-option {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.15);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.option-icon {
    font-size: 1.5rem;
}

.option-text h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 2px;
}

.option-text p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.custom-image {
    position: relative;
}

.custom-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.image-badge {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-natural-white);
    color: var(--color-brown);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-lg);
    font-weight: 600;
    box-shadow: var(--shadow-soft);
}

/* Gallery Section */
.gallery {
    padding: var(--space-3xl) 0;
    background: var(--color-cream);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: var(--space-md);
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-raised);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-soft);
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* WhatsApp Order Section */
.whatsapp-order {
    padding: var(--space-3xl) 0;
    background: var(--color-sand);
}

.order-card {
    background: var(--color-natural-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-card);
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.order-content {
    text-align: center;
}

.order-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #25D366, #20BD5A);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: white;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.order-content h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: var(--space-xs);
}

.order-content p {
    color: var(--color-text-light);
}

.order-steps {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
}

.order-step {
    text-align: center;
    padding: var(--space-lg);
    background: var(--color-sand);
    border-radius: var(--radius-lg);
    flex: 1;
    transition: var(--transition);
}

.order-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-raised);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-rust), var(--color-terracotta));
    color: white;
    border-radius: var(--radius-full);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    box-shadow: var(--shadow-raised);
}

.order-step p {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
}

.order-cta {
    text-align: center;
}

.cta-note {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-brown);
    margin-bottom: var(--space-md);
}

/* Contact Section */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--color-natural-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.contact-info {
    padding: var(--space-lg) 0;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.contact-details {
    margin-bottom: var(--space-xl);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-sand);
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--color-sand);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
    display: block;
    margin-bottom: 2px;
}

.contact-text a,
.contact-text span {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-dark-brown);
}

.contact-text a:hover {
    color: var(--color-rust);
}

.social-links h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.social-buttons {
    display: flex;
    gap: var(--space-sm);
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-raised);
    transition: var(--transition);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.whatsapp {
    background: #25D366;
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.contact-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.contact-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Footer */
.footer {
    padding: var(--space-2xl) 0 var(--space-lg);
    background: var(--color-dark-brown);
    color: var(--color-sand);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(245, 237, 228, 0.2);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xs);
}

.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
    color: var(--color-terracotta);
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(245, 237, 228, 0.7);
}

.footer-nav {
    display: flex;
    gap: var(--space-lg);
}

.footer-nav a {
    font-size: 0.9rem;
    color: rgba(245, 237, 228, 0.8);
}

.footer-nav a:hover {
    color: var(--color-terracotta);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(245, 237, 228, 0.6);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #20BD5A);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 
        0 4px 20px rgba(37, 211, 102, 0.4),
        0 8px 32px rgba(37, 211, 102, 0.2);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.float-tooltip {
    position: absolute;
    right: 70px;
    background: var(--color-dark-brown);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-float:hover .float-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero {
        flex-direction: column;
        align-items: center;
    }

    .hero-images {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: var(--space-xl);
    }
    
    .hero-image.main {
        width: 100%;
        max-width: 400px;
        height: 420px;
        margin: 0 auto;
    }
    
    .hero-image.secondary {
        display: none;
    }
}

@media (max-width: 1024px) {
    .about-wrapper,
    .custom-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .about-images,
    .custom-image,
    .contact-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-image.small {
        right: 20px;
    }
    
    .order-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: var(--space-xl);
    }
    
    .order-steps {
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    .order-step {
        flex: 1;
        min-width: 140px;
        padding: var(--space-md);
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-sand);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-md);
        box-shadow: var(--shadow-soft);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
        align-items: center;
        min-height: auto;
        padding-top: calc(80px + var(--space-lg));
        padding-bottom: var(--space-2xl);
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-images {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: var(--space-xl);
    }

    .hero-image.main {
        width: 100%;
        max-width: 320px;
        height: 300px;
        margin: 0 auto;
    }

    .hero-image.secondary {
        display: none;
    }

    .hero-features {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .custom-options {
        grid-template-columns: 1fr;
    }
    
    .products-carousel {
        grid-template-columns: 1fr;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.tall,
    .gallery-item.wide {
        grid-row: span 1;
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .about-image.small {
        width: 150px;
        height: 180px;
        right: 10px;
        bottom: -20px;
    }
    
    .order-card {
        padding: var(--space-lg) var(--space-md);
    }

    .order-icon {
        width: 60px;
        height: 60px;
    }

    .order-icon svg {
        width: 32px;
        height: 32px;
    }

    .order-content h2 {
        font-size: 1.5rem;
    }

    .order-steps {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .order-step {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: var(--space-md);
        text-align: left;
        padding: var(--space-sm) var(--space-md);
    }

    .step-number {
        flex-shrink: 0;
        width: 36px;
        height: 36px;
        margin-bottom: 0;
    }

    .order-step p {
        margin: 0;
        font-size: 0.95rem;
    }

    .btn-whatsapp {
        width: 100%;
        justify-content: center;
        padding: var(--space-md) var(--space-lg);
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-lg);
    }
    
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}
