* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    background: linear-gradient(135deg, #ffffff 0%, #e3e9f3 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.minimelts-section {
    width: 100%;
    padding: 4rem 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

/* Text Content Styles */
.text-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fadeInLeft 0.8s ease-out;
}

.description-box {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px dashed #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.description-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

.cta-box {
    background: linear-gradient(135deg, #540264 0%, #732183 100%);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.cta-box:hover::before {
    left: 100%;
}

.cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.cta-subtitle {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 0.75rem;
}

.cta-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: #e6e6e6;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.cta-link:hover {
    color: #f8d4ff;
    transform: translateX(5px);
}

/* Image Content Styles */
.image-content {
    animation: fadeInRight 0.8s ease-out;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-wrapper:hover {
    transform: scale(1.05) rotate(2deg);
}

.product-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.image-wrapper:hover .product-image {
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .content-wrapper.page-3 {
        grid-template-columns: 3fr 2fr;
    }

    .description {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .content-wrapper {
        gap: 5rem;
    }

    .description-box {
        padding: 3rem;
    }

    .cta-box {
        padding: 3rem;
    }
}

@media (max-width: 767px) {
    .minimelts-section {
        padding: 2rem 1rem;
    }
    .description-box {
        padding: 1.5rem;
    }

    .cta-box {
        padding: 1.5rem;
    }

    .description {
        font-size: 1rem;
        text-align: left;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-link {
        font-size: 1rem;
        word-break: break-all;
    }
    .image-content {
        grid-row: 1;
    }
}

.home-footer {
    overflow: hidden;
}
.home-footer::after {
  top: -19px !important;
}

.page-header {
    position: relative;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0c040e8c;
    z-index: 1;
}

@media (max-width: 686px) {
    .page-header {
        height: 200px;
    }

}