/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #6C63FF 0%, #3A3AFF 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.2);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(108, 99, 255, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid #6C63FF;
    color: #6C63FF;
    box-shadow: none;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #6C63FF 0%, #3A3AFF 100%);
    color: white;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #6C63FF 0%, #3A3AFF 100%);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.highlight {
    color: #6C63FF;
}

/* Botón de WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding-bottom: 150px;
    overflow: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

.logo h1 {
    color: #333;
    font-size: 1.8rem;
    font-family: 'Montserrat', sans-serif;
}

.logo i {
    color: #6C63FF;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #6C63FF;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #6C63FF 0%, #3A3AFF 100%);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.login-link {
    background: linear-gradient(135deg, #6C63FF 0%, #3A3AFF 100%);
    color: white !important;
    padding: 8px 20px;
    border-radius: 20px;
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #FF6B8B;
    color: white;
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Camisa 3D animada */
.walking-shirt-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.walking-shirt {
    position: absolute;
    bottom: 20px;
    left: 10%;
    width: 100px;
    height: 200px;
    transform-style: preserve-3d;
    animation: walk 10s linear infinite;
}

/* Animación de caminar */
@keyframes walk {
    0% {
        left: -100px;
        transform: rotateY(0deg);
    }
    49% {
        left: calc(100% - 100px);
        transform: rotateY(0deg);
    }
    50% {
        left: calc(100% - 100px);
        transform: rotateY(180deg);
    }
    99% {
        left: -100px;
        transform: rotateY(180deg);
    }
    100% {
        left: -100px;
        transform: rotateY(0deg);
    }
}

/* Cuerpo de la camisa */
.shirt-body {
    position: absolute;
    width: 60px;
    height: 80px;
    top: 70px;
    left: 20px;
    transform-style: preserve-3d;
}

.shirt-front, .shirt-back, .shirt-left, .shirt-right, .shirt-top, .shirt-bottom {
    position: absolute;
    background-color: #4A6FA5;
    border: 1px solid #3A5A8C;
}

.shirt-front {
    width: 60px;
    height: 80px;
    transform: translateZ(15px);
    border-radius: 5px;
}

.shirt-back {
    width: 60px;
    height: 80px;
    transform: rotateY(180deg) translateZ(15px);
    border-radius: 5px;
}

.shirt-left {
    width: 30px;
    height: 80px;
    transform: rotateY(-90deg) translateZ(15px);
    left: -15px;
    border-radius: 5px 0 0 5px;
}

.shirt-right {
    width: 30px;
    height: 80px;
    transform: rotateY(90deg) translateZ(45px);
    right: -15px;
    border-radius: 0 5px 5px 0;
}

.shirt-top {
    width: 60px;
    height: 30px;
    transform: rotateX(90deg) translateZ(15px);
    top: -15px;
}

.shirt-bottom {
    width: 60px;
    height: 30px;
    transform: rotateX(-90deg) translateZ(65px);
    bottom: -15px;
}

/* Cuello de la camisa */
.shirt-collar {
    position: absolute;
    width: 40px;
    height: 20px;
    top: 60px;
    left: 30px;
    transform-style: preserve-3d;
}

.collar-front, .collar-back {
    position: absolute;
    background-color: #3A5A8C;
}

.collar-front {
    width: 40px;
    height: 20px;
    transform: translateZ(10px);
    border-radius: 10px 10px 0 0;
}

.collar-back {
    width: 40px;
    height: 20px;
    transform: rotateY(180deg) translateZ(10px);
    border-radius: 10px 10px 0 0;
}

/* Mangas */
.shirt-sleeve {
    position: absolute;
    width: 20px;
    height: 40px;
    top: 70px;
    transform-style: preserve-3d;
}

.left-sleeve {
    left: 0;
    transform-origin: right center;
    animation: swing-left 0.5s ease-in-out infinite alternate;
}

.right-sleeve {
    right: 0;
    transform-origin: left center;
    animation: swing-right 0.5s ease-in-out infinite alternate 0.25s;
}

.sleeve-front, .sleeve-back {
    position: absolute;
    background-color: #4A6FA5;
    border: 1px solid #3A5A8C;
}

.sleeve-front {
    width: 20px;
    height: 40px;
    transform: translateZ(5px);
    border-radius: 10px;
}

.sleeve-back {
    width: 20px;
    height: 40px;
    transform: rotateY(180deg) translateZ(5px);
    border-radius: 10px;
}

@keyframes swing-left {
    0% { transform: rotateZ(-20deg); }
    100% { transform: rotateZ(20deg); }
}

@keyframes swing-right {
    0% { transform: rotateZ(20deg); }
    100% { transform: rotateZ(-20deg); }
}

/* Brazos */
.arm {
    position: absolute;
    top: 110px;
    transform-style: preserve-3d;
}

.left-arm {
    left: 5px;
    transform-origin: top right;
    animation: arm-swing-left 0.5s ease-in-out infinite alternate;
}

.right-arm {
    right: 5px;
    transform-origin: top left;
    animation: arm-swing-right 0.5s ease-in-out infinite alternate 0.25s;
}

.arm-upper, .arm-lower {
    position: absolute;
    background-color: #FFDAB9;
    border-radius: 5px;
}

.arm-upper {
    width: 10px;
    height: 30px;
}

.arm-lower {
    width: 10px;
    height: 25px;
    top: 30px;
}

.left-arm .arm-upper {
    transform: rotateZ(-20deg);
}

.left-arm .arm-lower {
    transform: rotateZ(10deg);
}

.right-arm .arm-upper {
    transform: rotateZ(20deg);
}

.right-arm .arm-lower {
    transform: rotateZ(-10deg);
}

@keyframes arm-swing-left {
    0% { transform: rotateZ(-20deg); }
    100% { transform: rotateZ(20deg); }
}

@keyframes arm-swing-right {
    0% { transform: rotateZ(20deg); }
    100% { transform: rotateZ(-20deg); }
}

/* Piernas */
.leg {
    position: absolute;
    top: 150px;
    transform-style: preserve-3d;
}

.left-leg {
    left: 35px;
    animation: leg-swing-left 0.5s ease-in-out infinite alternate;
}

.right-leg {
    right: 35px;
    animation: leg-swing-right 0.5s ease-in-out infinite alternate 0.25s;
}

.leg-upper, .leg-lower {
    position: absolute;
    background-color: #333;
    border-radius: 5px;
}

.leg-upper {
    width: 15px;
    height: 40px;
}

.leg-lower {
    width: 15px;
    height: 35px;
    top: 40px;
}

.left-leg .leg-upper {
    transform: rotateZ(10deg);
}

.left-leg .leg-lower {
    transform: rotateZ(-5deg);
}

.right-leg .leg-upper {
    transform: rotateZ(-10deg);
}

.right-leg .leg-lower {
    transform: rotateZ(5deg);
}

@keyframes leg-swing-left {
    0% { transform: rotateZ(10deg) translateY(0); }
    100% { transform: rotateZ(-10deg) translateY(-5px); }
}

@keyframes leg-swing-right {
    0% { transform: rotateZ(-10deg) translateY(-5px); }
    100% { transform: rotateZ(10deg) translateY(0); }
}

/* Cabeza */
.head {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 20px;
    left: 30px;
    background-color: #FFDAB9;
    border-radius: 50%;
    z-index: 2;
}

/* Piso */
.floor {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to top, #ddd, #eee);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
    overflow: hidden;
    margin-top: -150px;
    padding-top: 200px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 30px;
}

.stat h3 {
    font-size: 2rem;
    color: #6C63FF;
    margin-bottom: 5px;
}

.stat p {
    font-size: 0.9rem;
    color: #777;
}

.hero-image {
    flex: 1;
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sección de Categorías */
.categories-section {
    padding: 80px 0;
    background-color: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-image {
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    padding: 20px;
}

.category-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.category-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.category-content a {
    color: #6C63FF;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.category-content a:hover {
    color: #3A3AFF;
}

.category-content a i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.category-content a:hover i {
    transform: translateX(5px);
}

/* Sección de Nueva Colección */
.collection-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #6C63FF 0%, #3A3AFF 100%);
    color: white;
}

.collection-section .section-title {
    color: white;
}

.collection-section .section-title::after {
    background: white;
}

.collection-header {
    text-align: center;
    margin-bottom: 50px;
}

.collection-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.collection-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 300px;
    gap: 20px;
}

.collection-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.collection-item.large {
    grid-row: span 1;
    grid-column: span 1;
}

.collection-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-item:hover img {
    transform: scale(1.05);
}

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.collection-item:hover .collection-overlay {
    transform: translateY(0);
}

.collection-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* Sección de Productos */
.products-section {
    padding: 80px 0;
    background-color: #f8f9ff;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.category-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    background-color: white;
    border: 2px solid #ddd;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, #6C63FF 0%, #3A3AFF 100%);
    color: white;
    border-color: #6C63FF;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #FF6B8B;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 1;
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.product-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
    min-height: 60px;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6C63FF;
}

.old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
}

.add-to-cart {
    background-color: #6C63FF;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background-color: #3A3AFF;
    transform: rotate(90deg);
}

.section-footer {
    text-align: center;
}

/* Sección de Testimonios */
.testimonials-section {
    padding: 80px 0;
    background-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #f8f9ff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-header h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.stars {
    color: #FFD700;
}

.testimonial-card p {
    color: #666;
    font-style: italic;
}

/* Sección Nosotros */
.about-section {
    padding: 80px 0;
    background-color: #f8f9ff;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 2rem;
    color: #6C63FF;
    margin-bottom: 15px;
}

.feature h4 {
    margin-bottom: 10px;
    color: #333;
}

.feature p {
    font-size: 0.9rem;
    color: #666;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Newsletter */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #6C63FF 0%, #3A3AFF 100%);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-content form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 20px;
}

.newsletter-content input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.newsletter-content button {
    border-radius: 0 30px 30px 0;
    padding: 15px 30px;
}

.newsletter-note {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Footer */
.footer {
    background-color: #222;
    color: #ddd;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo, .footer-links, .footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.footer-logo p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #6C63FF;
    transform: translateY(-5px);
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6C63FF;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: #6C63FF;
    width: 20px;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 1.8rem;
    margin-top: 20px;
}

.payment-methods i {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-methods i:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

/* Modal del Carrito */
.cart-modal {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
    justify-content: flex-end;
}

.cart-content {
    width: 400px;
    height: 100%;
    background-color: white;
    padding: 20px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.cart-modal.show .cart-content {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.cart-header h3 {
    font-size: 1.5rem;
    color: #333;
}

.close-cart {
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close-cart:hover {
    color: #333;
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 15px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.cart-item-price {
    color: #6C63FF;
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.quantity {
    margin: 0 10px;
    font-weight: 600;
}

.remove-item {
    background-color: #ff4757;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    margin-left: 10px;
    transition: background-color 0.3s ease;
}

.remove-item:hover {
    background-color: #ff3742;
}

.cart-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

#cartTotal {
    color: #6C63FF;
}

.empty-cart {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 30px 0;
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content, .hero-image {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 99;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cart-content {
        width: 100%;
    }
    
    .newsletter-content form {
        flex-direction: column;
    }
    
    .newsletter-content input,
    .newsletter-content button {
        width: 100%;
        border-radius: 30px;
        margin-bottom: 10px;
    }
    
    .walking-shirt {
        transform: scale(0.7);
        left: 5%;
    }
    
    @keyframes walk {
        0% {
            left: -150px;
            transform: scale(0.7) rotateY(0deg);
        }
        49% {
            left: calc(100% - 50px);
            transform: scale(0.7) rotateY(0deg);
        }
        50% {
            left: calc(100% - 50px);
            transform: scale(0.7) rotateY(180deg);
        }
        99% {
            left: -150px;
            transform: scale(0.7) rotateY(180deg);
        }
        100% {
            left: -150px;
            transform: scale(0.7) rotateY(0deg);
        }
    }
}