/* Dreampop Landing Page - Sabor Express */
/* Textile Naming Convention with Dreamy Aesthetics */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dreampop Color Palette - Ethereal & Soft */
    --fabric-cloud-white: #fefefe;
    --fabric-mist-gray: #f8f9fa;
    --fabric-dawn-pink: #ffd6e8;
    --fabric-lavender-dream: #e8d5ff;
    --fabric-sky-blue: #d5e8ff;
    --fabric-sage-green: #d5ffea;
    --fabric-sunset-peach: #ffe5d5;
    --fabric-twilight-purple: #8b5fbf;
    --fabric-ocean-teal: #4ecdc4;
    --fabric-coral-bloom: #ff6b8a;
    --fabric-charcoal-soft: #2c3e50;
    --fabric-shadow-gray: rgba(44, 62, 80, 0.1);
    
    /* Typography Scale */
    --thread-font-family: 'Quicksand', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --thread-font-size-xs: 0.75rem;
    --thread-font-size-sm: 0.875rem;
    --thread-font-size-base: 1rem;
    --thread-font-size-lg: 1.125rem;
    --thread-font-size-xl: 1.25rem;
    --thread-font-size-2xl: 1.5rem;
    --thread-font-size-3xl: 1.875rem;
    --thread-font-size-4xl: 2.25rem;
    --thread-font-size-5xl: 3rem;
    
    /* Spacing System */
    --stitch-space-xs: 0.25rem;
    --stitch-space-sm: 0.5rem;
    --stitch-space-md: 1rem;
    --stitch-space-lg: 1.5rem;
    --stitch-space-xl: 2rem;
    --stitch-space-2xl: 3rem;
    --stitch-space-3xl: 4rem;
    --stitch-space-4xl: 6rem;
    
    /* Border Radius - Soft & Dreamy */
    --weave-radius-sm: 8px;
    --weave-radius-md: 16px;
    --weave-radius-lg: 24px;
    --weave-radius-xl: 32px;
    --weave-radius-round: 50%;
    
    /* Shadows - Floating & Ethereal */
    --pattern-shadow-soft: 0 4px 20px rgba(139, 95, 191, 0.1);
    --pattern-shadow-medium: 0 8px 30px rgba(139, 95, 191, 0.15);
    --pattern-shadow-strong: 0 12px 40px rgba(139, 95, 191, 0.2);
    --pattern-shadow-dreamy: 0 20px 60px rgba(78, 205, 196, 0.15);
    
    /* Transitions - Smooth & Floating */
    --fabric-transition-fast: 0.2s ease-out;
    --fabric-transition-medium: 0.4s ease-out;
    --fabric-transition-slow: 0.6s ease-out;
    --fabric-transition-float: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Elements */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--thread-font-family);
    font-size: var(--thread-font-size-base);
    line-height: 1.7;
    color: var(--fabric-charcoal-soft);
    background: linear-gradient(135deg, 
        var(--fabric-cloud-white) 0%, 
        var(--fabric-mist-gray) 25%,
        var(--fabric-dawn-pink) 50%,
        var(--fabric-lavender-dream) 75%,
        var(--fabric-sky-blue) 100%);
    background-size: 400% 400%;
    animation: fabric-dream-float 20s ease-in-out infinite;
    overflow-x: hidden;
}

@keyframes fabric-dream-float {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Container */
.fabric\/container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--stitch-space-lg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--stitch-space-md);
    color: var(--fabric-charcoal-soft);
}

h1 { font-size: var(--thread-font-size-5xl); }
h2 { font-size: var(--thread-font-size-4xl); }
h3 { font-size: var(--thread-font-size-3xl); }
h4 { font-size: var(--thread-font-size-2xl); }
h5 { font-size: var(--thread-font-size-xl); }
h6 { font-size: var(--thread-font-size-lg); }

p {
    margin-bottom: var(--stitch-space-md);
    color: var(--fabric-charcoal-soft);
    opacity: 0.9;
}

a {
    text-decoration: none;
    color: var(--fabric-twilight-purple);
    transition: var(--fabric-transition-medium);
}

a:hover {
    color: var(--fabric-coral-bloom);
    transform: translateY(-2px);
}

/* Buttons - Floating & Dreamy */
.thread\/primary-btn,
.thread\/secondary-btn,
.fabric\/submit-button {
    display: inline-flex;
    align-items: center;
    gap: var(--stitch-space-sm);
    padding: var(--stitch-space-lg) var(--stitch-space-2xl);
    border: none;
    border-radius: var(--weave-radius-lg);
    font-family: var(--thread-font-family);
    font-weight: 600;
    font-size: var(--thread-font-size-lg);
    cursor: pointer;
    transition: var(--fabric-transition-float);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.thread\/primary-btn,
.fabric\/submit-button {
    background: linear-gradient(135deg, var(--fabric-twilight-purple), var(--fabric-coral-bloom));
    color: var(--fabric-cloud-white);
    box-shadow: var(--pattern-shadow-medium);
}

.thread\/primary-btn:hover,
.fabric\/submit-button:hover {
    transform: translateY(-4px);
    box-shadow: var(--pattern-shadow-dreamy);
    filter: brightness(1.1);
}

.thread\/secondary-btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--fabric-twilight-purple);
    border: 2px solid var(--fabric-twilight-purple);
    backdrop-filter: blur(10px);
}

.thread\/secondary-btn:hover {
    background: var(--fabric-twilight-purple);
    color: var(--fabric-cloud-white);
    transform: translateY(-4px);
    box-shadow: var(--pattern-shadow-medium);
}

/* Floating Elements Animation */
.fabric\/floating-image,
.fabric\/float-image {
    animation: thread-gentle-float 6s ease-in-out infinite;
    transition: var(--fabric-transition-slow);
}

@keyframes thread-gentle-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.fabric\/floating-image:hover,
.fabric\/float-image:hover {
    transform: scale(1.05) translateY(-10px);
    filter: brightness(1.1) saturate(1.2);
}

/* Cookie Notice */
.fabric\/overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 95, 191, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fabric-fade-in 0.5s ease-out;
}

.fabric\/overlay.hidden {
    display: none;
}

.fabric\/thread-container {
    background: var(--fabric-cloud-white);
    border-radius: var(--weave-radius-xl);
    padding: var(--stitch-space-2xl);
    max-width: 500px;
    width: 90%;
    box-shadow: var(--pattern-shadow-dreamy);
    text-align: center;
    animation: thread-float-up 0.6s ease-out;
}

.fabric\/weave-content h3 {
    color: var(--fabric-twilight-purple);
    margin-bottom: var(--stitch-space-lg);
}

.fabric\/stitch-icon {
    font-size: var(--thread-font-size-4xl);
    color: var(--fabric-coral-bloom);
    margin-bottom: var(--stitch-space-lg);
}

.fabric\/button-weave {
    display: flex;
    gap: var(--stitch-space-md);
    margin-top: var(--stitch-space-xl);
}

.thread\/accept,
.thread\/decline {
    flex: 1;
    padding: var(--stitch-space-md) var(--stitch-space-lg);
    border: none;
    border-radius: var(--weave-radius-md);
    font-family: var(--thread-font-family);
    font-weight: 600;
    cursor: pointer;
    transition: var(--fabric-transition-medium);
}

.thread\/accept {
    background: var(--fabric-twilight-purple);
    color: var(--fabric-cloud-white);
}

.thread\/accept:hover {
    background: var(--fabric-coral-bloom);
    transform: translateY(-2px);
}

.thread\/decline {
    background: transparent;
    color: var(--fabric-twilight-purple);
    border: 2px solid var(--fabric-twilight-purple);
}

.thread\/decline:hover {
    background: var(--fabric-mist-gray);
    transform: translateY(-2px);
}

/* Navigation */
.pattern\/navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: var(--stitch-space-lg) 0;
    border-bottom: 1px solid rgba(139, 95, 191, 0.1);
    animation: thread-slide-down 0.8s ease-out;
}

.weave\/nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.thread\/logo {
    display: flex;
    align-items: center;
    gap: var(--stitch-space-sm);
    font-size: var(--thread-font-size-xl);
    font-weight: 700;
    color: var(--fabric-twilight-purple);
}

.thread\/logo i {
    font-size: var(--thread-font-size-2xl);
    color: var(--fabric-coral-bloom);
}

.fabric\/nav-links {
    display: flex;
    list-style: none;
    gap: var(--stitch-space-xl);
    align-items: center;
}

.fabric\/nav-links a {
    font-weight: 500;
    transition: var(--fabric-transition-medium);
    position: relative;
}

.fabric\/nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--fabric-coral-bloom);
    transition: var(--fabric-transition-medium);
}

.fabric\/nav-links a:hover::after {
    width: 100%;
}

.thread\/cta-button {
    background: linear-gradient(135deg, var(--fabric-twilight-purple), var(--fabric-coral-bloom));
    color: var(--fabric-cloud-white) !important;
    padding: var(--stitch-space-md) var(--stitch-space-xl);
    border-radius: var(--weave-radius-lg);
    font-weight: 600;
    box-shadow: var(--pattern-shadow-soft);
}

.thread\/cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--pattern-shadow-medium);
}

/* Mobile Menu Toggle */
.stitch\/menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.stitch\/menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--fabric-twilight-purple);
    border-radius: 2px;
    transition: var(--fabric-transition-medium);
}

.stitch\/menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.stitch\/menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.stitch\/menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.pattern\/hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(232, 213, 255, 0.3) 0%,
        rgba(213, 232, 255, 0.3) 50%,
        rgba(255, 214, 232, 0.3) 100%);
}

.pattern\/hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
    animation: pattern-rotate 30s linear infinite;
}

.weave\/hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--stitch-space-4xl);
    align-items: center;
    position: relative;
    z-index: 2;
    margin-top: 80px;
}

.thread\/hero-text {
    animation: thread-slide-up 1s ease-out;
}

.fabric\/main-title {
    font-size: var(--thread-font-size-5xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--stitch-space-xl);
    background: linear-gradient(135deg, var(--fabric-twilight-purple), var(--fabric-coral-bloom));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stitch\/highlight {
    display: block;
    color: var(--fabric-coral-bloom);
    position: relative;
}

.thread\/hero-description {
    font-size: var(--thread-font-size-xl);
    margin-bottom: var(--stitch-space-2xl);
    opacity: 0.9;
}

.fabric\/hero-buttons {
    display: flex;
    gap: var(--stitch-space-lg);
    flex-wrap: wrap;
}

.thread\/hero-image {
    text-align: center;
    animation: thread-slide-right 1s ease-out;
}

.thread\/hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--weave-radius-xl);
    box-shadow: var(--pattern-shadow-dreamy);
}

/* Animations */
@keyframes fabric-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes thread-float-up {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes thread-slide-down {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes thread-slide-up {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes thread-slide-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pattern-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Section Styles */
.pattern\/section-header {
    text-align: center;
    margin-bottom: var(--stitch-space-4xl);
}

.fabric\/section-title {
    background: linear-gradient(135deg, var(--fabric-twilight-purple), var(--fabric-coral-bloom));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--stitch-space-lg);
}

.thread\/section-subtitle {
    font-size: var(--thread-font-size-lg);
    color: var(--fabric-charcoal-soft);
    opacity: 0.8;
}

/* About Section */
.weave\/about {
    padding: var(--stitch-space-4xl) 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.weave\/about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--stitch-space-4xl);
    align-items: center;
}

.thread\/about-text {
    display: flex;
    flex-direction: column;
    gap: var(--stitch-space-2xl);
}

.fabric\/text-block h3 {
    color: var(--fabric-twilight-purple);
    margin-bottom: var(--stitch-space-lg);
}

.thread\/about-images {
    display: flex;
    flex-direction: column;
    gap: var(--stitch-space-lg);
}

.thread\/about-images img {
    width: 100%;
    border-radius: var(--weave-radius-lg);
    box-shadow: var(--pattern-shadow-medium);
}

/* Services Section */
.pattern\/services {
    padding: var(--stitch-space-4xl) 0;
    background: linear-gradient(135deg, 
        rgba(213, 255, 234, 0.3) 0%,
        rgba(255, 229, 213, 0.3) 100%);
}

.weave\/services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--stitch-space-2xl);
}

.thread\/service-card {
    background: rgba(255, 255, 255, 0.9);
    padding: var(--stitch-space-2xl);
    border-radius: var(--weave-radius-xl);
    box-shadow: var(--pattern-shadow-soft);
    transition: var(--fabric-transition-float);
    position: relative;
    overflow: hidden;
}

.thread\/service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--fabric-twilight-purple), var(--fabric-coral-bloom));
}

.thread\/service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--pattern-shadow-dreamy);
}

.fabric\/service-icon {
    position: relative;
    margin-bottom: var(--stitch-space-lg);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fabric\/service-icon img {
    width: 60px;
    height: 60px;
    border-radius: var(--weave-radius-round);
    position: absolute;
    z-index: 1;
}

.fabric\/service-icon i {
    font-size: var(--thread-font-size-3xl);
    color: var(--fabric-coral-bloom);
    z-index: 2;
    position: relative;
}

.thread\/service-card h3 {
    color: var(--fabric-twilight-purple);
    margin-bottom: var(--stitch-space-lg);
}

/* Menu Section */
.thread\/menu {
    padding: var(--stitch-space-4xl) 0;
    background: rgba(255, 255, 255, 0.5);
}

.weave\/menu-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--stitch-space-4xl);
    align-items: center;
}

.fabric\/menu-text {
    display: flex;
    flex-direction: column;
    gap: var(--stitch-space-2xl);
}

.thread\/menu-block h3 {
    color: var(--fabric-twilight-purple);
    margin-bottom: var(--stitch-space-lg);
}

.thread\/menu-gallery {
    display: flex;
    flex-direction: column;
    gap: var(--stitch-space-lg);
}

.fabric\/gallery-image {
    width: 100%;
    border-radius: var(--weave-radius-lg);
    box-shadow: var(--pattern-shadow-medium);
    transition: var(--fabric-transition-slow);
}

.fabric\/gallery-image:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: var(--pattern-shadow-dreamy);
}

/* Testimonials Section */
.fabric\/testimonials {
    padding: var(--stitch-space-4xl) 0;
    background: linear-gradient(135deg, 
        rgba(232, 213, 255, 0.3) 0%,
        rgba(255, 214, 232, 0.3) 100%);
}

.weave\/testimonials-content {
    max-width: 800px;
    margin: 0 auto;
}

.thread\/testimonial-text {
    display: flex;
    flex-direction: column;
    gap: var(--stitch-space-2xl);
}

.fabric\/testimonial-block h3 {
    color: var(--fabric-twilight-purple);
    margin-bottom: var(--stitch-space-lg);
}

/* Order Section */
.weave\/order {
    padding: var(--stitch-space-4xl) 0;
    background: rgba(255, 255, 255, 0.8);
}

.weave\/order-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--stitch-space-4xl);
    align-items: start;
}

.thread\/order-text h3 {
    color: var(--fabric-twilight-purple);
    margin-bottom: var(--stitch-space-lg);
}

.fabric\/benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--stitch-space-lg);
    margin-top: var(--stitch-space-xl);
}

.thread\/benefit-item {
    display: flex;
    align-items: center;
    gap: var(--stitch-space-sm);
    padding: var(--stitch-space-md);
    background: rgba(139, 95, 191, 0.1);
    border-radius: var(--weave-radius-md);
}

.thread\/benefit-item i {
    color: var(--fabric-coral-bloom);
    font-size: var(--thread-font-size-lg);
}

/* Order Form */
.thread\/order-form-container {
    background: rgba(255, 255, 255, 0.95);
    padding: var(--stitch-space-2xl);
    border-radius: var(--weave-radius-xl);
    box-shadow: var(--pattern-shadow-medium);
    backdrop-filter: blur(10px);
}

.fabric\/order-form h3 {
    color: var(--fabric-twilight-purple);
    margin-bottom: var(--stitch-space-xl);
    text-align: center;
}

.thread\/form-group {
    margin-bottom: var(--stitch-space-lg);
}

.thread\/form-group label {
    display: block;
    margin-bottom: var(--stitch-space-sm);
    font-weight: 600;
    color: var(--fabric-charcoal-soft);
}

.thread\/form-group input,
.thread\/form-group select,
.thread\/form-group textarea {
    width: 100%;
    padding: var(--stitch-space-md);
    border: 2px solid rgba(139, 95, 191, 0.2);
    border-radius: var(--weave-radius-md);
    font-family: var(--thread-font-family);
    font-size: var(--thread-font-size-base);
    transition: var(--fabric-transition-medium);
    background: rgba(255, 255, 255, 0.9);
}

.thread\/form-group input:focus,
.thread\/form-group select:focus,
.thread\/form-group textarea:focus {
    outline: none;
    border-color: var(--fabric-twilight-purple);
    box-shadow: 0 0 0 3px rgba(139, 95, 191, 0.1);
}

.thread\/form-group textarea {
    min-height: 80px;
    resize: vertical;
}

.fabric\/submit-button {
    width: 100%;
    justify-content: center;
    margin-top: var(--stitch-space-lg);
}

.thread\/form-note {
    font-size: var(--thread-font-size-sm);
    color: var(--fabric-charcoal-soft);
    opacity: 0.7;
    text-align: center;
    margin-top: var(--stitch-space-md);
}

/* Contact Section */
.stitch\/contact {
    padding: var(--stitch-space-4xl) 0;
    background: linear-gradient(135deg, 
        rgba(213, 255, 234, 0.2) 0%,
        rgba(255, 229, 213, 0.2) 100%);
}

.weave\/contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--stitch-space-4xl);
    align-items: start;
}

.thread\/contact-info h3 {
    color: var(--fabric-twilight-purple);
    margin-bottom: var(--stitch-space-lg);
}

.thread\/contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--stitch-space-xl);
}

.fabric\/contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--stitch-space-lg);
    padding: var(--stitch-space-lg);
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--weave-radius-lg);
    box-shadow: var(--pattern-shadow-soft);
}

.fabric\/contact-item i {
    font-size: var(--thread-font-size-xl);
    color: var(--fabric-coral-bloom);
    margin-top: var(--stitch-space-xs);
}

.fabric\/contact-item h4 {
    color: var(--fabric-twilight-purple);
    margin-bottom: var(--stitch-space-sm);
}

.fabric\/contact-item p {
    margin: 0;
    color: var(--fabric-charcoal-soft);
}

/* Footer */
.pattern\/footer {
    background: linear-gradient(135deg, var(--fabric-charcoal-soft), #34495e);
    color: var(--fabric-cloud-white);
    padding: var(--stitch-space-4xl) 0 var(--stitch-space-xl) 0;
}

.weave\/footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--stitch-space-4xl);
    margin-bottom: var(--stitch-space-2xl);
}

.thread\/footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--stitch-space-lg);
}

.fabric\/footer-logo {
    display: flex;
    align-items: center;
    gap: var(--stitch-space-sm);
    font-size: var(--thread-font-size-xl);
    font-weight: 700;
}

.fabric\/footer-logo i {
    font-size: var(--thread-font-size-2xl);
    color: var(--fabric-coral-bloom);
}

.thread\/footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--stitch-space-2xl);
}

.fabric\/footer-column h4 {
    color: var(--fabric-coral-bloom);
    margin-bottom: var(--stitch-space-lg);
}

.fabric\/footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--stitch-space-sm);
}

.fabric\/footer-column a {
    color: var(--fabric-cloud-white);
    opacity: 0.8;
    transition: var(--fabric-transition-medium);
}

.fabric\/footer-column a:hover {
    opacity: 1;
    color: var(--fabric-coral-bloom);
}

.thread\/footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--stitch-space-xl);
    text-align: center;
}

.thread\/footer-bottom p {
    margin-bottom: var(--stitch-space-sm);
    opacity: 0.7;
    font-size: var(--thread-font-size-sm);
}

/* Responsive Design - Mobile First */
@media (max-width: 1440px) {
    .fabric\/container {
        padding: 0 var(--stitch-space-xl);
    }
}

@media (max-width: 1024px) {
    :root {
        --thread-font-size-5xl: 2.5rem;
        --thread-font-size-4xl: 2rem;
        --thread-font-size-3xl: 1.5rem;
    }
    
    .weave\/hero-content {
        grid-template-columns: 1fr;
        gap: var(--stitch-space-2xl);
        text-align: center;
    }
    
    .weave\/about-content {
        grid-template-columns: 1fr;
        gap: var(--stitch-space-2xl);
    }
    
    .weave\/menu-content {
        grid-template-columns: 1fr;
        gap: var(--stitch-space-2xl);
    }
    
    .weave\/order-content {
        grid-template-columns: 1fr;
        gap: var(--stitch-space-2xl);
    }
    
    .weave\/contact-content {
        grid-template-columns: 1fr;
        gap: var(--stitch-space-2xl);
    }
    
    .weave\/footer-content {
        grid-template-columns: 1fr;
        gap: var(--stitch-space-2xl);
    }
    
    .thread\/footer-links {
        grid-template-columns: 1fr;
        gap: var(--stitch-space-lg);
    }
}

@media (max-width: 768px) {
    .fabric\/container {
        padding: 0 var(--stitch-space-md);
    }
    
    /* Mobile Navigation */
    .stitch\/menu-toggle {
        display: flex;
    }
    
    .fabric\/nav-links {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(254, 254, 254, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--stitch-space-xl);
        gap: var(--stitch-space-lg);
        border-top: 1px solid rgba(139, 95, 191, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--fabric-transition-medium);
    }
    
    .fabric\/nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .fabric\/nav-links li {
        text-align: center;
    }
    
    .thread\/cta-button {
        margin-top: var(--stitch-space-md);
    }
    
    /* Hero adjustments */
    .pattern\/hero {
        min-height: 90vh;
        text-align: center;
    }
    
    .fabric\/main-title {
        font-size: var(--thread-font-size-4xl);
    }
    
    .thread\/hero-description {
        font-size: var(--thread-font-size-lg);
    }
    
    .fabric\/hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .thread\/primary-btn,
    .thread\/secondary-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Services grid */
    .weave\/services-grid {
        grid-template-columns: 1fr;
        gap: var(--stitch-space-lg);
    }
    
    /* Benefits list */
    .fabric\/benefits-list {
        grid-template-columns: 1fr;
        gap: var(--stitch-space-md);
    }
    
    /* Footer adjustments */
    .pattern\/footer {
        padding: var(--stitch-space-2xl) 0 var(--stitch-space-lg) 0;
    }
    
    .thread\/footer-brand {
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --thread-font-size-5xl: 2rem;
        --thread-font-size-4xl: 1.75rem;
        --thread-font-size-3xl: 1.25rem;
        --stitch-space-4xl: 3rem;
        --stitch-space-3xl: 2rem;
        --stitch-space-2xl: 1.5rem;
    }
    
    .fabric\/container {
        padding: 0 var(--stitch-space-sm);
    }
    
    .pattern\/hero {
        min-height: 80vh;
    }
    
    .fabric\/main-title {
        font-size: var(--thread-font-size-3xl);
        line-height: 1.3;
    }
    
    .thread\/hero-description {
        font-size: var(--thread-font-size-base);
    }
    
    .thread\/service-card,
    .thread\/order-form-container,
    .fabric\/contact-item {
        padding: var(--stitch-space-lg);
    }
    
    .pattern\/section-header h2 {
        font-size: var(--thread-font-size-3xl);
    }
    
    .fabric\/text-block h3,
    .thread\/menu-block h3,
    .fabric\/testimonial-block h3 {
        font-size: var(--thread-font-size-xl);
    }
}

@media (max-width: 320px) {
    .fabric\/container {
        padding: 0 var(--stitch-space-xs);
    }
    
    .fabric\/thread-container {
        padding: var(--stitch-space-lg);
        width: 95%;
    }
    
    .fabric\/button-weave {
        flex-direction: column;
    }
    
    .fabric\/main-title {
        font-size: var(--thread-font-size-2xl);
    }
    
    .pattern\/section-header h2 {
        font-size: var(--thread-font-size-2xl);
    }
}

/* Print Styles */
@media print {
    .fabric\/overlay,
    .pattern\/navbar,
    .stitch\/menu-toggle,
    .fabric\/hero-buttons,
    .fabric\/submit-button {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .pattern\/hero {
        min-height: auto;
        page-break-after: always;
    }
} 