/* ==================== */
/* Product Page Styles  */
/* ==================== */

/* Product Hero Section */
.product-hero {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.product-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.product-hero-pro .product-hero-bg {
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
}

.product-hero-ultimate .product-hero-bg {
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 60%);
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.product-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-glow-large {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulseGlow 3s ease-in-out infinite;
}

.glow-pro {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
}

.glow-ultimate {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.product-hero-image img {
    max-height: 500px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
    animation: floatProduct 4s ease-in-out infinite;
}

@keyframes floatProduct {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.floating-badges {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.badge {
    position: absolute;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: floatBadge 3s ease-in-out infinite;
}

.badge-bestseller {
    top: 10%;
    left: 0;
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
    animation-delay: 0s;
}

.badge-popular {
    top: 10%;
    left: 0;
    background: linear-gradient(135deg, #EC4899, #D946EF);
    color: white;
}

.badge-elite {
    top: 10%;
    left: 0;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
}

.badge-discount {
    top: 10%;
    right: 0;
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
    animation-delay: 0.5s;
}

.badge-value {
    bottom: 20%;
    left: 0;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
    animation-delay: 1s;
}

.badge-coaching {
    bottom: 20%;
    right: 0;
    background: linear-gradient(135deg, #6366F1, #4F46E5);
    color: white;
    animation-delay: 1s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Hero Info */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb i {
    font-size: 10px;
}

.product-hero-title {
    font-size: 56px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.product-hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.product-rating-large {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.product-rating-large .stars {
    color: #F59E0B;
    font-size: 18px;
}

.rating-text {
    color: var(--text-secondary);
    font-size: 14px;
}

.product-price-large {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.product-price-large .price-old {
    font-size: 24px;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-price-large .price-new {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-save {
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.product-hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-secondary {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: white;
}

.btn-secondary:hover {
    background: var(--bg-glass-strong);
    border-color: var(--primary-color);
}

.product-guarantees {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.guarantee-item i {
    color: var(--accent-color);
    font-size: 16px;
}

/* Description Section */
.description-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.description-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.description-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.description-card.ultimate:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.3);
}

.description-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: white;
}

.icon-pro {
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
}

.icon-ultimate {
    background: linear-gradient(135deg, #10B981, #8B5CF6);
}

.description-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
}

.description-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
}

.step-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.step-icon {
    margin-top: 20px;
    width: 50px;
    height: 50px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
}

.process-connector {
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

/* Ingredients Section */
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ingredient-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.ingredient-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.ingredient-card.pro {
    border-color: rgba(236, 72, 153, 0.3);
}

.ingredient-card.pro:hover {
    border-color: #EC4899;
    box-shadow: var(--shadow-glow-pink);
}

.ingredient-card.ultimate {
    border-color: rgba(16, 185, 129, 0.3);
}

.ingredient-card.ultimate:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.3);
}

.ingredient-image {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.ingredient-card.pro .ingredient-image {
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
}

.ingredient-card.ultimate .ingredient-image {
    background: linear-gradient(135deg, #10B981, #8B5CF6);
}

.ingredient-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
}

.ingredient-card p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.ingredient-amount {
    display: inline-block;
    background: var(--bg-glass-strong);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.ingredient-card.pro .ingredient-amount {
    color: #EC4899;
}

.ingredient-card.ultimate .ingredient-amount {
    color: var(--accent-color);
}

/* Dosage Table */
.dosage-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

.dosage-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.dosage-table th,
.dosage-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-glass);
}

.dosage-table th {
    background: var(--bg-glass-strong);
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.dosage-table td {
    color: var(--text-secondary);
    font-size: 14px;
}

.dosage-table tr:last-child td {
    border-bottom: none;
}

.dosage-table tr:hover {
    background: var(--bg-glass);
}

.time-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.time-cell i {
    font-size: 24px;
    color: var(--primary-color);
}

.time-cell span {
    color: white;
    font-weight: 500;
}

.time-cell small {
    color: var(--text-light);
    font-weight: 400;
}

.dosage-pill {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.dosage-pill.pro {
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
}

.dosage-pill.ultimate {
    background: linear-gradient(135deg, #10B981, #059669);
}

.dosage-pill.night {
    background: linear-gradient(135deg, #6366F1, #4F46E5);
}

.dosage-pill.optional {
    background: var(--bg-glass-strong);
    border: 1px solid var(--border-glass);
}

.optional-row {
    opacity: 0.7;
}

.dosage-notes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.note-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius);
    padding: 25px;
    display: flex;
    gap: 20px;
}

.note-card i {
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.note-card.pro i {
    color: #EC4899;
}

.note-card.ultimate i {
    color: var(--accent-color);
}

.note-card.warning {
    border-color: rgba(239, 68, 68, 0.3);
}

.note-card.warning i {
    color: #EF4444;
}

.note-card.coaching {
    border-color: rgba(99, 102, 241, 0.3);
}

.note-card.coaching i {
    color: #6366F1;
}

.note-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: white;
}

.note-card ul {
    list-style: none;
}

.note-card li {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    padding-left: 15px;
    position: relative;
}

.note-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Timeline */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-week {
    width: 100px;
    padding: 12px 20px;
    background: var(--gradient-primary);
    border-radius: 25px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-item.pro .timeline-week {
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
}

.timeline-item.ultimate .timeline-week {
    background: linear-gradient(135deg, #10B981, #8B5CF6);
}

.timeline-content {
    width: calc(50% - 80px);
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius);
    padding: 25px;
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.timeline-item.ultimate .timeline-content:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.3);
}

.timeline-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
}

.expected-results {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.expected-results span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-glass-strong);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    color: var(--primary-color);
}

.expected-results i {
    font-size: 12px;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 30px;
    text-align: center;
    border-bottom: 1px solid var(--border-glass);
}

.comparison-table th {
    background: var(--bg-glass-strong);
    font-weight: 600;
    color: white;
}

.comparison-table th.highlight {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(139, 92, 246, 0.2));
    color: #EC4899;
}

.comparison-table td {
    color: var(--text-secondary);
}

.comparison-table td.highlight {
    background: rgba(236, 72, 153, 0.05);
    color: white;
}

.comparison-table td i.fa-check {
    color: var(--accent-color);
}

.comparison-table td i.fa-check-double {
    color: #EC4899;
}

.comparison-table td i.fa-times {
    color: var(--text-light);
}

/* Ultimate Features */
.features-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-box {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition);
}

.feature-box:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10B981, #8B5CF6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: white;
}

.feature-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* What's Included */
.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.included-item {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.included-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.included-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10B981, #8B5CF6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.included-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
}

.included-item p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.included-item .value {
    display: inline-block;
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.total-value {
    text-align: center;
    padding: 40px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius);
}

.total-value p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.total-value .crossed {
    text-decoration: line-through;
    color: var(--text-light);
}

.total-value .your-price {
    font-size: 32px;
    color: white;
    margin-bottom: 0;
}

.total-value .your-price span {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #10B981, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Product CTA */
.product-cta {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.product-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

.cta-pro::before {
    background: radial-gradient(ellipse at center, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
}

.cta-ultimate::before {
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: white;
}

.cta-content > p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.cta-price {
    margin-bottom: 20px;
}

.cta-price-old {
    font-size: 28px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-right: 15px;
}

.cta-price-new {
    font-size: 56px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-bonus {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-color);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 30px;
}

.cta-bonus.ultimate {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(139, 92, 246, 0.2));
}

.cta-buttons {
    margin-bottom: 30px;
}

.btn-ultimate {
    background: linear-gradient(135deg, #10B981, #8B5CF6);
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.cta-trust i {
    color: var(--accent-color);
}

/* Gradient Text Variants */
.gradient-text-ultimate {
    background: linear-gradient(135deg, #10B981, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Scroll Down Arrow */
.scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.15);
    border: 2px solid rgba(139, 92, 246, 0.3);
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: bounceArrow 2s ease-in-out infinite;
}

.scroll-arrow a:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Pro variant */
.product-hero-pro .scroll-arrow a {
    background: rgba(236, 72, 153, 0.15);
    border-color: rgba(236, 72, 153, 0.3);
}

.product-hero-pro .scroll-arrow a:hover {
    background: rgba(236, 72, 153, 0.3);
    border-color: var(--secondary-color);
}

/* Ultimate variant */
.product-hero-ultimate .scroll-arrow a {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.product-hero-ultimate .scroll-arrow a:hover {
    background: rgba(16, 185, 129, 0.3);
    border-color: var(--accent-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .product-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .product-hero-info {
        order: 2;
    }
    
    .product-hero-image {
        order: 1;
    }
    
    .breadcrumb {
        justify-content: center;
    }
    
    .product-hero-title {
        font-size: 42px;
    }
    
    .product-guarantees {
        justify-content: center;
    }
    
    .description-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding-top: 100px;
    }
    
    .product-hero-title {
        font-size: 32px;
    }
    
    .product-hero-subtitle {
        font-size: 16px;
    }
    
    .product-price-large .price-new {
        font-size: 36px;
    }
    
    .product-hero-buttons {
        flex-direction: column;
    }
    
    .description-grid {
        grid-template-columns: 1fr;
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dosage-notes {
        grid-template-columns: 1fr;
    }
    
    .timeline-container::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column;
        text-align: left;
        padding-left: 50px;
    }
    
    .timeline-week {
        left: 0;
        transform: none;
    }
    
    .timeline-content {
        width: 100%;
        margin-top: 60px;
    }
    
    .process-timeline {
        flex-direction: column;
    }
    
    .process-connector {
        width: 3px;
        height: 40px;
    }
    
    .features-showcase {
        grid-template-columns: 1fr;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-price-new {
        font-size: 42px;
    }
    
    .cta-trust {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .product-hero-image img {
        max-height: 350px;
    }
    
    .product-glow-large {
        width: 250px;
        height: 250px;
    }
    
    .badge {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    .expected-results {
        flex-direction: column;
    }
}
