* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    background-color: var(--Off-White);
}

@font-face {
    font-family: "SpaceGrotesk-light";
    src: url(../assets/fonts/SpaceGrotesk-Light.ttf);
}

@font-face {
    font-family: "SpaceGrotesk-Regular";
    src: url(../assets/fonts/SpaceGrotesk-Regular.ttf);
}

@font-face {
    font-family: "SpaceGrotesk-Bold";
    src: url(../assets/fonts/SpaceGrotesk-Bold.ttf);
}

@font-face {
    font-family: "SpaceGrotesk-Med";
    src: url(../assets/fonts/SpaceGrotesk-Medium.ttf);
}

@font-face {
    font-family: "SpaceGrotesk-SBold";
    src: url(../assets/fonts/SpaceGrotesk-SemiBold.ttf);
}

@font-face {
    font-family: "ClashDisplay-Extralight";
    src: url(../assets/fonts/ClashDisplay-Extralight.otf);
}

@font-face {
    font-family: "ClashDisplay-Light";
    src: url(../assets/fonts/ClashDisplay-Light.otf);
}

@font-face {
    font-family: "ClashDisplay-Reg";
    src: url(../assets/fonts/ClashDisplay-Regular.otf);
}

@font-face {
    font-family: "ClashDisplay-Med";
    src: url(../assets/fonts/ClashDisplay-Medium.otf);
}

@font-face {
    font-family: "ClashDisplay-SBold";
    src: url(../assets/fonts/ClashDisplay-Semibold.otf);
}

@font-face {
    font-family: "ClashDisplay-Bold";
    src: url(../assets/fonts/ClashDisplay-Bold.otf);
}


:root {
    --vibrantPurple: #8E2DE2;
    --deepBlue: #4A00E0;
    --brightCyan: #009FFF;
    --Indigo: #2E3192;

    --neonGreen: #39FF14;
    /* → CTA buttons (Add to cart, Buy now) */
    --electricOrange: #FF6B00;
    /* → Alerts / discounts / banners*/
    --cyberYellow: #FFD60A;
    /*→ Highlighted elements (tags, stars, ratings)*/
    --aquaBlue: #00F5D4;
    /* → Hover states / secondary buttons*/

    --White: #FFFFFF;
    /* → Backgrounds */
    --Off-White: #F5F5F5;
    /* → Cards, sections*/
    --CharcoalBlack: #111111;
    /* → Text headings */
    --SlateGray: #2C2C2C;
    /*→ Body text */
    --CoolGray: #9E9E9E;
    /*→ Borders / muted text*/
}

.logo {}

/* Top navbar  */
.navbar {
    font-family: "SpaceGrotesk-Regular";
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.search-bar {
    display: flex;
    justify-content: center;
    background-color: var(--brightCyan);
    border-radius: 50px;
    width: 40%;
    /* border: solid 1px black; */
    padding: 20px;
}

.search-bar input {
    color: var(--White);
    background-color: transparent;
    border: none;
    outline: none;
    margin: 0 5px;
    width: 90%;
}

.search-bar input::placeholder {
    color: var(--Off-White);
}

.search_bar input[type="text"] {
    flex-grow: 1;
    border: none;
    background-color: transparent;
    outline: none;
    font-size: 16px;
}

.search-bar button {
    font-size: larger;
    color: var(--White);
    background: none;
    border: none;
}

.nav-icons {
    display: flex;
    justify-content: space-around;
    width: 200px;
}

.nav-icons a {
    color: var(--White);
    padding: 10px;
    font-size: larger;
}

.nav-icons .cart_btn {
    background-color: var(--brightCyan);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    border-radius: 50px;
}

.nav-icons .user_account {
    background-color: var(--brightCyan);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    border-radius: 50px;
}

/* categories nav */

#category-wrapper {
    font-family: "SpaceGrotesk-Regular";
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--Indigo);
    margin-bottom: 5px;
}

.category_container {
    padding: 10px;
    display: flex;
    justify-content: start;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    flex: 1;
}

.category {
    cursor: pointer;
    margin: 5px;
    padding: 5px 8px;
    font-size: small;
    border-radius: 20px;
    color: var(--Off-White);
    background-color: var(--brightCyan);
}

.scroll-btn {
    color: var(--Off-White);
    font-size: larger;
    padding: 10px;
    border: none;
    background-color: transparent;
    background: none;
    outline: none;
}

/* categories section */
.categories_section {
    /* background-color: var(--CoolGray); */
}

.main-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.main-category {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brightCyan);
    margin: 10px;
    width: 120px;
    height: 120px;
    color: var(--Off-White);
    border-radius: 10px;
    text-align: center;
    padding: 10px;
    box-shadow: -1px 1px 12px -10px rgba(0, 0, 0, 0.75);

}

.main-category:hover {
    box-shadow: 0px 0px 15px -7px rgba(0, 0, 0, 0.75);

}

/* category page */

.category-main-heading {
    font-family: "ClashDisplay-Med";

}

.category-container {
    font-family: "SpaceGrotesk-Regular";

}

/* Products section */

#products_section {
    font-family: "ClashDisplay-Reg";
    /* height: 70vh; */
}

.products_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    padding: 20px;
}

.product-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: small;
    background-color: var(--White);
    margin: 5px 15px;
    width: 22%;
    cursor: pointer;
    padding: 15px;
    border-radius: 30px;
    box-shadow: -1px 1px 12px -10px rgba(0, 0, 0, 0.75);
}

.product-card:hover {
    box-shadow: -1px 1px 12px -7px rgba(0, 0, 0, 0.75);

}

.product-price {}

.product-name {
    font-size: large;
}

.product-description {
    font-family: "SpaceGrotesk-Regular";
    padding: 0 5px;
}

#cart_btn {
    font-size: large;
    padding: 10px;
    color: var(--White);
    border: none;
    background-color: var(--brightCyan);
    border-radius: 50px;
}

#cart_btn:hover {
    box-shadow: -1px 1px 12px -6px rgba(0, 0, 0, 0.75);
}

#categories_section {
    font-family: "ClashDisplay-Reg";
    padding: 20px 10px;
}

/* Single product page */
.product-container {
    font-family: "SpaceGrotesk-Regular";
    padding: 30px;
    /* height: 70vh; */
}


.product-detail {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 50px;
}

.text-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.action-btns-section {
    display: flex;
    justify-content: start;
    gap: 30px;
}

.action-btns-section input {
    width: 100px;
    height: 50px;
    text-align: center;
}

.cartBtn {
    font-size: large;
    padding: 10px;
    color: var(--White);
    border: none;
    background-color: var(--brightCyan);
    border-radius: 10px;
}

.cartBtn:hover {
    box-shadow: -1px 1px 12px -6px rgba(0, 0, 0, 0.75);
}

#change-Quantity button {
    font-size: xx-large;
    padding: 5px 10px;
    color: var(--White);
    border: none;
    background-color: var(--CoolGray);
    border-radius: 10px;
}

/* Footer section */
footer {
    background-color: var(--SlateGray);
    font-family: "SpaceGrotesk-Regular";
    color: var(--Off-White);
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer a {
    color: var(--CoolGray);

}

.main-footer {
    padding: 50px 20px;
    display: flex;
    justify-content: space-between;
}

.links {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}

.footer-logo {
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    /* justify-content: space-between; */
}

.footer-logo p {
    color: var(--CoolGray);
    font-size: small;
    text-align: justify;
    width: 95%;
}

.social-icons {
    display: flex;
    justify-content: start;
    gap: 50px;
}

.social-icons i {
    font-size: xx-large;
}

.quickLinks {
    width: 20%;
}

.customerCare {
    width: 20%;
}

.stayConnected {
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.office-locations {}

.address {
    color: var(--CoolGray);
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 10px;
}

.footer-email {
    border-radius: 11px;
    display: flex;
    background-color: #111111;
    border: solid 1px #009FFF;
}

.footer-email input {
    padding: 10px;
    background: none;
    border: none;
}

.footer-email input:focus {
    outline: none;
}

.footer-email button {
    padding: 10px;
    background-color: var(--brightCyan);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border: none;
    color: var(--Off-White);

}

.sub-footer {
    color: var(--Off-White);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}


a {
    text-decoration: none;
}