body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background: #000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
}

.menu a {
    margin: 0 18px;
    text-decoration: none;
    color: #bbb;
    font-weight: 600;
    transition: .3s;
}

.menu a:hover,
.menu a.active {
    color: #fff;
}

.icons span {
    margin-left: 15px;
    cursor: pointer;
    font-size: 20px;
}

.hero {
    height: 80vh;
    background: url('background.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px; 
}

.hero h1 {
    font-size: 110px;
    letter-spacing: 18px;
    font-weight: 900;
    text-shadow: 0px 0px 15px rgba(0,0,0,0.4);
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 70px;
    background: #000;
}

.item {
    text-align: center;
}

.item img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 10px;
    background: #111;
    transition: .4s ease;
}

.item img:hover {
    transform: scale(1.05);
}

.item h2 {
    margin-top: 15px;
    font-size: 22px;
    letter-spacing: 2px;
}

.shop-section {
    padding: 120px 60px;
    background: #000;
    color: white;
    min-height: 100vh;
}

.shop-title {
    font-size: 50px;
    margin-bottom: 50px;
    letter-spacing: 5px;
    text-align: center;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.product {
    text-align: center;
    position: relative;
}

.product img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
    background: #111;
    transition: 0.3s ease;
}

.product img:hover {
    transform: scale(1.05);
}

.price {
    margin-top: 8px;
    font-size: 18px;
}

.soldout {
    position: absolute;
    top: 10px;
    left: 10px;
    background: white;
    color: black;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
}


.form-section {
    padding: 150px 30px;
    background: #000;
    min-height: 100vh;
    color: white;
}

.form-title {
    text-align: center;
    font-size: 50px;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 50px;
}

.form-box {
    width: 420px;
    margin: auto;
    background: #0f0f0f;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
}

.form-box label {
    margin-top: 15px;
    font-size: 15px;
    letter-spacing: 1px;
}

.form-box input {
    margin-top: 8px;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #1a1a1a;
    color: white;
    font-size: 15px;
}

.form-box input:focus {
    outline: 2px solid #fff;
}

.submit-btn {
    margin-top: 30px;
    padding: 12px;
    background: white;
    color: black;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: .3s;
}

.submit-btn:hover {
    background: #dcdcdc;
}

.redirect {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

.redirect a {
    color: #fff;
    text-decoration: underline;
}






