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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #3B2417;
    background: #FFF9E5; /*#FBF6EF;*/
    min-height: 100vh;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #FFF9E5;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E6D7C3;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
}

.contact-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3B2417;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #C9A24D;
}

.icon {
    width: 16px;
    height: 16px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: url('images/sweet-cover-background.png') no-repeat fixed center;
    background-size: cover;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero table {
    width: 100%;
    border-collapse: collapse;
}

.hero row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 300px;
}

.hero column.logo-column {
    background-color: transparent;
    padding: 0;
}

.hero column.text-column {
    background-color: #FFF9E5; /*rgba(255, 249, 220, 0.95);*/
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-logo {
    height: 500px;
    width: auto;
    object-fit: contain;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s;
    animation-fill-mode: both;
}

.highlight {
    color: #C9A24D;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #5A3A28;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.8;
    background-color: #F5F5DC;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Products Section */
.products {
    padding: 48px 0;
}

.section-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 24px;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.carousel-wrapper {
    overflow: hidden;
    flex: 1;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 24px;
    padding: 10px;
}

.product-card {
    min-width: 260px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Carousel Buttons */
.carousel-btn {
    background: white;
    border: 2px solid #C9A24D;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    color: #C9A24D;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: #C9A24D;
    color: white;
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E6D7C3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #C9A24D;
    width: 30px;
    border-radius: 6px;
}

.product-image {
    width: 100%;
    height: 176px;
    background: #EFE4D3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.product-name {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.25rem;
    font-weight: 400;
    padding: 16px 16px 8px;
}

.product-meta {
    font-size: 0.875rem;
    color: #6B4A35;
    padding: 0 16px 16px;
}

/* Order Section */
.order-section {
    background: #F3E9DB;
    padding: 64px 0;
    text-align: center;
}

.order-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 24px;
}

.order-description {
    font-size: 1.125rem;
    color: #5A3A28;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.order-contacts {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.order-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3B2417;
    text-decoration: none;
    font-size: 1rem;
    padding: 12px 24px;
    background: white;
    border-radius: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.order-contact:hover {
    background: #C9A24D;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.order-contact .icon {
    width: 20px;
    height: 20px;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    font-size: 0.875rem;
    color: #6B4A35;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-icons {
        gap: 12px;
    }

    .contact-link {
        font-size: 12px;
    }

    .contact-link span {
        display: none;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-logo {
        height: 80px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .product-card {
        min-width: 220px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .carousel-container {
        gap: 10px;
    }

    .order-contacts {
        flex-direction: column;
        align-items: center;
    }

    .order-contact {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-logo {
        height: 60px;
    }

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

    .product-card {
        min-width: 200px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .carousel-track {
        gap: 16px;
    }
}
