body {
    background-color: #fcfcfc;
    font-family: 'Inter', sans-serif;
    color: #333;
}

/* Navbar */
.navbar-brand span {
    color: #2c3e50;
}

.nav-link {
    color: #555;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #0d6efd;
}

.form-control:focus {
    box-shadow: none;
    border-color: #0d6efd;
}

/* Hero Section */
.hero-section {
    background: radial-gradient(circle at top right, #fff0f0, #ffffff);
    padding: 60px 0;
    margin-bottom: 40px;
    border-radius: 12px;
}

.hero-title {
    font-weight: 800;
    letter-spacing: -1px;
    color: #222;
}

/* Product Card - AppSumo Style */
.product-card {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    background: white;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08) !important;
}

.card-img-top {
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #f0f0f0;
}

.card-body {
    padding: 1.25rem;
}

.card-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.card-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.deal-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ffcc00;
    color: #000;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.price-tag {
    font-weight: 800;
    font-size: 1.25rem;
    color: #2c3e50;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-right: 8px;
    font-weight: 400;
}

/* Product Page Details - CodeCanyon Style Enhancement */
.product-header {
    margin-bottom: 2rem;
}

.product-image-large {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.nav-tabs {
    border-bottom: 2px solid #e9ecef;
}

.nav-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 600;
    padding: 12px 24px;
    margin-bottom: -2px;
    font-size: 1.05rem;
}

.nav-tabs .nav-link.active {
    color: #0d6efd;
    border-bottom: 3px solid #0d6efd;
    background: transparent;
}

/* Rich Description Styling */
.product-description {
    background: white;
    padding: 40px;
    border: 1px solid #e9ecef;
    border-top: none;
    border-radius: 0 0 8px 8px;
    color: #333;
    line-height: 1.8;
    font-size: 1rem;
}

.product-description h1, 
.product-description h2, 
.product-description h3, 
.product-description h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #212529;
}

.product-description h2 {
    font-size: 1.75rem;
    border-bottom: 2px solid #f0f2f5;
    padding-bottom: 0.5rem;
}

.product-description p {
    margin-bottom: 1.5rem;
    color: #495057;
}

.product-description ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.product-description ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.product-description ul li::before {
    content: '\f00c'; /* FontAwesome check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #27ae60; /* Green check */
}

.product-description img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.product-description blockquote {
    border-left: 4px solid #0d6efd;
    padding-left: 20px;
    font-style: italic;
    color: #6c757d;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
}

/* Reviews */
.review-card {
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 20px;
    background: white;
    margin-bottom: 20px;
    transition: box-shadow 0.2s;
}

.review-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.verified-badge {
    color: #27ae60;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 8px;
    background: #e8f5e9;
    padding: 2px 8px;
    border-radius: 12px;
}
