@charset "utf-8";
:root {
    --purple: #6C399A;
    --pink: #C34776;
    --brown: #3C281A;
    --bg: #FFF6F1;
    --cream: #FFFEE2;
    --line: #3C281A;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Baloo 2', sans-serif;
    background: var(--bg);
    color: var(--brown);
}

a {
            text-decoration: none;
            color: inherit;
        }


.cart-icon-link {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--pink);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}




 .site-wrapper {
            width: 100%;
        }

        .top-bar {
    background: linear-gradient(90deg, #4a2b18, #3c2415);
    color: #fff;
    padding: 0 30px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.top-links {
    position: absolute;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.top-tagline {
    font-size: 14px;
    white-space: nowrap;
    text-align: center;
}

        .top-links a {
            font-size: 15px;
            font-weight: 400;
            letter-spacing: 0.2px;
            transition: opacity 0.2s ease;
        }

        .top-links a:hover,
        .top-icons a:hover,
        .category-link:hover,
        .dropdown-menu a:hover {
            opacity: 0.82;
        }

        .top-tagline {
            font-size: 14px;
            white-space: nowrap;
        }

        .middle-bar {
    background: #f7f0eb;
    padding: 18px 100px;   
    border-bottom: 1px solid #8e7d72;
    display: grid;
    grid-template-columns: 180px 1fr 180px;
    align-items: center;
}

        .logo img {
            width: 96px;
            height: auto;
            display: block;
        }

        .search-area {
            position: relative;
            max-width: 560px;
            width: 100%;
            margin: 0 auto;
        }

        .search-form {
            width: 100%;
            position: relative;
        }

        .search-input {
            width: 100%;
            height: 44px;
            border: none;
            outline: none;
            border-radius: 999px;
            padding: 0 58px 0 18px;
            background: linear-gradient(90deg, #b03b87, #6a36b7);
            color: #fff;
            font-size: 16px;
        }

        .search-input::placeholder {
            color: rgba(255,255,255,0.9);
        }

        .search-btn {
            position: absolute;
            top: 50%;
            right: 14px;
            transform: translateY(-50%);
            border: none;
            background: transparent;
            color: #fff;
            font-size: 22px;
            cursor: pointer;
        }

        .search-suggestions {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            width: 100%;

            background: #fff;
            border-radius: 14px;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
            overflow: hidden;
            display: none;
            z-index: 1000;
        }

        .search-suggestions.show {
            display: block;
        }

        .suggestion-item {
            display: block;
            padding: 12px 16px;
            font-size: 14px;
            color: #4a2f1d;
            border-bottom: 1px solid #f0e8e3;
            transition: background 0.2s ease;
        }

        .suggestion-item:last-child {
            border-bottom: none;
        }

        .suggestion-item:hover,
        .suggestion-item.active {
            background: #f7f0eb;
        }

        .top-icons {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 26px;
        }

        .top-icons a {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            font-size: 14px;
            color: #4a2f1d;
        }

        .top-icons i {
            font-size: 25px;
            color: #7c3bb1;
        }

 header {
    position: relative;
    z-index: 500;
}



.checkout-page {
    max-width: 1180px;
    margin: 60px auto;
    padding: 0 30px;
}

.checkout-title {
    font-size: 46px;
    margin-bottom: 28px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1.6fr 0.8fr;
    gap: 34px;
    align-items: start;
}

.checkout-section {
    background: var(--cream);
    margin-bottom: 26px;
    border-radius: 18px;
    overflow: hidden;
}

.section-heading {
    background: linear-gradient(135deg, var(--purple), var(--pink));
	 background-size: 200% 200%;
    animation: gradientMove 6s ease infinite;
    color: var(--cream);
    padding: 18px 24px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.pickup-box {
    margin: 24px;
    padding: 18px;
    border: 2px solid rgba(60, 40, 26, 0.15);
    border-radius: 14px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.pickup-box i {
    font-size: 28px;
    color: var(--pink);
}

.pickup-box p {
    margin: 4px 0 0;
}

.form-grid {
    padding: 0 24px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    height: 46px;
    border: none;
    background: #d2c8c0;
    padding: 0 14px;
    font-family: inherit;
    font-size: 16px;
    outline: none;
}

.payment-options {
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.payment-option {
    border: 2px solid rgba(60, 40, 26, 0.15);
    padding: 16px;
    border-radius: 14px;
    display: flex;
    gap: 12px;
    cursor: pointer;
}

.payment-option input {
    accent-color: var(--pink);
}

.payment-option small {
    display: block;
    margin-top: 4px;
    color: #6f635a;
}

.qr-section {
    display: none;
    padding: 0 24px 28px;
}

.qr-box {
    width: 260px;
    background: white;
    padding: 12px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.qr-box img {
    width: 100%;
    display: block;
}

.upload-box input[type="file"] {
    display: none;
}

.upload-box {
    min-height: 180px;
    border: 2px dashed rgba(108, 57, 154, 0.45);
    background: #d2c8c0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    text-align: center;
}

.upload-box i {
    font-size: 34px;
    color: var(--purple);
}

.upload-box strong {
    font-size: 22px;
}

.upload-box span,
.upload-box small {
    color: #6f635a;
}

.uploaded-file-box {
    margin-top: 14px;
}

.uploaded-file-item {
    background: rgba(255, 255, 255, 0.65);
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.uploaded-file-icon {
    font-size: 24px;
    color: var(--purple);
}

.uploaded-file-info {
    flex: 1;
}

.uploaded-file-name {
    font-weight: 700;
    line-height: 1.2;
}

.uploaded-file-size {
    font-size: 13px;
    color: #6f635a;
}

.remove-upload-btn {
    border: none;
    background: transparent;
    color: var(--pink);
    font-size: 22px;
    cursor: pointer;
}

.submit-btn {
    border: none;
    background: var(--pink);
    color: white;
    padding: 14px 40px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
}

.submit-btn:hover {
    background: var(--purple);
}

.checkout-summary {
    background: var(--cream);
    border-radius: 18px;
    overflow: hidden;
    position: sticky;
    top: 30px;
}

.summary-heading {
    background: rgba(60, 40, 26, 0.12);
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-heading h2 {
    margin: 0;
    font-size: 22px;
    text-transform: uppercase;
}

.summary-heading a {
    color: var(--brown);
    font-size: 14px;
}

.summary-item {
    display: flex;
    gap: 14px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(60, 40, 26, 0.18);
}

.summary-item img {
    width: 74px;
    height: 74px;
    object-fit: cover;
    background: white;
}

.summary-info h3 {
    margin: 0 0 6px;
    font-size: 16px;
}

.summary-info p {
    margin: 2px 0;
    font-size: 14px;
}

.summary-total {
    padding: 20px;
}

.summary-total div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.final-total {
    border-top: 1px solid rgba(60, 40, 26, 0.25);
    padding-top: 14px;
    font-size: 20px;
    color: var(--pink);
}

.empty-cart {
    padding: 24px;
}


label.upload-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.upload-box i,
.upload-box strong,
.upload-box span,
.upload-box small {
    display: block;
    text-align: center;
    line-height: 1.2;
}



.flatpickr-calendar {
    font-family: 'Baloo 2', sans-serif;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--pink);
    border-color: var(--pink);
}

.flatpickr-day:hover {
    background: #e8c2d2;
}

.flatpickr-time input:hover {
    background: var(--pink);
    color: #FFFEE2;
}

.flatpickr-months {
    background: var(--purple);
    color: #FFFEE2;
}

.flatpickr-current-month input.cur-year {
    color: #FFFEE2;
}

@media (max-width: 900px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .payment-options {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}








.success-page {
    min-height: 100vh;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.success-card {
    width: min(560px, 100%);
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: white;
    border-radius: 32px;
    padding: 52px 48px;
    text-align: center;
}

.success-card h1 {
    margin: 0 0 18px;
    font-size: 34px;
}

.success-card p {
    font-size: 17px;
    line-height: 1.6;
}

.order-info {
    background: rgba(255,255,255,0.16);
    border-radius: 18px;
    padding: 16px;
    margin: 24px 0;
}

.order-info p {
    margin: 6px 0;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    color: var(--brown);
    text-decoration: none;
    padding: 12px 38px;
    border-radius: 999px;
    font-weight: 700;
}



.site-footer {
    margin-top: 100px;
    color: #fff;

    background: linear-gradient(
        270deg,
        #c34776,
        #6c399a,
        #c34776
    );

    background-size: 400% 400%;  
    animation: gradientMove 6s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.footer-top {
    max-width: 1100px;
    margin: 0 auto;
    padding: 45px 50px 35px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.1fr;
    gap: 40px;
}

.footer-column h3,
.footer-subtitle {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 14px;
    position: relative;
    display: inline-block;
}

.footer-column h3::after,
.footer-subtitle::after {
    content: "";
    display: block;
    width: 160px;
    height: 2px;
    background: #D9D462;
    margin-top: 6px;
}

.footer-column h3::after {
    content: "";
    display: block;
    width: 160px;
    height: 2px;
    background: #D9D462;
    margin-top: 6px;

    transform: scaleX(0);         
    transform-origin: left;
    transition: transform 0.4s ease;
}

.footer-column h3:hover::after {
    transform: scaleX(1); 
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0 0 26px 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

.footer-social a {
    font-size: 24px;
    color: #fff;
}

.footer-map {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
    margin-bottom: 14px;
}

.footer-address,
.footer-phone {
    font-size: 14px;
    line-height: 1.7;
    color: #f7f0eb;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    text-align: center;
    padding: 18px 20px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.08);
}


@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-map {
        max-width: 100%;
    }
}
