/* ============================================
   VOLAMOCCS - Bebek Makosenleri
   Soft Pastel Premium Theme
   ============================================ */

:root {
    --pink: #F8E1E7;
    --pink-soft: #FDF2F5;
    --pink-deep: #E8C4CE;
    --blue: #E8F4F8;
    --blue-soft: #F0F9FC;
    --blue-deep: #C5E0EA;
    --gold: #C9A86C;
    --gold-soft: #E8D5A8;
    --cream: #FFF9F5;
    --white: #FFFFFF;
    --text: #5A4A4A;
    --text-light: #8A7A7A;
    --text-muted: #A89A9A;
    --shadow: rgba(200, 160, 170, 0.15);
    --shadow-strong: rgba(180, 140, 150, 0.25);
    --radius: 20px;
    --radius-sm: 12px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Cormorant Garamond', serif;

}

body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(160deg, var(--cream) 0%, var(--pink-soft) 40%, var(--blue-soft) 100%);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}


/* All text: HUGE + Cormorant Garamond */
body, button, input, select, textarea, a, p, span, li, label, h1, h2, h3, h4, h5, h6, td, th, .btn, nav, footer {
    font-family: 'Cormorant Garamond', serif !important;
}

/* Soft watermark logo background */
.bg-logo-watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vmin;
    height: 70vmin;
    background: url('../images/logo.jpg') center/contain no-repeat;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
    filter: grayscale(30%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ========== HEADER ========== */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid rgba(232, 196, 206, 0.35);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(200, 160, 170, 0.12);
    width: 100%;
}

.site-header .container {
    max-width: 1200px;
    width: 100%;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 12px;
    width: 100%;
    background: #ffffff;
    flex-wrap: nowrap;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
}

.logo-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--pink-deep);
    box-shadow: 0 4px 12px var(--shadow);
    transition: var(--transition);
}

.logo-link:hover .logo-img {
    transform: scale(1.05);
    box-shadow: 0 6px 18px var(--shadow-strong);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text);
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 30px;
    transition: var(--transition);
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--pink);
    color: var(--text);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: var(--pink);
    color: var(--text);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid var(--pink-deep);
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--gold);
    font-style: italic;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Cormorant Garamond', serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink-deep), var(--pink));
    color: var(--text);
    box-shadow: 0 6px 20px var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px var(--shadow-strong);
}

.btn-secondary {
    background: white;
    color: var(--text);
    border: 1.5px solid var(--pink-deep);
}

.btn-secondary:hover {
    background: var(--pink-soft);
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: white;
    box-shadow: 0 6px 20px rgba(201, 168, 108, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201, 168, 108, 0.4);
}

/* ========== SECTIONS ========== */
.section {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.2rem;
}

.section-title .divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--pink-deep), var(--gold));
    margin: 16px auto 0;
    border-radius: 3px;
}

/* ========== PRODUCT CARDS ========== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.product-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(232, 196, 206, 0.3);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px var(--shadow-strong);
}

.product-image {
    position: relative;
    height: 240px;
    background: linear-gradient(145deg, var(--pink-soft), var(--blue-soft));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: var(--transition);
}

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

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-age {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255,255,255,0.9);
    color: var(--text);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--pink-deep);
}

.product-body {
    padding: 20px;
}

.product-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.product-body .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
}

.product-body .desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.product-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 10px 16px;
    font-size: 0.85rem;
}

/* ========== FEATURES ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    border: 1px solid rgba(232, 196, 206, 0.3);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px var(--shadow);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(145deg, var(--pink), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    color: var(--text) !important;
}

/* ========== CUSTOMIZE PAGE ========== */
.customize-form {
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: 0 10px 40px var(--shadow);
    border: 1px solid rgba(232, 196, 206, 0.35);
    max-width: 700px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--pink-deep);
    border-radius: var(--radius-sm);
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    background: var(--cream);
    color: var(--text);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.2);
    background: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.color-option {
    position: relative;
}

.color-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.color-option label {
    display: block;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.color-option input:checked + label {
    border-color: var(--text);
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--pink-soft);
    padding: 10px 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    border: 1.5px solid transparent;
}

.checkbox-item:hover {
    border-color: var(--pink-deep);
}

.checkbox-item input:checked + span {
    font-weight: 600;
}

.checkbox-item input {
    accent-color: var(--gold);
}

/* ========== ABOUT / CONTACT ========== */
.content-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: 0 10px 40px var(--shadow);
    border: 1px solid rgba(232, 196, 206, 0.35);
    max-width: 800px;
    margin: 0 auto;
}

.content-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.content-card p {
    margin-bottom: 16px;
    color: var(--text-light);
}

.quote-box {
    background: linear-gradient(135deg, var(--pink-soft), var(--blue-soft));
    border-left: 4px solid var(--gold);
    padding: 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 28px 0;
    font-style: italic;
    color: var(--text);
}

.quote-box .author {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-weight: 600;
    color: var(--gold);
}

/* ========== FILTER TABS ========== */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 24px;
    border-radius: 30px;
    background: white;
    border: 1.5px solid var(--pink-deep);
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-size: 0.9rem;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--pink);
    border-color: var(--pink-deep);
}

/* ========== PRODUCT DETAIL ========== */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.product-detail-image {
    background: linear-gradient(145deg, var(--pink-soft), var(--blue-soft));
    border-radius: var(--radius);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    box-shadow: 0 10px 40px var(--shadow);
}

.product-detail-image img {
    max-width: 100%;
    max-height: 360px;
    object-fit: contain;
}

.product-detail-info h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 12px;
}

.product-detail-info .price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
}

.product-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.meta-badge {
    background: var(--pink);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-features-list {
    list-style: none;
    margin: 20px 0;
}

.product-features-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-light);
}

.product-features-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ========== FOOTER ========== */
.site-footer {
    background: linear-gradient(180deg, rgba(248, 225, 231, 0.6), rgba(232, 244, 248, 0.8));
    padding: 50px 0 20px;
    margin-top: 60px;
    border-top: 1px solid rgba(232, 196, 206, 0.4);
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 32px;
    margin-bottom: 36px;
}

.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    margin: 12px 0 8px;
}

.footer-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--pink-deep);
}

.footer-maker {
    font-size: 0.85rem;
    color: var(--gold);
    margin-top: 8px;
}

.footer-links h4,
.footer-contact h4,
.footer-note h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    margin-bottom: 14px;
    color: var(--text);
}

.footer-links a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 8px;
    transition: var(--transition);
    font-size: 0.9rem;
}

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

.footer-contact a {
    color: var(--text-light);
    text-decoration: none;
}

.btn-whatsapp-footer {
    display: inline-block;
    margin-top: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white !important;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.btn-whatsapp-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.special-note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
}

.signature {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-top: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(232, 196, 206, 0.4);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-sub {
    margin-top: 4px;
    font-size: 0.8rem !important;
}

/* ========== FLOATING WHATSAPP ========== */
.floating-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 14px 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ========== ALERTS ========== */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-weight: 500;
}

.alert-success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #A5D6A7;
}

.alert-error {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #EF9A9A;
}

/* ========== AGE CATEGORY CARDS ========== */
.age-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 800px;
    margin: 0 auto;
}

.age-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    border: 1.5px solid rgba(232, 196, 206, 0.4);
    transition: var(--transition);
    text-decoration: none;
    color: var(--text);
}

.age-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px var(--shadow-strong);
    border-color: var(--gold);
}

.age-card .age-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.age-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.age-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .product-detail {
        grid-template-columns: 1fr;
    }
}


/* Header full solid white on all sizes */
.site-header,
.site-header .container,
.header-inner {
    background: #ffffff !important;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 16px;
        box-shadow: 0 10px 30px var(--shadow);
        border-radius: 0 0 var(--radius) var(--radius);
        z-index: 1001;
    }
    
    .main-nav.open {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .logo-tagline {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .age-categories {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .floating-whatsapp span {
        display: none;
    }
    
    .floating-whatsapp {
        padding: 16px;
        border-radius: 50%;
    }
    
    .customize-form,
    .content-card {
        padding: 24px;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card,
.feature-card,
.age-card {
    animation: fadeInUp 0.5s ease-out both;
}

.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.2s; }
.product-card:nth-child(4) { animation-delay: 0.3s; }
.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.3s; }

/* ========== PRODUCT GALLERY ========== */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-thumb {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    background: var(--pink-soft);
    transition: all 0.25s ease;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--gold);
    box-shadow: 0 4px 12px var(--shadow);
}

.product-detail-image img {
    border-radius: var(--radius);
    max-height: 420px;
    width: auto;
    max-width: 100%;
}






/* === KOÇAMAN YAZILAR — font: Cormorant Garamond === */
* {
    font-family: 'Cormorant Garamond', serif !important;
}
body {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    line-height: 1.65 !important;
}
p, span, li, label, a:not(.btn), td, th, input, select, textarea {
    font-size: 1.7rem !important;
    font-weight: 700 !important;
    line-height: 1.65 !important;
}
h1, .hero h1 {
    font-size: 3.2rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}
h2, .section-title h2, .cta-box h2 {
    font-size: 2.8rem !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
}
h3, .feature-card h3, .product-card h3, .card h3 {
    font-size: 2.1rem !important;
    font-weight: 700 !important;
}
h4, h5, h6 {
    font-size: 1.85rem !important;
    font-weight: 700 !important;
}
.logo-name {
    font-size: 2rem !important;
    font-weight: 700 !important;
}
.btn, .btn-primary, .btn-secondary, .btn-gold, button {
    font-size: 1.55rem !important;
    font-weight: 700 !important;
    padding: 14px 28px !important;
}
.main-nav a {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
}
.product-card .price, .price, .price-tag, .product-price {
    font-size: 1.9rem !important;
    font-weight: 700 !important;
}
.feature-card p, .product-card p, .section-title p, .hero p, .cta-box p,
footer p, footer a, .footer-col p, .footer-col a {
    font-size: 1.65rem !important;
    font-weight: 700 !important;
}

@media (max-width: 768px) {
    body { font-size: 1.5rem !important; }
    p, span, li, label, a:not(.btn), .feature-card p, .product-card p, .section-title p, .hero p, .cta-box p {
        font-size: 1.45rem !important;
        font-weight: 700 !important;
    }
    h1, .hero h1 { font-size: 2.5rem !important; }
    h2, .section-title h2, .cta-box h2 { font-size: 2.2rem !important; }
    h3, .feature-card h3, .product-card h3 { font-size: 1.8rem !important; }
    .btn, button { font-size: 1.4rem !important; }
    .logo-name { font-size: 1.7rem !important; }
    .main-nav a { font-size: 1.4rem !important; }
}
