/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow Condensed', sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    font-weight: 400;
}

/* Alert Bar */
.alert {
    background: #e50000;
    color: #ffffff;
    text-align: center;
    padding: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.whatsapp-quick {
    background: #25d366;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.whatsapp-quick:hover {
    background: #128c7e;
    transform: scale(1.05);
}

/* Header */
header {
    background: #ffffff;
    color: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 3px solid #e50000;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    gap: 2rem;
}

.logo {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #e50000;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #e50000;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Search */
.search-container {
    position: relative;
}

.search-container input {
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    border: 2px solid #e50000;
    border-radius: 25px;
    background: #ffffff;
    color: #1a1a1a;
    font-family: inherit;
    width: 200px;
    transition: width 0.3s;
}

.search-container input:focus {
    outline: none;
    width: 250px;
}

.search-container i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #e50000;
}

/* Buttons */
.btn {
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    border: 2px solid #e50000;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    background: transparent;
    font-family: inherit;
    white-space: nowrap;
}

.btn-primary {
    background: #e50000;
    color: #ffffff;
    border-color: #e50000;
}

.btn-primary:hover {
    background: #b8112e;
    border-color: #b8112e;
}

.btn-large {
    font-size: 1.2rem;
    padding: 1rem 2rem;
}

.btn-full {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.btn-view {
    width: 100%;
    margin-top: 1rem;
}

.btn-cart {
    background: transparent;
    border: none;
    color: #1a1a1a;
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    padding: 0.5rem;
}

.cart-count {
    background: #e50000;
    color: #ffffff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    position: absolute;
    top: 0;
    right: 0;
    font-weight: 600;
}

.btn-back {
    background: #1a1a1a;
    color: #ffffff;
    border: 2px solid #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.btn-back:hover {
    background: #e50000;
    border-color: #e50000;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/main page image with knives.png') center center/cover no-repeat;
    color: #fff;
    padding: 6rem 2rem;
    text-align: center;
}

.hero h1 {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.hero p {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Section */
.section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.section-title {
    font-family: 'Big Shoulders Display', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #e50000;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.category-card {
    background: #ffffff;
    border: 3px solid #e50000;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
    background: #e50000;
    color: #ffffff;
}

.category-icon {
    width: 100%;
    height: 150px;
    margin-bottom: 1rem;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    transition: all 0.3s;
}

.category-card h3 {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: inherit;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

/* Card */
.card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 2px solid #f0f0f0;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(196, 30, 58, 0.2);
    border-color: #e50000;
}

.card-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.card-img img:hover {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #e50000;
}

.card-desc {
    color: #666666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.card-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #e50000;
    margin-bottom: 1rem;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    border: 2px solid #e50000;
    background: #ffffff;
    color: #e50000;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #e50000;
    color: #ffffff;
}

/* Features */
.features {
    background: #f8f8f8;
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 10px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s;
}

.feature:hover {
    border-color: #e50000;
    transform: translateY(-5px);
}

.feature i {
    font-size: 3rem;
    color: #e50000;
    margin-bottom: 1rem;
}

.feature h3 {
    font-family: 'Big Shoulders Display', sans-serif;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666666;
}

/* About Page */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 2px solid #f0f0f0;
}

.about-section h3 {
    font-family: 'Big Shoulders Display', sans-serif;
    color: #e50000;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.promise-list {
    list-style: none;
}

.promise-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.promise-list i {
    color: #e50000;
    margin-right: 0.5rem;
}

.process-steps {
    display: grid;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background: #e50000;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step h4 {
    color: #e50000;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #ffffff;
    border-radius: 15px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px 15px 0 0;
}

.modal-header h2 {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    color: #e50000;
}

.close-btn {
    background: transparent;
    border: none;
    color: #e50000;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #ffffff;
}

.modal-body {
    padding: 2rem;
}

/* Form */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    background: #ffffff;
    color: #1a1a1a;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #e50000;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Cart */
.cart-summary {
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: 700;
    color: #e50000;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 2px solid #e50000;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-section h3 {
    font-family: 'Big Shoulders Display', sans-serif;
    color: #e50000;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #e50000;
}

.payment-logos {
    display: flex;
    gap: 1rem;
    font-size: 2rem;
    color: #e50000;
}

/* Utility */
.hidden {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-center {
        order: 3;
        width: 100%;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .nav-right {
        order: 2;
        width: 100%;
        justify-content: space-between;
    }
    
    .search-container input {
        width: 150px;
    }
    
    .search-container input:focus {
        width: 180px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .filter-bar {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}


/* FAQ Styles */
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 2rem;
}

.faq-category-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 1.8rem;
    color: #e50000;
    margin-bottom: 1rem;
    font-weight: 700;
    border-bottom: 2px solid #e50000;
    padding-bottom: 0.5rem;
}

.faq-item {
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 2px solid #f0f0f0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #e50000;
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #f8f8f8;
    color: #e50000;
}

.faq-question i {
    transition: transform 0.3s;
    color: #e50000;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: #666666;
    line-height: 1.8;
}

.faq-answer.active {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 1000px;
}
