/* =============================================
   NEWDROP - Purple & Green Theme
   ============================================= */

:root {
    --primary-color: #6f42c1;
    --primary-dark: #5a32a3;
    --primary-light: #8b5cf6;
    --secondary-color: #198754;
    --secondary-dark: #146c43;
    --secondary-light: #20c997;

    --text-dark: #2d3748;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;

    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(111, 66, 193, 0.9) 0%, rgba(25, 135, 84, 0.9) 100%);
}

* {
    font-family: 'IranYekan', Tahoma, sans-serif;
}

body {
    color: var(--text-dark);
    background-color: var(--bg-light);
}

/* BUTTONS */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(111, 66, 193, 0.4);
    color: white;
}

.btn-success {
    background: var(--gradient-secondary);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 135, 84, 0.4);
    color: white;
}

/* HERO SECTION */
.hero-section {
    background: var(--gradient-hero), url('https://images.unsplash.com/photo-1581094271901-8022df4466f9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-section p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

/* PRODUCT CARDS */
.product-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    border: none !important;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-card .card-body {
    padding: 1.5rem;
}

.product-card .price {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.product-card .btn-cart {
    background: var(--gradient-primary);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-card .btn-cart:hover {
    background: var(--gradient-secondary);
    transform: rotate(360deg);
}

/* TESTIMONIALS */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-left-color: var(--secondary-color);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.testimonial-rating {
    color: #ffc107;
}

/* FEATURES */
.feature-icon {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* SECTION TITLES */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* NAVBAR */
nav.navbar {
    background: white !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

nav.navbar .nav-link {
    color: var(--primary-color) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

nav.navbar .nav-link:hover {
    color: var(--primary-dark) !important;
    transform: translateY(-2px);
}

nav.navbar .navbar-brand {
    color: var(--primary-color) !important;
    font-weight: 700;
}

nav.navbar .navbar-toggler {
    border-color: var(--primary-color) !important;
}

/* CATEGORY CARDS */
.category-card {
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(111, 66, 193, 0.2);
}

.category-card .card-body {
    padding: 2rem 1rem;
}

/* FOOTER */
footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: white;
}