* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 0px;
}

/* Header */
.header {
    background: #f9f4ea;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Crimson Text', serif;
    font-size: 32px;
    font-weight: 700;
    color: #2C1810;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-menu a {
    text-decoration: none;
    color: #2C1810;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: #8B6914;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #8B6914;
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-btn {
    background: #2C1810;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: #1A0F08;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: #f9f4ea;
    /* min-height: 80vh; */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-right: 0;
    padding-left: 7%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
    max-width: none;
    margin-right: -20px;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-family: 'Crimson Text', serif;
    font-size: 72px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-primary {
    background: #2C1810;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #1A0F08;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #2C1810;
    padding: 16px 32px;
    border: 2px solid #2C1810;
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: #2C1810;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    overflow: visible;
    margin-right: -20px;
    padding-right: 20px;
}

.shakes-image {
    width: 100%;
    height: 100%;
    background: url('images/shakes.png') no-repeat center right;
    background-size: 80% auto;
    position: relative;
}

.decorative-elements {
    position: absolute;
    top: 50px;
    right: -50px;
    width: 150px;
    height: 150px;
    opacity: 0.1;
}

/* Featured Section */
.featured-section {
    background: #f9f4ea;
    padding: 120px 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Crimson Text', serif;
    font-size: 56px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* gap: 160px; */
    margin-top: 80px;
    padding: 0 20px;
}

.feature-card {
    text-align: center;
    padding: 40px;
    border-radius: 8px;
    transition: all 0.3s;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: #f9f4ea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #8B6914;
}

.feature-card h3 {
    font-family: 'Crimson Text', serif;
    font-size: 28px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.feature-btn {
    background: transparent;
    color: #8B6914;
    padding: 12px 24px;
    border: 2px solid #8B6914;
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.feature-btn:hover {
    background: #8B6914;
    color: white;
}

/* Action Controls */
.action-controls {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 1000;
}

.action-btn {
    width: 50px;
    height: 50px;
    background: #2C1810;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(44, 24, 16, 0.3);
}

.action-btn:hover {
    background: #1A0F08;
    transform: translateY(-2px);
}

/* Products Section */
.products-section {
    background: #f9f4ea;
    padding: 120px 80px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 90px;
    margin-top: 60px;
    padding: 0 20px;
}

.product-card {
    background: #f3f2e7;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-image {
    height: 250px;
    overflow: hidden;
    background: #f9f4ea;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.product-content {
    padding: 30px;
}

.product-content h3 {
    font-family: 'Crimson Text', serif;
    font-size: 24px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.product-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-price {
    font-family: 'Crimson Text', serif;
    font-size: 28px;
    font-weight: 700;
    color: #8B6914;
    margin-bottom: 20px;
}

.product-btn {
    background: #2C1810;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 100%;
}

.product-btn:hover {
    background: #1A0F08;
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-section {
    background: #f9f4ea;
    padding: 120px 80px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 100px;
    margin-top: 60px;
}

.testimonial-card {
    background: #f3f2e7;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.testimonial-content p {
    font-size: 16px;
    color: #1A1A1A;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #8B6914;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.author-info h4 {
    font-family: 'Crimson Text', serif;
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 14px;
    color: #666;
}

/* Contact Section */
.contact-section {
    background: #f9f4ea;
    padding: 120px 350px;
}

/* Vision & Mission Section */
.vision-mission-section {
    background: #f9f4ea;
    padding: 120px 80px;
}

.vision-mission-content {
    margin-top: 60px;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    margin-bottom: 80px;
}

.vision-card,
.mission-card {
    background: #f3f2e7;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.vision-icon,
.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: #f9f4ea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #8B6914;
}

.vision-card h3,
.mission-card h3 {
    font-family: 'Crimson Text', serif;
    font-size: 28px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 20px;
    text-align: center;
}

.vision-card p,
.mission-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.values-section {
    text-align: center;
    padding-top: 40px;
}

.values-section h3 {
    font-family: 'Crimson Text', serif;
    font-size: 36px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.value-item h4 {
    font-family: 'Crimson Text', serif;
    font-size: 20px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    font-size: 24px;
    margin-top: 5px;
}

.contact-details h4 {
    font-family: 'Crimson Text', serif;
    font-size: 20px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 10px;
}

.contact-details p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: #f3f2e7;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B6914;
}

.contact-btn {
    background: #2C1810;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-btn:hover {
    background: #1A0F08;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #2C1810;
    color: white;
    padding: 80px 80px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-family: 'Crimson Text', serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-family: 'Crimson Text', serif;
    font-size: 18px;
    font-weight: 600;
    color: #8B6914;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #8B6914;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #8B6914;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #A67C14;
    transform: translateY(-2px);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 2px solid #444;
    border-radius: 5px;
    background: #333;
    color: white;
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #8B6914;
}

.newsletter-form button {
    background: #8B6914;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #A67C14;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    text-align: center;
    color: #888;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Header */
    .header {
        padding: 15px 20px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .cta-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    /* Hero Section */
    .hero {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        margin-right: 0;
    }
    
    .hero-text {
        max-width: 100%;
        order: 2;
    }
    
    .hero-text h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 13px;
    }
    
    .hero-image {
        height: 400px;
        order: 1;
        margin-right: 0;
        padding-right: 0;
    }
    
    .shakes-image {
        background-size: 70% auto;
        background-position: center;
    }
    
    /* All Sections */
    .featured-section,
    .products-section,
    .testimonials-section,
    .contact-section {
        padding: 80px 20px;
    }
    
    /* Vision & Mission Section Mobile */
    .vision-mission-section {
        padding: 80px 20px;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .vision-card,
    .mission-card {
        padding: 30px 20px;
    }
    
    .vision-card h3,
    .mission-card h3 {
        font-size: 24px;
    }
    
    .vision-card p,
    .mission-card p {
        font-size: 15px;
    }
    
    .values-section h3 {
        font-size: 28px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .value-item {
        padding: 20px 10px;
    }
    
    .value-icon {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .value-item h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .value-item p {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0;
        margin-top: 40px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-card h3 {
        font-size: 24px;
    }
    
    .feature-card p {
        font-size: 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    /* Products Grid */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0;
        margin-top: 40px;
    }
    
    .product-card {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-content {
        padding: 25px 20px;
    }
    
    .product-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .product-content p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .product-price {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .product-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    /* Testimonials Grid */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-content p {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .author-info h4 {
        font-size: 16px;
    }
    
    .author-info span {
        font-size: 13px;
    }
    
    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }
    
    .contact-item {
        gap: 15px;
    }
    
    .contact-icon {
        font-size: 20px;
    }
    
    .contact-details h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .contact-details p {
        font-size: 15px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 15px;
    }
    
    .contact-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    /* Footer */
    .footer {
        padding: 60px 20px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-section h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-section p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .footer-section ul li {
        margin-bottom: 8px;
    }
    
    .footer-section ul li a {
        font-size: 13px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form input {
        padding: 10px;
        font-size: 13px;
    }
    
    .newsletter-form button {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .footer-bottom {
        padding-top: 20px;
        font-size: 12px;
    }
    
    /* Action Controls */
    .action-controls {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .action-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    /* Extra Small Screens */
    .container {
        padding: 0 10px;
    }
    
    .header {
        padding: 12px 15px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .cta-btn {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .hero {
        padding: 40px 15px;
    }
    
    .hero-text h1 {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .shakes-image {
        background-size: 80% auto;
    }
    
    .featured-section,
    .products-section,
    .testimonials-section,
    .contact-section {
        padding: 60px 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .feature-card,
    .testimonial-card {
        padding: 25px 15px;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    .product-content {
        padding: 20px 15px;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .footer {
        padding: 50px 15px 15px;
    }
    
    .action-controls {
        bottom: 15px;
        right: 15px;
    }
    
    .action-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    /* Tablet Landscape */
    .hero-content {
        gap: 60px;
    }
    
    .hero-text h1 {
        font-size: 56px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .contact-content {
        gap: 60px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    /* Mobile Landscape */
    .hero {
        min-height: auto;
        padding: 40px 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 2;
        height: 350px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-actions {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .btn-primary,
    .btn-secondary {
        width: auto;
        max-width: 150px;
    }
}