.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background: radial-gradient(ellipse at center, rgba(232, 197, 216, 0.08) 0%, rgba(10, 10, 10, 0.9) 60%);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide.fading-out {
    opacity: 0;
    visibility: visible;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: brightness(0.7) saturate(1.3) contrast(1.1);
    animation: heroImageFloat 7s ease-in-out infinite;
}

@keyframes heroImageFloat {
    0%, 100% {
        transform: scale(0.75) translateY(0) rotate(0deg);
    }
    25% {
        transform: scale(0.78) translateY(-15px) rotate(1deg);
    }
    50% {
        transform: scale(0.82) translateY(10px) rotate(-1deg);
    }
    75% {
        transform: scale(0.78) translateY(-10px) rotate(0.5deg);
    }
}

.hero-slide:nth-child(2n) .hero-image {
    animation: heroImageFloatAlt 9s ease-in-out infinite;
}

.hero-slide:nth-child(3n) .hero-image {
    animation: heroImagePulse 8s ease-in-out infinite;
}

@keyframes heroImageFloatAlt {
    0%, 100% {
        transform: scale(0.7) translateX(0) translateY(0);
    }
    33% {
        transform: scale(0.76) translateX(20px) translateY(-20px);
    }
    66% {
        transform: scale(0.8) translateX(-20px) translateY(15px);
    }
}

@keyframes heroImagePulse {
    0%, 100% {
        transform: scale(0.72);
    }
    50% {
        transform: scale(0.85);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(232, 197, 216, 0.12) 50%, rgba(0,0,0,0.85) 100%);
    z-index: 2;
}

.hero-content {
    text-align: center;
    z-index: 3;
    max-width: 90%;
    width: 800px;
    position: relative;
    animation: heroContentFadeIn 1.2s ease-out;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
}

.title-line {
    display: block;
    opacity: 0;
    animation: titleSlideIn 0.8s ease-out forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
    color: #fff;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.gradient-text {
    color: #fff;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.cta-btn {
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-primary {
    background: linear-gradient(135deg, #e8c5d8, #d4a5c4);
    color: #000;
    box-shadow: 0 5px 20px rgba(232, 197, 216, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(232, 197, 216, 0.5);
}

.cta-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

@keyframes heroContentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    flex-wrap: wrap;
}

.title-decoration {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #e8c5d8, #ffffff);
    border-radius: 2px;
    position: relative;
}

.title-decoration::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #e8c5d8;
    border-radius: 50%;
}

.categories {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(232, 197, 216, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.category-card {
    background: rgba(51, 51, 51, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(85, 85, 85, 0.5);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    opacity: 0;
    transform: translateY(40px);
    animation: slideInUp 0.6s ease-out forwards;
}

.category-card:nth-child(1) { animation-delay: 0.15s; }
.category-card:nth-child(2) { animation-delay: 0.3s; }

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 197, 216, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(232, 197, 216, 0.5);
    box-shadow: 0 20px 40px rgba(232, 197, 216, 0.15);
}

.category-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(232, 197, 216, 0.1), rgba(51, 51, 51, 0.5));
}

.category-bg-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.8) saturate(1.2);
    transition: all 0.35s ease;
}

.category-card:hover .category-bg-image {
    transform: scale(1.1);
    filter: brightness(1) saturate(1.4);
}

.category-content {
    position: relative;
    z-index: 2;
}

.category-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.category-desc {
    color: rgba(204, 204, 204, 0.9);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: clamp(14px, 2vw, 16px);
}

.category-btn {
    background: linear-gradient(135deg, #e8c5d8, #d4a5c4);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(232, 197, 216, 0.4);
}

.category-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(232, 197, 216, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.category-card:hover .category-glow {
    width: 200%;
    height: 200%;
}

.products {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 50%, rgba(232, 197, 216, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    gap: 20px;
}

.view-all-btn {
    background: transparent;
    color: #e8c5d8;
    border: 2px solid #e8c5d8;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 197, 216, 0.2), transparent);
    transition: left 0.5s ease;
}

.view-all-btn:hover::before {
    left: 100%;
}

.view-all-btn:hover {
    background: rgba(232, 197, 216, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 197, 216, 0.3);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.product-card {
    background: rgba(51, 51, 51, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(85, 85, 85, 0.5);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.5s ease-out forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.15s; }
.product-card:nth-child(3) { animation-delay: 0.2s; }
.product-card:nth-child(4) { animation-delay: 0.25s; }
.product-card:nth-child(5) { animation-delay: 0.3s; }
.product-card:nth-child(6) { animation-delay: 0.35s; }

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 197, 216, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(232, 197, 216, 0.5);
    box-shadow: 0 20px 40px rgba(232, 197, 216, 0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(85, 85, 85, 0.5), rgba(51, 51, 51, 0.8));
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.35s ease;
    filter: brightness(0.9);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    cursor: pointer;
    pointer-events: all;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-details {
    color: #e8c5d8;
    font-weight: 600;
    padding: 8px 16px;
    border: 2px solid #e8c5d8;
    border-radius: 20px;
    background: rgba(232, 197, 216, 0.1);
    backdrop-filter: blur(10px);
    pointer-events: none;
}

.product-info {
    position: relative;
    z-index: 2;
}

.product-title {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
    font-weight: 600;
    overflow: hidden;
    display: block;
    max-height: calc(1.3em * 2);
}

.product-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    align-items: center;
}

.star:before {
    content: '★';
    color: #e8c5d8;
    font-size: 18px;
}

.star.empty:before {
    content: '☆';
    color: rgba(102, 102, 102, 0.5);
    font-size: 18px;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e8c5d8;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(232, 197, 216, 0.3);
}

.add-to-cart {
    width: 100%;
    background: linear-gradient(135deg, #e8c5d8, #d4a5c4);
    color: #000;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-to-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.add-to-cart:hover::before {
    left: 100%;
}

.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 197, 216, 0.4);
}

.features {
    padding: 120px 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 50%, rgba(232, 197, 216, 0.03) 0%, transparent 70%);
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(51, 51, 51, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(85, 85, 85, 0.3);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.5s ease-out forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 197, 216, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(232, 197, 216, 0.5);
    box-shadow: 0 15px 30px rgba(232, 197, 216, 0.1);
}

.feature-icon {
    margin-bottom: 25px;
    width: 100px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(232, 197, 216, 0.2), rgba(232, 197, 216, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    box-shadow: 0 5px 15px rgba(232, 197, 216, 0.2);
    padding: 20px;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.35s ease;
    filter: brightness(1.1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(232, 197, 216, 0.4);
}

.feature-card:hover .feature-image {
    transform: scale(1.1);
}

.feature-title {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.feature-desc {
    color: rgba(204, 204, 204, 0.8);
    line-height: 1.6;
    position: relative;
    z-index: 2;
    font-size: clamp(14px, 2vw, 16px);
}

.reviews {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 30%, rgba(232, 197, 216, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.review-slider {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.review-content {
    background: rgba(51, 51, 51, 0.8);
    backdrop-filter: blur(15px);
    padding: 50px 40px;
    border-radius: 25px;
    border: 1px solid rgba(85, 85, 85, 0.5);
    position: relative;
    overflow: hidden;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.review-content.active-review {
    display: block;
    animation: fadeInUp 0.6s ease-out forwards;
}

.review-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 197, 216, 0.1), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.review-content:hover::before {
    left: 100%;
}

.review-stars {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.review-text {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(204, 204, 204, 0.9);
    font-style: italic;
    position: relative;
    z-index: 2;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e8c5d8, #d4a5c4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(232, 197, 216, 0.3);
}

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 600;
    color: #e8c5d8;
    font-size: 18px;
    margin-bottom: 5px;
}

.author-location {
    display: block;
    color: rgba(204, 204, 204, 0.7);
    font-size: 14px;
}

.review-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.review-btn {
    background: rgba(232, 197, 216, 0.2);
    border: 2px solid #e8c5d8;
    color: #e8c5d8;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    user-select: none;
}

.review-btn:hover {
    background: rgba(232, 197, 216, 0.4);
    transform: scale(1.1);
}

.review-dots {
    display: flex;
    gap: 10px;
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(232, 197, 216, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-dot.active {
    background: #e8c5d8;
    transform: scale(1.3);
}

.newsletter {
    padding: 100px 20px;
    background: linear-gradient(135deg, #e8c5d8 0%, #d4a5c4 50%, #b89bb0 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.newsletter-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.newsletter-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 40px;
    color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.newsletter-form {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

.input-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    max-width: 450px;
    margin: 0 auto;
    position: relative;
}

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
}

.newsletter-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 18px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.newsletter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.newsletter-btn:hover::before {
    left: 100%;
}

.newsletter-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 992px) {
    .hero {
        height: 85vh;
        min-height: 550px;
    }
    .category-grid {
        grid-template-columns: 1fr;
    }
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        height: 75vh;
        min-height: 500px;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    .cta-btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .section-title {
        gap: 15px;
        margin-bottom: 40px;
    }
    .title-decoration {
        width: 40px;
    }
    .categories, .products, .features, .reviews {
        padding: 80px 0;
    }
    .category-card {
        padding: 30px 20px;
    }
    .products-header {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
        margin-bottom: 40px;
    }
    .view-all-btn {
        text-align: center;
    }
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 25px;
    }
    .feature-card {
        padding: 30px 20px;
    }
    .feature-icon {
        width: 80px;
        height: 80px;
    }
    .review-content {
        padding: 35px 25px;
    }
    .newsletter {
        padding: 80px 20px;
    }
    .input-group {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    .newsletter-input,
    .newsletter-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 70vh;
        min-height: 450px;
    }
    .hero-image {
        animation: heroImageFloatMobile 6s ease-in-out infinite;
    }
    @keyframes heroImageFloatMobile {
        0%, 100% {
            transform: scale(0.65) translateY(0);
        }
        50% {
            transform: scale(0.72) translateY(-10px);
        }
    }
    .cta-btn {
        padding: 15px 25px;
        font-size: 14px;
    }
    .categories, .products, .features, .reviews {
        padding: 60px 0;
    }
    .category-card {
        padding: 25px 15px;
    }
    .category-icon {
        width: 100px;
        height: 100px;
    }
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .product-card {
        padding: 15px;
    }
    .product-title {
        font-size: 16px;
    }
    .product-price {
        font-size: 1.1rem;
    }
    .add-to-cart {
        font-size: 13px;
        padding: 10px 15px;
    }
    .feature-card {
        padding: 25px 15px;
    }
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    .review-content {
        padding: 30px 20px;
    }
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    .author-name {
        font-size: 16px;
    }
    .review-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0, -8px, 0);
    }
    70% {
        transform: translate3d(0, -4px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

@media (max-width: 480px) and (max-height: 700px) {
    .hero {
        height: 90vh;
    }
    .hero-title {
        margin-bottom: 15px;
    }
    .hero-subtitle {
        margin-bottom: 25px;
    }
    .cta-buttons {
        margin-top: 25px;
    }
}
