/* 
  Base Styles & Variables
*/
:root {
    --primary: #6b004f;
    --primary-light: #ab007d;
    --primary-glow: rgba(107, 0, 79, 0.4);
    --primary-dark: #3a002b;

    /* Elegant Dark Magenta Backgrounds */
    --bg-main: #0c0008;
    --bg-secondary: #0f000a;

    /* Modern Glassmorphism Cards */
    --bg-card: rgba(107, 0, 79, 0.2);
    --bg-card-hover: rgba(107, 0, 79, 0.3);
    --bg-glass-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);

    /* Text */
    --text-main: #fcf4f9;
    --text-muted: #d0b8c6;

    /* Borders & Glows */
    --border: rgba(107, 0, 79, 0.3);
    --glass-border: rgba(255, 255, 255, 0.1);
    --edge-highlight: rgba(255, 255, 255, 0.25);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-logo: 'Special Gothic Expanded One', sans-serif;

    --logo-size: 50px;
    --logo-gap: 15px;

    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-main);
}

/* Custom WebKit Scrollbar (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
    border-left: 1px solid var(--border);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
    border: 2px solid var(--bg-main);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

body {
    font-family: var(--font-body);
    background: radial-gradient(circle at 50% 0%, #1c0014 0%, var(--bg-main) 70%, #050003 100%);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::after {
    content: '';
    position: fixed;
    top: 50%;
    right: 5%;
    width: 45vw;
    height: 45vw;
    background: url('/premium_3d_flower.png') no-repeat center center;
    background-size: contain;
    opacity: 0.6;
    /* Increased visibility */
    mix-blend-mode: screen;
    /* Remove black background */
    z-index: -1;
    pointer-events: none;
    animation: floatFlower 12s ease-in-out infinite;
}

@keyframes floatFlower {

    0%,
    100% {
        transform: translateY(-50%) translateX(0) scale(1.0);
    }

    50% {
        transform: translateY(-45%) translateX(-20px) scale(1.05);
    }
}

h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    font-weight: 600;
}

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

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* 
  Modern Animated Buttons (ThemeForest Marketing Style)
*/
/* 
  Modern Glassmorphism Buttons (Inspired by Mendix/Stranger Style)
*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 12px;
    /* Slightly more modern than full pill */
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-smooth);
    letter-spacing: 0.3px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-primary {
    background: linear-gradient(180deg, rgba(107, 0, 79, 0.4) 0%, rgba(107, 0, 79, 0.15) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 0 12px rgba(107, 0, 79, 0.2);
    border: 1px solid var(--border);
    border-top: 1px solid var(--edge-highlight);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, rgba(107, 0, 79, 0.6) 0%, rgba(107, 0, 79, 0.3) 100%);
    border-color: var(--primary-light);
    box-shadow: 0 8px 25px var(--primary-glow), inset 0 0 15px rgba(107, 0, 79, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-outline {
    border: 2px solid var(--primary);
    background: transparent;
    color: #fff;
    padding: 12px 28px;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    z-index: -1;
    transition: all 0.4s ease;
}

.btn-outline:hover {
    color: #fff;
}

.btn-outline:hover::before {
    left: 0;
}

.mt-4 {
    margin-top: 2rem;
}

/* 
  Navigation
*/
/* 
  Navigation - Curved Floating Pill Style
*/
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    padding: 12px 30px;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: rgba(12, 0, 8, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 50px;
    /* Floating pill curve */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled {
    width: 90%;
    top: 10px;
    padding: 10px 30px;
    background: rgba(12, 0, 8, 0.8);
    border-color: var(--primary);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), 0 0 20px var(--primary-glow);
}

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

.logo {
    font-family: var(--font-logo);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: var(--logo-gap);
}

.logo span {
    line-height: 1;
    display: inline-block;
}

.navbar-logo {
    height: 50px;
    width: 55px;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0 0 8px var(--primary-glow));
    transition: var(--transition-bounce);
    border: 2px solid var(--edge-highlight);
}

.logo:hover .navbar-logo {
    transform: scale(1.1) rotate(-8deg);
    border-color: var(--primary-light);
    box-shadow: 0 0 20px var(--primary-glow);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* Reduced gap to accommodate the padding */
    position: relative;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 8px 16px;
    z-index: 1;
    border-radius: 50px;
}

.nav-links a:hover:not(.btn) {
    color: #fff;
    text-shadow: 0 0 10px var(--primary);
}

.nav-slider {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: rgba(107, 0, 79, 0.4);
    /* Glassy dark magenta pill */
    border-radius: 50px;
    z-index: 0;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
    /* Hidden by default until hovered or active */
    backdrop-filter: blur(5px);
    box-shadow: inset 0 0 10px rgba(107, 0, 79, 0.5), 0 0 15px rgba(107, 0, 79, 0.3);
    border: 1px solid var(--primary-light);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    color: #fff;
}

/* 
  Hero Section
*/
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 4.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 5px 20px rgba(107, 0, 79, 0.8);
    position: relative;
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
}

.hero-bg-accent {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107, 0, 79, 0.2) 0%, rgba(107, 0, 79, 0.05) 40%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    filter: blur(80px);
    animation: pulse 10s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* 
  Sections General
*/
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 15px rgba(107, 0, 79, 0.5);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--primary-light);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--primary-light);
    border-radius: 5px;
}

.section-subtitle {
    color: var(--primary-light);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 5px rgba(107, 0, 79, 0.5);
}

/* 
  About / Overview
*/
.about {
    background: transparent;
    position: relative;
}

.about::before,
.contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(107, 0, 79, 0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

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

.about-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(107, 0, 79, 0.3) 0%, rgba(28, 0, 20, 0.6) 100%);
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.03);
    position: relative;
    clip-path: inset(0 round 20px);
    transform-style: preserve-3d;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--edge-highlight);
}

.stat-card.leaving {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.stat-card:hover {
    border-color: var(--primary-light);
    background: linear-gradient(135deg, rgba(107, 0, 79, 0.5) 0%, rgba(28, 0, 20, 0.8) 100%);
    box-shadow: 0 20px 50px var(--primary-glow), inset 0 0 25px rgba(107, 0, 79, 0.2);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(107, 0, 79, 0.8);
    display: inline-block;
    transition: transform 0.4s ease;
    transform: translateZ(30px);
}

.stat-card:hover .stat-icon {
    transform: translateZ(30px) scale(1.2) rotate(5deg);
}

.stat-number {
    font-family: var(--font-logo);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 
  Categories 
*/
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: linear-gradient(135deg, rgba(107, 0, 79, 0.3) 0%, rgba(28, 0, 20, 0.6) 100%);
    border: 1px solid var(--border);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    position: relative;
    clip-path: inset(0 round 20px);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.03);
    transform-style: preserve-3d;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--edge-highlight);
}

.category-card.leaving {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.category-card::before,
.stat-card::before,
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-20deg);
    transition: none;
    z-index: 10;
    pointer-events: none;
}

.category-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 20px 40px rgba(107, 0, 79, 0.5), inset 0 0 20px rgba(107, 0, 79, 0.15);
}

.category-card:hover::before,
.stat-card:hover::before,
.product-card:hover::before {
    animation: lightSweep 0.8s ease forwards;
}

@keyframes lightSweep {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.cat-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    border: 2px solid var(--border);
    transition: var(--transition-smooth);
    box-shadow: inset 0 0 15px rgba(107, 0, 79, 0.3);
    /* 3D Popout effect when card tilts */
    transform: translateZ(30px);
}

.category-card:hover .cat-icon {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary-light);
    box-shadow: 0 0 25px rgba(107, 0, 79, 0.6), inset 0 0 15px rgba(107, 0, 79, 0.5);
    text-shadow: 0 0 10px #fff;
}

.cat-icon span {
    font-size: 40px;
    transition: var(--transition-smooth);
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 0 8px rgba(107, 0, 79, 0.4);
}

.category-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* 
  Featured Products
*/
.featured {
    background: transparent;
}

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

.product-card {
    background: linear-gradient(135deg, rgba(107, 0, 79, 0.3) 0%, rgba(28, 0, 20, 0.6) 100%);
    border-radius: 20px;
    clip-path: inset(0 round 20px);
    border: 1px solid var(--border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.03);
    position: relative;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--edge-highlight);
}

.product-card.leaving {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.product-card:hover {
    box-shadow: 0 25px 60px var(--primary-glow), inset 0 0 25px rgba(107, 0, 79, 0.2);
    border-color: var(--primary-light);
}

.product-image {
    width: 100%;
    height: 380px;
    position: relative;
    border-bottom: 1px solid var(--border);
    transform: translateZ(10px);
}

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

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

.product-details {
    padding: 2.5rem;
    position: relative;
    background: transparent;
    transform: translateZ(30px);
}

.product-label {
    position: absolute;
    top: -18px;
    right: 25px;
    background: var(--primary);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(107, 0, 79, 0.7);
    border: 1px solid var(--primary-light);
    letter-spacing: 0.5px;
}

.product-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 0 5px rgba(107, 0, 79, 0.3);
}

.product-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.product-price {
    font-size: 1.35rem;
    color: var(--primary-light);
    font-weight: 700;
    text-shadow: 0 0 15px rgba(107, 0, 79, 0.6);
}

/* 
  Gallery
*/
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: var(--transition-bounce);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(107, 0, 79, 0.3);
    transition: var(--transition-smooth);
    mix-blend-mode: overlay;
}

.gallery-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: 0 15px 40px rgba(107, 0, 79, 0.5);
}

.gallery-item:hover::after {
    opacity: 0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:nth-child(1) {
    grid-column: span 8;
    grid-row: span 2;
}

.gallery-item:nth-child(2) {
    grid-column: span 4;
    grid-row: span 1;
}

.gallery-item:nth-child(3) {
    grid-column: span 4;
    grid-row: span 1;
}

.gallery-item:nth-child(4) {
    grid-column: span 12;
    grid-row: span 1;
}

/* 
  Contact
*/
.contact {
    background: transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    font-size: 32px;
    color: var(--primary-light);
    background: transparent;
    padding: 18px;
    border-radius: 16px;
    border: 2px solid var(--border);
    box-shadow: inset 0 0 15px rgba(107, 0, 79, 0.3);
    text-shadow: 0 0 15px rgba(107, 0, 79, 0.8);
    transition: var(--transition-bounce);
}

.contact-method:hover .contact-icon {
    transform: translateY(-5px);
    background: var(--primary);
    color: #fff;
    border-color: var(--primary-light);
    box-shadow: 0 0 20px rgba(107, 0, 79, 0.6);
}

.contact-method h4 {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
    color: #fff;
    text-shadow: 0 0 5px rgba(107, 0, 79, 0.3);
}

.contact-method p {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--text-muted);
}

.contact-link {
    color: #fff;
    transition: var(--transition-smooth);
}

.contact-link:hover {
    color: var(--primary-light);
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(107, 0, 79, 0.6);
}

.contact-method-link {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.contact-method-link:hover h4 {
    color: var(--primary-light);
    text-shadow: 0 0 8px rgba(107, 0, 79, 0.6);
}

.contact-form-container {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition-bounce);
}

.contact-form-container:hover {
    box-shadow: 0 25px 60px rgba(107, 0, 79, 0.3);
    border-color: var(--primary-light);
    transform: translateY(-5px);
}

.contact-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 0 5px rgba(107, 0, 79, 0.3);
}

.form-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.input-group {
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 15px rgba(107, 0, 79, 0.4), inset 0 0 10px rgba(107, 0, 79, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
}

.btn-send {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
}

.btn-text {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.send-icon {
    font-size: 1.2rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-send:hover .send-icon {
    transform: translate(40px, -40px) scale(0);
    opacity: 0;
    animation: flyIn 0.5s 0.2s forwards;
}

.btn-send:hover .btn-text {
    transform: translateX(10px);
}

@keyframes flyIn {
    0% {
        transform: translate(-40px, 40px) scale(0);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
}

/* 
  Footer
*/
.footer {
    background: rgba(8, 0, 5, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 80px 0 20px;
    border-top: 1px solid var(--border);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

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

.footer-brand .logo {
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 0 5px rgba(107, 0, 79, 0.5);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.footer-links a:hover {
    color: var(--primary-light);
    text-shadow: 0 0 8px rgba(107, 0, 79, 0.5);
    padding-left: 5px;
    /* Slide effect on link hover */
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border);
    transition: var(--transition-bounce);
    color: var(--primary-light);
    backdrop-filter: blur(5px);
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary-light);
    color: #fff;
    transform: translateY(-8px) rotate(360deg);
    box-shadow: 0 10px 20px rgba(107, 0, 79, 0.6);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(107, 0, 79, 0.2);
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* 
  Animations (Scroll Reveal)
*/
.reveal {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* 
  Responsive Design
*/
@media (max-width: 992px) {

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

    .hero-title {
        font-size: 3.8rem;
    }

    .contact-image {
        min-height: 400px;
    }

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

@media (max-width: 768px) {
    :root {
        --logo-size: 32px;
        --logo-gap: 6px;
    }

    section {
        padding: 50px 0;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(8, 0, 5, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition-smooth);
        border-bottom: 1px solid var(--border);
        gap: 2rem;
    }

    .nav-links.active {
        left: 0;
    }

    .logo {
        font-size: 1.2rem;
    }

    .hero {
        padding-top: 60px;
    }

    .hero-content {
        padding: 0 15px;
        text-align: left;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.4rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-tagline {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding-right: 10px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 1rem;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .section-header {
        text-align: left;
        margin-left: 15px;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .section-title::after {
        left: 0;
        transform: none;
        width: 50px;
    }

    .about-stats {
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-icon {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .category-card {
        padding: 2rem 1.5rem;
        gap: 1rem;
    }
    
    .cat-icon {
        width: 70px;
        height: 70px;
    }
    
    .cat-icon span {
        font-size: 32px;
    }

    .product-details {
        padding: 1.5rem;
    }

    .product-image {
        height: 250px;
    }
    
    .product-name {
        font-size: 1.3rem;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .gallery-item:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
        padding: 0 15px;
    }

    .footer-brand p {
        margin: 0;
        max-width: 100%;
        font-size: 0.9rem;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .flower-petal {
        max-width: 20px !important;
    }
}

/* 
  Falling Flowers Effect 
*/
.flower-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen !important;
    /* Force all children to blend */
}

.flower-petal {
    position: absolute;
    top: -100px;
    pointer-events: none;
    animation: flowerFall linear forwards, petalSway ease-in-out infinite alternate;
    width: 30px;
    /* Base size, will be randomized in JS */
    height: auto;
    opacity: 0.9;
    mix-blend-mode: screen !important;
    /* Force blending */
}

@keyframes flowerFall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(110vh) rotate(540deg);
        opacity: 0;
    }
}

@keyframes petalSway {
    0% {
        margin-left: 0;
    }

    100% {
        margin-left: 50px;
    }
}