@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --font: "Poppins", sans-serif;

    /* Modern Light Theme */
    --primary: #f5f5f5;
    /* Indigo */
    --primary-light: #150602;
    /* Light indigo */
    --secondary: #f5efb1;
    /* Pink */
    --accent: #a66930;

    --herobackground: #fff0d1;
    /* Amber */
    --herotext: #50270b;
    /* White */

    --background: #fafafa;
    /* White */
    --surface: #ffffff;
    /* Light gray */
    --surface-dark: #f3f4f6;
    /* Slightly darker gray */

    --text-primary: #1f2937;
    /* Dark gray */
    --text-secondary: #6b7280;
    /* Medium gray */
    --text-light: #9ca3af;
    /* Light gray */

    --border: #e5e7eb;
    /* Border gray */
    --divider: #f3f4f6;
    /* Divider gray */

    --success: #10b981;
    /* Green */
    --error: #ef4444;
    /* Red */
    --warning: #f59e0b;
    /* Amber */
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}


body {
    margin: 0;
    font-family: var(--font);
    letter-spacing: 0.05em;
    color: var(--text-primary);
    background-color: var(--background);
    overflow: overlay;
    scrollbar-width: none;
    /* Firefox */
}

/* Scrollbar */






.material-symbols-rounded {
    font-family: 'Material Symbols Rounded';
    font-size: 20px;
    user-select: none;
    margin: 0;
    text-align: center;

}

.top_navigation {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100vw;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    background: #fafafaab;
}

.top_navigation div {
    padding: 0 30px;
}

#logo img {
    height: 40px;
}

#bottom_nav {
    position: fixed;
    bottom: 0;
    z-index: 100;
    width: 100vw;
    height: 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: var(--background);
    color: var(--text-secondary);
    border-top: 1px solid var(--border);
}

/* All nav items: icon-only by default */
.nav_item_style {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 30px;
    transition: all 0.25s;
}

/* Hide the text by default */
.nav_item_style p {
    margin: 0;
    opacity: 0;
    width: 0px;
    overflow: hidden;
    text-align: center;
    font-size: 0.8rem;
    transition: all 0.25s;
}

/* Highlight selected nav item */
.nav_item_style.active {
    background-color: var(--primary-light);
    color: var(--primary);
}

/* Show text only for selected item */
.nav_item_style.active p {
    opacity: 1;
    width: 60px;
}

@media (min-width: 768px) {
    #bottom_nav {
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 500px;
        background: #fafafaab;
        backdrop-filter: blur(10px);
        color: var(--text-primary);
        border-top: none;
        border-radius: 20px;
    }

    .nav_item_style {
        border-radius: 10px;
    }
}

main {
    margin-top: 60px;
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.spinner {
    width: 32px;
    height: 32px;
    border: 4px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}



/* carousel.css — paste into your global css */

.products_section {
    padding: 0% 20px;
}

.product_coursel {
    margin: 0;
    padding: 0;
}

.coursel_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.coursel_header button {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text-primary);
}

.product_slider {
    position: relative;
    height: 380px;
    /* Increased for taller cards */
    display: flex;
    gap: 24px;
    /* More breathing room */
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.product_slider::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.product_slider.dragging {
    cursor: grabbing;
    cursor: -webkit-grabbing;
}

.product_card {
    background: white;
    height: 340px;
    width: 220px;
    padding: 12px;
    overflow: hidden;
    flex: 0 0 auto;
    border-radius: 28px;
    /* Large modern rounded corners */
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.08);
}

.product_card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: var(--surface-dark);
    border-radius: 20px;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product_card:hover img {
    transform: scale(1.05);
}

.card_buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px;
    flex: 1;
}

.card_buttons p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.card_buttons span {
    background: var(--primary-light);
    color: var(--primary);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px !important;
    transition: all 0.3s ease;
}

.card_buttons span:hover {
    transform: scale(1.1);
    background: #000;
}

.primary_button {
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 10px 18px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.primary_button:hover {
    background-color: var(--primary-light);
    color: var(--primary);
}

/* Modern Footer Styles */
#footer {
    background: var(--herobackground);
    color: var(--primary-light);
    padding: 60px 24px 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 80px;
    margin-bottom: 60px;
    background-color: var(--herobackground);
    background-image: url('../Assets/Hero-images/HeroBG.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 20% 100%;
}

@media (min-width: 768px) {
    #footer {
        justify-content: space-between;
        align-items: flex-start;
        padding: 80px 8% 40px;
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand img {
    height: 48px;
    width: auto;
    opacity: 0.9;
    margin-bottom: 8px;
}

.company-tagline {
    font-size: 0.9rem;
    margin: 0;
    max-width: 300px;
    line-height: 1.6;
}

.footer-contact h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 4px 0;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--primary-light);
}

.footer-contact .material-symbols-rounded {
    color: var(--primary-light);
    font-size: 20px;
    margin-top: 3px;
    /* Optical alignment with text line-height */
    font-variation-settings: 'FILL' 1;
}

.footer-copyright {
    width: 100%;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .footer-copyright {
        text-align: left;
    }
}

#footer img {
    height: 100px;
    width: auto;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    #footer img {
        margin-bottom: 0;
        margin-right: 40px;
    }
}

@media (min-width: 768px) {
    #footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding: 80px 8% 80px;
        background: var(--herobackground);
    }
}

#footer img:hover {
    opacity: 1;
}