body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    color: #111111;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.container {
    width: 100%;
    max-width: 100%;
    padding: 20px;
    padding-bottom: 140px;
    margin: 0;
     margin-top: 8px; 
}



/* Beige upload box */
.upload-box {
    width: 100%;
    background: #F7F1E6;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin-bottom: 18px;
    box-sizing: border-box;
}



/* Underline inputs (ZARA style) */
.input-field {
    width: 100% !important;     /* Full width */
    display: block !important;  /* Force single line */
    box-sizing: border-box;     /* No breaks */
    font-size: 16px;
    padding: 14px 8px;
    margin-bottom: 16px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;         /* Modern mobile look */
    background: #fafafa;
}


.input-field:focus {
    outline: none;
    border-bottom: 1.5px solid #111;
}

/* Black button */
.btn {

    width: 100% !important;
    background: #000000;
    color: white;
    padding: 14px;
    text-align: center;
    border-radius: 6px;
    border: none;
    font-size: 15px;
    margin-top: 10px;
    letter-spacing: 0.7px;
    
}

.btn:active {
    opacity: 0.8;
}

/* Inventory Grid */
/* Force 2-column grid on mobile */
.grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    padding: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}




.item-card {
    width: 100% !important;
    border-radius: 14px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.item-card img {
    width: 100% !important;
    height: 140px;
    object-fit: cover;
}


.item-info {
    padding: 10px;
    font-size: 14px;
}

/* Search Bar */
.search-bar {
    background: #F7F1E6;
    padding: 12px 14px;
    border-radius: 22px;
    border: 1px solid #EFE7DA;
    font-size: 15px;
    width: 100%;
    margin-bottom: 16px;
}

.search-bar:focus {
    outline: none;
    border-color: #111;
}






.item-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
}

.item-card:hover {
    transform: scale(1.02);
}

.item-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.item-info {
    padding: 12px;
    font-size: 14px;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 105px;
    background: #fff;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -4px 18px rgba(0,0,0,0.06);
    z-index: 9999;
}

.bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    line-height: 18px;
}

.bottom-nav svg {
    width: 28px;   /* Bigger icons */
    height: 28px;
    margin-bottom: 6px; /* spacing */
}

.bottom-nav .nav-item .icon {
    margin-bottom: 4px;
}


.bottom-nav a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}
.topbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: #ffffff;
    padding: 16px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    z-index: 9000;
}

