* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 90;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 90;
}

.logo a {
    display: block;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

/* Hide mobile elements on desktop */
.mobile-menu-toggle {
    display: none;
}

.overlay {
    display: none;
}

.overlay.show {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 95;
}

/* Desktop navigation styling */
nav {
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0;
}

nav ul li a:hover {
    color: #b38b59;
}

.hero {
    height: auto;
    background: linear-gradient(135deg, #1a2530 0%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 180px 0 120px;
    margin-top: 0;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
    z-index: 1;
}

.hero::after {
    display: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #b38b59;
    margin: 15px auto 0;
}

.hero p {
    font-size: 18px;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    background-color: #b38b59;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #96744a;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #b38b59;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
}

.about-text strong {
    color: #b38b59;
    font-weight: 600;
}

.highlight-text {
    font-weight: 600;
    color: #b38b59;
}

.about-image {
    flex: 1;
}

.about-image img.main-image {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.about-image img.main-image:hover {
    transform: scale(1.02);
}

.about-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.featured-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 22px;
}

.product-info p {
    color: #777;
    margin-bottom: 15px;
}

.height-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #b38b59;
    color: white;
    padding: 8px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-item {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    text-align: center;
}

.contact-icon-container {
    width: 60px;
    height: 60px;
    background-color: #b38b59;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-icon-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(179, 139, 89, 0.3);
}

.contact-item .material-icons {
    font-size: 28px;
}

.contact-item p {
    color: #555;
}

.instagram-link {
    color: #b38b59;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: inline-block;
    position: relative;
}

.instagram-link:hover {
    color: #96744a;
}

.instagram-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #b38b59;
    transition: width 0.3s;
}

.instagram-link:hover::after {
    width: 100%;
}

.values-section {
    background-color: #f9f9f9;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.icon-container {
    width: 70px;
    height: 70px;
    background-color: #b38b59;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    transition: transform 0.3s, background-color 0.3s;
}

.value-card:hover .icon-container {
    transform: scale(1.1);
    background-color: #96744a;
}

.icon-container .material-icons {
    font-size: 32px;
}

.value-card h3 {
    margin-bottom: 15px;
    color: #333;
}

/* Simplified footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.copyright {
    color: #bbb;
    font-size: 14px;
}

.copyright p {
    margin: 0;
}

/* Features section with side-by-side layout */
.features-section {
    padding: 80px 0;
    background-color: #fff;
}

.features-flex-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.features-image-container {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.features-image {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.features-image:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.features-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon-container {
    min-width: 60px;
    height: 60px;
    background-color: #b38b59;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s, background-color 0.3s;
}

.feature-item:hover .feature-icon-container {
    transform: scale(1.1);
    background-color: #96744a;
}

.feature-icon-container .material-icons {
    font-size: 28px;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.feature-description {
    color: #777;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .features-flex-container {
        flex-direction: column;
    }
    
    .features-image-container {
        margin: 0 auto 40px;
    }
    
    .feature-item {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
    
    .feature-icon-container {
        margin-bottom: 15px;
    }
}

/* Updated wholesale section without form */
.wholesale-section {
    background-color: #f9f9f9;
    padding: 100px 0;
}

.wholesale-content.centered {
    max-width: 1000px;
    margin: 0 auto;
}

.wholesale-text {
    width: 100%;
    text-align: center;
}

.wholesale-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.wholesale-text p {
    margin-bottom: 30px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.wholesale-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.contact-wholesale-container {
    display: none;
}

.contact-wholesale {
    margin-top: 50px;
    padding: 40px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-wholesale p {
    margin-bottom: 0;
    font-size: 18px;
    color: #555;
}

.email-link {
    color: #b38b59;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    display: inline-block;
    position: relative;
}

.email-link:hover {
    color: #96744a;
}

.email-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: #b38b59;
    transition: width 0.3s;
}

.email-link:hover::after {
    width: 100%;
}

/* Animation effects */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Material Icons Styling */
.material-icons {
    font-size: 24px;
    line-height: 1;
}

/* Mobile header with hamburger menu */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        width: 30px;
        height: 22px;
        position: relative;
        cursor: pointer;
        z-index: 110;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        position: relative;
    }
    
    .logo {
        z-index: 90;
    }
    
    .logo-img {
        height: 34px;
    }
    
    .mobile-menu-toggle span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: #333;
        border-radius: 3px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }
    
    .mobile-menu-toggle span:nth-child(1) {
        top: 0px;
    }
    
    .mobile-menu-toggle span:nth-child(2),
    .mobile-menu-toggle span:nth-child(3) {
        top: 9px;
    }
    
    .mobile-menu-toggle span:nth-child(4) {
        top: 18px;
    }
    
    .mobile-menu-toggle.open span:nth-child(1),
    .mobile-menu-toggle.open span:nth-child(4) {
        top: 9px;
        width: 0%;
        left: 50%;
    }
    
    .mobile-menu-toggle.open span:nth-child(2) {
        transform: rotate(45deg);
    }
    
    .mobile-menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg);
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #fff;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 100;
        padding: 80px 30px 30px;
        overflow-y: auto;
        display: block;
    }
    
    nav.open {
        right: 0;
    }
    
    .overlay.show {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: 99;
    }
    
    nav ul {
        flex-direction: column;
        margin-top: 0;
        width: 100%;
        padding: 0;
    }
    
    nav ul li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    nav ul li a {
        font-size: 16px;
        padding: 15px 0;
        display: block;
    }
    
    /* Other existing mobile styles */
    .hero h1 {
        font-size: 36px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .wholesale-content {
        flex-direction: column;
    }
    
    .wholesale-form-container {
        margin-top: 40px;
    }
}

/* Additional mobile improvements for very small screens */
@media (max-width: 480px) {
    .header-content {
        padding: 12px 0;
    }
    
    .logo {
        font-size: 22px;
    }
    
    nav ul li {
        margin: 0 8px;
    }
    
    nav ul li a {
        font-size: 13px;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
}

/* Prevent body scrolling when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

.wholesale-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 14px 28px;
    font-size: 16px;
    background-color: #b38b59;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(179, 139, 89, 0.2);
    white-space: nowrap;
    min-width: 220px;
}

.wholesale-btn:hover {
    background-color: #96744a;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(179, 139, 89, 0.3);
}

.wholesale-btn .material-icons {
    margin-right: 10px;
    font-size: 20px;
}

/* Additional wholesale button mobile styles */
@media (max-width: 480px) {
    .wholesale-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .wholesale-btn .material-icons {
        font-size: 18px;
    }
} 