/*!
Theme Name: Taraksha Sarees
Theme URI: http://taraksha-sarees.local
Author: Taraksha Team
Author URI: http://taraksha-sarees.local
Description: A fully responsive ecommerce theme for Taraksha Sarees using Elementor and WooCommerce
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: taraksha-sarees
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
Requires Plugins: elementor, woocommerce

/* Color Palette */
:root {
    --primary-color: #E67E22;
    --primary-dark: #D35400;
    --primary-light: #F39C12;
    --bg-beige: #F5EBDD;
    --text-dark: #2C1810;
    --text-light: #666666;
    --accent-gold: #D4AF37;
    --border-light: #E8DCC8;
    --white: #FFFFFF;
    --gray-light: #F9F7F3;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "calibri", Sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-beige);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    font-weight: 600;
}

p {
    color: var(--text-light);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Button Styles */
.btn, button, input[type="button"], input[type="submit"] {
    background-color: var(--text-dark);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: "calibri", Sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.btn:hover, button:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(230, 126, 34, 0.3);
}

.btn-primary {
    background-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Sections */
section {
    padding: 60px 0;
}

section.light-bg {
    background-color: var(--bg-beige);
}

section.white-bg {
    background-color: var(--white);
}

/* Image Styles with Orange Border */
.image-with-border {
    border: 3px solid var(--primary-color);
    border-radius: 2px;
    overflow: hidden;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
.section-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.section-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 600px;
}

/* Responsive Grid */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Card Styles */
.product-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-title {
    font-size: 18px;
    margin: 15px 0 10px;
    color: var(--text-dark);
}

.product-price {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 600;
    margin: 10px 0 15px;
}

/* Overlay Text Styles */
.overlay-text {
    position: relative;
    color: var(--white);
    font-size: 48px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Spacing Utilities */
.pt-40 { padding-top: 40px; }
.pt-60 { padding-top: 60px; }
.pb-40 { padding-bottom: 40px; }
.pb-60 { padding-bottom: 60px; }
.mt-30 { margin-top: 30px; }
.mb-30 { margin-bottom: 30px; }
.mb-0 { margin-bottom: 0; }

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    section {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 30px 0;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}
