
/* =========================
   AVE FIIT MAIN STYLES
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #050505;
    --dark: #111111;
    --white: #ffffff;
    --light: #f8f8f8;
    --soft-pink: #ffd6e8;
    --pink: #ff4fa0;
    --rose: #f5a6c8;
    --grey: #777777;
    --border: #e8e8e8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =========================
   ANNOUNCEMENT BAR
========================= */

.announcement {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 10px 15px;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 500;
}

/* =========================
   HEADER
========================= */

header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 115px;
    height: auto;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 35px;
}

nav ul li a {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    transition: 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--pink);
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-icons a {
    font-size: 18px;
    transition: 0.3s ease;
}

.header-icons a:hover {
    color: var(--pink);
}

.mobile-menu {
    display: none;
    font-size: 24px;
}

/* =========================
   BUTTONS
========================= */

.btn-primary,
.btn-secondary,
.product-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary {
    background: var(--pink);
    color: var(--white);
    border: 2px solid var(--pink);
}

.btn-primary:hover {
    background: var(--black);
    border-color: var(--black);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

.product-btn {
    background: var(--black);
    color: var(--white);
    padding: 11px 24px;
}

.product-btn:hover {
    background: var(--pink);
}

/* =========================
   HERO
========================= */

.hero {
    min-height: 88vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.48)),
        url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    min-height: 88vh;
    display: flex;
    align-items: center;
}

.hero-content {
    color: var(--white);
    max-width: 720px;
}

.hero-tag {
    display: inline-block;
    color: var(--soft-pink);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: 74px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 24px;
}

.hero p {
    font-size: 18px;
    max-width: 520px;
    margin-bottom: 35px;
    color: #f1f1f1;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.hero-stats {
    display: flex;
    gap: 45px;
    flex-wrap: wrap;
}

.hero-stats div {
    border-left: 2px solid var(--pink);
    padding-left: 15px;
}

.hero-stats h3 {
    font-size: 28px;
    font-weight: 800;
}

.hero-stats span {
    font-size: 13px;
    color: #eeeeee;
}

/* =========================
   SECTION TITLES
========================= */

.section-title {
    text-align: center;
    margin-bottom: 55px;
}

.section-title span {
    color: var(--pink);
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 700;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 800;
    margin: 10px 0;
}

.section-title p {
    max-width: 620px;
    margin: auto;
    color: var(--grey);
}

/* =========================
   FEATURED PRODUCTS
========================= */

.featured {
    padding: 100px 0;
    background: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.product-image {
    height: 360px;
    overflow: hidden;
    background: var(--light);
	position:relative;
}

.badge {
	position:absolute;
	top: 10px;
	left: 10px;
	background: #000;
	color: #fff;
	font-size: 12px;
	padding: 4px 10px;
	border-radius: 4px;
	z-index: 2;
	text-transform: uppercase;
}

.product-image img {
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-info {
    padding: 22px;
    text-align: center;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 18px;
    font-weight: 700;
    color: var(--pink);
    margin-bottom: 18px;
}

/* =========================
   COLLECTIONS
========================= */

.collections {
    padding: 100px 0;
    background: var(--light);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.collection-card {
    position: relative;
    height: 430px;
    border-radius: 28px;
    overflow: hidden;
}

.collection-card img {
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.collection-card:hover img {
    transform: scale(1.08);
}

.collection-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

.collection-content {
    position: absolute;
    bottom: 28px;
    left: 28px;
    z-index: 2;
    color: var(--white);
}

.collection-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.collection-content a {
    color: var(--soft-pink);
    font-weight: 700;
    font-size: 14px;
}

/* =========================
   ABOUT
========================= */

.about {
    padding: 110px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: center;
}

.about-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.about-image img {
    height: 620px;
    object-fit: cover;
}

.about-text span {
    color: var(--pink);
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 700;
}

.about-text h2 {
    font-size: 42px;
    line-height: 1.18;
    margin: 15px 0 25px;
    font-weight: 800;
}

.about-text p {
    color: var(--grey);
    margin-bottom: 18px;
}

/* =========================
   WHY CHOOSE US
========================= */

.why-us {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
}

.why-us .section-title p {
    color: #cfcfcf;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-card {
    background: #151515;
    padding: 45px 32px;
    border-radius: 26px;
    text-align: center;
    border: 1px solid #252525;
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--pink);
}

.why-card i {
    font-size: 34px;
    color: var(--pink);
    margin-bottom: 22px;
}

.why-card h3 {
    font-size: 22px;

    margin-bottom: 12px;
}

.why-card p {
    color: #cfcfcf;
    font-size: 14px;
}

/* =========================
   CONTACT
========================= */

.contact {
    padding: 100px 0;
    background: var(--light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 45px;
    align-items: center;
}

.contact-text span {
    color: var(--pink);
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 700;
}

.contact-text h2 {
    font-size: 40px;
    line-height: 1.2;
    margin: 12px 0 18px;
}

.contact-text > p {
    color: var(--grey);
    max-width: 620px;
    margin-bottom: 28px;
}

.contact-details {
    display: grid;
    gap: 16px;
}

.contact-details div {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 17px 20px;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.contact-details i {
    color: var(--pink);
    font-size: 19px;
    width: 25px;
}

.contact-details p {
    font-weight: 500;
}

.contact-box {
    background: var(--black);
    color: var(--white);
    padding: 45px;
    border-radius: 28px;
}

.contact-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-box p {
    color: #d8d8d8;
    margin-bottom: 28px;
}

/* =========================
   FOOTER
========================= */

footer {
    background: var(--black);
    color: var(--white);
    padding-top: 70px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 55px;
}

.footer-logo img {
    width: 120px;
    margin-bottom: 18px;
}

.footer-logo p {
    color: #cfcfcf;
    font-size: 14px;
    max-width: 330px;
}

.footer-links h4,
.footer-socials h4 {
    margin-bottom: 18px;
    font-size: 17px;
}

.footer-links ul li {
    color: #cfcfcf;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-links ul li a {
    transition: 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--pink);
}

.footer-socials div {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #181818;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: 0.3s ease;
}

.footer-socials a:hover {
    background: var(--pink);
}

.footer-bottom {
    border-top: 1px solid #222222;
    text-align: center;
    padding: 22px 15px;
}

.footer-bottom p {
    color: #aaaaaa;
    font-size: 13px;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 992px) {
    nav {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .header-icons {
        gap: 14px;
    }

    .hero h1 {
        font-size: 58px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collection-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-image img {
        height: 520px;
    }
}

@media (max-width: 600px) {
    .announcement {
        font-size: 10px;
        line-height: 1.5;
    }

    header .container {
        height: 75px;
    }

    .logo img {
        width: 95px;
    }

    .header-icons a {
        font-size: 16px;
    }

    .hero {
        min-height: 80vh;
        background-position: center;
    }

    .hero-overlay {
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        gap: 22px;
    }

    .section-title h2,
    .about-text h2,
    .contact-text h2 {
        font-size: 32px;
    }

    .featured,
    .collections,
    .about,
    .why-us,
    .contact {
        padding: 75px 0;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 430px;
    }

    .collection-card {
        height: 390px;
    }

    .about-image img {
        height: 470px;
    }

    .contact-box {
        padding: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
/* =========================
   SHOP PAGE
========================= */

.shop-hero {
    padding: 90px 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58)),
        url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.shop-hero span {
    color: var(--soft-pink);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.shop-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin: 12px 0;
}

.shop-hero p {
    max-width: 600px;
    margin: auto;
    color: #eeeeee;
}

.shop-page {
    padding: 100px 0;
    background: var(--white);
}

.shop-top {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 25px;
    margin-bottom: 50px;
}

.shop-top span {
    color: var(--pink);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.shop-top h2 {
    font-size: 42px;
    font-weight: 800;
    margin-top: 8px;
}

.shop-top p {
    color: var(--grey);
    font-weight: 500;
}

.shop-grid {
    row-gap: 38px;
}

.product-btn {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.order-info {
    padding: 80px 0;
    background: var(--black);
    color: var(--white);
}

.order-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.order-info-grid div {
    background: #151515;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #252525;
}

.order-info-grid i {
    color: var(--pink);
    font-size: 34px;
    margin-bottom: 18px;
}

.order-info-grid h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.order-info-grid p {
    color: #cfcfcf;
    font-size: 14px;
}

/* =========================
   SHOP RESPONSIVE
========================= */

@media (max-width: 992px) {
    .shop-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-info-grid {
        grid-template-columns: 1fr;
    }

    .shop-hero h1 {
        font-size: 46px;
    }
}

@media (max-width: 600px) {
    .shop-hero {
        padding: 70px 0;
    }

    .shop-hero h1 {
        font-size: 38px;
    }

    .shop-page {
        padding: 75px 0;
    }

    .shop-top h2 {
        font-size: 32px;
    }
}
/* =========================
   CART PAGE
========================= */

.cart-page {
    padding: 100px 0;
    background: var(--light);
}

.cart-page .container {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 35px;
    align-items: flex-start;
}

.cart-items {
    display: grid;
    gap: 20px;
}

.cart-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 20px;
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 20px;
    align-items: center;
}

.cart-item img {
    width: 120px;
    height: 140px;
    object-fit: cover;
    border-radius: 16px;
    background: var(--light);
}

.cart-item-details h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.cart-item-details p {
    color: var(--pink);
    font-weight: 700;
    margin-bottom: 12px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-controls button {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    cursor: pointer;
    font-size: 16px;
}

.quantity-controls span {
    font-weight: 700;
}

.remove-btn {
    border: none;
    background: transparent;
    color: var(--grey);
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s ease;
}

.remove-btn:hover {
    color: var(--pink);
}

.empty-cart {
    background: var(--white);
    border-radius: 22px;
    padding: 45px;
    text-align: center;
    border: 1px solid var(--border);
}

.empty-cart h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.empty-cart p {
    color: var(--grey);
    margin-bottom: 25px;
}

.cart-summary {
    background: var(--white);
    border-radius: 26px;
    padding: 35px;
    border: 1px solid var(--border);
    position: sticky;
    top: 120px;
}

.cart-summary h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.summary-row span {
    color: var(--grey);
}

.summary-row strong {
    text-align: right;
}

.summary-row.total {
    font-size: 20px;
    color: var(--black);
}

.summary-row.total strong {
    color: var(--pink);
}

.cart-note {
    color: var(--grey);
    font-size: 14px;
    margin: 22px 0;
}

.checkout-btn {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}

.continue-shopping {
    display: block;
    text-align: center;
    color: var(--pink);
    font-weight: 700;
    font-size: 14px;
}

@media (max-width: 992px) {
    .cart-page .container {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }
}

@media (max-width: 600px) {
    .cart-page {
        padding: 75px 0;
    }

    .cart-item {
        grid-template-columns: 90px 1fr;
    }

    .cart-item img {
        width: 90px;
        height: 110px;
    }

    .remove-btn {
        grid-column: 1 / -1;
        justify-self: flex-start;
    }
}
<!DOCTYPE html>
<html lang="en">

<head>

    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Checkout | Ave Fiit</title>

    <!-- Google Fonts -->
    <link rel="preconnect" href="https://fonts.googleapis.com">

    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>

    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap"
        rel="stylesheet">

    <!-- Font Awesome -->
    <link rel="stylesheet"
        href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css">

    <!-- Main CSS -->
    <link rel="stylesheet" href="css/style.css">

</head>

<body>

    <!-- Announcement Bar -->
    <div class="announcement">
        FREE SHIPPING ON ORDERS OVER R1500 • PRODUCTION STARTS AFTER ORDER IS PLACED • DELIVERY 7–14 DAYS
    </div>

    <!-- Header -->
    <header>
        <div class="container">

            <a href="index.html" class="logo">
                <img src="images/logo.png" alt="Ave Fiit">
            </a>

            <nav>
                <ul>
                    <li><a href="index.html">Home</a></li>
                    <li><a href="shop.html">Shop</a></li>
                    <li><a href="index.html#collections">Collections</a></li>
                    <li><a href="index.html#about">About</a></li>
                    <li><a href="index.html#contact">Contact</a></li>
                </ul>
            </nav>

            <div class="header-icons">
                <a href="#"><i class="fa-solid fa-magnifying-glass"></i></a>
                <a href="#"><i class="fa-regular fa-heart"></i></a>
                <a href="login.html"><i class="fa-regular fa-user"></i></a>
                <a href="cart.html" class="cart-icon-link">
		
            </div>

            <div class="mobile-menu">
                <i class="fa-solid fa-bars"></i>
            </div>

        </div>
    </header>

    <!-- Checkout Hero -->
    <section class="shop-hero">
        <div class="container">
            <span>SECURE YOUR ORDER</span>
            <h1>Checkout</h1>
            <p>Enter your details below to submit your Ave Fiit order.</p>
        </div>
    </section>

    <!-- Checkout Section -->
    <section class="checkout-page">

        <div class="container checkout-layout">

            <!-- Checkout Form -->
            <div class="checkout-form-box">

                <h2>Customer Details</h2>

                <form id="checkoutForm">

                    <div class="form-row">
                        <div class="form-group">
                            <label for="customerName">Full Name</label>
                            <input type="text" id="customerName" placeholder="Enter your full name" required>
                        </div>

                        <div class="form-group">
                            <label for="customerPhone">Phone Number</label>
                            <input type="tel" id="customerPhone" placeholder="Example: 076 700 9317" required>
                        </div>
                    </div>

                    <div class="form-group">
                        <label for="customerEmail">Email Address</label>
                        <input type="email" id="customerEmail" placeholder="Enter your email address" required>
                    </div>

                    <div class="form-group">
                        <label for="deliveryAddress">Delivery Address</label>
                        <textarea id="deliveryAddress" rows="4" placeholder="Enter your full delivery address" required></textarea>
                    </div>

                    <div class="form-row">
                        <div class="form-group">
                            <label for="city">City / Town</label>
                            <input type="text" id="city" placeholder="Example: Johannesburg" required>
                        </div>

                        <div class="form-group">
                            <label for="province">Province</label>
                            <select id="province" required>
                                <option value="">Select province</option>
                                <option value="Eastern Cape">Eastern Cape</option>
                                <option value="Free State">Free State</option>
                                <option value="Gauteng">Gauteng</option>
                                <option value="KwaZulu-Natal">KwaZulu-Natal</option>
                                <option value="Limpopo">Limpopo</option>
                                <option value="Mpumalanga">Mpumalanga</option>
                                <option value="Northern Cape">Northern Cape</option>
                                <option value="North West">North West</option>
                                <option value="Western Cape">Western Cape</option>
                            </select>
                        </div>
                    </div>

                    <div class="form-group">
                        <label for="postalCode">Postal Code</label>
                        <input type="text" id="postalCode" placeholder="Enter postal code" required>
                    </div>

                    <div class="form-group">
                        <label for="sizeNotes">Size Details</label>
                        <textarea id="sizeNotes" rows="4"
                            placeholder="Example: Lake Blue Jumpsuit - Medium, Sports Vest - Large" required></textarea>
                    </div>

                    <div class="form-group">
                        <label for="orderNotes">Order Notes</label>
                        <textarea id="orderNotes" rows="4"
                            placeholder="Any extra notes? Example: preferred colour, delivery instructions, etc."></textarea>
                    </div>

                    <button type="submit" class="btn-primary checkout-submit">
                        Submit Order via WhatsApp
                    </button>

                </form>

            </div>

            <!-- Order Summary -->
            <div class="checkout-summary">

                <h2>Order Summary</h2>

                <div id="checkoutItems" class="checkout-items">
                    <!-- Items will show here using JavaScript -->
                </div>

                <div class="summary-row">
                    <span>Subtotal</span>
                    <strong id="checkoutSubtotal">R0</strong>
                </div>

                <div class="summary-row">
                    <span>Delivery</span>
                    <strong>Calculated after order</strong>
                </div>

                <div class="summary-row total">
                    <span>Total</span>
                    <strong id="checkoutTotal">R0</strong>
                </div>

                <p class="cart-note">
                    Your order will be submitted to Ave Fiit via WhatsApp.
                    Payment and delivery confirmation will be arranged after submission.
                </p>

                <a href="cart.html" class="continue-shopping">
                    Back to Cart
                </a>

            </div>

        </div>

    </section>

    <!-- Footer -->
    <footer>

        <div class="container footer-content">

            <div class="footer-logo">
                <img src="images/logo.png" alt="Ave Fiit">

                <p>
                    Premium women’s activewear designed for confidence,
                    comfort and performance.
                </p>
            </div>

            <div class="footer-links">
                <h4>Quick Links</h4>

                <ul>
                    <li><a href="index.html">Home</a></li>
                    <li><a href="shop.html">Shop</a></li>
                    <li><a href="index.html#collections">Collections</a></li>
                    <li><a href="index.html#about">About</a></li>
                    <li><a href="index.html#contact">Contact</a></li>
                </ul>
            </div>

            <div class="footer-links">
                <h4>Contact</h4>

                <ul>
                    <li>076 700 9317</li>
                    <li>info@avefiit.co.za</li>
                    <li>@Ave_Fiit</li>
                    <li>www.avefiit.co.za</li>
                </ul>
            </div>

            <div class="footer-socials">
                <h4>Follow Us</h4>

                <div>
                    <a href="#"><i class="fa-brands fa-instagram"></i></a>
                    <a href="#"><i class="fa-brands fa-facebook-f"></i></a>
                    <a href="#"><i class="fa-brands fa-tiktok"></i></a>
                </div>
            </div>

        </div>

        <div class="footer-bottom">
            <p>© 2026 Ave Fiit. All Rights Reserved.</p>
        </div>

    </footer>

    <!-- Main JavaScript -->
    <script src="js/app.js"></script>
/* =========================
   CART COUNT ICON FINAL FIX
========================= */

.header-icons {
    display: flex;
    align-items: center;
    gap: 22px;
}

.header-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-icons a.cart-icon-link {
    position: relative;
    width: 28px;
    height: 28px;
    overflow: visible;
}

.header-icons a.cart-icon-link .cart-count {
    position: absolute;
    top: -9px;
    right: -10px;
    background: var(--pink);
    color: var(--white);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 10;
}
/* =========================
   SEARCH OVERLAY
========================= */

.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.search-box {
    background: var(--white);
    width: 100%;
    max-width: 620px;
    border-radius: 28px;
    padding: 45px;
    position: relative;
    text-align: center;
}

.close-search {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    cursor: pointer;
    font-size: 18px;
}

.search-box h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.search-box p {
    color: var(--grey);
    margin-bottom: 28px;
}

.search-input-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.search-input-row input {
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 40px;
    font-family: inherit;
    font-size: 15px;
    outline: none;
}

.search-input-row input:focus {
    border-color: var(--pink);
}

.search-input-row button {
    border: none;
    background: var(--pink);
    color: var(--white);
    padding: 0 28px;
    border-radius: 40px;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
}

.no-search-results {
    display: none;
    text-align: center;
    margin-top: 35px;
    color: var(--grey);
    font-weight: 600;
}

@media (max-width: 600px) {
    .search-box {
        padding: 35px 24px;
    }

    .search-input-row {
        grid-template-columns: 1fr;
    }

    .search-input-row button {
        padding: 15px 25px;
    }
}
/* =========================
   MOBILE MENU
========================= */

.mobile-menu {
    cursor: pointer;
}

@media (max-width: 992px) {
    header .container {
        position: relative;
    }

    header nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 0 0 22px 22px;
        padding: 25px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
        display: none;
    }

    header nav.active {
        display: block;
    }

    header nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    header nav ul li a {
        font-size: 16px;
    }
}
/* =========================
   SHOP FILTERS
========================= */

.shop-filters {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.filter-btn {
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--black);
    padding: 12px 24px;
    border-radius: 40px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--pink);
    color: var(--white);
    border-color: var(--pink);
}
/* =========================
   CART SIZE SELECT
========================= */

.cart-size-select {
    margin-bottom: 12px;
}

.cart-size-select label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.cart-size-select select {
    width: 160px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 13px;
    outline: none;
    background: var(--white);
}

.cart-size-select select:focus {
    border-color: var(--pink);
}

@media (max-width: 600px) {
    .cart-size-select select {
        width: 100%;
    }
}

/* PAYFAST CHECKOUT PRODUCT DISPLAY */

#checkoutItems {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 24px;
    box-sizing: border-box;
}

#checkoutItems .checkout-item {
    display: grid;
    grid-template-columns: 130px 1fr;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid #eeeeee;
}

#checkoutItems .checkout-item img {
    width: 130px !important;
    height: 150px !important;
    max-width: 130px !important;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

#checkoutItems .checkout-item h4 {
    margin: 0 0 8px;
    font-size: 18px;
}

#checkoutItems .checkout-item p {
    margin: 4px 0;
}

#payfastCheckoutForm {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 24px 50px;
    box-sizing: border-box;
}

@media (max-width: 600px) {
    #checkoutItems .checkout-item {
        grid-template-columns: 90px 1fr;
        gap: 15px;
    }

    #checkoutItems .checkout-item img {
        width: 90px !important;
        height: 110px !important;
        max-width: 90px !important;
    }
}
/* =========================================
   AVE FIIT POLICY PAGE
========================================= */

.policy-page {
    margin: 0;
    background: #fafafa;
    color: #171717;
    font-family: "Poppins", Arial, sans-serif;
    line-height: 1.7;
}

.policy-header {
    background: #050505;
    border-bottom: 3px solid #ef9fbd;
    padding: 18px 5%;
}

.policy-header-inner {
    width: min(1160px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.policy-brand {
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 3px;
    text-decoration: none;
}

.policy-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.policy-navigation a {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
}

.policy-navigation a:hover {
    color: #ef9fbd;
}

.policy-container {
    width: min(1050px, 90%);
    margin: 45px auto 70px;
}

.policy-introduction {
    padding: 45px;
    text-align: center;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
}

.policy-label {
    margin-bottom: 8px;
    color: #c85f88;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.policy-introduction h1 {
    margin: 0 0 15px;
    font-size: clamp(32px, 6vw, 52px);
    line-height: 1.15;
}

.policy-introduction > p {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.policy-updated {
    color: #777777;
    font-size: 14px;
}

.policy-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 28px 0;
}

.policy-links a {
    padding: 10px 18px;
    color: #111111;
    background: #f8dce7;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.policy-links a:hover {
    color: #ffffff;
    background: #111111;
}

.policy-section {
    scroll-margin-top: 25px;
    margin-bottom: 28px;
    padding: 38px 42px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 16px;
}

.policy-section h2 {
    margin-top: 0;
    padding-bottom: 13px;
    border-bottom: 2px solid #f4bfd3;
    font-size: 30px;
}

.policy-section h3 {
    margin-top: 28px;
    margin-bottom: 8px;
    font-size: 18px;
}

.policy-section p {
    margin: 10px 0;
}

.policy-section ul {
    padding-left: 23px;
}

.policy-section li {
    margin-bottom: 7px;
}

.policy-section a {
    color: #bd4e79;
}

.business-details {
    margin: 20px 0;
    padding: 22px;
    background: #fff5f8;
    border-left: 4px solid #d86f98;
    border-radius: 8px;
}

.business-details p {
    margin: 7px 0;
}

.policy-contact {
    padding: 40px 25px;
    text-align: center;
    background: #111111;
    color: #ffffff;
    border-radius: 16px;
}

.policy-contact h2 {
    margin-top: 0;
}

.policy-contact a {
    color: #f5b9d0;
}

.policy-shop-button {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 25px;
    color: #111111 !important;
    background: #f5b9d0;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

.policy-shop-button:hover {
    background: #ffffff;
}

.policy-footer {
    padding: 28px 5%;
    text-align: center;
    background: #050505;
    color: #dddddd;
}

.policy-footer p {
    margin: 0 0 12px;
    font-size: 13px;
}

.policy-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.policy-footer-links a {
    color: #ffffff;
    font-size: 13px;
    text-decoration: none;
}

.policy-footer-links a:hover {
    color: #ef9fbd;
}

@media (max-width: 700px) {

    .policy-header-inner {
        flex-direction: column;
        text-align: center;
    }

    .policy-navigation {
        justify-content: center;
    }

    .policy-container {
        width: 92%;
        margin-top: 25px;
    }

    .policy-introduction,
    .policy-section {
        padding: 27px 20px;
    }

    .policy-section h2 {
        font-size: 25px;
    }

    .policy-links {
        align-items: stretch;
        flex-direction: column;
    }

    .policy-links a {
        text-align: center;
    }
}
.footer-policy-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 22px;
    margin-top: 18px;
}

.footer-policy-links a {
    color: #ffffff;
    font-size: 13px;
    text-decoration: none;
}

.footer-policy-links a:hover {
    color: #ef9fbd;
    text-decoration: underline;
}
</body>

</html>