/* ===================================
   AURA STUDIO - MAIN STYLESHEET
   © 2026 Aura Studio
   =================================== */

/* ===== VARIABLES ===== */
:root {
    --primary-color: #d4af37;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --border-color: #e0e0e0;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --success-color: #27ae60;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
    --whatsapp-color: #25d366;
    
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background: #c09d2e;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.btn-secondary:hover {
    background: #1a252f;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-light {
    background: var(--bg-white);
    color: var(--text-dark);
}

.btn-whatsapp {
    background: var(--whatsapp-color);
    color: var(--bg-white);
}

.btn-whatsapp:hover {
    background: #1fb855;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right a {
    margin-left: 20px;
    color: var(--bg-white);
}

.top-bar-right a:hover {
    color: var(--primary-color);
}

.top-bar i {
    margin-right: 5px;
}

/* ===== HEADER ===== */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo h1 span {
    color: var(--primary-color);
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    border-radius: 4px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-icons a {
    font-size: 20px;
    color: var(--text-dark);
    position: relative;
}

.header-icons a:hover {
    color: var(--primary-color);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-color);
    color: var(--bg-white);
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--text-dark);
}

/* Search Bar */
.search-bar {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.search-bar.active {
    max-height: 100px;
    padding: 20px 0;
}

.search-bar form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.search-bar input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    border-right: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.search-bar button {
    padding: 12px 20px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 0 4px 4px 0;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
}

.hero-content {
    position: relative;
    max-width: 600px;
    padding: 0 40px;
    color: var(--bg-white);
    top: 50%;
    transform: translateY(-50%);
}

.hero-content h2 {
    font-family: var(--font-heading);
    font-size: 56px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.hero-controls {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hero-prev,
.hero-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: var(--bg-white);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--primary-color);
}

.hero-dots {
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* ===== FEATURES ===== */
.features {
    padding: 60px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 8px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.section-header .view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 15px;
}

.section-header .view-all:hover {
    gap: 12px;
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    position: relative;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
    z-index: 1;
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: var(--bg-white);
    z-index: 2;
}

.category-info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 10px;
}

.category-info p {
    font-size: 14px;
    opacity: 0.9;
}

.category-card:hover img {
    transform: scale(1.1);
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 80px 0;
}

.products-section.bg-light {
    background: var(--bg-light);
}

.products-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: var(--bg-light);
}

.product-image img {
    width: 100%;
    height: 100%;
border-radius: 10px;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.product-badge {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--bg-white);
}

.badge-new {
    background: var(--success-color);
}

.badge-sale {
    background: var(--accent-color);
}

.badge-featured {
    background: var(--primary-color);
}

.badge-bestseller {
    background: var(--warning-color);
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
}

.product-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-action-btn:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    font-size: 16px;
    color: var(--text-light);
    text-decoration: line-through;
}

.discount-percent {
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
}

.add-to-cart-btn:hover {
    background: var(--primary-color);
}

/* ===== PROMO BANNER ===== */
.promo-banner {
    background: linear-gradient(135deg, var(--primary-color), #c09d2e);
    color: var(--bg-white);
    padding: 100px 0;
    text-align: center;
}

.banner-content h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
    padding: 80px 0;
    background: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.why-item {
    text-align: center;
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.why-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.why-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== INSTAGRAM SECTION ===== */
.instagram-section {
    padding: 80px 0;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.insta-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(212, 175, 55, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.insta-overlay i {
    font-size: 48px;
    color: var(--bg-white);
}

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

/* ===== NEWSLETTER ===== */
.newsletter {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 80px 0;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    outline: none;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 20px;
}

.footer-logo h2 span {
    color: var(--primary-color);
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.8);
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.payment-methods {
    margin-top: 20px;
}

.payment-methods h4 {
    font-size: 14px;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icons img {
    height: 30px;
    background: var(--bg-white);
    padding: 5px;
    border-radius: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.8);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color), #1a252f);
    color: var(--bg-white);
    padding: 80px 0 40px;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span {
    color: rgba(255,255,255,0.5);
}

/* ===== LOADING ===== */
.loading {
    text-align: center;
    padding: 60px 20px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== NO PRODUCTS ===== */
.no-products {
    text-align: center;
    padding: 80px 20px;
}

.no-products i {
    font-size: 80px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.no-products h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.no-products p {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.page-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--bg-white);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.page-btn:hover,
.page-btn.active {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

/* ===== FORM ELEMENTS ===== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
}

.form-row {
    display: grid;
    gap: 20px;
}

.form-row.two-col {
    grid-template-columns: 1fr 1fr;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-content h2 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-white);
        box-shadow: var(--shadow-lg);
        padding: 80px 30px 30px;
        transition: var(--transition);
        z-index: 1001;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row.two-col {
        grid-template-columns: 1fr;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .top-bar-right a {
        margin-left: 10px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 16px;
    }
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.pt-20 { padding-top: 20px; }
.pb-20 { padding-bottom: 20px; }

/* ===== SHOP SECTION ===== */
.shop-section {
    padding: 60px 0;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.shop-sidebar {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.sidebar-header h3 {
    font-size: 20px;
}

.close-sidebar {
    display: none;
    font-size: 20px;
    color: var(--text-dark);
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-list label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.filter-list label:hover {
    color: var(--primary-color);
}

.filter-list input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-inputs input {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.size-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-filter {
    position: relative;
}

.size-filter input {
    position: absolute;
    opacity: 0;
}

.size-filter span {
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.size-filter input:checked + span {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

/* Shop Toolbar */
.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.filter-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.toolbar-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toolbar-sort select {
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--bg-white);
}

.toolbar-view {
    display: flex;
    gap: 5px;
}

.view-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--bg-white);
    color: var(--text-light);
}

.view-btn.active {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

/* ===== PRODUCT DETAIL ===== */
.product-detail-section {
    padding: 40px 0;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.product-gallery {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image {
    position: relative;
    height: 600px;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-dark);
    transition: var(--transition);
}

.gallery-nav:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.gallery-nav.prev { left: 20px; }
.gallery-nav.next { right: 20px; }

.thumbnail-images {
    display: flex;
    gap: 15px;
}

.thumbnail-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumbnail-images img.active,
.thumbnail-images img:hover {
    border-color: var(--primary-color);
}

/* Product Info */
.product-info {
    padding: 20px 0;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-category {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.product-price .current-price {
    font-size: 32px;
    color: var(--primary-color);
}

.product-price .original-price {
    font-size: 24px;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.product-options {
    margin-bottom: 30px;
}

.option-group {
    margin-bottom: 25px;
}

.option-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.size-options,
.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.size-option {
    position: relative;
}

.size-option input {
    position: absolute;
    opacity: 0;
}

.size-option span {
    display: block;
    min-width: 50px;
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.size-option input:checked + span {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.color-option {
    position: relative;
}

.color-option input {
    position: absolute;
    opacity: 0;
}

.color-option span {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    border: 3px solid transparent;
    box-shadow: 0 0 0 1px var(--border-color);
}

.color-option input:checked + span {
    box-shadow: 0 0 0 2px var(--primary-color);
}

.quantity-selector {
    display: flex;
    align-items: center;
    width: fit-content;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    font-size: 18px;
    color: var(--text-dark);
}

.quantity-selector input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.product-stock {
    margin-bottom: 25px;
    padding: 15px;
    background: #d4edda;
    color: #155724;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-stock.out-of-stock {
    background: #f8d7da;
    color: #721c24;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.product-actions .btn {
    flex: 1;
    padding: 16px 30px;
}

.product-meta {
    padding: 25px 0;
    border-top: 1px solid var(--border-color);
    margin-bottom: 25px;
}

.product-meta p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.product-meta strong {
    color: var(--text-dark);
}

.product-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: var(--transition);
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.pinterest { background: #bd081c; }

.share-btn:hover {
    transform: translateY(-3px);
}

.whatsapp-inquiry {
    padding: 20px;
    background: #f0fff4;
    border-radius: 8px;
    border: 1px solid #c6f6d5;
}

.whatsapp-inquiry .btn {
    width: 100%;
}

/* Product Tabs */
.product-tabs-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.product-tabs {
    display: flex;
    gap: 30px;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.size-table th,
.size-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.size-table th {
    background: var(--bg-light);
    font-weight: 600;
}

.size-note {
    margin-top: 20px;
    padding: 15px;
    background: #fff3cd;
    border-radius: 4px;
    color: #856404;
}

/* ===== CART PAGE ===== */
.cart-section {
    padding: 60px 0;
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart i {
    font-size: 100px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.empty-cart h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.empty-cart p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    text-align: left;
    padding: 15px;
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
    color: var(--text-dark);
}

.cart-table td {
    padding: 20px 15px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-product img {
    width: 100px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-product-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.cart-product-info p {
    font-size: 14px;
    color: var(--text-light);
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.remove-item {
    color: var(--danger-color);
    font-size: 18px;
    transition: var(--transition);
}

.remove-item:hover {
    transform: scale(1.2);
}

.cart-summary {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--text-light);
}

.summary-row.total {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    padding-top: 15px;
    border-top: 2px solid var(--border-color);
    margin-top: 20px;
}

.payment-info {
    margin-top: 25px;
    text-align: center;
}

.payment-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--success-color);
    margin-bottom: 15px;
}

/* ===== CHECKOUT PAGE ===== */
.checkout-section {
    padding: 60px 0;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.checkout-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.checkout-form h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.order-summary {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-summary h2 {
    font-size: 24px;
    margin-bottom: 25px;
}

.order-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 25px;
}

.order-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.order-item img {
    width: 60px;
    height: 75px;
    object-fit: cover;
    border-radius: 4px;
}

.order-item-info {
    flex: 1;
}

.order-item-info h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.order-item-info p {
    font-size: 12px;
    color: var(--text-light);
}

.order-item-price {
    font-weight: 600;
    color: var(--primary-color);
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.payment-option {
    cursor: pointer;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.payment-option input {
    display: none;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.payment-card img {
    height: 40px;
    width: auto;
}

.payment-card span {
    font-weight: 600;
    font-size: 16px;
}

.payment-option:has(input:checked) {
    border-color: var(--primary-color);
    background: #fffef5;
}

.payment-details-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-top: 20px;
}

.payment-info-card {
    margin-bottom: 30px;
}

.payment-info-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.account-info {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

.account-info p {
    margin-bottom: 10px;
    font-size: 16px;
}

.copy-text {
    font-weight: 700;
    color: var(--primary-color);
    user-select: all;
}

.copy-btn {
    margin-left: 10px;
    color: var(--text-light);
    cursor: pointer;
}

.copy-btn:hover {
    color: var(--primary-color);
}

.payment-steps {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 8px;
}

.payment-steps h4 {
    margin-bottom: 15px;
}

.payment-steps ol {
    padding-left: 20px;
}

.payment-steps li {
    margin-bottom: 8px;
    color: var(--text-light);
}

/* Screenshot Upload */
.screenshot-upload {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.screenshot-upload h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.upload-note {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.upload-area {
    position: relative;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    transition: var(--transition);
}

.upload-area:hover,
.upload-area.has-file {
    border-color: var(--primary-color);
    background: #fffef5;
}

.upload-area input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.upload-placeholder i {
    font-size: 48px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.upload-placeholder p {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.upload-placeholder span {
    font-size: 12px;
    color: var(--text-light);
}

.upload-preview {
    position: relative;
    display: inline-block;
}

.upload-preview img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
}

.remove-image {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--danger-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    color: var(--success-color);
    font-size: 14px;
}

.checkout-help {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.checkout-help p {
    margin-bottom: 15px;
    color: var(--text-light);
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: var(--transition);
}

.modal.active .modal-content {
    transform: scale(1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
}

.success-modal h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.order-details-box {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    text-align: left;
}

.order-details-box p {
    margin-bottom: 10px;
}

.success-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.success-actions .btn {
    flex: 1;
}

/* ===== ABOUT PAGE ===== */
.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 25px;
}

.about-content h2 span {
    color: var(--primary-color);
}

.about-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.about-feature {
    text-align: center;
}

.about-feature i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-feature h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.mission-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mission-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.stats-section {
    padding: 80px 0;
    background: var(--secondary-color);
    color: var(--bg-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), #c09d2e);
    text-align: center;
    color: var(--bg-white);
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 8px;
}

.contact-details a {
    color: var(--primary-color);
    font-weight: 600;
}

.social-connect h3 {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
    margin-bottom: 30px;
}

.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 992px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }
    
    .shop-sidebar {
        position: fixed;
        left: -300px;
        top: 0;
        bottom: 0;
        width: 300px;
        z-index: 1002;
        overflow-y: auto;
        border-radius: 0;
    }
    
    .shop-sidebar.active {
        left: 0;
    }
    
    .close-sidebar {
        display: block;
    }
    
    .filter-toggle {
        display: flex;
    }
    
    .product-detail {
        grid-template-columns: 1fr;
    }
    
    .product-gallery {
        position: relative;
        top: 0;
    }
    
    .cart-content,
    .checkout-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-summary,
    .order-summary {
        position: relative;
        top: 0;
    }
    
    .about-grid,
    .mission-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-actions {
        flex-direction: column;
    }
    
    .toolbar-view {
        display: none;
    }
    
    .success-actions {
        flex-direction: column;
    }
}

/* Notification */
.notification {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.notification i {
    color: var(--primary-color);
}
/* ===== PRODUCT DETAIL PAGE BUTTONS ===== */
.product-detail .product-actions {
    position: static;
    opacity: 1;
    flex-direction: row;
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

.product-detail .product-actions .btn {
    flex: 1;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.product-detail .product-actions .btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.product-detail .product-actions .btn-primary:hover {
    background: #c09d2e;
    transform: translateY(-2px);
}

.product-detail .product-actions .btn-secondary {
    background: var(--secondary-color);
    color: #fff;
}

.product-detail .product-actions .btn-secondary:hover {
    background: #1a252f;
}

.product-detail .whatsapp-inquiry .btn-whatsapp {
    background: #25d366;
    color: #fff;
    padding: 15px;
    font-size: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.product-detail .whatsapp-inquiry .btn-whatsapp:hover {
    background: #1fb855;
}

/* Quantity Selector Fix */
.product-detail .quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: fit-content;
}

.product-detail .qty-btn {
    width: 45px;
    height: 45px;
    background: #f5f5f5;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.product-detail .qty-btn:hover {
    background: #e0e0e0;
}

.product-detail .quantity-selector input {
    width: 60px;
    height: 45px;
    text-align: center;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    font-size: 16px;
}

/* Option Groups */
.product-detail .option-group {
    margin-bottom: 20px;
}

.product-detail .option-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

/* Size Options */
.product-detail .size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-detail .size-option {
    position: relative;
}

.product-detail .size-option input {
    position: absolute;
    opacity: 0;
}

.product-detail .size-option span {
    display: block;
    min-width: 50px;
    padding: 10px 18px;
    border: 2px solid #ddd;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.product-detail .size-option input:checked + span {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.product-detail .size-option span:hover {
    border-color: var(--primary-color);
}

/* Stock Status */
.product-detail .product-stock {
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

/* Product Meta */
.product-detail .product-meta {
    padding: 20px 0;
    border-top: 1px solid #eee;
    margin-top: 20px;
}

.product-detail .product-meta p {
    margin-bottom: 8px;
    color: #666;
}

.product-detail .product-meta strong {
    color: #333;
}

/* Share Buttons */
.product-detail .product-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.product-detail .share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.product-detail .share-btn:hover {
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-detail .product-actions {
        flex-direction: column;
    }
    
    .product-detail .product-actions .btn {
        width: 100%;
    }
}




/* =============================================
   MOBILE RESPONSIVE - ALL PUBLIC PAGES
   ============================================= */

/* ===== MOBILE NAVIGATION ===== */
@media (max-width: 992px) {
    /* Header */
    .header-content {
        padding: 15px 0;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    /* Mobile Menu */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        box-shadow: 5px 0 20px rgba(0,0,0,0.1);
        padding: 80px 30px 30px;
        transition: all 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu ul li {
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu ul li a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
    }
    
    .mobile-menu-btn {
        display: block !important;
        font-size: 24px;
        background: none;
        border: none;
        cursor: pointer;
    }
    
    /* Close button for mobile menu */
    .nav-menu::before {
        content: '✕';
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 24px;
        cursor: pointer;
    }
    
    /* Overlay */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 1000;
        display: none;
    }
    
    .nav-overlay.active {
        display: block;
    }
}

/* ===== TABLET & MOBILE - GENERAL ===== */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }
    
    /* Hero Section */
    .hero {
        height: 400px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    /* Categories Grid */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-card {
        height: 200px;
    }
    
    .category-info h3 {
        font-size: 18px;
    }
    
    /* Products Grid */
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
        width: 100% !important;
    }
    
    .product-card .product-image {
        height: 200px;
    }
    
    .product-title {
        font-size: 14px !important;
    }
    
    .current-price {
        font-size: 16px !important;
    }
    
    /* Shop Layout */
    .shop-layout {
        grid-template-columns: 1fr;
    }
    
    .shop-sidebar {
        position: fixed;
        left: -300px;
        top: 0;
        bottom: 0;
        width: 280px;
        z-index: 1002;
        background: #fff;
        padding: 20px;
        overflow-y: auto;
        transition: all 0.3s ease;
    }
    
    .shop-sidebar.active {
        left: 0;
    }
    
    .filter-toggle {
        display: flex !important;
    }
    
    .close-sidebar {
        display: block !important;
    }
    
    /* Product Detail */
    .product-detail {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .product-gallery {
        position: relative;
        top: 0;
    }
    
    .main-image {
        height: 350px;
    }
    
    .product-info .product-title {
        font-size: 24px !important;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        width: 100%;
    }
    
    /* Cart Page */
    .cart-content {
        grid-template-columns: 1fr;
    }
    
    .cart-summary {
        position: relative;
        top: 0;
    }
    
    .cart-table {
        display: block;
        overflow-x: auto;
    }
    
    .cart-product {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cart-product img {
        width: 80px;
        height: 100px;
    }
    
    /* Checkout Page */
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-form {
        padding: 20px;
    }
    
    .form-row.two-col {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        position: relative;
        top: 0;
        margin-top: 20px;
    }
    
    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    /* About Page */
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== MOBILE SMALL (480px and below) ===== */
@media (max-width: 576px) {
    /* General */
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    /* Header */
    .header-content {
        padding: 10px 0;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .header-icons {
        gap: 15px;
    }
    
    .header-icons a {
        font-size: 18px;
    }
    
    /* Hero */
    .hero {
        height: 300px;
    }
    
    .hero-content h2 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .hero-controls {
        bottom: 20px;
    }
    
    .hero-prev, .hero-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    /* Sections */
    .section-header h2 {
        font-size: 22px;
    }
    
    .categories-section,
    .products-section,
    .features {
        padding: 40px 0;
    }
    
    /* Categories */
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .category-card {
        height: 180px;
    }
    
    .category-info {
        padding: 15px;
    }
    
    .category-info h3 {
        font-size: 16px;
    }
    
    /* Products */
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
    
    .product-card {
        border-radius: 8px;
    }
    
    .product-card .product-image {
        height: 160px;
    }
    
    .product-info {
        padding: 10px !important;
    }
    
    .product-category {
        font-size: 10px !important;
        margin-bottom: 5px !important;
    }
    
    .product-title {
        font-size: 12px !important;
        margin-bottom: 5px !important;
        -webkit-line-clamp: 1 !important;
    }
    
    .product-price {
        margin-bottom: 0 !important;
    }
    
    .current-price {
        font-size: 14px !important;
    }
    
    .original-price {
        font-size: 11px !important;
    }
    
    .product-badge {
        padding: 3px 8px;
        font-size: 10px;
    }
    
    /* Shop Toolbar */
    .shop-toolbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .toolbar-sort {
        width: 100%;
    }
    
    .toolbar-sort select {
        width: 100%;
    }
    
    /* Product Detail */
    .product-detail-section {
        padding: 20px 0;
    }
    
    .main-image {
        height: 280px;
    }
    
    .thumbnail-images {
        gap: 8px;
    }
    
    .thumbnail-images img {
        width: 50px;
        height: 50px;
    }
    
    .product-info {
        padding: 15px 0 !important;
    }
    
    .product-info .product-title {
        font-size: 20px !important;
    }
    
    .product-info .current-price {
        font-size: 22px !important;
    }
    
    .product-description {
        font-size: 14px;
    }
    
    .size-options, .color-options {
        gap: 8px;
    }
    
    .size-option span {
        min-width: 40px;
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .quantity-selector {
        width: 100%;
        justify-content: center;
    }
    
    .product-actions {
        gap: 10px;
    }
    
    .product-actions .btn {
        padding: 14px;
        font-size: 14px;
    }
    
    /* Cart */
    .cart-section {
        padding: 20px 0;
    }
    
    .cart-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .cart-product {
        width: 100%;
    }
    
    .cart-product img {
        width: 70px;
        height: 90px;
    }
    
    .cart-product-info h4 {
        font-size: 14px;
    }
    
    .quantity-selector {
        justify-content: flex-start;
    }
    
    .cart-summary {
        padding: 20px;
    }
    
    .cart-summary h3 {
        font-size: 20px;
    }
    
    /* Checkout */
    .checkout-section {
        padding: 20px 0;
    }
    
    .checkout-form {
        padding: 15px;
    }
    
    .checkout-form h2 {
        font-size: 20px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .payment-option {
        margin-bottom: 10px;
    }
    
    .payment-card {
        padding: 15px;
        gap: 12px;
    }
    
    .payment-card i {
        font-size: 24px;
    }
    
    .payment-card span {
        font-size: 14px;
    }
    
    .order-summary {
        padding: 15px;
    }
    
    .order-item {
        padding: 12px 0;
    }
    
    .order-item img {
        width: 50px;
        height: 65px;
    }
    
    /* Contact */
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-info h2 {
        font-size: 24px;
    }
    
    .contact-card {
        padding: 15px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
    
    /* About */
    .about-section {
        padding: 40px 0;
    }
    
    .about-content h2 {
        font-size: 28px;
    }
    
    .mission-card {
        padding: 25px 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .feature-item i {
        font-size: 36px;
    }
    
    /* Page Header */
    .page-header {
        padding: 40px 0 25px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .breadcrumb {
        font-size: 12px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-col h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-col ul li {
        margin-bottom: 8px;
    }
    
    .footer-social {
        gap: 10px;
    }
    
    .footer-social a {
        width: 36px;
        height: 36px;
    }
    
    /* Promo Banner */
    .promo-banner {
        padding: 50px 0;
    }
    
    .banner-content h2 {
        font-size: 24px;
    }
    
    .banner-content p {
        font-size: 14px;
    }
    
    /* Newsletter */
    .newsletter {
        padding: 40px 0;
    }
    
    .newsletter-content h2 {
        font-size: 24px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    /* Floating Elements */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        left: 20px;
    }
    
    /* Notification */
    .notification {
        left: 10px;
        right: 10px;
        transform: translateX(0) translateY(100px);
        text-align: center;
        border-radius: 8px;
    }
    
    .notification.show {
        transform: translateX(0) translateY(0);
    }
    
    /* No Products */
    .no-products {
        padding: 40px 15px;
    }
    
    .no-products i {
        font-size: 60px;
    }
    
    .no-products h3 {
        font-size: 20px;
    }
    
    /* Loading */
    .loading {
        padding: 40px 20px;
    }
    
    .spinner {
        width: 40px;
        height: 40px;
    }
}

/* ===== EXTRA SMALL (360px and below) ===== */
@media (max-width: 360px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px;
    }
    
    .product-card .product-image {
        height: 140px;
    }
    
    .product-info {
        padding: 8px !important;
    }
    
    .product-title {
        font-size: 11px !important;
    }
    
    .current-price {
        font-size: 13px !important;
    }
    
    .hero-content h2 {
        font-size: 20px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
}

/* ===== LANDSCAPE MOBILE ===== */
@media (max-width: 992px) and (orientation: landscape) {
    .hero {
        height: 250px;
    }
    
    .hero-content h2 {
        font-size: 24px;
    }
    
    .main-image {
        height: 250px;
    }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .product-card:hover {
        transform: none;
    }
    
    .product-card:hover .product-image img {
        transform: none;
    }
    
    .category-card:hover img {
        transform: none;
    }
    
    .btn:hover {
        transform: none;
    }
    
    /* Make touch targets larger */
    .nav-menu a {
        padding: 15px 0;
    }
    
    .filter-list label {
        padding: 10px 0;
    }
}

/* ===== SAFE AREA (iPhone X and newer) ===== */
@supports (padding: max(0px)) {
    .header {
        padding-top: max(0px, env(safe-area-inset-top));
    }
    
    .footer {
        padding-bottom: max(20px, env(safe-area-inset-bottom));
    }
    
    .whatsapp-float {
        bottom: max(20px, calc(env(safe-area-inset-bottom) + 10px));
        right: max(20px, env(safe-area-inset-right));
    }
    
    .back-to-top {
        bottom: max(20px, calc(env(safe-area-inset-bottom) + 10px));
        left: max(20px, env(safe-area-inset-left));
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header, .footer, .whatsapp-float, .back-to-top, .nav-menu {
        display: none !important;
    }
    
    .product-card {
        break-inside: avoid;
    }
}
