/* Reset and Base Styles */
/* global reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF6B35;
    --accent-red: #D32F2F;
    --white: #ffffff;
    --light-gray: #F5F5F5;
    --dark-gray: #212121;
    --text-dark: #1a1a2e;
    --text-light: #4a5568;
    --border-color: #cbd5e0;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --ocean-blue: #FF6B35;
    --turquoise: #FF8C42;
    --light-blue: #FFF4F0;
    --dark-blue: #D32F2F;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hexagon Pattern */
.hexagon-pattern {
    position: relative;
    overflow: hidden;
}

.hexagon-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 49px,
            rgba(255, 107, 53, 0.03) 49px,
            rgba(255, 107, 53, 0.03) 50px
        ),
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 49px,
            rgba(255, 107, 53, 0.03) 49px,
            rgba(255, 107, 53, 0.03) 50px
        ),
        repeating-linear-gradient(
            120deg,
            transparent,
            transparent 49px,
            rgba(255, 140, 66, 0.03) 49px,
            rgba(255, 140, 66, 0.03) 50px
        );
    background-size: 100px 86.6px;
    background-position: 0 0, 50px 0, 25px 43.3px;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.hexagon-pattern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 140, 66, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.hexagon-pattern::before {
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 29px,
            rgba(255, 107, 53, 0.04) 29px,
            rgba(255, 107, 53, 0.04) 30px
        ),
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 29px,
            rgba(255, 107, 53, 0.04) 29px,
            rgba(255, 107, 53, 0.04) 30px
        ),
        repeating-linear-gradient(
            120deg,
            transparent,
            transparent 29px,
            rgba(255, 140, 66, 0.04) 29px,
            rgba(255, 140, 66, 0.04) 30px
        );
    background-size: 60px 52px;
    background-position: 0 0, 30px 0, 15px 26px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    position: relative;
    z-index: 1;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--primary-orange);
    text-decoration: none;
    letter-spacing: 2px;
    transition: var(--transition);
}

.logo:hover {
    color: var(--accent-red);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

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

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-orange);
    transition: var(--transition);
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary-orange);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-menu:hover {
    transform: rotate(90deg);
}

.fullscreen-nav ul {
    list-style: none;
    text-align: center;
}

.fullscreen-nav li {
    margin-bottom: 2rem;
}

.fullscreen-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    font-family: Georgia, 'Times New Roman', serif;
    transition: var(--transition);
    display: inline-block;
}

.fullscreen-nav a:hover {
    color: var(--accent-red);
    transform: translateX(10px);
}

/* Cookie Popup */
/* shows at bottom of page */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-orange);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: var(--transition);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    flex: 1;
}

.cookie-content a {
    color: var(--accent-red);
    text-decoration: underline;
}

.cookie-btn {
    background: var(--accent-red);
    color: var(--primary-orange);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
}

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

/* Hero Section - Fullscreen Slider with Geometry */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--white);
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.hero-slide.active .slide-image {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.4) 0%, rgba(211, 47, 47, 0.3) 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    bottom: 15%;
    left: 8%;
    z-index: 3;
    color: var(--white);
    max-width: 600px;
    animation: slideContentIn 1s ease 0.3s both;
}

@keyframes slideContentIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-title {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 700;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 0.95;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -2px;
}

.slide-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.slide-btn {
    display: inline-block;
    padding: 1.3rem 3rem;
    background: var(--accent-red);
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-btn:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5);
}

/* Geometric Overlays */
.geometry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
}

.geo-shape {
    position: absolute;
    opacity: 0.15;
    mix-blend-mode: overlay;
    animation: geoFloat 20s ease-in-out infinite;
}

.geo-triangle {
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 260px solid var(--primary-orange);
    top: -50px;
    right: 15%;
    animation-delay: 0s;
    transform: rotate(25deg);
}

.geo-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--primary-orange);
    bottom: 10%;
    right: 8%;
    animation-delay: 3s;
}

.geo-square {
    width: 200px;
    height: 200px;
    background: var(--accent-red);
    top: 20%;
    left: 5%;
    transform: rotate(45deg);
    animation-delay: 6s;
}

.geo-diamond {
    width: 180px;
    height: 180px;
    background: var(--primary-orange);
    transform: rotate(45deg);
    bottom: 25%;
    left: 12%;
    animation-delay: 9s;
}

.geo-line-1 {
    width: 400px;
    height: 4px;
    background: var(--accent-red);
    top: 50%;
    right: 20%;
    transform: rotate(-35deg);
    animation-delay: 12s;
}

.geo-line-2 {
    width: 350px;
    height: 4px;
    background: var(--primary-orange);
    bottom: 30%;
    left: 25%;
    transform: rotate(45deg);
    animation-delay: 15s;
}

@keyframes geoFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(5deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
    75% {
        transform: translate(20px, 30px) rotate(3deg);
    }
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 8%;
    right: 8%;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.slider-nav {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-orange);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.slider-dots .dot.active {
    background: var(--accent-red);
    width: 30px;
    border-radius: 15px;
    border-color: var(--white);
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 5;
}

.progress-bar {
    height: 100%;
    background: var(--accent-red);
    width: 0%;
    transition: width 0.3s linear;
}

.hero-slide.active ~ .hero-slide .progress-bar,
.hero-slide:first-child.active .progress-bar {
    animation: progressFill 5s linear;
}

@keyframes progressFill {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

/* Collections Section */
.collections-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-orange);
    font-family: Georgia, 'Times New Roman', serif;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.collection-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.collection-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.collection-content {
    padding: 2rem;
}

.collection-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
    font-family: Georgia, 'Times New Roman', serif;
}

.collection-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Features Section with Accordion */
.features-section {
    padding: 6rem 0;
    background: var(--white);
}

.accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    background: var(--accent-color);
}

.accordion-header h3 {
    font-size: 1.3rem;
    color: var(--primary-orange);
    font-family: Georgia, 'Times New Roman', serif;
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--accent-red);
    transition: var(--transition);
    font-weight: 300;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* About Section with Statistics */
.about-section {
    padding: 6rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
    padding: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.about-description {
    max-width: 900px;
    margin: 4rem auto 0;
    text-align: center;
}

.about-description p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Services Section with Tabs */
.services-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.services-tabs {
    margin-top: 3rem;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1rem;
}

.tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    border-radius: 8px 8px 0 0;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-red);
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--primary-orange);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-btn:hover {
    color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.05);
}

.tab-content {
    position: relative;
    min-height: 400px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-pane-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.tab-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

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

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

.tab-text h3 {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.tab-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    font-size: 1.05rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Testimonials Section with Carousel */
.testimonials-section {
    padding: 6rem 0;
    background: var(--white);
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
    overflow: hidden;
}

.testimonials-track {
    position: relative;
    width: 100%;
}

.testimonial-slide {
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 1;
}

.testimonial-content {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.1);
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 5rem;
    color: var(--accent-red);
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    margin-bottom: 1rem;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.3rem;
}

.author-location {
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonial-rating {
    margin-top: 1rem;
}

.star {
    color: var(--accent-red);
    font-size: 1.5rem;
    margin: 0 2px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--ocean-blue);
    background: var(--white);
    color: var(--primary-orange);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--accent-red);
    width: 30px;
    border-radius: 6px;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-orange);
    font-family: Georgia, 'Times New Roman', serif;
}

.contact-info p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-info a {
    color: var(--accent-red);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--primary-orange);
}

.contact-info a:hover {
    text-decoration: underline;
}

.store-hours {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.store-hours h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-form-wrapper {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 15px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.submit-btn {
    padding: 1rem 2rem;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.submit-btn:hover {
    background: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

/* Footer */
.footer {
    background: var(--primary-orange);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer.hexagon-pattern::before {
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 39px,
            rgba(255, 255, 255, 0.05) 39px,
            rgba(255, 255, 255, 0.05) 40px
        ),
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 39px,
            rgba(255, 255, 255, 0.05) 39px,
            rgba(255, 255, 255, 0.05) 40px
        ),
        repeating-linear-gradient(
            120deg,
            transparent,
            transparent 39px,
            rgba(255, 140, 66, 0.08) 39px,
            rgba(255, 140, 66, 0.08) 40px
        );
    background-size: 80px 69.3px;
    background-position: 0 0, 40px 0, 20px 34.6px;
    opacity: 0.7;
}

.footer.hexagon-pattern::after {
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 140, 66, 0.1) 0%, transparent 50%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--accent-red);
    font-family: Georgia, 'Times New Roman', serif;
}

.footer-section p {
    margin-bottom: 0.8rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-red);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Policy Pages */
.policy-page {
    padding: 4rem 0;
    min-height: 70vh;
}

.policy-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.policy-page section {
    margin-bottom: 3rem;
}

.policy-page h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    margin-top: 2rem;
}

.policy-page h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
}

.policy-page p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.policy-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.policy-page li {
    margin-bottom: 0.5rem;
}

.policy-page a {
    color: var(--secondary-color);
    text-decoration: none;
}

.policy-page a:hover {
    text-decoration: underline;
}

/* Thanks Page */
.thanks-container {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--accent-color);
}

.thanks-content {
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 500px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
    font-family: Georgia, 'Times New Roman', serif;
}

.thanks-content p {
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.thanks-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.thanks-btn:hover {
    background: var(--accent-red);
    color: var(--primary-orange);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide-content {
        left: 5%;
        bottom: 12%;
        max-width: 500px;
    }

    .geo-triangle {
        border-left-width: 100px;
        border-right-width: 100px;
        border-bottom-width: 180px;
        right: 10%;
    }

    .geo-circle {
        width: 200px;
        height: 200px;
    }

    .geo-square {
        width: 150px;
        height: 150px;
    }

    .geo-diamond {
        width: 120px;
        height: 120px;
    }

    .geo-line-1,
    .geo-line-2 {
        width: 250px;
    }

    .slider-controls {
        bottom: 6%;
        right: 5%;
    }

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

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .hero-section {
        height: 100vh;
        min-height: 500px;
    }

    .slide-content {
        left: 5%;
        bottom: 10%;
        max-width: 85%;
    }

    .slide-title {
        font-size: clamp(2.5rem, 12vw, 4.5rem);
        margin-bottom: 1rem;
    }

    .slide-subtitle {
        font-size: clamp(1rem, 3vw, 1.3rem);
        margin-bottom: 2rem;
    }

    .slide-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .geo-triangle {
        border-left-width: 80px;
        border-right-width: 80px;
        border-bottom-width: 140px;
        right: -30px;
        top: -30px;
    }

    .geo-circle {
        width: 150px;
        height: 150px;
        bottom: 5%;
        right: -20px;
    }

    .geo-square {
        width: 100px;
        height: 100px;
        left: -20px;
    }

    .geo-diamond {
        width: 80px;
        height: 80px;
        left: 5%;
    }

    .geo-line-1,
    .geo-line-2 {
        width: 150px;
        height: 3px;
    }

    .slider-controls {
        bottom: 5%;
        right: 5%;
        gap: 1rem;
    }

    .slider-nav {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

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

    .tab-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .tab-btn {
        text-align: center;
    }

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

    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .collections-grid {
        grid-template-columns: 1fr;
    }

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

    .testimonial-content {
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 100vh;
        min-height: 400px;
    }

    .slide-content {
        left: 4%;
        bottom: 8%;
        max-width: 92%;
    }

    .slide-title {
        font-size: clamp(2rem, 14vw, 3.5rem);
        margin-bottom: 0.8rem;
    }

    .slide-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .slide-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
    }

    .geo-shape {
        opacity: 0.1;
    }

    .geo-triangle {
        border-left-width: 60px;
        border-right-width: 60px;
        border-bottom-width: 100px;
    }

    .geo-circle {
        width: 100px;
        height: 100px;
    }

    .geo-square {
        width: 70px;
        height: 70px;
    }

    .geo-diamond {
        width: 60px;
        height: 60px;
    }

    .geo-line-1,
    .geo-line-2 {
        width: 100px;
    }

    .slider-controls {
        bottom: 4%;
        right: 4%;
        gap: 0.8rem;
    }

    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .slider-dots {
        gap: 8px;
    }

    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }

    .slider-dots .dot.active {
        width: 25px;
    }

    .stats-container {
        padding: 2rem 0;
    }

    .stat-item {
        padding: 1.5rem;
    }

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

    .tab-text h3 {
        font-size: 1.5rem;
    }

    .testimonial-content {
        padding: 1.5rem 1rem;
    }

    .quote-icon {
        font-size: 3rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .policy-page h1 {
        font-size: 2rem;
    }

    .policy-page h2 {
        font-size: 1.5rem;
    }
}

