/* Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #fff;
    color: #222;
    line-height: 1.6;
}

.logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0;
    border-radius: 50%;
    padding: 1px 0;
}


/* Header */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background-color: #111;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e6b800;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #e6b800;
}


/* Hero Section */

.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 130%;
    /* object-fit: cover; */
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.discover {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    max-width: 500px;
}

.discover h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.discover p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.discover button {
    background: #e6b800;
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    color: #000;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.discover button:hover {
    background: #fff;
    color: #e6b800;
}

.discover button a {
    color: inherit;
    text-decoration: none;
}

.ViewMore {
    text-decoration: none;
    color: #ffffff;
}


/* === ABOUT STORE SECTION === */

.about-store {
    padding: 40px 6%;
    background: #fdfbfb;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
}

.about-img {
    width: 350px;
    height: 450px;
    float: left;
    margin-right: 20px;
    border-radius: 12px;
    /* object-fit: cover; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.about-text {
    overflow: hidden;
}

.about-text h2 {
    text-align: center;
    /* font-size: 20px; */
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.about-text p {
    text-align: justify;
    font-size: 19.5px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 10px;
}

.about-text strong {
    color: #000;
}

.about-text button {
    margin-top: 10px;
    padding: 10px 14px;
    font-size: 13px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.about-text button:hover {
    background: #222;
}

.collection-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    padding: 3rem 1.5rem;
    background-color: #fff;
}

.wig-card {
    background: #fdfdfd;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.wig-card:hover {
    transform: translateY(-5px);
}

.wig-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.wig-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.view-more {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background-color: #43A047;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s ease;
}

.view-more:hover {
    background-color: #2e7d32;
}


/* Footer */

footer {
    background-color: #111;
    color: #fff;
    padding: 3rem 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    margin: 1rem;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #e6b800;
}

.footer-column p,
.footer-column li {
    margin-bottom: 0.6rem;
    list-style: none;
    font-size: 0.95rem;
}

footer a {
    text-decoration: none;
    color: #fafafa;
}

footer a:hover {
    text-decoration: underline;
    color: #e6b800;
}

.color-dot-2 {
    display: flex;
    justify-content: flex-end;
    /* 👈 push contents to the right */
    align-items: center;
    gap: 6px;
}

.color-dots {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid #444;
}

.bottom-nav {
    display: none;
}

#splash-screen {
    display: none;
}


/* #splash-screen {
    display: none;
}

#bottom-nav {
    display: none;
} */


/* Mobile View*/

@media (max-width: 768px) {
    header {
        display: none;
    }
    body,
    html {
        font-family: 'Segoe UI', sans-serif;
        height: 100%;
        font-family: 'Arial', sans-serif;
    }
    body {
        overflow-x: hidden;
    }
    /* Hide scrollbar but allow scroll */
     ::-webkit-scrollbar {
        display: none;
    }
    body {
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }
    /* Main content */
    #main-content {
        display: none;
        padding: 20px;
    }
    #main-content {
        display: block;
        /* always show on desktop */
    }
    .bottom-nav {
        display: block;
        position: fixed;
        bottom: 0;
        width: 100%;
        background: #111;
        display: flex;
        justify-content: space-around;
        padding: 10px 0;
        z-index: 1000;
        border-top: 1px solid #333;
    }
    .bottom-nav a {
        color: #eee;
        font-size: 13px;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        transition: 0.3s ease;
    }
    /* Active Nav Styling */
    .bottom-nav a.active-nav {
        background-color: #fff;
        color: #000;
        padding: 6px 12px;
        border-radius: 20px;
        transform: translateY(-8px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    .cart-count-badge {
        position: absolute;
        top: -5px;
        right: -10px;
        background: red;
        color: white;
        font-size: 11px;
        font-weight: bold;
        padding: 2px 6px;
        border-radius: 50%;
        z-index: 10;
        animation: bounceBadge 0.4s ease-in-out;
    }
    .cart-link {
        position: relative;
    }
    @keyframes bounceBadge {
        0% {
            transform: scale(1) translate(50%, -50%);
        }
        50% {
            transform: scale(1.3) translate(50%, -50%);
        }
        100% {
            transform: scale(1) translate(50%, -50%);
        }
    }
    /* Mobile-first styles */
    .collection-section {
        grid-template-columns: repeat(3, 1fr);
        /* force 3 in a row even on mobile */
        gap: 0.8rem;
        padding: 2rem;
    }
    .wig-card {
        padding: 0.2rem;
        border-radius: 10px;
    }
    .wig-card img {
        height: 150px;
        border-radius: 8px;
        margin-bottom: 0.5rem;
    }
    .wig-name {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }
    .view-more {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
        border-radius: 6px;
    }
    .about-store {
        padding: 60px 7%;
        background-color: #fefefe;
        margin-right: -10px;
    }
    .about-img {
        width: 100px;
        height: 120px;
        object-fit: cover;
        border-radius: 10px;
        float: left;
        clear: right;
        margin: 0 12px 10px 0;
    }
    .about-text {
        font-size: 13px;
        color: #333;
    }
    .about-text h2 {
        font-size: 15px;
        margin-top: 0;
    }
    .about-text p {
        font-size: 12.5px;
        line-height: 1.5;
        margin: 0 0 10px 0;
        text-align: justify;
    }
    .about-text button {
        margin-top: 8px;
        padding: 5px 10px;
        font-size: 12px;
        background: #000000;
        color: #fff;
        border: none;
        border-radius: 6px;
        cursor: pointer;
    }
    .about-text button:hover {
        background: #222;
    }
    /* This clears the float after the image ends */
    .about-store::after {
        content: "";
        display: block;
        clear: both;
    }
    footer {
        background: linear-gradient(to right, #111, #222);
        color: #eee;
        padding: 40px 6% 20px 6%;
        font-family: 'Segoe UI', sans-serif;
        display: flex;
        flex-direction: column;
        gap: 25px;
        border-top: 1px solid #444;
    }
    .footer-column {
        width: 100%;
    }
    .footer-column h4 {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #e6b800;
        border-bottom: 1px solid #444;
        padding-bottom: 4px;
    }
    .footer-column p,
    .footer-column li {
        font-size: 12.5px;
        line-height: 1.6;
        color: #ccc;
        margin: 6px 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .footer-column ul {
        padding-left: 0;
        list-style: none;
    }
    .footer-column i {
        color: #e6b800;
        font-size: 13px;
    }
    footer .footer-column:last-child p {
        margin-top: 6px;
    }
    /* Center alignment on tiny screens */
    @media (max-width: 400px) {
        .footer-column p,
        .footer-column li {
            font-size: 12px;
            text-align: left;
            line-height: 1.5;
        }
    }
}