/* ===== PRODUCT PAGE STUNNING REDESIGN ===== */

/* ===== PRODUCT HERO SECTION ===== */
.product-hero-stunning {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #1a202c 100%);
    overflow: hidden;
    color: #ffffff;
}

.product-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(199, 164, 76, 0.25) 2px, transparent 2px),
        radial-gradient(circle, rgba(199, 164, 76, 0.15) 1px, transparent 1px);
    background-size: 100px 100px, 60px 60px;
    background-position: 0 0, 30px 30px;
    animation: productParticles 35s linear infinite;
    pointer-events: none;
}

@keyframes productParticles {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100px, -100px); }
}

.product-hero-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(199, 164, 76, 0.15) 0%, transparent 70%);
    animation: heroGlowPulse 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroGlowPulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.8; transform: translateX(-50%) scale(1.15); }
}

.product-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.product-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(199, 164, 76, 0.2), rgba(168, 132, 47, 0.15));
    border: 2px solid rgba(199, 164, 76, 0.4);
    border-radius: 50px;
    color: #c7a44c;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 6px 20px rgba(199, 164, 76, 0.3);
    animation: badgeFloatAnim 3s ease-in-out infinite;
}

@keyframes badgeFloatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.product-hero-content h1 {
    font-size: 56px;
    font-weight: 900;
    margin: 0 0 20px 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #ffffff, #c7a44c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 30px 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.product-hero-stats {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.product-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(199, 164, 76, 0.25);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.product-stat i {
    font-size: 20px;
    color: #c7a44c;
}

.product-stat span {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

/* ===== SEARCH & FILTER SECTION ===== */
.search-filter-section {
    padding: 40px 0 20px;
    background: #ffffff;
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(199, 164, 76, 0.1);
}

.search-filter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 101;
}

.search-filter-row-modern {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.search-box-modern {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.search-input-stunning {
    width: 100%;
    padding: 16px 60px 16px 24px;
    border: 2px solid rgba(199, 164, 76, 0.2);
    border-radius: 14px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: #2d3748;
    background: linear-gradient(135deg, rgba(199, 164, 76, 0.03), rgba(168, 132, 47, 0.02));
    transition: all 0.3s ease;
}

.search-input-stunning:focus {
    outline: none;
    border-color: #c7a44c;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(199, 164, 76, 0.1);
}

.search-btn-stunning {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #c7a44c, #a8842f);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn-stunning:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(199, 164, 76, 0.4);
}

.filter-tabs-modern {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tab-stunning {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: #ffffff;
    border: 2px solid rgba(199, 164, 76, 0.2);
    border-radius: 12px;
    color: #8a6f2a;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.filter-tab-stunning i {
    font-size: 16px;
}

.filter-tab-stunning:hover {
    border-color: #c7a44c;
    background: rgba(199, 164, 76, 0.05);
    transform: translateY(-2px);
}

.filter-tab-stunning.active {
    background: linear-gradient(135deg, #c7a44c, #a8842f);
    border-color: #c7a44c;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(199, 164, 76, 0.3);
}

.results-count {
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
    color: #718096;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #fff9ea 0%, #ffffff 50%, #fff9ea 100%);
}

.products-grid-stunning {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-card-stunning {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(199, 164, 76, 0.15);
    box-shadow: 0 8px 30px rgba(40, 34, 20, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card-stunning:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(199, 164, 76, 0.2);
    border-color: rgba(199, 164, 76, 0.35);
}

.product-badge-stunning {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #c7a44c, #a8842f);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 12px rgba(199, 164, 76, 0.4);
    z-index: 2;
}

.product-img-stunning {
    width: 100%;
    height: 260px;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-img-stunning::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(199, 164, 76, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card-stunning:hover .product-img-stunning::before {
    opacity: 1;
}

.product-img-stunning i {
    font-size: 90px;
    color: #c7a44c;
    transition: all 0.4s ease;
}

.product-card-stunning:hover .product-img-stunning i {
    transform: scale(1.2) rotate(10deg);
}

/* Placeholder image styling for products without images */
.product-img-stunning .placeholder-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.product-img-stunning .placeholder-img i {
    font-size: 80px;
    color: #c7a44c;
    opacity: 0.6;
}

.product-img-stunning .placeholder-img span {
    font-size: 14px;
    font-weight: 600;
    color: #8a6f2a;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-img-stunning img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card-stunning:hover .product-img-stunning img {
    transform: scale(1.1);
}

.product-info-stunning {
    padding: 25px;
}

.product-category-stunning {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(199, 164, 76, 0.12), rgba(168, 132, 47, 0.08));
    color: #8a6f2a;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    border: 1px solid rgba(199, 164, 76, 0.25);
}

.product-info-stunning h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 10px 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
}

.product-info-stunning p {
    font-size: 14px;
    color: #718096;
    margin: 0 0 15px 0;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.product-price-stunning {
    font-size: 24px;
    font-weight: 800;
    color: #a8842f;
    font-family: 'Inter', sans-serif;
    margin-bottom: 15px;
}

.product-actions-stunning {
    display: flex;
    gap: 10px;
}

.btn-product-stunning {
    flex: 1;
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-product-primary {
    background: linear-gradient(135deg, #c7a44c, #a8842f);
    color: #ffffff;
}

.btn-product-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(199, 164, 76, 0.4);
}

.btn-product-secondary {
    background: rgba(199, 164, 76, 0.1);
    color: #8a6f2a;
    border: 2px solid rgba(199, 164, 76, 0.25);
}

.btn-product-secondary:hover {
    background: rgba(199, 164, 76, 0.2);
    transform: translateY(-2px);
}

/* ===== WELLNESS ROUTINE SECTION ===== */
.wellness-routine-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff9ea 0%, #ffffff 50%, #fff9ea 100%);
    position: relative;
    overflow: hidden;
}

.routine-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(199, 164, 76, 0.06) 2px, transparent 2px);
    background-size: 50px 50px;
    pointer-events: none;
}

.routine-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.routine-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(199, 164, 76, 0.12), rgba(168, 132, 47, 0.08));
    color: #8a6f2a;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 25px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    border: 1px solid rgba(199, 164, 76, 0.25);
}

.routine-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #2d3748;
    margin: 0 0 15px 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

.routine-header p {
    font-size: 18px;
    color: #718096;
    max-width: 600px;
    margin: 0 auto 20px;
    font-family: 'Inter', sans-serif;
}

.routine-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #c7a44c, #a8842f, #c7a44c);
    border-radius: 2px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(199, 164, 76, 0.3);
}

.routine-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.routine-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(199, 164, 76, 0.15);
    box-shadow: 0 8px 30px rgba(40, 34, 20, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.routine-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(199, 164, 76, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.routine-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(199, 164, 76, 0.2);
    border-color: rgba(199, 164, 76, 0.35);
}

.routine-card:hover::before {
    opacity: 1;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(199, 164, 76, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.routine-card:hover .card-glow {
    opacity: 1;
}

.step-badge {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.badge-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c7a44c, #a8842f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    position: relative;
    z-index: 2;
    box-shadow: 0 6px 20px rgba(199, 164, 76, 0.4);
    transition: all 0.3s ease;
}

.badge-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 2px solid rgba(199, 164, 76, 0.3);
    transition: all 0.3s ease;
}

.routine-card:hover .badge-number {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(199, 164, 76, 0.6);
}

.routine-card:hover .badge-ring {
    width: 85px;
    height: 85px;
    border-color: rgba(199, 164, 76, 0.5);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(199, 164, 76, 0.1), rgba(168, 132, 47, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #a8842f;
    transition: all 0.4s ease;
    border: 2px solid rgba(199, 164, 76, 0.2);
}

.routine-card:hover .card-icon {
    background: linear-gradient(135deg, #c7a44c, #a8842f);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(199, 164, 76, 0.4);
}

.routine-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 12px 0;
    font-family: 'Inter', sans-serif;
}

.routine-card p {
    font-size: 15px;
    color: #718096;
    line-height: 1.7;
    margin: 0 0 20px 0;
    font-family: 'Inter', sans-serif;
}

.card-tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tag {
    padding: 6px 14px;
    background: rgba(199, 164, 76, 0.1);
    color: #8a6f2a;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(199, 164, 76, 0.2);
    font-family: 'Inter', sans-serif;
}

.tag.highlight {
    background: linear-gradient(135deg, #c7a44c, #a8842f);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 3px 10px rgba(199, 164, 76, 0.3);
}

.card-line {
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c7a44c, transparent);
    margin: 0 auto;
    transition: width 0.4s ease;
}

.routine-card:hover .card-line {
    width: 60px;
}

/* ===== COMING SOON SECTION ===== */
.coming-soon-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.soon-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(199, 164, 76, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(199, 164, 76, 0.2) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
    background-position: 0 0, 20px 20px;
    animation: particleFloat 25s linear infinite;
    pointer-events: none;
}

@keyframes particleFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-60px, -60px); }
}

.soon-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(199, 164, 76, 0.2) 0%, transparent 70%);
    animation: glowPulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.soon-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(199, 164, 76, 0.2), rgba(168, 132, 47, 0.15));
    border: 2px solid rgba(199, 164, 76, 0.4);
    border-radius: 50px;
    color: #c7a44c;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 6px 20px rgba(199, 164, 76, 0.3);
}

.soon-badge i {
    font-size: 18px;
    animation: rocketBounce 2s ease-in-out infinite;
}

@keyframes rocketBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.soon-content h2 {
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    text-shadow: 0 3px 15px rgba(199, 164, 76, 0.3);
}

.soon-content h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, transparent, #c7a44c, transparent);
    margin: 20px auto 0;
    border-radius: 3px;
}

.soon-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0 0 30px 0;
    font-family: 'Inter', sans-serif;
}

.soon-features {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(199, 164, 76, 0.3);
    border-radius: 25px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.feature-item i {
    font-size: 18px;
    color: #c7a44c;
}

.feature-item:hover {
    background: rgba(199, 164, 76, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(199, 164, 76, 0.3);
}

.soon-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-soon-primary,
.btn-soon-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-soon-primary {
    background: linear-gradient(135deg, #ee4d2d, #ff6633);
    color: #ffffff;
    border: 2px solid #ee4d2d;
    box-shadow: 0 6px 20px rgba(238, 77, 45, 0.3);
}

.btn-soon-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(238, 77, 45, 0.5);
}

.btn-soon-secondary {
    background: linear-gradient(135deg, #00aa5b, #00d67d);
    color: #ffffff;
    border: 2px solid #00aa5b;
    box-shadow: 0 6px 20px rgba(0, 170, 91, 0.3);
}

.btn-soon-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 170, 91, 0.5);
}

.soon-countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.countdown-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
}

.countdown-dots {
    display: flex;
    gap: 10px;
}

.countdown-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(199, 164, 76, 0.5);
    animation: dotPulse 2s ease-in-out infinite;
}

.countdown-dots .dot:nth-child(2) {
    animation-delay: 0.3s;
}

.countdown-dots .dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 1; }
}

/* ===== CTA SECTION (Used in equipment.html) ===== */
.cta-stunning {
    padding: 100px 0;
    background: linear-gradient(135deg, #c7a44c 0%, #a8842f 50%, #8a6f2a 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #ffffff;
}

.cta-stunning::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: orbFloat 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(50px, 30px) scale(1.2); opacity: 1; }
}

.cta-stunning h2 {
    font-size: 44px;
    font-weight: 800;
    margin: 0 0 20px 0;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.cta-stunning p {
    font-size: 18px;
    margin: 0 0 40px 0;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    opacity: 0.95;
}

.cta-buttons-stunning {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-stunning {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: #ffffff;
    color: #a8842f;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-cta-stunning:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.btn-cta-stunning.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-cta-stunning.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 767.98px) {
    .product-hero-stunning {
        padding: 120px 0 60px;
    }

    .product-hero-content h1 {
        font-size: 34px;
    }

    .product-hero-content p {
        font-size: 17px;
    }

    .product-hero-stats {
        gap: 15px;
    }

    .product-stat {
        padding: 10px 18px;
        font-size: 13px;
    }

    .search-filter-section {
        position: static;
        padding: 30px 0 20px;
    }

    .search-filter-row-modern {
        flex-direction: column;
    }

    .search-box-modern {
        min-width: 100%;
    }

    .filter-tabs-modern {
        justify-content: center;
    }

    .filter-tab-stunning {
        padding: 10px 16px;
        font-size: 13px;
    }

    .products-grid-stunning {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .product-img-stunning {
        height: 220px;
    }

    .product-actions-stunning {
        flex-direction: column;
    }

    .btn-product-stunning {
        padding: 12px;
    }

    /* CTA responsive */
    .cta-stunning {
        padding: 60px 0;
    }

    .cta-stunning h2 {
        font-size: 28px;
    }

    .cta-stunning p {
        font-size: 16px;
    }

    .cta-buttons-stunning {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-stunning {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 16px 32px;
    }

    /* Pagination responsive */
    #equipment-pagination .pagination {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    #equipment-pagination .page-link {
        padding: 8px 12px;
        font-size: 14px;
    }
}

/* ===== PAGINATION STYLING ===== */
#equipment-pagination .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
    padding: 0;
    list-style: none;
}

#equipment-pagination .page-item {
    display: inline-block;
}

#equipment-pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 8px 16px;
    background: #ffffff;
    border: 2px solid rgba(199, 164, 76, 0.2);
    border-radius: 10px;
    color: #8a6f2a;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

#equipment-pagination .page-link:hover {
    border-color: #c7a44c;
    background: rgba(199, 164, 76, 0.05);
    transform: translateY(-2px);
}

#equipment-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #c7a44c, #a8842f);
    border-color: #c7a44c;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(199, 164, 76, 0.3);
}

#equipment-pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ===== RESPONSIVE: WELLNESS & COMING SOON ===== */
@media (max-width: 991.98px) {
    .routine-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .routine-header h2 {
        font-size: 36px;
    }

    .soon-content h2 {
        font-size: 36px;
    }

    .cta-stunning h2 {
        font-size: 36px;
    }

    .products-grid-stunning {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-hero-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 767.98px) {
    .wellness-routine-section {
        padding: 60px 0;
    }

    .routine-header {
        margin-bottom: 40px;
    }

    .routine-header h2 {
        font-size: 30px;
    }

    .routine-header p {
        font-size: 16px;
    }

    .routine-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .routine-card {
        padding: 30px 25px 25px;
    }

    .badge-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .badge-ring {
        width: 65px;
        height: 65px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .routine-card h3 {
        font-size: 20px;
    }

    .routine-card p {
        font-size: 14px;
    }

    .coming-soon-section {
        padding: 60px 0;
    }

    .soon-content h2 {
        font-size: 30px;
    }

    .soon-desc {
        font-size: 16px;
    }

    .soon-features {
        gap: 12px;
    }

    .feature-item {
        padding: 10px 16px;
        font-size: 13px;
    }

    .soon-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-soon-primary,
    .btn-soon-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .products-grid-stunning {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-hero-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 767.98px) {
    .product-hero-stunning {
        padding: 120px 0 60px;
    }

    .product-hero-content h1 {
        font-size: 34px;
    }

    .product-hero-content p {
        font-size: 17px;
    }

    .search-filter-section {
        position: static;
        padding: 30px 0 20px;
    }

    .search-filter-row-modern {
        flex-direction: column;
    }

    .search-box-modern {
        min-width: 100%;
    }

    .filter-tabs-modern {
        justify-content: center;
    }

    .products-grid-stunning {
        grid-template-columns: 1fr;
    }

    .product-img-stunning {
        height: 220px;
    }

    .product-actions-stunning {
        flex-direction: column;
    }
}
