/* ==========================
   Global Styles
   =========================
*/
.main-container
{
    margin: 0;
    padding: 0;
}
section {
    margin-bottom: 20px !important;
}

/* =========================
   TopNav Styles
   ========================= */

.topnav-gradient {
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    position: relative;
    background: linear-gradient(90deg, #ea5c8a 0%, #a844e2 100%);
    border-radius: 12px 12px 0 0;
    min-height: 64px;
    display: flex;
    align-items: center;
    padding: 0;
    z-index: 100;
}

.topnav-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-circle {
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.logo-text {
    font-family: 'Fredoka', 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .nav-links a {
        color: #fff;
        font-family: 'Fredoka', 'Segoe UI', Arial, sans-serif;
        font-weight: 700;
        font-size: 1.1rem;
        text-decoration: none;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: #ffe36e;
        }

.nav-cart {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 16px;
}

.cart-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ffe36e;
    color: #222;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    z-index: 2;
}

.nav-hamburger {
    background: none;
    border: none;
    padding: 0 0 0 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.nav-actions {
    display: none;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

/* =========================
   Mobile Nav Overlay
   ========================= */

@media (max-width: 767.98px) {
    .topnav-content {
        padding: 0 12px;
        min-height: 56px;
    }

    .nav-logo .logo-text {
        font-size: 1.1rem;
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-left: auto;
    }

    .nav-cart {
        position: relative;
        display: flex;
        align-items: center;
    }

    .cart-badge {
        position: absolute;
        top: -8px;
        right: -8px;
        width: 18px;
        height: 18px;
        font-size: 0.8rem;
        border-width: 1.5px;
    }

    .nav-hamburger {
        background: none;
        border: none;
        padding: 0 0 0 8px;
        cursor: pointer;
        display: flex;
        align-items: center;
    }

    .mobile-nav-overlay {
        display: none;
        position: fixed;
        z-index: 9999;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(168, 68, 226, 0.95);
        animation: fadeIn 0.3s;
    }

        .mobile-nav-overlay.active {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

    .mobile-nav-close {
        position: absolute;
        top: 18px;
        right: 18px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 10001;
    }

    .mobile-nav-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }

        .mobile-nav-links a {
            font-family: 'Fredoka', 'Segoe UI', Arial, sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
            text-shadow: 0 2px 8px rgba(0,0,0,0.12);
            transition: color 0.2s;
        }

            .mobile-nav-links a:hover {
                color: #ffe36e;
            }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }
}

/* =========================
   Hero Section
   ========================= */
.hero-section {
    position: relative; 
    min-height: 480px;
    background: #fffbe7;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: url('/img/hero.png') no-repeat center right;
    background-size: cover;
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 64px 32px 0 32px;
    z-index: 1;
}

.hero-content {
    max-width: 540px;
    z-index: 2;
}

    .hero-content h1 {
        font-family: 'Fredoka', 'Segoe UI', Arial, sans-serif;
        font-size: 2.8rem;
        font-weight: 800;
        color: #4c249f;
        margin-bottom: 18px;
        letter-spacing: 1px;
    }

.hero-accent {
    color: #ff5fa2;
}

.hero-desc {
    font-size: 1.15rem;
    color: #4c249f;
    margin-bottom: 32px;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.hero-image-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    margin-left: 32px;
}

.hero-img {
    width: 420px;
    max-width: 90vw;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(76,36,159,0.12);
    background: #fbeff3;
    display: block;
}

.hero-badge {
    position: absolute;
    bottom: -32px;
    right: 32px;
    background: #fff36e;
    color: #4c249f;
    font-family: 'Fredoka', 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 8px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(76,36,159,0.08);
    transform: rotate(-7deg);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-heart {
    color: #ff5fa2;
    font-size: 1.2em;
}

.desktop-img {
    display: block;
}

.mobile-img {
    display: none;
}

@media (max-width: 900px) {
    .hero-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 12px 0 12px;
    }

    .hero-image-card {
        margin-left: 0;
        align-items: center;
        width: 100%;
    }

    .hero-img {
        width: 90vw;
        max-width: 420px;
    }

    .hero-badge {
        right: 0;
        left: 50%;
        transform: translateX(-50%) rotate(-7deg);
        bottom: -28px;
    }
}

@media (max-width: 767.98px) {
    .hero-bg-img {
        background: url('/img/hero-mobile.png') no-repeat center center;
        background-size: cover;
        opacity: 0.18;
    }

    .desktop-img {
        display: none;
    }

    .mobile-img {
        display: block;
    }

    .hero-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 8px 0 8px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-img {
        width: 100vw;
        max-width: 340px;
    }

    .hero-badge {
        font-size: 1rem;
        padding: 6px 16px;
        bottom: -18px;
    }
}

/* =========================
   Button Styles
   ========================= */
.btn {
    padding: 14px 32px;
    border-radius: 24px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(76,36,159,0.08);
    transition: background 0.2s, color 0.2s;
    border: none;
    display: inline-block;
}

.btn-pink {
    background: #ff5fa2;
    color: #fff;
}

    .btn-pink:hover {
        background: #e04c8c;
    }

.btn-purple {
    background: #e6d6ff;
    color: #4c249f;
}

    .btn-purple:hover {
        background: #d1bfff;
        color: #ff5fa2;
    }

/* =========================
   Utility Styles
   ========================= */
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}
/* =========================
   Product Detail Styles
   ========================= */
.product-detail-section {
    width: 100vw;
    background: #fff;
    display: flex;
    justify-content: center;
    padding: 48px 0;
}

.product-detail-inner {
    display: flex;
    gap: 48px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    align-items: flex-start;
    padding: 0 32px;
}

.product-detail-image-gallery {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.product-detail-main-img {
    width: 420px;
    max-width: 90vw;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(76,36,159,0.10);
    background: #fbeff3;
    object-fit: contain;
}

.product-detail-thumbnails {
    display: flex;
    gap: 10px;
}

.product-detail-thumb {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid #e6d6ff;
    transition: border 0.2s;
}

    .product-detail-thumb:hover {
        border: 2px solid #ff5fa2;
    }

.product-detail-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.product-detail-title {
    font-family: 'Fredoka', 'Segoe UI', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #6c249f;
    margin-bottom: 8px;
}

.product-detail-category {
    color: #a844e2;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.product-detail-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff5fa2;
    margin-bottom: 12px;
}

.product-detail-desc {
    font-size: 1.1rem;
    color: #4c249f;
    margin-bottom: 18px;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 400;
}

.product-detail-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 18px;
}

    .product-detail-form select {
        padding: 12px 18px;
        border-radius: 8px;
        border: 1px solid #e6d6ff;
        font-size: 1rem;
        color: #6c249f;
        font-family: inherit;
    }

.product-detail-addcart {
    background: #ff5fa2;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

    .product-detail-addcart:hover {
        background: #e04c8c;
    }

@media (max-width: 900px) {
    .product-detail-inner {
        flex-direction: column;
        gap: 24px;
        padding: 0 12px;
    }

    .product-detail-main-img {
        width: 90vw;
        max-width: 420px;
    }
}

/* =========================
   Product Grid Styles
   ========================= */
.product-grid-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 16px 0 16px;
    text-align: center;
}

.product-grid-title {
    font-family: 'Fredoka', 'Segoe UI', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #6c249f;
    margin-bottom: 8px;
}

.product-grid-subtitle {
    font-size: 1.1rem;
    color: #4c249f;
    margin-bottom: 32px;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 400;
}

.product-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.product-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(76,36,159,0.10);
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    transition: box-shadow 0.2s;
    position: relative;
}

.product-card-img-bg {
    position: relative;
    padding: 48px 0 32px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 220px;
    background: linear-gradient(135deg, #ffd1ea 0%, #e6d6ff 100%);
}

.product-card:nth-child(2) .product-card-img-bg {
    background: linear-gradient(135deg, #cbe6ff 0%, #e6f0ff 100%);
}

.product-card:nth-child(3) .product-card-img-bg {
    background: linear-gradient(135deg, #d2f9e6 0%, #fff9d1 100%);
}

.product-card-img {
    width: 280px;
    height: 220px;
    object-fit: contain;
    border-radius: 50%;
    background: none;
}

.product-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(76,36,159,0.08);
    z-index: 2;
}

.badge-yellow {
    background: #ffe36e;
    color: #6c249f;
}

.badge-pink {
    background: #ff5fa2;
    color: #fff;
}

.product-card-info {
    background: #f9f7fc;
    padding: 24px 28px 18px 28px;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .product-card-info h3 {
        font-family: 'Fredoka', 'Segoe UI', Arial, sans-serif;
        font-size: 1.25rem;
        font-weight: 700;
        color: #6c249f;
        margin-bottom: 8px;
    }

.product-desc {
    font-size: 1rem;
    color: #4c249f;
    margin-bottom: 18px;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 400;
}

.product-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff5fa2;
    font-family: 'Fredoka', 'Segoe UI', Arial, sans-serif;
}

.btn-cart {
    background: #a844e2;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 28px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

    .btn-cart:hover {
        background: #6c249f;
    }

.product-grid-footer {
    margin: 32px 0 0 0;
    text-align: center;
}

.btn-view-all {
    padding: 16px 38px;
    border-radius: 24px;
    font-size: 1.15rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(76,36,159,0.08);
    background: #ff5fa2;
    color: #fff;
    border: none;
    transition: background 0.2s;
    display: inline-block;
}

    .btn-view-all:hover {
        background: #e04c8c;
    }

@media (max-width: 900px) {
    .product-grid {
        gap: 18px;
    }

    .product-card {
        max-width: 340px;
    }

    .product-card-info {
        padding: 18px 16px 14px 16px;
    }
}

@media (max-width: 767.98px) {
    .product-grid-section {
        padding: 18px 0 0 0;
    }

    .product-grid-title {
        font-size: 1.4rem;
    }

    .product-grid {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .product-card {
        max-width: 98vw;
    }

    .product-card-img-bg {
        min-height: 140px;
        padding: 24px 0 16px 0;
    }

    .product-card-img {
        width: 80px;
        height: 80px;
    }

    .product-card-info {
        padding: 12px 8px 10px 8px;
    }

    .btn-view-all {
        padding: 12px 24px;
        font-size: 1rem;
    }
}
/* =========================
   About Us Styles
   ========================= */
.aboutus-section {
    width: 100vw;
    background: linear-gradient(135deg, #fff7fc 0%, #f9f7fc 100%);
    padding: 64px 0 0 0;
    display: flex;
    justify-content: center;
    margin-bottom: 40px !important;
}

.aboutus-inner {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px 0 32px;
    gap: 64px;
    width: 100%;
}

.aboutus-image-card {
    position: relative;
    min-width: 480px;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.aboutus-image-bg {
    background: #fbe3f3;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(76,36,159,0.10);
    padding: 32px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-3deg);
}

.aboutus-face-img {
    width: 340px;
    height: 340px;
    object-fit: contain;
    background: none;
}

.aboutus-heart {
    position: absolute;
    right: -32px;
    bottom: -32px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutus-content {
    flex: 1;
    text-align: left;
    padding: 0 0 0 0;
}

.aboutus-title {
    font-family: 'Fredoka', 'Segoe UI', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #6c249f;
    margin-bottom: 18px;
}

.aboutus-desc {
    font-size: 1.1rem;
    color: #4c249f;
    margin-bottom: 18px;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 400;
}

.aboutus-author {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
}

.aboutus-author-img img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fbe3f3;
    box-shadow: 0 2px 8px rgba(76,36,159,0.08);
}

.aboutus-author-name {
    font-family: 'Fredoka', 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
    color: #6c249f;
    font-size: 1.1rem;
}

.aboutus-author-role {
    color: #ff5fa2;
    font-size: 1rem;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 500;
}

@media (max-width: 900px) {
    .aboutus-inner {
        flex-direction: column;
        gap: 32px;
        padding: 0 12px;
    }

    .aboutus-image-card {
        min-width: 0;
        max-width: 100vw;
    }

    .aboutus-face-img {
        width: 220px;
        height: 220px;
    }

    .aboutus-heart {
        right: -16px;
        bottom: -16px;
    }
}

@media (max-width: 767.98px) {
    .aboutus-section {
        padding: 32px 0 0 0;
    }

    .aboutus-title {
        font-size: 1.3rem;
    }

    .aboutus-face-img {
        width: 140px;
        height: 140px;
    }

    .aboutus-image-bg {
        padding: 12px;
    }

    .aboutus-heart svg {
        width: 32px;
        height: 32px;
    }
}
/* =========================
   Newsletter Banner Styles
   ========================= */
.newsletter-section {
    width: 100vw;
    min-height: 220px;
    background: linear-gradient(90deg, #ea5c8a 0%, #a844e2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 0 56px 0;
}

.newsletter-inner {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-family: 'Fredoka', 'Segoe UI', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.newsletter-desc {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 32px;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 400;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 520px;
    margin: 0 auto;
}

    .newsletter-form input[type="email"] {
        flex: 1;
        padding: 18px 24px;
        border: none;
        border-radius: 10px 0 0 10px;
        font-size: 1.1rem;
        font-family: inherit;
        outline: none;
        background: #fff;
        color: #6c249f;
        font-weight: 500;
        min-width:400px;
        max-height: 48px;
    }

        .newsletter-form input[type="email"]::placeholder {
            color: #b3b3b3;
            font-weight: 400;
        }

    .newsletter-form button {
        background: #ffe36e;
        color: #6c249f;
        font-family: 'Fredoka', 'Segoe UI', Arial, sans-serif;
        font-weight: 700;
        font-size: 1.1rem;
        border: none;
        border-radius: 0 10px 10px 0;
        padding: 0 38px;
        cursor: pointer;
        transition: background 0.2s, color 0.2s;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .newsletter-form button:hover {
            background: #ffd600;
            color: #a844e2;
        }

@media (max-width: 600px) {
    .newsletter-title {
        font-size: 1.3rem !important;
    }

    .newsletter-form {
        flex-direction: column !important;
        gap: 12px !important;
        max-width: 98vw !important;
    }

        .newsletter-form input[type="email"], .newsletter-form button {
            border-radius: 10px !important;
            width: 50% !important;
            font-size: 1rem !important;
        }
}
/* =========================
   Contact Us Styles
   =========================
*/
.contactus-section {
    width: 100vw;
    padding: 48px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contactus-title {
    font-family: 'Fredoka', 'Segoe UI', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #6c249f;
    text-align: center;
    margin-bottom: 32px;
}

.contactus-card {
    background: #faf4ff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(76,36,159,0.10);
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 0;
    padding: 32px 0;
}

.contactus-form, .contactus-info {
    flex: 1;
    padding: 0 40px;
}

.contactus-form-title, .contactus-info-title {
    font-family: 'Fredoka', 'Segoe UI', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ff5fa2;
    margin-bottom: 18px;
}

.contactus-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contactus-form label {
    font-size: 1rem;
    color: #6c249f;
    font-weight: 500;
    margin-bottom: 4px;
}

.contactus-form input,
.contactus-form textarea {
    border: none;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    color: #6c249f;
    box-shadow: 0 2px 8px rgba(76,36,159,0.06);
    margin-bottom: 8px;
    resize: none;
}

.contactus-form textarea {
    min-height: 120px;
    max-height: 220px;
}

.contactus-btn {
    background: #ff5fa2;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}

    .contactus-btn:hover {
        background: #e04c8c;
    }

.contactus-info {
    border-left: 1px solid #e6d6ff;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: flex-start;
}

.contactus-info-title {
    margin-bottom: 18px;
}

.contactus-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
    color: #6c249f;
    font-size: 1rem;
}

.contactus-icon {
    margin-top: 2px;
    flex-shrink: 0;
}

.contactus-social {
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
    transition: opacity 0.2s;
}

    .contactus-social:hover svg {
        opacity: 0.7;
    }

@media (max-width: 900px) {
    .contactus-card {
        flex-direction: column;
        padding: 24px 0;
    }

    .contactus-info {
        border-left: none;
        border-top: 1px solid #e6d6ff;
        margin-top: 24px;
        padding-top: 24px;
    }

    .contactus-form, .contactus-info {
        padding: 0 18px;
    }
}

@media (max-width: 600px) {
    .contactus-title {
        font-size: 1.2rem;
    }

    .contactus-card {
        max-width: 98vw;
        padding: 12px 0;
    }

    .contactus-form, .contactus-info {
        padding: 0 6px;
    }
}

/* =========================
   Footer Styles
   ========================= */
.custom-footer {
    background: #6c249f;
    color: #fff;
    font-family: 'Fredoka', 'Segoe UI', Arial, sans-serif;
    padding: 48px 0 0 0;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1400px; 
    margin: 0 auto;
    padding: 0 48px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1 1 0;
    min-width: 220px;
    margin-right: 32px;
}

    .footer-col:last-child {
        margin-right: 0;
    }

.footer-brand h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 18px;
    margin-top: 8px;
}

    .footer-social a svg {
        vertical-align: middle;
        transition: opacity 0.2s;
    }

    .footer-social a:hover svg {
        opacity: 0.7;
    }

.footer-col h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-col ul li {
        margin-bottom: 10px;
    }

        .footer-col ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 400;
            transition: color 0.2s;
        }

            .footer-col ul li a:hover {
                color: #ffe36e;
            }


.newsletter-form {
    display: flex;
    max-width: 340px;
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid #a844e2;
    margin-top: 36px;
    padding: 18px 0 12px 0;
    text-align: right;
    font-size: 1rem;
    color: #fff;
    opacity: 0.85;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .footer-content {
        flex-wrap: wrap;
        padding: 0 16px;
    }

    .footer-col {
        min-width: 180px;
        margin-right: 18px;
    }
}

@media (max-width: 767.98px) {
    .custom-footer {
        padding: 32px 0 0 0;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 12px;
    }

    .footer-col {
        margin-bottom: 32px;
        margin-right: 0;
        min-width: 0;
        width: 100%;
    }

    .footer-bottom {
        text-align: center;
        font-size: 0.95rem;
        padding: 14px 0 10px 0;
    }
}