/* --- 1. Fonts & Reset --- */
@font-face {
    font-family: Inter;
    src: url('../../Fonts/Inter-font.ttf');
}

@font-face {
    font-family: ArialB;
    src: url('../../Fonts/ArialB.TTF');
}

@font-face {
    font-family: ArialBlack;
    src: url('../../Fonts/ArialBlack.ttf');
}

@font-face {
    font-family: MorgantonDemoRegular;
    src: url('../../Fonts/MorgantonDemoRegular.ttf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background-color: #1e1e1e;
    font-family: Inter, sans-serif;
    overflow-x: hidden;
    width: 100%;
}

/* --- 2. Navigation Bar --- */
.NavBar {
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0));
    display: flex;
    justify-content: space-between;
    align-items: center; 
    padding: 20px 5vw;
    z-index: 100;
}

.Logo {
    width: clamp(100px, 15vw, 110px);
    height: auto;
}

.Nav-links {
    display: flex;
    gap: 20px;
}

/* --- Navigation Link Styles --- */
.Nlink, .Nlink-Active {
    background: linear-gradient(135deg, #ffffff 0%, #D1D9E1 50%, #97A2B0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: clamp(14px, 2vw, 25px);
    width: 100px;
    padding: 10px 0;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.Nlink::after, .Nlink-Active::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ffffff 0%, #bbbbba 100%);
    border-radius: 2px;
    transition: width 0.3s ease-in-out;
}

.Nlink:hover {
    background: linear-gradient(135deg, #ffffff 0%, #bbbbba 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

.Nlink:hover::after {
    width: 60%;
}

.Nlink-Active::after {
    width: 65%;
    background: linear-gradient(135deg, #ffffff 0%, #E5E4E2 100%);
}

/* --- 3. Shop Layout & Grid --- */
.Shop-Container {
    padding: 4vw 5vw;
    color: #ffffff;
    min-height: 70vh;
}

.Shop-Title {
    font-family: MorgantonDemoRegular, sans-serif;
    font-size: clamp(30px, 4vw, 50px);
    text-align: center;
    margin-bottom: 3vw;
    color: #f1f1f1;
    letter-spacing: 9px;
    font-weight: 900;
}

.Category-Section {
    margin-bottom: 5vw;
}

.Category-Title {
    font-size: clamp(24px, 3vw, 35px);
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 2vw;
    color: #f1f1f1;
}

.Caragory-button {
    text-decoration: none;
    color: #d1d1d1;
    font-size: 1.5vw;
    padding: 1vw 2vw;
    transition: .2s;
    font-weight: 500;
    cursor: pointer;
}

.Caragory-button:hover {
    font-weight: 700;
    color: #ffffff;
}

.catagory-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 3vw;
}

.Sub-Category-Title {
    font-size: clamp(18px, 2vw, 24px);
    color: #a0a0a0;
    margin-top: 3vw;
    margin-bottom: 1.5vw;
}

.Product-Grid {
    display: grid;
    /* This automatically makes the grid responsive without needing tons of media queries */
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

/* --- 4. Product Cards --- */
.Product-Card {
    background-color: #282828;
    border-radius: 2vw;
    overflow: hidden;
    transition: 0.2s;
    border: 2px solid #3a3a3a;
    box-shadow: 1vw 1vw 1vw #00000026;
}

.Product-Card:hover {
    transform: translateY(-5px);
    box-shadow: 1vw 1vw 1vw #00000067;
}

.Image-Placeholder {
    width: 100%;
    height: 250px;
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.Image-Placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images are perfectly sized within the box */
    transition: transform 0.5s ease;
}

.Product-Card:hover .Image-Placeholder img {
    transform: scale(1.2); /* Slight zoom effect on hover */
}

.Product-Info {
    padding: 20px;
    text-align: center;
}

.Product-Name {
    font-size: 18px;
    margin-bottom: 10px;
    color: #e5e5e5;
}

.Product-Price {
    font-size: 16px;
    color: #cfd0d1;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Replacing more_btn with a product specific button style */
.cart-btn {
    background-color: #ffffff;
    color: #000000;
    padding: 12px 25px;
    font-size: 14px;
    border-radius: 30px;
    font-family: Inter, sans-serif;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: 0.2s;
    width: 100%;
}

.cart-btn:hover {
    background-color: #282828;
    color: #ffffff;
    border: solid 2px #ffffff;
}

/* --- 5. Footer & Socials --- */
.Footer {
    background-color: #ffffff;
    text-align: center;
    padding: 5vw 0 5vw 0;
    margin-top: 4vw;
    border-radius: 3vw 3vw 0 0;
}

.Social-btn-container {
    margin-top: 2.5vw;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.FB-icon, .IN-icon, .TT-icon, .WA-icon, .Call-icon {
    width: 3vw;
    transition: .3s;
    margin: 1vw 2vw 1vw 0vw;
    opacity: 30%; 
}

.FB-icon:hover, .IN-icon:hover, .TT-icon:hover, .WA-icon:hover, .Call-icon:hover {
    opacity: 100%;
}

.Footer-text {
    color: #a0a0a0;
    font-size: 1.5vw;
    margin-top: 2vw;
}

.note{
    background-color: #282828;
    border: #303030 solid 2px;
    color: #d1d1d1;
    padding: 20px;
    border-radius: 2vw;
    margin-bottom: 3vw;
    font-size: clamp(14px, 2vw, 18px);
    box-shadow: 1vw 1vw 1vw #00000026;
    padding: 2vw;
    transition: 0.3s;
}

.note:hover {
    color: #ffffff;
    border-color: #404040;
    box-shadow: 1vw 1vw 1vw #00000067;
}

.note-text01 {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.5vw;
    color: #f1f1f1;
    margin-left: 1vw;
}

.note-text02 {
    color: #a0a0a0;
    width: 60%;
    margin-left: 1vw;
}

.custom-chat {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    float: right;
    margin-top: -4vw;
    margin-right: 1vw;
}

.custom-chat:hover {
    background-color: #282828;
    color: #25D366;
    border: solid 2px #25D366;
}

.Go-up {
    position: fixed;
    bottom: 20px;
    right: 10px;
    background-color: #1e1e1e;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 1vw 1vw 2vw rgba(0,0,0,0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
    padding: 1vw;
    border: solid 2px #303030;
    visibility: hidden;
    opacity: 0;
    transition: .2s;
    scale: .8;
}

.Go-up.show {
    scale: 1;
    opacity: 1;
    visibility: visible;
}

.Go-up:hover {
    background-color: #282828;
    transform: translateY(-5px);
    border-color: #404040;
    box-shadow: .5vw .5vw 1vw #00000067;
}

.Go-up-image {
    width: 25px;
    height: 25px;
    opacity: 0.7;
}



/* --- 6. Responsiveness --- */
@media (max-width: 768px) {
    .NavBar {
        flex-direction: column;
        gap: 7px;
    }

    .Nlink, .Nlink-Active {
        width: 19vw;
        font-size: 5vw;
    }

    .Shop-Container {
        padding: 5vw;
    }

    .Footer {
        padding-top: 10vw;
        border-radius: 6vw 6vw 0vw 0vw;
    }

    .Social-btn-container {
        margin-top: 0vw;
    }

    .FB-icon, .IN-icon, .TT-icon, .WA-icon, .Call-icon {
        width: 10vw;
    }

    .Footer-text {
        font-size: 4vw;
        margin-top: 8vw;
    }

    .Product-Card {
        border-radius: 4.5vw;
        margin-top: 3vw;
    }
    
    .Caragory-button{
        font-size: 4vw;
        padding: 3vw 0vw;
    }

    .note {
        padding: 5vw;
        border-radius: 5vw;
        padding-bottom: 18vw;
    }

    .note-text01 {
        font-size: 5vw;
    }

    .note-text02 {
        width: 100%;
        font-size: 4vw;
    }

    .custom-chat {
        float: left;
        margin-top: 4vw;
    }

    .Shop-Title {
        letter-spacing: 6px;
        margin-top: 10vw;
        font-size: 7vw;
    }

    .Go-up {
        width: 12vw;
        height: 12vw;
        align-items: center;
        justify-content: center;
        left: 49%;
        transform: translateX(-49%);
        z-index: 1000;
        visibility: hidden;
        bottom: 10px;
    }

    .Go-up.Go-up.show {
        scale: 1;
        opacity: 1;
        visibility: visible;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
    }

    .Go-up:hover {
        width: 12vw;
        height: 12vw;
        align-items: center;
        justify-content: center;
        left: 50%;
        transform: translateX(-50%);
        z-index: 999;
    }

    .Go-up::after {
        width: 12vw;
        height: 12vw;
        align-items: center;
        justify-content: center;
        left: 50%;
        transform: translateX(-50%);
        z-index: 999;
    }
}

@media (max-width: 480px) {
    .Product-Card {
        border-radius: 8vw;
    }

    .Go-up {
        width: 12vw;
        height: 12vw;
        align-items: center;
        justify-content: center;
        left: 49%;
        transform: translateX(-49%);
        z-index: 1000;
        visibility: hidden;
        bottom: 10px;
    }
}