* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif; 
    background-color: #ffffff;
    color: #111111;
    line-height: 1.6;
    overflow-x: hidden; 
    
    animation: fadeIn 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

a { 
    text-decoration: none; 
    color: inherit; 
    transition: 0.3s ease; 
}

ul { list-style: none; }
img { display: block; width: 100%; height: auto; }


h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif; 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #ffffff;
    position: sticky; 
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

.logo {
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: 3px;
    color: #000;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    position: relative;
}

.nav-links a:hover, 
.nav-links a.active {
    color: #000;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #000;
    transition: 0.3s;
}

.nav-links a:hover::after, 
.nav-links a.active::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    gap: 20px;
    font-size: 18px;
    color: #000;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #fff;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: transparent; 
    color: #fff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 5%;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 60px;
    color: #000;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #000;
}


.hero {
    height: 85vh;
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)),
                url('https://images.unsplash.com/photo-1469334031218-e382a71b716b?q=80&w=2070');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem; 
    margin-bottom: 20px;
    font-weight: 300;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: #f4f4f4;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover img {
    transform: scale(1.05); 
}

.cat-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    z-index: 2;
}

.cat-text .btn-link {
    font-size: 12px;
    text-transform: uppercase;
    border-bottom: 1px solid #fff;
    padding-bottom: 3px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 40px 20px;
}

.product-image {
    position: relative;
    height: 380px;
    background: #f9f9f9;
    overflow: hidden;
    margin-bottom: 15px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.price {
    font-size: 14px;
    color: #666;
}

.btn-add {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transform: translateY(100%); 
    transition: 0.3s;
}

.product-card:hover .btn-add {
    transform: translateY(0); 
}

.page-header {
    height: 40vh;
    background: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


footer {
    background: #111;
    color: #fff;
    padding: 60px 5% 20px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    border-bottom: 1px solid #333;
    padding-bottom: 40px;
    margin-bottom: 20px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 13px;
    color: #bbb;
    cursor: pointer;
    transition: 0.3s;
}

.footer-col ul li:hover { color: #fff; }

.copyright {
    text-align: center;
    font-size: 12px;
    color: #666;
    letter-spacing: 1px;
}


.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #eee;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 20px;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #000;
    background: #fff;
}

.about-split {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.about-img { flex: 1; min-width: 300px; height: 500px; }
.about-img img { height: 100%; object-fit: cover; }
.about-txt { flex: 1; min-width: 300px; }