/* ========================================
   DURPHA LIFESCIENCES - CALFY PLUS PRODUCT PAGE
   Custom Colors: #19bcdb | #191c22 | #ec5c42
   No Icons - Only PNG/Image based
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f7fc;
    color: #1a1f2e;
    line-height: 1.5;
}

/* Custom Color Scheme */
:root {
    --primary: #19bcdb;
    --primary-dark: #149cb6;
    --primary-light: #7ad8ef;
    --dark: #191c22;
    --dark-light: #252a33;
    --accent: #ec5c42;
    --accent-dark: #d44a31;
    --accent-light: #f28a76;
    --gray-bg: #f8f9fc;
    --gray-border: #eef2f6;
    --text-dark: #1e2432;
    --text-light: #5a6470;
    --white: #ffffff;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    
}

/* ========== HEADER ========== */

/* ========== HERO SECTION ========== */
.product-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f0fafe 100%);
    padding: 42px 0 48px;
    border-bottom: 1px solid var(--gray-border);
}

.two-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 64px;
    align-items: center;
}

.product-info {
    flex: 1.2;
}

body .product-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 40px;
    letter-spacing: 0.5px;
    margin-bottom: 19px;
}

.product-name {
    font-size: 51px;
    font-weight: 800;
    color: #11333a;
    line-height: 1.2;
    margin-bottom: 8px;
}

.product-name .plus {
    color: var(--primary);
}

.product-tagline {
    font-size: 19px;
    color: var(--text-light);
    border-left: 4px solid var(--accent);
    padding-left: 16px;
    margin: 16px 0 19px;
    font-weight: 500;
}

.description {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.highlight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0;
}

.highlight-item {
    background: linear-gradient(135deg, #e8f4f8, #dceef5);
    border-radius: 60px;
    padding: 8px 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #000000;
}

.highlight-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.ideal-section {
    background: var(--gray-bg);
    border-radius: 24px;
    padding: 19px 24px;
    margin: 24px 0;
    border: 1px solid var(--gray-border);
}

.ideal-title {
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.ideal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ideal-tag {
    background: white;
    border-radius: 40px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--gray-border);
}

.trust-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 16px;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.trust-icon {
    width: 16px;
    height: 16px;
}

/* ========== RIGHT CARD WITH IMAGE ========== */
.product-card-right {
    flex: 0.8;
    background: var(--white);
    border-radius: 32px;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
    padding: 32px;
    text-align: center;
    border: 1px solid var(--gray-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px -15px rgba(0, 0, 0, 0.2);
}

.product-image-container {
    margin-bottom: 24px;
}

.product-image {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 24px;
}

.softgel-badge {
    background: linear-gradient(135deg, var(--primary-light), #b3e4f0);
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    color: #000;
    margin-bottom: 16px;
}

.nutrient-count {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    margin: 13px 0 3px;
}

.nutrient-count span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-light);
}

.key-nutrients {
    background: #f8fafc;
    border-radius: 20px;
    padding: 19px;
    margin: 16px 0;
}

.nutrient-row {
    display: flex;
    justify-content: space-between;
    padding: 13px 0;
    font-size: 14px;
    color: var(--text-light);
    border-bottom: 1px dashed #e2e8f0;
}

.nutrient-row:last-child {
    border-bottom: none;
}

.nutrient-row strong {
    color: var(--dark);
}

.btn-primarys {
    background-color: transparent;
    border: none;
    width: 100%;
    padding: 16px;
    font-weight: 700;
    font-size: 16px;
    color: #d53d3d;
    border-radius: 8px;
    margin-top: 19px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    border-color: #ec5c42;
    border: 2px solid #ec5c42;
}

.btn-primarys:hover {
    background: linear-gradient(135deg, #ec5c42, #ec5c42);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(25, 188, 219, 0.3);
    color: #fff;
}

.cert-badge {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.cert-image {
    height: 30px;
    width: auto;
    border-radius: 4px;
}

/* ========== SECTION HEADER ========== */
.section-header {
    text-align: center;
    margin: 48px 0 32px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #11333a;
    margin-bottom: 8px;
}

.section-header p {
    color: var(--text-light);
}

/* ========== TABLE ========== */
.table-wrapper {
    margin: 32px 0;
    background: white;
    border-radius: 24px;
    overflow-x: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--gray-border);
}

.ingredient-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 0;
}

.ingredient-table th {
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    padding: 16px 19px;
    text-align: left;
    color: white;
    font-weight: 700;
}

.ingredient-table td {
    padding: 14px 19px;
    border-bottom: 1px solid #edf2f7;
    color: var(--text-dark);
}

.ingredient-table tr:last-child td {
    border-bottom: none;
}

.ingredient-table tr:hover td {
    background: #f8fafc;
}

.highlight-nutrient {
    font-weight: 800;
    color: var(--primary-dark);
}

/* ========== SYNERGY BANNER ========== */
.synergy-banner {
    background: linear-gradient(135deg, #fef6f0, #fff5eb);
    border-radius: 32px;
    padding: 40px;
    text-align: center;
    margin: 48px 0;
    border: 1px solid #ffe0cc;
}

.synergy-icon-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 13px;
}

.synergy-title {
    font-size: 25px;
    font-weight: 800;
    color: var(--accent-dark);
    margin-bottom: 19px;
}

.synergy-text {
    margin: 19px auto;
    max-width: 700px;
    color: var(--text-light);
    font-weight: 500;
}

.synergy-badge {
    font-size: 14px;
    background: white;
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    margin-top: 19px;
    font-weight: 600;
    color: var(--primary-dark);
    border: 1px solid var(--primary-light);
}

/* ========== FEATURES GRID ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin: 32px 0 48px;
}

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 29px;
    text-align: center;
    border: 1px solid var(--gray-border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 16px;
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #11333a;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* ========== WHY CHOOSE SECTION ========== */
.why-choose-section {
    margin: 48px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.stat-card {
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #a0a5b0;
    font-weight: 500;
}

/* ========== FOOTER ========== */
.footer-site {
    background: var(--dark);
    color: #a0a5b0;
    padding: 48px 0 24px;
    margin-top: 48px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-col {
    flex: 1;
    min-width: 180px;
}

.footer-col h4 {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col h4 span {
    color: white;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    margin-top: 8px;
}

.footer-col ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-col ul li a {
    color: #a0a5b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-copyright {
    text-align: center;
    border-top: 1px solid #2a2f3a;
    padding-top: 29px;
    margin-top: 32px;
    font-size: 12px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .container {
        padding: 0 24px;
    }
    
    .product-name {
        font-size: 40px;
    }
    
    .two-columns {
        flex-direction: column;
        gap: 32px;
    }
    
    .product-card-right {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .nav-links a {
        margin-left: 20px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 16px;
    }
    
    .product-name {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .synergy-title {
        font-size: 19px;
    }
    
    .footer-inner {
        flex-direction: column;
        gap: 24px;
    }
    
    .highlight-item {
        font-size: 12px;
        padding: 5px 12px;
    }
    
    .ingredient-table th,
    .ingredient-table td {
        padding: 9px 10px;
        font-size: 12px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}