* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #D1F0B1;
    --secondary: #55776A;
    --background: #D7E2CA;
    --text: #000000;
    --white: #FFFFFF;
    --gray: #f5f5f5;
    --dark-gray: #777;
    --light-gray: #eaeaea;
}

body {
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--secondary);
    color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-cart {
    display: flex;
    align-items: center;
}

.search-cart input {
    padding: 8px 15px;
    border: none;
    border-radius: 20px;
    margin-right: 15px;
}

.cart-icon {
    color: var(--white);
    font-size: 1.5rem;
    position: relative;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.btn-primary{
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--secondary);
    border: none;
}

.btn-primary:hover {
    background-color: var(--white);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(85, 119, 106, 0.8), rgba(85, 119, 106, 0.8)), url('https://images.unsplash.com/photo-1487070218839-4e2c0fde4d68?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--secondary);
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--secondary);
}

/* Promo Banner */
.promo-banner {
    background-color: var(--primary);
    padding: 40px 0;
    text-align: center;
    margin-bottom: 60px;
}

.banner-content h2 {
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: 10px;
}

.banner-content h2 span {
    font-weight: bold;
}

.banner-content p {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Products Section */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary);
    font-size: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
    margin: 10px auto;
}

.section-actions {
    text-align: center;
    margin-top: 30px;
}

/* Categories */
.categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
}

.category {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    width: 180px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.category:hover {
    transform: translateY(-5px);
}

.category i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.category h3 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.category-link {
    color: var(--dark-gray);
    font-size: 0.9rem;
    text-decoration: none;
}

.category-link:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.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;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img {
    height: 200px;
    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: 10px;
    right: 10px;
    background-color: var(--primary);
    color: var(--secondary);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-weight: bold;
    color: var(--secondary);
    font-size: 1.3rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--dark-gray);
    font-size: 1rem;
}

.product-description {
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wishlist-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--dark-gray);
    cursor: pointer;
    transition: color 0.3s;
}

.wishlist-btn:hover {
    color: #e74c3c;
}

/* Benefits Section */
.benefits-section {
    background-color: var(--white);
    padding: 60px 0;
    margin: 60px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-author h4 {
    color: var(--secondary);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--secondary);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.newsletter-content h2 {
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 30px 0 0 30px;
}

.newsletter-form button {
    border-radius: 0 30px 30px 0;
}

.newsletter-section small {
    opacity: 0.7;
}

.newsletter-section a {
    color: var(--primary);
}

/* Footer */
footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-column p, .footer-column a {
    color: var(--white);
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-column i {
    margin-right: 10px;
    width: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    font-size: 1.5rem;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 968px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin: 20px 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 5px 10px;
    }

    .header-actions {
        flex-direction: column;
        gap: 15px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: 30px;
        margin-bottom: 10px;
    }

    .newsletter-form button {
        border-radius: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .categories {
        gap: 15px;
    }

    .category {
        width: calc(50% - 15px);
        padding: 20px 15px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .testimonials {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    .category {
        width: 100%;
    }

    .banner-content h2 {
        font-size: 1.5rem;
    }
}

/* Footer */
footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-column p, .footer-column a {
    color: var(--white);
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
}

.footer-column a:hover {
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    font-size: 1.5rem;
}

.newsletter-input {
    padding: 10px;
    width: 100%;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin: 20px 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 5px 10px;
    }

    .search-cart {
        margin-top: 15px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .categories {
        gap: 10px;
    }

    .category {
        width: 130px;
        padding: 15px 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 60px 20px;
    }
    
    .category {
        width: calc(50% - 10px);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Filters */
.filters {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.filters h2 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.filter-options select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: var(--white);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 5px;
    background-color: var(--white);
    color: var(--secondary);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.page-link:hover, .page-link.active {
    background-color: var(--secondary);
    color: var(--white);
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info h2, .contact-form h2 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h3 {
    color: var(--secondary);
    margin-bottom: 5px;
}

/* Contact Form */
.contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

/* Map */
.map {
    margin-bottom: 60px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Registration Content */
.registration-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.registration-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.registration-form h2 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.registration-form > p {
    margin-bottom: 25px;
    color: var(--dark-gray);
}

.registration-form h3 {
    color: var(--secondary);
    margin: 25px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* Form Rows */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--secondary);
    outline: none;
}

/* Password Strength */
.password-strength {
    margin-top: 8px;
}

.strength-bar {
    height: 5px;
    width: 0%;
    background-color: #e74c3c;
    border-radius: 3px;
    transition: width 0.3s, background-color 0.3s;
}

.strength-text {
    display: block;
    font-size: 0.8rem;
    color: var(--dark-gray);
    margin-top: 5px;
}

/* Checkboxes */
.form-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.form-checkbox input {
    margin-right: 10px;
}

.form-checkbox label {
    color: var(--dark-gray);
}

.form-checkbox a {
    color: var(--secondary);
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

/* Buttons */
.btn-full {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin: 20px 0;
}

/* Login Link */
.login-link {
    text-align: center;
    margin-top: 20px;
}

.login-link a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Benefits */
.registration-benefits {
    background-color: var(--primary);
    padding: 30px;
    border-radius: 10px;
    height: fit-content;
}

.registration-benefits h2 {
    color: var(--secondary);
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: center;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-right: 15px;
    margin-top: 5px;
}

.benefit-item h3 {
    color: var(--secondary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.benefit-item p {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 968px) {
    .registration-content {
        grid-template-columns: 1fr;
    }
    
    .registration-benefits {
        order: -1;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .registration-form, .registration-benefits {
        padding: 20px;
    }
}

/* About Content */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.about-text {
    padding-right: 20px;
}

.about-text h2 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Values */
.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.value-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.value-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

/* Team */
.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.team-member {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 20px;
}

.member-info h3 {
    color: var(--secondary);
    margin-bottom: 5px;
}

.member-info p {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

/* Cart Content */
.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.continue-shopping {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
}

.continue-shopping:hover {
    text-decoration: underline;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto auto;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background-color: var(--white);
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: opacity 0.3s;
}

.item-image {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details h3 {
    color: var(--secondary);
    margin-bottom: 5px;
}

.item-details p {
    color: var(--dark-gray);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.item-sku {
    font-size: 0.8rem;
    color: var(--dark-gray);
}

.item-price {
    text-align: center;
}

.current-price {
    display: block;
    font-weight: bold;
    color: var(--secondary);
    font-size: 1.1rem;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.item-quantity {
    display: flex;
    align-items: center;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background-color: var(--white);
    border-radius: 5px;
    cursor: pointer;
}

.quantity-btn:hover {
    background-color: var(--primary);
}

.item-quantity input {
    width: 40px;
    height: 30px;
    text-align: center;
    margin: 0 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.item-subtotal {
    font-weight: bold;
    color: var(--secondary);
}

.remove-btn {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 1.1rem;
}

.remove-btn:hover {
    color: #c0392b;
}

.cart-promo {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cart-promo h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.promo-input {
    display: flex;
}

.promo-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
}

.promo-input .btn {
    border-radius: 0 5px 5px 0;
}

/* Cart Summary */
.cart-summary {
    position: sticky;
    top: 20px;
}

.summary-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.summary-card h2 {
    color: var(--secondary);
    margin-bottom: 20px;
    text-align: center;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.summary-row.total {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--secondary);
}

.summary-row.installments {
    font-size: 0.9rem;
    color: var(--dark-gray);
    text-align: center;
    margin-top: 10px;
}

.discount {
    color: #2ecc71;
}

.shipping {
    color: #2ecc71;
}

.summary-divider {
    height: 1px;
    background-color: #eee;
    margin: 15px 0;
}

.btn-full {
    width: 100%;
    margin: 20px 0;
}

.payment-methods {
    text-align: center;
    margin-top: 20px;
}

.payment-methods p {
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 1.5rem;
    color: var(--dark-gray);
}

.security-info {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.security-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.security-item:last-child {
    margin-bottom: 0;
}

.security-item i {
    color: var(--secondary);
    margin-right: 10px;
    width: 20px;
}

/* Responsive */
@media (max-width: 968px) {
    .cart-content {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
        grid-template-rows: auto auto auto;
        gap: 15px;
    }
    
    .item-price, .item-quantity, .item-subtotal, .item-remove {
        grid-column: 1 / -1;
        justify-self: start;
        display: flex;
        align-items: center;
    }
    
    .item-price, .item-subtotal {
        justify-self: end;
    }
    
    .item-quantity {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .values {
        grid-template-columns: 1fr;
    }
    
    .team-members {
        grid-template-columns: 1fr;
    }
    
    .cart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* Breadcrumb */
.breadcrumb {
    margin: 20px 0 30px;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.breadcrumb a {
    color: var(--secondary);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--dark-gray);
}

/* Product Detail */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.product-gallery {
    position: sticky;
    top: 20px;
}

.main-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.thumbnail-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumbnail {
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
    border: 2px solid transparent;
}

.thumbnail:hover, .thumbnail.active {
    opacity: 1;
    border-color: var(--secondary);
}

.thumbnail img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

/* Product Info */
.product-info h1 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.product-meta {
    margin-bottom: 20px;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.stars {
    color: #FFD700;
    margin-right: 10px;
}

.rating-value {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.product-sku {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.product-stock {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.in-stock {
    color: #2ecc71;
}

.out-of-stock {
    color: #e74c3c;
}

.product-stock i {
    margin-right: 5px;
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.current-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary);
}

.old-price {
    text-decoration: line-through;
    color: var(--dark-gray);
    font-size: 1.2rem;
}

.discount-badge {
    background-color: #e74c3c;
    color: white;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-description {
    margin-bottom: 25px;
    line-height: 1.6;
}

.product-features {
    margin-top: 20px;
}

.product-features h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.product-features ul {
    list-style: none;
}

.product-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.product-features i {
    color: var(--secondary);
    margin-right: 10px;
    width: 16px;
}

/* Product Options */
.product-options {
    margin-bottom: 25px;
}

.option-group {
    margin-bottom: 15px;
}

.option-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary);
}

.quantity-selector {
    display: flex;
    align-items: center;
    width: fit-content;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: none;
    background-color: var(--white);
    cursor: pointer;
    font-size: 1.1rem;
}

.quantity-btn:hover {
    background-color: var(--primary);
}

.quantity-selector input {
    width: 50px;
    height: 35px;
    text-align: center;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.btn-add-to-cart {
    flex: 1;
    min-width: 200px;
}

.btn-wishlist {
    background: none;
    border: 1px solid #ddd;
    color: var(--secondary);
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-wishlist:hover {
    background-color: #ffeeee;
    border-color: #ffcccc;
}

/* Product Shipping */
.product-shipping {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.shipping-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.shipping-info i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-right: 15px;
}

.shipping-calculator {
    display: flex;
    gap: 10px;
}

.shipping-calculator input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Product Guarantee */
.product-guarantee {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
    font-size: 0.9rem;
}

.guarantee-item i {
    color: var(--secondary);
    margin-right: 8px;
}

/* Product Tabs */
.product-tabs {
    margin-bottom: 60px;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.tab-link {
    background: none;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-gray);
}

/* Page Subtitle */
.page-subtitle {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Benefits CTA */
.benefits-cta {
    text-align: center;
    margin-top: 40px;
}

/* Header Actions (já existente, apenas para referência) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.btn-primary, .btn-outline {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--secondary);
    border: none;
}

.btn-primary:hover {
    background-color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--secondary);
}

/* Promo Banner (já existente, apenas para referência) */
.promo-banner {
    background-color: var(--primary);
    padding: 40px 0;
    text-align: center;
    margin-bottom: 60px;
}

.banner-content h2 {
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: 10px;
}

.banner-content h2 span {
    font-weight: bold;
}

.banner-content p {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Filters (já existente, apenas para referência) */
.filters {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.filters h2 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.filter-options select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: var(--white);
}

/* Products Grid (já existente, apenas para referência) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.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;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img {
    height: 200px;
    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: 10px;
    right: 10px;
    background-color: var(--primary);
    color: var(--secondary);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-weight: bold;
    color: var(--secondary);
    font-size: 1.3rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--dark-gray);
    font-size: 1rem;
}

.product-description {
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wishlist-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--dark-gray);
    cursor: pointer;
    transition: color 0.3s;
}

.wishlist-btn:hover {
    color: #e74c3c;
}

/* Pagination (já existente, apenas para referência) */
.pagination {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 5px;
    background-color: var(--white);
    color: var(--secondary);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.page-link:hover, .page-link.active {
    background-color: var(--secondary);
    color: var(--white);
}

/* Benefits Section (já existente, apenas para referência) */
.benefits-section {
    background-color: var(--white);
    padding: 60px 0;
    margin: 60px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .auth-buttons {
        justify-content: center;
    }
    
    .filter-options {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-options select, .filter-options button {
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

