/* --- PRODUCT PAGE STYLING --- */

/* Section Background */
.product-detail-section {
    padding: 10px 0;
    background-color: #f8f9fa; /* Light gray background for contrast */
}

/* Typography */
.product-detail-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 40px;
}

.product-meta {
    margin-bottom: 25px;
    color: #666;
    font-size: 14px;
}

.meta-item {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
}

.meta-item i {
    margin-right: 5px;
    color: #42cbd1; /* Cyan accent */
}

/* Content Cards (White Boxes) */
.product-description, 
.product-long-description, 
.product-features, 
.product-usage {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.product-description h3, 
.product-long-description h3, 
.product-features h3, 
.product-usage h3,
.product-stats h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    color: #333;
}

/* Feature List Styling */
.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li i {
    color: #28a745; /* Green checkmark */
    margin-right: 15px;
    font-size: 16px;
}

/* Usage Cards (The Grid Icons) - FIXED HEIGHT */
.usage-card {
    text-align: center;
    padding: 30px 20px; /* Slightly more vertical padding */
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 30px; /* More space between rows */
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 260px; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    height: 100%; /* Ensures it fills the column height if using flexbox grid */
}

.usage-card:hover {
    transform: translateY(-5px);
    border-color: #42cbd1;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.usage-card i {
    font-size: 42px; /* Slightly larger icons */
    color: #42cbd1;
    margin-bottom: 20px;
    display: block;
}

.usage-card h5 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.usage-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* --- SIDEBAR & PRICING --- */
.product-sidebar {
    position: sticky;
    top: 100px; /* Sticks when scrolling */
}

.pricing-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 25px;
    border: 1px solid #eee;
}

.pricing-header {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.discount-badge {
    background: #ff4444;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 10px;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
}

.current-price {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #333;
    margin: 5px 0;
}

.save-amount {
    display: block;
    color: #28a745;
    font-size: 13px;
    font-weight: 600;
}

.pricing-body {
    padding: 25px;
}

.package-includes {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.package-includes li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
}

.package-includes li i {
    color: #42cbd1;
    margin-right: 10px;
}

.btn-buy-now {
    display: block;
    background-color: #42cbd1; /* Cyan */
    color: #ffffff !important;
    text-align: center;
    padding: 15px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: background 0.3s;
    font-size: 16px;
    cursor: pointer;
}

.btn-buy-now:hover {
    background-color: #3bbcb0;
}

.secure-payment {
    text-align: center;
    margin-top: 15px;
    font-size: 12px;
    color: #888;
}

.guarantee-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    margin-bottom: 20px;
}

.guarantee-box h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.guarantee-box h4 i {
    color: #f0ad4e;
    margin-right: 8px;
}

.trust-indicators .trust-item {
    background: #fff;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 10px;
    border: 1px solid #eee;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.trust-item i {
    width: 25px;
    color: #555;
}

.breadcrumb {
    padding: 8px 2px;
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
    list-style: none;
    padding: 0;
}
.stats-table tbody tr {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}
.stats-table tbody tr:last-child {
    border-bottom: none;
}
.stats-table td:first-child {
    flex: 1;
    font-size: 14px;
    color: #555;
}
.stats-table td:first-child i {
    color: #28a745;
    margin-right: 15px;
    font-size: 16px;
}
.stats-table td:last-child {
    font-weight: 700;
    color: #667eea;
    font-size: 16px;
}