/* ==================================================
   THE KIRAN AURA - ADVANCED MAIN STYLESHEET
   Version: 4.0 (No Image Crop - Full Image Support)
   Future-Ready Design System
   ================================================== */

/* ---------- CSS Variables (Theme Colors) ---------- */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #d4a373;
    --accent-color: #e74c3c;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --info-color: #3498db;
    --light-bg: #fef9f4;
    --dark-bg: #1a252f;
    --text-dark: #2c3e50;
    --text-medium: #555555;
    --text-light: #999999;
    --white: #ffffff;
    --border-color: #eeeeee;
    --shadow-sm: 0 2px 5px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.15);
    --shadow-xl: 0 15px 50px rgba(0,0,0,0.2);
    --border-radius-sm: 5px;
    --border-radius-md: 10px;
    --border-radius-lg: 15px;
    --border-radius-xl: 50px;
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c0956a;
}

/* ---------- Header/Hero Section ---------- */
.header {
    background: linear-gradient(135deg, #fef9f4, #fdf0e5, #fef9f4);
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.header h1 {
    color: var(--primary-color);
    font-size: 56px;
    margin-bottom: 10px;
    letter-spacing: 3px;
    font-weight: 800;
    animation: fadeInDown 1s ease;
}

.tagline {
    color: #b8860b;
    font-size: 24px;
    font-style: italic;
    margin-bottom: 30px;
    animation: fadeInDown 1.2s ease;
}

.header h2 {
    color: var(--text-dark);
    font-size: 32px;
    margin-bottom: 15px;
    animation: fadeInDown 1.4s ease;
}

.intro {
    color: var(--text-medium);
    font-size: 18px;
    margin-bottom: 35px;
    animation: fadeInDown 1.6s ease;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #d4a373, #c0956a);
    color: var(--white);
    padding: 16px 50px;
    font-size: 20px;
    text-decoration: none;
    border-radius: var(--border-radius-xl);
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #c0956a, #b8860b);
}

.btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

/* ---------- Categories Section ---------- */
.categories {
    padding: 80px 20px;
    text-align: center;
    background: var(--white);
}

.section-title {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
}

.category-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    width: 280px;
    text-align: center;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d4a373, #c0956a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.card p {
    color: var(--text-medium);
    margin-bottom: 20px;
    font-size: 16px;
}

.card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all var(--transition-fast);
}

.card a:hover {
    color: var(--primary-color);
    letter-spacing: 1px;
}

/* ---------- Trust Badges ---------- */
.trust {
    background: linear-gradient(135deg, #f9f9f9, #f0f0f0);
    text-align: center;
    padding: 50px 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    font-size: 17px;
    font-weight: 500;
}

.trust div {
    background: var(--white);
    padding: 15px 25px;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.trust div:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* ==================================================
   PRODUCT IMAGES - NO CROP (FULL IMAGE SUPPORT)
   ================================================== */

/* Products Grid Card Image */
.product-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #ffffff;
    transition: transform 0.5s ease;
}

/* Hover Zoom Effect */
.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Product Detail Page Image */
.product-detail .product-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 10px;
    padding: 15px;
}

/* Cart Page Image */
.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
    background: #ffffff;
    padding: 5px;
}

/* ==================================================
   FOOTER (OLD STYLE - जो Pages पर इस्तेमाल होता है)
   ================================================== */
.footer {
    background: linear-gradient(135deg, #1a252f, #2c3e50);
    color: var(--white);
    text-align: center;
    padding: 50px 20px;
    margin-top: 50px;
}

.footer h3 {
    font-size: 26px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer p {
    margin: 8px;
    color: #cccccc;
    font-size: 15px;
}

.footer a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.footer a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* ---------- Animations ---------- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ---------- Responsive Design ---------- */

/* Tablet */
@media (max-width: 992px) {
    .header h1 {
        font-size: 42px;
    }
    .header h2 {
        font-size: 26px;
    }
    .section-title {
        font-size: 28px;
    }
    .card {
        width: 250px;
        padding: 30px 20px;
    }
    .trust {
        gap: 20px;
    }
    .product-image {
        height: 280px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header {
        padding: 50px 15px;
    }
    .header h1 {
        font-size: 32px;
        letter-spacing: 1px;
    }
    .tagline {
        font-size: 18px;
    }
    .header h2 {
        font-size: 22px;
    }
    .intro {
        font-size: 15px;
    }
    .btn {
        padding: 14px 35px;
        font-size: 17px;
    }
    .categories {
        padding: 50px 15px;
    }
    .section-title {
        font-size: 24px;
    }
    .category-box {
        gap: 15px;
    }
    .card {
        width: 100%;
        max-width: 300px;
        padding: 25px;
    }
    .trust {
        gap: 15px;
        padding: 30px 15px;
    }
    .trust div {
        padding: 12px 20px;
        font-size: 14px;
    }
    .product-image {
        height: 250px;
    }
    .product-detail .product-image img {
        max-height: 400px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .header h1 {
        font-size: 26px;
    }
    .tagline {
        font-size: 16px;
    }
    .header h2 {
        font-size: 18px;
    }
    .intro {
        font-size: 14px;
    }
    .btn {
        padding: 12px 30px;
        font-size: 15px;
    }
    .product-image {
        height: 200px;
    }
}

/* ---------- Future Dark Mode Support ---------- */
@media (prefers-color-scheme: dark) {
    /* Dark mode styles yahan add kar sakte hain future mein */
}