* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4a5d4e 0%, #6b8f71 100%);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(74, 93, 78, 0.3);
}

.logo-text {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-size: 14px;
    color: #666;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #4a5d4e;
    font-weight: bold;
}

.nav-links .contact-btn {
    background: linear-gradient(135deg, #4a5d4e 0%, #5a7260 100%);
    color: white;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(74, 93, 78, 0.3);
    transition: box-shadow 0.3s;
}

.nav-links .contact-btn:hover {
    box-shadow: 0 6px 20px rgba(74, 93, 78, 0.4);
}

/* Main Banner */
.main-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8ece9 50%, #f5f0eb 100%);
    min-height: 450px;
    position: relative;
    overflow: hidden;
}

.main-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.banner-text {
    max-width: 450px;
    position: relative;
    z-index: 1;
}

.banner-text h1 {
    font-size: 52px;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.banner-text h1 span {
    color: #d4a373;
}

.banner-text p {
    color: #5a6c7d;
    margin-bottom: 35px;
    font-size: 16px;
    line-height: 1.7;
}

.view-btn {
    display: inline-block;
    background: linear-gradient(135deg, #d4a373 0%, #c49262 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(212, 163, 115, 0.4);
}

.banner-image {
    width: auto;
    height: auto;
    background: linear-gradient(145deg, #e2e8f0 0%, #cbd5e0 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Featured Section */
.featured {
    padding: 80px 40px;
    text-align: center;
    background: #fff;
}

.featured h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.featured h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4a373, #e8c9a8);
    margin: 15px auto 40px;
    border-radius: 2px;
}

.featured-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.basket-card {
    background: white;
    border-radius: 16px;
    border: none;
    width: 300px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.4s;
}

.basket-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.basket-card .image-container {
    width: auto;
    height: autopx;
    background: linear-gradient(145deg, #f1f5f9 0%, #e2e8f0 100%);
    overflow: hidden;
}

.basket-card .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.basket-card .card-info {
    padding: 25px;
}

.basket-card .card-info .placeholder-line {
    height: 10px;
    width: 120px;
    background: linear-gradient(90deg, #e2e8f0, #cbd5e0);
    border-radius: 5px;
}

/* Basket Grid */
.basket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.4s;
}

.grid-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.grid-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

/* Thumbnail Grid */
.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.thumbnail-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

.thumbnail-item:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.lightbox-close:hover {
    color: #d4a373;
}

/* Contact Section */
.contact {
    padding: 80px 40px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8ece9 50%, #f5f0eb 100%);
}

.contact h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4a373, #e8c9a8);
    margin: 15px auto 40px;
    border-radius: 2px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item .contact-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #7f8c8d;
    font-weight: 600;
}

.contact-item a {
    font-size: 18px;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #d4a373;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    padding: 35px 40px;
    text-align: center;
}

footer p {
    color: #ecf0f1;
    font-size: 13px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

footer .copyright {
    color: #7f8c8d;
    font-size: 11px;
}