:root {
    --primary: #0C0C0C;               
    --primary-light: #1F1F1F;         
    --secondary: #A67C52;             
    --accent: #8C6B4F;                
    --light: #FAF8F5;                
    --dark: #000000;                
    --gray: #666666;                
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(12, 12, 12, 0.08);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --animation-timing: cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Animasi variables */
    --float-distance: 20px;
    --rotation-angle: 5deg;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ========== HILANGKAN TAP HIGHLIGHT BIRU DI MOBILE ========== */
a, button, .btn-product, .nav-cta, .mobile-menu-btn, 
.product-img, .modal-close, .logo, nav ul li a {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

body {
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    background-color: rgba(250, 248, 245, 0.97);
}

header.scrolled {
    box-shadow: var(--shadow);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--accent);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    display: block;
    padding: 15px 0;
    width: 100%;
    font-size: 18px;
}

nav ul li a:hover {
    color: var(--accent);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: var(--accent);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 30px;
    transition: var(--transition);
}

.nav-cta:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(166, 124, 82, 0.25);
}

.nav-cta::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
    z-index: 1001;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #FAF8F5 0%, #F5F2EE 100%);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(140, 107, 79, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero h1 {
    font-size: 72px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
    opacity: 0;
    animation: slideDown 0.8s ease forwards;
}

.hero h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 30px;
    opacity: 0;
    animation: slideDown 0.8s ease 0.2s forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight {
    color: var(--accent);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(166, 124, 82, 0.15);
    z-index: -1;
}

.hero-description {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0;
    animation: slideDown 0.8s ease 0.4s forwards;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    opacity: 0;
    animation: slideDown 0.8s ease 0.6s forwards;
}

.btn-primary, .btn-secondary, .btn-product {
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(166, 124, 82, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    opacity: 0;
    animation: slideDown 0.8s ease 0.8s forwards;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== ANIMASI GAMBAR SEPATU HERO ========== */
.hero-image {
    position: relative;
    opacity: 0;
    animation: slideUp 0.8s ease 1s forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shoe-display {
    background: linear-gradient(135deg, var(--white), var(--light));
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.shoe-main {
    position: relative;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: none !important;
    padding: 0 !important;
    animation: shoeFloat 6s ease-in-out infinite;
}

.shoe-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shoe-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center;
    transform: none !important;
    transition: all 0.8s var(--animation-timing);
}

@keyframes shoeFloat {
    0%, 100% { 
        transform: translateY(0px) rotateX(5deg); 
    }
    50% { 
        transform: translateY(var(--float-distance)) rotateX(5deg); 
    }
}

@keyframes shoeRotate {
    0% { transform: translateZ(20px) rotate(-5deg); }
    25% { transform: translateZ(20px) rotate(0deg); }
    50% { transform: translateZ(20px) rotate(var(--rotation-angle)); }
    75% { transform: translateZ(20px) rotate(0deg); }
    100% { transform: translateZ(20px) rotate(-5deg); }
}

.shoe-shadow {
    display: none;
}

@keyframes shadowPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.5;
    }
}

.shoe-display:hover .shoe-img {
    transform: translateZ(40px) rotate(0deg) scale(1.1);
    filter: drop-shadow(0 20px 40px rgba(166, 124, 82, 0.25));
}

/* Efek cahaya pada sepatu */
.shoe-main::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(166, 124, 82, 0.1) 50%,
        transparent 70%
    );
    animation: shine 8s infinite linear;
    z-index: 1;
    pointer-events: none;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.shoe-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    background: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.feature i {
    color: var(--accent);
    font-size: 18px;
}

/* Why Section */
.why {
    padding: 100px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid #EAEAEA;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(12, 12, 12, 0.1);
    border-color: var(--secondary);
}

.feature-icon {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 25px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: linear-gradient(135deg, #F7F5F2 0%, #FAF8F5 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.product-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(12, 12, 12, 0.12);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    color: var(--white);
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-image {
    position: relative;
    width: 100%;
    height: 280px;
    background: none !important;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 !important;
    cursor: pointer;
}

.product-img {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s var(--animation-timing);
}

.product-card:hover .product-img {
    transform: scale(1.1) rotate(5deg);
}

.product-content {
    padding: 30px;
}

.product-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}

.product-description {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-price {
    margin-bottom: 25px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-right: 10px;
}

.old-price {
    font-size: 18px;
    color: var(--gray);
    text-decoration: line-through;
}

.btn-product {
    display: block;
    background-color: var(--primary);
    color: var(--white);
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
}

.btn-product:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid #EAEAEA;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.testimonial-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 30px;
    position: relative;
}

.testimonial-content i {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 15px;
    display: block;
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray);
    line-height: 1.8;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--gray);
}

.rating {
    margin-left: auto;
    color: #D4AF37;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.cta-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.cta-stat i {
    color: var(--secondary);
    font-size: 20px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #25d366;
    color: var(--white);
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.cta-note {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}

/* Footer */
footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 28px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-links h3, .footer-contact h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--secondary);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideUp 0.5s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.modal-shoe-container {
    height: 450px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none !important;
    border-radius: var(--border-radius);
    padding: 0 !important;
    overflow: hidden;
}

#modalShoeImg {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center;
    display: block;
}

.modal-shoe-info h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 15px;
}

.modal-shoe-info p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.modal-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 30px;
}

.modal-cta {
    display: inline-block;
}

/* ========== RIPPLE EFFECT ========== */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet */
@media (max-width: 992px) {
    .hero-container, .cta-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 56px;
    }
    
    .hero h2 {
        font-size: 30px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .shoe-main {
        height: 250px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .shoe-features {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --float-distance: 10px;
        --rotation-angle: 3deg;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--light);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        box-shadow: -10px 0 30px rgba(12, 12, 12, 0.08);
        transition: var(--transition);
        z-index: 1000;
    }
    
    nav ul.active {
        right: 0;
    }
    
    .nav-cta {
        margin-top: 20px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 48px;
    }
    
    .hero h2 {
        font-size: 26px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .shoe-main {
        height: 200px;
    }
    
    .shoe-display {
        padding: 20px;
    }
    
    .why-features,
    .products-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .modal-content {
        padding: 20px;
        width: 95%;
    }
    
    .modal-shoe-container {
        height: 200px;
        padding: 20px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .hero h1 {
        font-size: 40px;
    }
    
    .hero h2 {
        font-size: 22px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .shoe-main {
        height: 180px;
    }
    
    .feature-card,
    .product-card,
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .product-image {
        height: 200px;
        margin: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Loading optimization */
.shoe-img, .product-img {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.shoe-img.loaded, .product-img.loaded {
    opacity: 1;
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .shoe-display:hover .shoe-img {
        transform: translateZ(20px) rotate(-5deg);
    }
    
    .product-card:hover .product-img {
        transform: scale(1) rotate(0deg);
    }
    
    .feature-card:hover,
    .testimonial-card:hover,
    .product-card:hover {
        transform: none;
    }
}