/* ============================================
   PARIPAKV SKINCARE - PREMIUM CSS STYLING
   Color Palette:
   Primary: #0E7C7B (Teal)
   Secondary: #F5F7F6 (Light Gray)
   Accent: #FFB703 (Gold)
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2E7D7A;
    --secondary: #F7F9F8;
    --accent: #E6A57E;
    --dark: #1F2933;
    --light: #FFFFFF;
    --text: #374151;
    --text-light: #6B7280;
    --border: #E5E7EB;
    --success: #22C55E;
    --error: #EF4444;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background-color: #ffffff;
    line-height: 1.8;
    font-size: 16px;
    letter-spacing: 0.3px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.3px;
}

h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
}

h2 {
    font-size: 38px;
    margin-bottom: 35px;
    line-height: 1.25;
}

h3 {
    font-size: 26px;
}

h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.9;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

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

/* ============================================
   NAVBAR/HEADER
   ============================================ */

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
}

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

.nav-menu a {
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu .cta-button a {
    background-color: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
}

.nav-menu .cta-button a:hover {
    background-color: var(--accent);
    color: var(--dark);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.dropdown:hover .dropdown-menu {
    display: flex;
    flex-direction: column;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    color: var(--text);
}

.dropdown-menu a:hover {
    background-color: var(--secondary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #ffffff 100%);
    min-height: 600px;
}

.hero-content {
    flex: 1;
    padding-right: 60px;
}

.hero-title {
    font-size: 52px;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 12px 32px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #256b67;
}

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

.btn-secondary:hover {
    background-color: var(--secondary);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* ============================================
   TRUST BADGES SECTION
   ============================================ */

.trust-section {
    padding: 80px 0;
    background-color: var(--secondary);
}

.trust-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.trust-badge {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.badge-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.trust-badge h3 {
    margin-bottom: 10px;
}

.trust-badge p {
    font-size: 14px;
    color: var(--text-light);
}

/* ============================================
   FEATURED PRODUCTS SECTION
   ============================================ */

.featured-products {
    padding: 80px 0;
}

.featured-products .container h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    background-color: var(--secondary);
    height: 300px;
}

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

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent);
    color: var(--dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.product-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    height: 50px;
    overflow: hidden;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    color: var(--accent);
    font-size: 14px;
}

.review-count {
    font-size: 12px;
    color: var(--text-light);
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

/* ============================================
   INGREDIENT SECTION
   ============================================ */

.ingredient-section {
    padding: 80px 0;
    background-color: var(--secondary);
}

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

.ingredients-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.ingredients-list {
    margin: 40px 0;
}

.ingredient-item {
    padding: 20px;
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary);
}

.ingredient-item h4 {
    color: var(--primary);
    margin-bottom: 8px;
}

.ingredients-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ============================================
   RESULTS SECTION
   ============================================ */

.results-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7f6 0%, #ffffff 100%);
}

.results-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.result-item {
    text-align: center;
}

.before-after {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;
}

.before-after img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
}

.arrow {
    font-size: 32px;
    color: var(--primary);
    font-weight: bold;
}

/* ============================================
   ROUTINE SECTION
   ============================================ */

.routine-section {
    padding: 80px 0;
}

.routine-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

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

.routine {
    padding: 40px;
    background: var(--secondary);
    border-radius: 8px;
}

.routine h3 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 26px;
}

.routine-steps {
    margin-bottom: 20px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.step:last-child {
    border-bottom: none;
}

.step-number {
    min-width: 40px;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--dark);
    margin-bottom: 5px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

.reviews-section {
    padding: 80px 0;
}

.reviews-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.review-card {
    padding: 30px;
    background: var(--secondary);
    border-radius: 8px;
    border-top: 4px solid var(--primary);
}

.review-rating {
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 15px;
}

.review-author {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.review-date {
    font-size: 12px;
    color: var(--text-light);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 80px 0;
    background-color: var(--secondary);
}

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

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.faq-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 14px;
    color: var(--text-light);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 80px auto;
    background: linear-gradient(135deg, var(--primary) 0%, #1a9f9d 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-section p {
    color: white;
    margin-bottom: 30px;
    font-size: 18px;
}

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

.cta-section .btn-primary {
    background-color: var(--accent);
    color: var(--dark);
}

.cta-section .btn-secondary {
    border-color: white;
    color: white;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
    margin-top: 100px;
}

main {
    min-height: calc(100vh - 200px);
    margin-bottom: 80px;
}

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

.footer-column h3,
.footer-column h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-column p {
    color: #ccc;
    font-size: 14px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
    font-size: 14px;
}

.footer-column a:hover {
    color: var(--accent);
}

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

.social-links a {
    display: inline-block;
    padding: 8px 12px;
    background-color: var(--primary);
    border-radius: 4px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* ============================================
   PAGE HERO SECTION
   ============================================ */

.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a9f9d 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    color: white;
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
}

/* ============================================
   CONTENT SECTION
   ============================================ */

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    margin-bottom: 25px;
}

.content-section p {
    margin-bottom: 15px;
}

.content-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-section li {
    margin-bottom: 10px;
    color: var(--text-light);
}

/* ============================================
   PRODUCT HERO (Product Pages)
   ============================================ */

.product-hero {
    padding: 60px 0;
    background-color: var(--secondary);
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-hero-image {
    text-align: center;
    position: relative;
}

.product-hero-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-hero-info h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.product-tagline {
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 600;
}

.price-section {
    margin: 25px 0;
    padding: 20px;
    background: white;
    border-radius: 8px;
}

.product-price {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
}

.product-size {
    font-size: 14px;
    color: var(--text-light);
}

.trust-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding: 20px;
    background: var(--secondary);
    border-radius: 8px;
}

.trust-icons .icon {
    font-size: 14px;
    color: var(--text);
}

/* ============================================
   PRODUCT BENEFITS
   ============================================ */

.product-benefits {
    padding: 60px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    padding: 30px;
    background: var(--secondary);
    border-radius: 8px;
    border-top: 4px solid var(--primary);
}

.benefit-item h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 20px;
}

/* ============================================
   PRODUCT INGREDIENTS
   ============================================ */

.product-ingredients {
    padding: 60px 0;
    background-color: var(--secondary);
}

.ingredients-breakdown {
    margin-top: 40px;
}

.ingredient {
    padding: 25px;
    background: white;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent);
}

.ingredient h4 {
    color: var(--primary);
    margin-bottom: 8px;
}

.ingredient p {
    font-size: 14px;
    margin-bottom: 8px;
}

.ingredient-note {
    font-size: 14px;
    padding: 15px;
    background: #fff3cd;
    border-radius: 4px;
    margin-top: 20px;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.comparison-table thead {
    background-color: var(--primary);
    color: white;
}

.comparison-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border);
}

.comparison-table tbody tr:hover {
    background-color: var(--secondary);
}

/* ============================================
   BLOG SECTION
   ============================================ */

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

.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--secondary);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.coming-soon-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 12px;
}

.blog-date {
    color: var(--accent);
    font-weight: 600;
}

.blog-category {
    background: var(--secondary);
    padding: 4px 10px;
    border-radius: 4px;
    color: var(--primary);
}

.blog-content h2 {
    font-size: 22px;
    margin-bottom: 12px;
}

.blog-content h2 a {
    color: var(--dark);
}

.blog-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.read-more:hover {
    transform: translateX(5px);
}

/* ============================================
   ARTICLE PAGE
   ============================================ */

.blog-article {
    padding: 60px 0;
}

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

.article-meta {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.article-image {
    margin: 40px 0;
}

.article-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.article-content {
    max-width: 800px;
    line-height: 2;
}

.article-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 32px;
}

.article-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary);
}

.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.article-content table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.article-content th,
.article-content td {
    padding: 12px;
    border: 1px solid var(--border);
    text-align: left;
}

.article-content th {
    background-color: var(--secondary);
}

.article-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid var(--border);
}

.recommended-articles {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.recommended-articles a {
    padding: 10px 20px;
    background: var(--secondary);
    border-radius: 4px;
    display: inline-block;
}

.article-cta {
    margin-top: 40px;
    padding: 30px;
    background: var(--secondary);
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid var(--primary);
}

/* ============================================
   FORM STYLES
   ============================================ */

.contact-form {
    background: var(--secondary);
    padding: 30px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 124, 123, 0.1);
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-page {
    padding: 60px 0;
    background: white;
}

.legal-page h1 {
    margin-bottom: 10px;
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content {
    max-width: 800px;
    line-height: 1.8;
}

.legal-content h2 {
    margin-top: 35px;
    margin-bottom: 15px;
    font-size: 26px;
}

.legal-content h3 {
    margin-top: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

.legal-content ul {
    margin: 15px 0 15px 30px;
}

.legal-content li {
    margin-bottom: 8px;
}

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

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    .hero {
        flex-direction: column;
        padding: 40px 0;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .ingredients-layout,
    .product-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .routines-layout {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .before-after {
        flex-direction: column;
    }

    .product-hero-image {
        order: -1;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 22px;
    }

    .container {
        padding: 0 15px;
    }

    .products-grid,
    .benefits-grid,
    .blog-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .product-price {
        font-size: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .comparison-table {
        font-size: 12px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 8px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px;
    border-radius: 4px;
}

.skip-link:focus {
    top: 0;
}
