/* Kidolino Dark Theme CSS */
body {
    background: #18181b;
    color: #f3f3f3;
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.navbar {
    background: #23232a;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 70px;
}
.brand-logo {
    height: 40px;
    margin-right: 10px;
}
.brand-text {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: #fff;
}
.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-link {
    color: #f3f3f3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}
.nav-link.active,
.nav-link:hover {
    color: #ffb347;
}
.nav-extras {
    display: flex;
    gap: 1rem;
}
.nav-icon {
    color: #f3f3f3;
    font-size: 1.2rem;
    position: relative;
}
.cart-count {
    background: #ffb347;
    color: #23232a;
    border-radius: 50%;
    font-size: 0.8rem;
    padding: 2px 6px;
    position: absolute;
    top: -8px;
    right: -10px;
}
.nav-toggle {
    display: none;
}

/* Responsive Navigation */
@media (max-width: 900px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 1rem;
    }
    .nav-list {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }
    .nav-toggle {
        display: block;
        cursor: pointer;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(120deg, #23232a 60%, #18181b 100%);
    color: #fff;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
}
.hero-content {
    z-index: 2;
    position: relative;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.hero-buttons .btn {
    margin-right: 1rem;
}

/* Buttons */
.btn {
    background: #ffb347;
    color: #23232a;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    display: inline-block;
}
.btn-outline {
    background: transparent;
    color: #ffb347;
    border: 2px solid #ffb347;
}
.btn:hover,
.btn-outline:hover {
    background: #23232a;
    color: #ffb347;
}

/* Section Headers */
.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffb347;
    margin-bottom: 0.5rem;
}
.section-header p {
    color: #ccc;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: #23232a;
    color: #f3f3f3;
    padding: 3rem 0 1rem 0;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.footer-section {
    flex: 1 1 200px;
    margin-bottom: 2rem;
}
.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}
.footer-title {
    color: #ffb347;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: #f3f3f3;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #ffb347;
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.social-link {
    color: #ffb347;
    font-size: 1.2rem;
    transition: color 0.2s;
}
.social-link:hover {
    color: #fff;
}
.footer-bottom {
    background: #18181b;
    color: #ccc;
    padding: 1rem 0;
    text-align: center;
}
.footer-legal a {
    color: #ccc;
    margin: 0 0.5rem;
    text-decoration: none;
    font-size: 0.9rem;
}
.footer-legal a:hover {
    color: #ffb347;
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Main Content */
.main-content {
    min-height: 60vh;
    padding-bottom: 2rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #23232a 0%, #18181b 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffb347;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb-container {
    background: #23232a;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}

.breadcrumb a {
    color: #ffb347;
    text-decoration: none;
}

.breadcrumb {
    color: #ccc;
    font-size: 0.9rem;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: #1f1f23;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #23232a;
    border-radius: 12px;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #ffb347;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #ccc;
    line-height: 1.6;
}

/* Categories Section */
.categories {
    padding: 4rem 0;
    background: #18181b;
}

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

.categories-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.category-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #23232a;
}

.category-item.large {
    grid-row: span 2;
}

.category-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.category-item:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    padding: 2rem;
}

.category-content h3 {
    margin-bottom: 0.5rem;
    color: #ffb347;
}

.category-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    transition: color 0.3s;
}

.category-link:hover {
    color: #ffb347;
}

/* Products Grid */
.featured-products, .shop-products {
    padding: 4rem 0;
    background: #1f1f23;
}

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

.product-card {
    background: #23232a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-btn {
    background: #ffb347;
    color: #23232a;
    border: none;
    padding: 0.5rem;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-btn:hover {
    background: #fff;
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ffb347;
    color: #23232a;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-badge.sale {
    background: #ff4757;
    color: #fff;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.product-category {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #ffb347;
    font-size: 0.9rem;
}

.rating-count {
    color: #ccc;
    font-size: 0.8rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.current-price {
    color: #ffb347;
    font-size: 1.2rem;
    font-weight: 700;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 1rem;
}

/* About Preview */
.about-preview {
    padding: 5rem 0;
    background: #18181b;
}

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

.about-text h2 {
    color: #ffb347;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
}

.about-stats {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #23232a;
    padding: 2rem;
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    color: #ffb347;
    font-size: 1.5rem;
    font-weight: 700;
}

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

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffb347 0%, #ff8c42 100%);
    text-align: center;
}

.newsletter-content h2 {
    color: #23232a;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.newsletter-form-large {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-input-large {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    background: rgba(255,255,255,0.9);
}

.newsletter-privacy {
    color: #333;
    font-size: 0.9rem;
}

.newsletter-privacy a {
    color: #23232a;
    font-weight: 600;
}

/* Story Section */
.story {
    padding: 5rem 0;
    background: #1f1f23;
}

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

.story-text h2 {
    color: #ffb347;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-text .lead {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.story-text p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
}

/* Values Section */
.values {
    padding: 5rem 0;
    background: #18181b;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    font-size: 3rem;
    color: #ffb347;
    margin-bottom: 1.5rem;
}

.value-item h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-item p {
    color: #ccc;
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 5rem 0;
    background: #1f1f23;
}

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

.team-member {
    background: #23232a;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h4 {
    color: #ffb347;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-role {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    color: #ffb347;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.member-social a:hover {
    color: #fff;
}

/* Process Section */
.process {
    padding: 5rem 0;
    background: #18181b;
}

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

.process-step {
    position: relative;
    text-align: center;
    padding: 2rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffb347;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.step-content h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-content p {
    color: #ccc;
    line-height: 1.6;
}

/* Mission Section */
.mission {
    padding: 5rem 0;
    background: #1f1f23;
}

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

.mission-text h2 {
    color: #ffb347;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mission-text .lead {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.mission-text p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.mission-stat {
    text-align: center;
}

.mission-image img {
    width: 100%;
    border-radius: 12px;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffb347 0%, #ff8c42 100%);
    text-align: center;
}

.cta-content h2 {
    color: #23232a;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Contact Sections */
.contact-info {
    padding: 4rem 0;
    background: #1f1f23;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #23232a;
    border-radius: 12px;
}

.contact-icon {
    font-size: 2rem;
    color: #ffb347;
    margin-top: 0.5rem;
}

.contact-details h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.contact-details p {
    color: #ccc;
    line-height: 1.6;
}

/* Contact Form */
.contact-form-section {
    padding: 5rem 0;
    background: #18181b;
}

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

.contact-form-container {
    background: #23232a;
    padding: 3rem;
    border-radius: 12px;
}

.form-header h2 {
    color: #ffb347;
    margin-bottom: 1rem;
}

.form-header p {
    color: #ccc;
    margin-bottom: 2rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #333;
    border-radius: 8px;
    background: #1f1f23;
    color: #fff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffb347;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #333;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

input[type="checkbox"]:checked + .checkmark {
    background: #ffb347;
    border-color: #ffb347;
}

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

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-section {
    background: #23232a;
    padding: 2rem;
    border-radius: 12px;
}

.sidebar-section h3 {
    color: #ffb347;
    margin-bottom: 1.5rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    color: #ccc;
}

.day {
    font-weight: 500;
}

.quick-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.quick-links a:hover {
    color: #ffb347;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: #1f1f23;
}

.map-container {
    margin-top: 2rem;
    height: 400px;
    background: #23232a;
    border-radius: 12px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #23232a 0%, #1f1f23 100%);
}

.map-content {
    text-align: center;
    color: #fff;
}

.map-content i {
    font-size: 3rem;
    color: #ffb347;
    margin-bottom: 1rem;
}

.map-content h3 {
    margin-bottom: 0.5rem;
}

.map-content p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #18181b;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

.faq-item {
    background: #23232a;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #2a2a32;
}

.faq-question h4 {
    color: #fff;
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: #ffb347;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

/* Shop Filters */
.shop-filters {
    padding: 2rem 0;
    background: #1f1f23;
    border-bottom: 1px solid #333;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.results-info {
    color: #ccc;
}

.view-controls {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    background: #23232a;
    color: #ccc;
    border: 1px solid #333;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.view-btn.active,
.view-btn:hover {
    background: #ffb347;
    color: #23232a;
    border-color: #ffb347;
}

.filters-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

.filter-sidebar {
    background: #23232a;
    padding: 2rem;
    border-radius: 12px;
    height: fit-content;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-title {
    color: #ffb347;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    cursor: pointer;
}

.color-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #333;
    cursor: pointer;
    position: relative;
    transition: border-color 0.3s;
}

.color-option:hover,
.color-option input:checked + .color-option {
    border-color: #ffb347;
}

.sort-container {
    margin-bottom: 2rem;
}

.sort-select {
    background: #23232a;
    color: #fff;
    border: 1px solid #333;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
}

/* Collections */
.featured-collection {
    padding: 5rem 0;
    background: #1f1f23;
}

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

.collection-label {
    color: #ffb347;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.collection-text h2 {
    color: #fff;
    font-size: 3rem;
    margin: 0.5rem 0 1.5rem;
}

.collection-description {
    color: #ccc;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.collection-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.collection-features li {
    color: #ccc;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.collection-features li:before {
    content: "✓";
    color: #ffb347;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.collection-actions {
    display: flex;
    gap: 1rem;
}

.collection-image {
    position: relative;
}

.collection-image img {
    width: 100%;
    border-radius: 12px;
}

.collection-overlay {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(35, 35, 42, 0.9);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.collection-stats {
    display: flex;
    gap: 2rem;
}

.collection-stats .stat {
    text-align: center;
}

.collection-stats .number {
    display: block;
    color: #ffb347;
    font-size: 1.5rem;
    font-weight: 700;
}

.collection-stats .label {
    color: #ccc;
    font-size: 0.8rem;
}

.collections-grid {
    padding: 5rem 0;
    background: #18181b;
}

.collections-container {
    margin-top: 3rem;
}

.collection-category {
    margin-bottom: 4rem;
}

.category-title {
    color: #ffb347;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #333;
    padding-bottom: 0.5rem;
}

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

.collection-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

.collection-card:hover {
    transform: translateY(-5px);
}

.collection-card .collection-image {
    height: 250px;
}

.collection-card .collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.collection-card:hover .collection-overlay {
    opacity: 1;
}

.collection-info h4 {
    color: #ffb347;
    margin-bottom: 0.5rem;
}

.collection-info p {
    color: #fff;
    margin-bottom: 0.5rem;
}

.item-count {
    color: #ccc;
    font-size: 0.9rem;
}

.collection-link {
    background: #ffb347;
    color: #23232a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    align-self: flex-end;
}

.collection-link:hover {
    background: #fff;
    transform: scale(1.1);
}

/* Seasonal Collections */
.seasonal-collections {
    padding: 5rem 0;
    background: #1f1f23;
}

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

.seasonal-item {
    background: #23232a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

.seasonal-item:hover {
    transform: translateY(-5px);
}

.seasonal-item.current {
    border: 2px solid #ffb347;
}

.seasonal-image {
    height: 200px;
    overflow: hidden;
}

.seasonal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seasonal-content {
    padding: 2rem;
}

.seasonal-content h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.seasonal-content p {
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.availability {
    display: inline-block;
    background: #333;
    color: #ccc;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.availability.current {
    background: #ffb347;
    color: #23232a;
}

/* Style Guide */
.style-guide {
    padding: 5rem 0;
    background: #18181b;
}

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

.style-text h2 {
    color: #ffb347;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.style-text .lead {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.style-tips {
    margin-bottom: 2rem;
}

.tip-item {
    margin-bottom: 1.5rem;
}

.tip-item h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.tip-item p {
    color: #ccc;
    line-height: 1.6;
}

.style-gallery {
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Newsletter CTA */
.collection-newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffb347 0%, #ff8c42 100%);
    text-align: center;
}

.collection-newsletter h2 {
    color: #23232a;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.collection-newsletter p {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.collection-newsletter .newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto 1rem;
}

.collection-newsletter .newsletter-input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-note {
    color: #333;
    font-size: 0.9rem;
}

/* Error Page */
.error-hero {
    padding: 8rem 0;
    background: linear-gradient(135deg, #23232a 0%, #18181b 100%);
    text-align: center;
}

.error-number {
    font-size: 8rem;
    font-weight: 900;
    color: #ffb347;
    line-height: 1;
    margin-bottom: 1rem;
}

.error-content h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.error-content p {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.popular-pages {
    padding: 5rem 0;
    background: #1f1f23;
}

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

.page-card {
    background: #23232a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.page-card:hover {
    transform: translateY(-5px);
}

.page-icon {
    font-size: 2.5rem;
    color: #ffb347;
    margin-bottom: 1rem;
}

.page-card h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.page-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-outline-small {
    background: transparent;
    color: #ffb347;
    border: 1px solid #ffb347;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline-small:hover {
    background: #ffb347;
    color: #23232a;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #23232a;
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    max-height: 90%;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ffb347;
    color: #23232a;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.product-gallery img {
    width: 100%;
    border-radius: 8px;
}

.product-thumbnails {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.thumbnail.active,
.thumbnail:hover {
    opacity: 1;
}

.product-details h2 {
    color: #ffb347;
    margin-bottom: 1rem;
}

.product-options {
    margin: 2rem 0;
}

.option-group {
    margin-bottom: 1rem;
}

.option-group label {
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
}

.size-select {
    background: #1f1f23;
    color: #fff;
    border: 1px solid #333;
    padding: 0.5rem;
    border-radius: 6px;
    width: 100%;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    background: #ffb347;
    color: #23232a;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.qty-input {
    background: #1f1f23;
    color: #fff;
    border: 1px solid #333;
    padding: 0.5rem;
    border-radius: 6px;
    width: 60px;
    text-align: center;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-actions .btn {
    flex: 1;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-overlay.active {
    display: flex;
}

.search-container {
    max-width: 600px;
    width: 90%;
    position: relative;
}

.search-box {
    display: flex;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
}

.search-input {
    flex: 1;
    padding: 1rem 2rem;
    border: none;
    font-size: 1.2rem;
    outline: none;
}

.search-submit {
    background: #ffb347;
    color: #23232a;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    font-size: 1.2rem;
}

.search-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    color: #fff;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #ffb347;
    color: #23232a;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
    z-index: 100;
}

.back-to-top:hover {
    background: #fff;
    transform: translateY(-5px);
}

.back-to-top.show {
    display: flex;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 24, 27, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.loading-overlay.show {
    display: flex;
}

.loading-spinner {
    text-align: center;
    color: #fff;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #333;
    border-top: 3px solid #ffb347;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
}

@media (max-width: 900px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-item.large {
        grid-row: span 1;
    }
    
    .about-content,
    .story-content,
    .mission-content,
    .collection-content,
    .style-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .filters-container {
        grid-template-columns: 1fr;
    }
    
    .filter-sidebar {
        order: 2;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons,
    .error-actions,
    .collection-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .mission-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .collection-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .about-stats {
        position: static;
        margin-top: 2rem;
    }
    
    .error-number {
        font-size: 5rem;
    }
    
    .error-content h1 {
        font-size: 2rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .mission-stats {
        grid-template-columns: 1fr;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}
