/* CSS Variables - Dark Purple Theme */
:root {
    --primary-purple: #2c1f36;        /* Your dark purple */
    --primary-light: #4a3b5c;         /* Lighter version */
    --primary-dark: #1a1220;          /* Darker version */
    --lavender: #d4c5e0;              /* Adjusted for dark theme */
    --soft-purple: #f0ecf4;           /* Light background */
    --deep-purple: #2c1f36;           /* Same as primary */
    --accent-pink: #b8a0c8;           /* Softer accent */
    --text-dark: #2c1f36;             /* Dark text */
    --text-light: #5d4e6d;            /* Lighter text */
    --white: #FFFFFF;
    --cream: #faf8fb;
    --shadow: rgba(44, 31, 54, 0.15);
    --gradient-start: #4a3b5c;
    --gradient-end: #2c1f36;
    --font-heading: 'Merriweather', serif;        /* Changed to Merriweather */
    --font-body: 'Roboto Condensed', sans-serif;  /* Changed to Roboto Condensed */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--lavender);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-purple);
}

.logo-icon {
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.admin-toggle:hover {
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary-purple);
    transition: all 0.3s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    box-shadow: 0 4px 15px var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.3);
}

.btn-secondary {
    background: var(--soft-purple);
    color: var(--primary-purple);
    border: 2px solid var(--primary-light);
}

.btn-secondary:hover {
    background: var(--primary-purple);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.btn-outline:hover {
    background: var(--primary-purple);
    color: var(--white);
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
}

.btn-full {
    width: 100%;
}

.btn-danger {
    background: #FC8181;
    color: white;
}

.btn-text {
    background: none;
    color: var(--text-light);
    text-decoration: underline;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(180deg, var(--white) 0%, var(--soft-purple) 100%);
}

.hero-content {
    max-width: 600px;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--lavender);
    color: var(--primary-purple);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-title {
    margin-bottom: 1.5rem;
    color: var(--deep-purple);
}

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 600px;
    z-index: 1;
}

.floating-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow);
    animation: float 6s ease-in-out infinite;
}

.floating-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-1 {
    width: 280px;
    height: 350px;
    top: 0;
    right: 0;
    animation-delay: 0s;
}

.card-2 {
    width: 220px;
    height: 280px;
    top: 30%;
    left: 0;
    animation-delay: 2s;
    z-index: 2;
}

.card-3 {
    width: 200px;
    height: 250px;
    bottom: 0;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.purple-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.3;
    filter: blur(60px);
    z-index: 0;
}

.orb-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: -50px;
    background: radial-gradient(circle, var(--accent-pink) 0%, transparent 70%);
}

.orb-3 {
    width: 250px;
    height: 250px;
    top: 40%;
    right: 30%;
    background: radial-gradient(circle, var(--primary-purple) 0%, transparent 70%);
    opacity: 0.2;
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    color: var(--primary-purple);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.section-header h2 {
    color: var(--deep-purple);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.125rem;
}

/* Featured Products */
.featured {
    background: var(--white);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.4s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(107, 70, 193, 0.2);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: var(--soft-purple);
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    font-size: 0.75rem;
    color: var(--primary-purple);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--deep-purple);
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.product-description {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-links {
    display: flex;
    gap: 0.75rem;
}

.btn-buy {
    flex: 1;
    padding: 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    text-align: center;
    transition: all 0.3s;
}

.btn-buy-primary {
    background: var(--primary-purple);
    color: white;
}

.btn-buy-secondary {
    background: var(--lavender);
    color: var(--primary-purple);
}

.btn-buy:hover {
    transform: scale(1.05);
}

/* Categories */
.categories {
    background: var(--soft-purple);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.category-img {
    width: 100%;
    height: 100%;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .category-img img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(68, 51, 122, 0.9));
    color: white;
}

.category-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Newsletter */
.newsletter-box {
    background: linear-gradient(135deg, var(--deep-purple), var(--primary-purple));
    border-radius: 30px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    background: white;
    color: var(--primary-purple);
}

.newsletter-decoration {
    position: absolute;
    font-size: 20rem;
    opacity: 0.05;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    z-index: 1;
}

/* Footer */
.footer {
    background: var(--deep-purple);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-text {
    color: white;
    font-size: 1.5rem;
}

.footer-brand p {
    margin-top: 1rem;
    opacity: 0.7;
    font-size: 0.875rem;
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-body);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    opacity: 0.7;
    font-size: 0.875rem;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-light);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    opacity: 0.6;
}

/* Shop Page */
.shop-header {
    padding: 10rem 0 4rem;
    background: linear-gradient(180deg, var(--soft-purple) 0%, var(--white) 100%);
    text-align: center;
}

.shop-header h1 {
    color: var(--deep-purple);
    margin-bottom: 1rem;
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--lavender);
    background: transparent;
    color: var(--text-dark);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-body);
    font-size: 0.875rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    color: white;
}

.shop-grid {
    padding-top: 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

/* About Page */
.about-hero {
    padding: 10rem 0 6rem;
    background: var(--soft-purple);
    position: relative;
    overflow: hidden;
}

.about-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-content h1 {
    color: var(--deep-purple);
    margin: 1.5rem 0;
}

.lead {
    font-size: 1rem;        /* Changed from 1.25rem */
    color: var(--text-light);
    line-height: 1.6;       /* Slightly reduced from 1.8 */
}

.orb-large {
    width: 600px;
    height: 600px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
}

.about-story {
    padding: 6rem 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-text h2 {
    color: var(--deep-purple);
    margin-bottom: 1.5rem;
}

.story-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;       /* Reduced from 1.8 */
    font-size: 0.95rem;     /* Added smaller size */
}

.values {
    background: var(--soft-purple);
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-purple);
}

.value-card h3 {
    color: var(--deep-purple);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Contact Page */
.contact-section {
    padding: 10rem 0 6rem;
    background: linear-gradient(180deg, var(--soft-purple) 0%, var(--white) 50%);
    position: relative;
    min-height: 100vh;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h1 {
    color: var(--deep-purple);
    margin: 1rem 0 1.5rem;
}

.contact-info > p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: var(--lavender);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-purple);
}

.contact-item h4 {
    font-family: var(--font-body);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-purple);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-dark);
    font-weight: 500;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--lavender);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    transition: all 0.3s;
    background: var(--soft-purple);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: white;
}

.orb-contact {
    width: 500px;
    height: 500px;
    position: absolute;
    bottom: -200px;
    right: -200px;
    opacity: 0.15;
}

/* Admin Page */
.admin-page {
    background: var(--soft-purple);
    min-height: 100vh;
}

.admin-section {
    padding: 8rem 0 4rem;
}

.admin-section h1 {
    color: var(--deep-purple);
    margin-bottom: 0.5rem;
}

.admin-note {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.admin-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.admin-card h2 {
    color: var(--deep-purple);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.admin-list {
    max-height: 500px;
    overflow-y: auto;
    margin-bottom: 2rem;
}

.admin-product-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--lavender);
}

.admin-product-item img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

.admin-product-info {
    flex: 1;
}

.admin-product-info h4 {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--deep-purple);
}

.admin-product-info p {
    font-size: 0.75rem;
    color: var(--text-light);
}

.btn-delete {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: #FC8181;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-delete:hover {
    background: #E53E3E;
    transform: scale(1.1);
}

.admin-actions {
    display: flex;
    gap: 1rem;
}

/* Admin Panel Popup */
.admin-panel {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    z-index: 9999;
    transform: translateY(0);
    transition: all 0.3s;
}

.admin-panel.hidden {
    transform: translateY(150%);
    opacity: 0;
    pointer-events: none;
}

.admin-content h3 {
    color: var(--deep-purple);
    margin-bottom: 0.5rem;
}

.admin-content p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-visual {
        display: none;
    }
    
    .category-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .story-grid,
    .contact-grid,
    .admin-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding-top: 6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .newsletter-box {
        padding: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        min-width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-card {
    animation: fadeIn 0.6s ease forwards;
}
.whisper-link {
    opacity: 0.6;
    font-style: italic;
    position: relative;
}

.whisper-link:hover {
    opacity: 1;
    color: var(--accent-rose);
}

.whisper-link::before {
    content: "~";
    margin-right: 0.3rem;
    opacity: 0.5;
}
.whisper-invitation {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-soft) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.whisper-invitation .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
}

.whisper-content {
    text-align: left;
}

.whisper-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.whisper-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.2;
    margin-bottom: 0.5rem;
    max-width: 40ch;
}

.btn-whisper {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--accent-rose);
    border: 1px solid rgba(212, 165, 165, 0.3);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whisper:hover {
    background: rgba(212, 165, 165, 0.1);
    border-color: var(--accent-rose);
    transform: translateY(-2px);
}

.whisper-icon {
    opacity: 0.7;
    font-style: normal;
}

.whisper-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.whisper-image-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(107, 70, 193, 0.15);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.whisper-image-container:hover {
    transform: rotate(0deg) scale(1.02);
}

.whisper-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.drift-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-lavender), transparent);
    opacity: 0.3;
    animation: drift 8s ease-in-out infinite;
}

.drift-line.delay-1 {
    animation-delay: 2s;
    opacity: 0.2;
}

.drift-line.delay-2 {
    animation-delay: 4s;
    opacity: 0.1;
}

@keyframes drift {
    0%, 100% { transform: translateX(-20px); opacity: 0.1; }
    50% { transform: translateX(20px); opacity: 0.3; }
}

@media (max-width: 768px) {
    .whisper-invitation .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .whisper-content {
        text-align: center;
    }
    
    .whisper-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .whisper-visual {
        display: none;
    }
}