:root {
    --primary: black;
    --secondary: rgb(101, 101, 101);
    --light: #f8f5f2;
    --dark: #818181;
    --gray: #b1b1b1;
    --light-gray: #eee;
    --white: #fff;
    --rating: rgb(255, 187, 0);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--gray);
    color: var(--gray);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
}

.nav-icons a {
    color: var(--dark);
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-icons a:hover {
    color: var(--primary);
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: black;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 5%;
    color: var(--white);
    position: relative;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cod-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

/* Featured Products */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 5%;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--gray);
    font-size: 1.1rem;
}

.featured {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: block;
}

/* About Section */
.about {
    padding: 5rem 5%;
    background-color: var(--white);
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-weight: 500;
}

/* Testimonials */
.testimonials {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.rating {
    color: var(--rating);
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.customer {
    display: flex;
    flex-direction: column;
}

.customer h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.customer span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Shop Page */
.shop-header {
    padding: 5rem 5% 3rem;
    text-align: center;
    background-color: var(--primary);
    color: var(--white);
}

.shop-header h1 {
    font-size: 3rem;
}

.shop-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.shop-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    padding: 3rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.shop-filters {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    height: fit-content;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.filter-section {
    margin-bottom: 2rem;
}

.filter-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.filter-section ul {
    list-style: none;
}

.filter-section ul li {
    margin-bottom: 0.5rem;
}

.filter-section ul li a {
    color: var(--gray);
    transition: color 0.3s;
    font-size: 0.95rem;
}

.filter-section ul li a:hover, .filter-section ul li a.active {
    color: var(--primary);
}

.price-slider {
    width: 100%;
    margin-bottom: 0.5rem;
}

.price-range {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--gray);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--dark);
    transition: all 0.3s;
}

.pagination a:hover, .pagination a.active {
    background-color: var(--primary);
    color: var(--white);
}

.cod-banner {
    background-color: var(--primary);
    color: var(--white);
    padding: 3rem 5%;
    margin: 3rem 0;
    text-align: center;
}

.cod-banner h2 {
    margin-bottom: 1rem;
}

.cod-banner p {
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.cod-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cod-features .feature {
    background-color: rgba(255,255,255,0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
}

/* About Page */
.about-header {
    padding: 5rem 5% 3rem;
    text-align: center;
    background-color: var(--primary);
    color: var(--white);
}

.about-header h1 {
    font-size: 3rem;
}

.about-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-mission {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stat .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 0.3rem;
}

.stat .label {
    font-size: 0.9rem;
    color: var(--gray);
}

.about-process {
    padding: 5rem 5%;
    background-color: var(--white);
    max-width: 1400px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background-color: var(--light);
    border-radius: 10px;
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-10px);
}

.step-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.step h3 {
    margin-bottom: 1rem;
}

.step p {
    font-size: 0.95rem;
    color: var(--gray);
}

.about-team {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.team-member {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.member-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.member-info h3 {
    font-size: 1.8rem;
    color: var(--primary);
}

.role {
    display: block;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.member-contact {
    margin-top: 2rem;
}

.member-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.about-values {
    padding: 5rem 5%;
    background-color: var(--white);
    max-width: 1400px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--light);
    border-radius: 10px;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--gray);
}

/* Contact Page */
.contact-header {
    padding: 5rem 5% 3rem;
    text-align: center;
    background-color: var(--primary);
    color: var(--white);
}

.contact-header h1 {
    font-size: 3rem;
}

.contact-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.info-cards {
    margin: 2rem 0;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-card i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0.3rem;
}

.info-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-card p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--gray);
}

.social-section {
    margin-top: 3rem;
}

.social-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(138, 90, 68, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-map {
    padding: 0 5% 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-map iframe {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-section {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-container {
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 1rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Cart Page */
.cart-header {
    padding: 5rem 5% 3rem;
    text-align: center;
    background-color: var(--primary);
    color: var(--white);
}

.cart-header h1 {
    font-size: 3rem;
}

.cart-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    padding: 3rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.cart-empty {
    text-align: center;
    padding: 5rem 0;
    grid-column: 1 / -1;
}

.cart-empty i {
    font-size: 3rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.cart-empty h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cart-empty p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.cart-table {
    overflow-x: auto;
}

.cart-table table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    text-align: left;
    padding: 1rem;
    background-color: var(--light);
    font-weight: 600;
}

.cart-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.cart-item-info p {
    font-size: 0.9rem;
    color: var(--gray);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-control button {
    width: 30px;
    height: 30px;
    border: 1px solid var(--light-gray);
    background-color: transparent;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.quantity-control button:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.quantity-control input {
    width: 50px;
    text-align: center;
    padding: 0.3rem;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
}

.remove-item {
    color: var(--gray);
    cursor: pointer;
    transition: color 0.3s;
}

.remove-item:hover {
    color: var(--primary);
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.summary-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 120px;
}

.summary-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.summary-divider {
    height: 1px;
    background-color: var(--light-gray);
    margin: 1.5rem 0;
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.1rem;
}

.cod-notice {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(138, 90, 68, 0.1);
    padding: 1rem;
    border-radius: 5px;
    margin: 1.5rem 0;
}

.cod-notice i {
    font-size: 1.5rem;
    color: var(--primary);
}

.cod-notice p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.btn-checkout {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.payment-methods {
    margin-top: 1.5rem;
    text-align: center;
}

.payment-methods p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 1.5rem;
    color: var(--gray);
}

.coupon-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 1.5rem;
}

.coupon-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.coupon-card p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.coupon-form {
    display: flex;
    gap: 0.5rem;
}

.coupon-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
}

.coupon-form button {
    padding: 0 1.5rem;
}

.cart-recommendations {
    padding: 3rem 5% 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-column p {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    background-color: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #aaa;
    font-size: 0.9rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .shop-content {
        grid-template-columns: 200px 1fr;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .about-content, .mission-content {
        grid-template-columns: 1fr;
    }
    
    .mission-image, .about-img {
        order: -1;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .cart-content {
        grid-template-columns: 1fr;
    }
    
    .summary-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .shop-content {
        grid-template-columns: 1fr;
    }
    
    .team-member {
        grid-template-columns: 1fr;
    }
    
    .mission-stats {
        grid-template-columns: 1fr;
    }
    
    .process-steps, .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .cod-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 1rem;
    }
}
/* Confirmation Popup Styles */
.confirmation-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.confirmation-popup.active {
  opacity: 1;
  pointer-events: all;
}

.popup-content {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.confirmation-popup.active .popup-content {
  transform: translateY(0);
}

.popup-content i {
  font-size: 3rem;
  color: #4CAF50;
  margin-bottom: 1rem;
}

.popup-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.popup-content p {
  margin-bottom: 1.5rem;
}

.popup-content .order-summary {
  background-color: var(--light);
  padding: 1rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.popup-content .cod-notice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(138, 90, 68, 0.1);
  padding: 0.8rem;
  border-radius: 5px;
  font-size: 0.9rem;
}

.popup-content .cod-notice i {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0;
}

#close-popup {
  width: 100%;
  margin-top: 1rem;
}