/* ========== TGN POWERTOOLS - MAIN STYLESHEET ========== */
:root {
    --primary: #F5A623;
    --primary-dark: #E09000;
    --primary-light: #FFF3E0;
    --secondary: #1A1A2E;
    --dark: #16213E;
    --success: #27AE60;
    --danger: #E74C3C;
    --warning: #F39C12;
    --info: #3498DB;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-500: #6c757d;
    --gray-700: #495057;
    --gray-900: #212529;
    --radius: 10px;
    --shadow: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
    --font: 'Inter', -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font); font-size: 14px; color: var(--gray-900); line-height: 1.6; background: var(--white); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ========== TOP BAR ========== */
.top-bar { background: var(--secondary); color: rgba(255,255,255,0.8); font-size: 12px; padding: 8px 0; }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-bar-left, .top-bar-right { display: flex; gap: 20px; }
.top-bar span i { margin-right: 5px; color: var(--primary); }

/* ========== HEADER ========== */
.header { background: var(--white); padding: 15px 0; box-shadow: var(--shadow); position: sticky; top: 0; z-index: 100; }
.header-content { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 32px; color: var(--primary); }
.logo-name { font-size: 20px; font-weight: 900; color: var(--secondary); letter-spacing: 1px; }
.logo-tagline { font-size: 11px; color: var(--gray-500); letter-spacing: 2px; text-transform: uppercase; }

.header-search { flex: 1; max-width: 450px; position: relative; }
.header-search form { display: flex; border: 2px solid var(--primary); border-radius: 50px; overflow: hidden; }
.header-search input { flex: 1; padding: 10px 20px; border: none; outline: none; font-size: 14px; }
.header-search button { background: var(--primary); color: var(--white); border: none; padding: 10px 20px; cursor: pointer; font-size: 16px; }
.header-search button:hover { background: var(--primary-dark); }

/* Search Autocomplete Dropdown */
.search-suggestions { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border: 1px solid var(--gray-200); border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); z-index: 999; max-height: 420px; overflow-y: auto; margin-top: 6px; }
.search-item { display: flex; align-items: center; gap: 14px; padding: 12px 16px; transition: var(--transition); border-bottom: 1px solid var(--gray-100); }
.search-item:last-child { border-bottom: none; }
.search-item:hover { background: var(--primary-light); }
.search-item img { width: 52px; height: 52px; object-fit: contain; border-radius: 10px; background: #fff; border: 1px solid var(--gray-200); padding: 3px; flex-shrink: 0; }
.search-item-info { flex: 1; min-width: 0; }
.search-item-name { display: block; font-size: 14px; font-weight: 600; color: var(--secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-item-meta { display: block; font-size: 12px; color: var(--gray-500); margin-top: 2px; }
.search-item-meta strong { color: var(--primary); }
.search-no-result { padding: 20px; text-align: center; color: var(--gray-500); font-size: 14px; }

.header-actions { display: flex; gap: 15px; align-items: center; }
.header-action-btn { display: flex; align-items: center; gap: 6px; font-weight: 600; color: var(--gray-700); position: relative; }
.header-action-btn:hover { color: var(--primary); }
.header-action-btn i { font-size: 20px; }
.cart-badge { position: absolute; top: -8px; right: -8px; background: var(--primary); color: var(--white); width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }

.mobile-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--secondary); cursor: pointer; }

/* ========== NAVIGATION ========== */
.nav { background: var(--secondary); }
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-links li a { display: flex; align-items: center; gap: 6px; padding: 14px 18px; color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; }
.nav-links li a:hover { background: rgba(255,255,255,0.05); color: var(--primary); }
.nav-links li a i { font-size: 14px; }
.dropdown { position: relative; }
.dropdown-menu { position: absolute; top: 100%; left: 0; background: var(--white); box-shadow: var(--shadow-hover); border-radius: var(--radius); min-width: 220px; z-index: 200; opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition); }
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { color: var(--gray-700); padding: 10px 18px; font-size: 13px; }
.dropdown-menu li a:hover { background: var(--primary-light); color: var(--primary); }

/* ========== FLASH MESSAGES ========== */
.flash-message { padding: 12px 20px; border-radius: var(--radius); margin-bottom: 15px; display: flex; align-items: center; gap: 10px; font-weight: 500; }
.flash-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.flash-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.flash-info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* ========== HERO ========== */
.hero { background-color: var(--secondary); background-size: cover; background-position: center; background-repeat: no-repeat; padding: 80px 0; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,46,0.88) 0%, rgba(15,52,96,0.82) 100%); z-index: 1; }
.hero::after { content: ''; position: absolute; right: -100px; top: -100px; width: 400px; height: 400px; background: var(--primary); opacity: 0.08; border-radius: 50%; z-index: 1; }
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-text { max-width: 650px; }
.hero-text h1 { font-size: 42px; font-weight: 900; color: var(--white); line-height: 1.2; margin-bottom: 15px; }
.hero-text h1 span { color: var(--primary); }
.hero-text p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 25px; line-height: 1.7; }
.hero-btns { display: flex; gap: 12px; margin-bottom: 25px; }
.hero-trust { display: flex; gap: 25px; flex-wrap: wrap; }
.hero-trust span { color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 500; }
.hero-trust span i { color: var(--primary); margin-right: 5px; }

/* Hero Product Images */
.hero-images { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-product-img { background: var(--white); border-radius: 16px; padding: 20px; text-align: center; position: relative; transition: var(--transition); box-shadow: 0 4px 20px rgba(0,0,0,0.15); animation: heroFloat 3s ease-in-out infinite; }
.hero-product-img:hover { transform: translateY(-8px) scale(1.03); box-shadow: 0 12px 40px rgba(245,166,35,0.3); }
.hero-product-img img { width: 100%; height: 140px; object-fit: contain; transition: transform 0.4s ease; }
.hero-product-img:hover img { transform: scale(1.1) rotate(-2deg); }
.hero-img-name { font-size: 13px; font-weight: 700; color: var(--secondary); margin-top: 10px; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-img-price { display: inline-block; background: var(--primary); color: var(--white); font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 50px; margin-top: 6px; }

/* Staggered float animations */
.hero-anim-1 { animation-delay: 0s; }
.hero-anim-2 { animation-delay: 0.5s; }
.hero-anim-3 { animation-delay: 1s; }
.hero-anim-4 { animation-delay: 1.5s; }

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}
.hero-product-img:hover { animation-play-state: paused; }

/* ========== BUTTONS ========== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; border-radius: 50px; font-weight: 600; font-size: 14px; border: none; cursor: pointer; transition: var(--transition); }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(245,166,35,0.3); }
.btn-dark { background: var(--secondary); color: var(--white); }
.btn-dark:hover { background: var(--dark); }
.btn-lg { padding: 14px 30px; font-size: 15px; }
.btn-sm { padding: 6px 14px; font-size: 12px; }
.btn-block { width: 100%; justify-content: center; }

/* ========== SECTIONS ========== */
.section { padding: 60px 0; }
.section-bg { background: var(--gray-100); }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: 30px; font-weight: 800; color: var(--secondary); }
.section-header h2 span { color: var(--primary); }
.section-header p { font-size: 15px; color: var(--gray-500); margin-top: 5px; }

/* ========== FEATURES ========== */
.features-bar { background: var(--white); padding: 30px 0; border-bottom: 1px solid var(--gray-200); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-item { display: flex; align-items: center; gap: 15px; }
.feature-icon { width: 50px; height: 50px; background: var(--primary-light); color: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.feature-item h4 { font-size: 14px; font-weight: 700; color: var(--secondary); }
.feature-item p { font-size: 12px; color: var(--gray-500); }

/* ========== CATEGORIES GRID ========== */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px; }
.category-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 20px 15px; text-align: center; transition: var(--transition); }
.category-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.category-img { width: 100%; height: 140px; background: var(--white); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; padding: 10px; overflow: hidden; }
.category-img img { max-width: 100%; max-height: 120px; object-fit: contain; transition: var(--transition); }
.category-card:hover .category-img img { transform: scale(1.08); }
.category-img i { font-size: 40px; color: var(--primary); }
.category-card h4 { font-size: 14px; font-weight: 700; color: var(--secondary); margin-bottom: 4px; }
.category-card span { font-size: 12px; color: var(--gray-500); }

/* ========== PRODUCT GRID ========== */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 25px; }
.product-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; transition: var(--transition); position: relative; }
.product-card:hover { border-color: var(--primary); box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.product-badge { position: absolute; top: 10px; left: 10px; z-index: 5; }
.badge-sale { background: var(--danger); color: var(--white); padding: 4px 10px; border-radius: 50px; font-size: 11px; font-weight: 700; }
.product-image { position: relative; padding: 20px; background: var(--white); text-align: center; height: 250px; display: flex; align-items: center; justify-content: center; overflow: hidden; border-bottom: 1px solid var(--gray-200); }
.product-image img { max-height: 210px; object-fit: contain; transition: var(--transition); }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-actions { position: absolute; bottom: -50px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; padding: 10px; transition: var(--transition); }
.product-card:hover .product-actions { bottom: 10px; }
.product-action-btn { width: 38px; height: 38px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--gray-700); cursor: pointer; transition: var(--transition); }
.product-action-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.product-info { padding: 18px; }
.product-category { font-size: 11px; text-transform: uppercase; color: var(--primary); font-weight: 600; letter-spacing: 1px; margin-bottom: 5px; }
.product-name { font-size: 14px; font-weight: 600; margin-bottom: 8px; line-height: 1.4; }
.product-name a { color: var(--secondary); }
.product-name a:hover { color: var(--primary); }
.product-price { display: flex; align-items: center; gap: 10px; }
.current-price { font-size: 18px; font-weight: 800; color: var(--primary); }
.old-price { font-size: 14px; color: var(--gray-500); text-decoration: line-through; }

/* ========== PAGE BANNER ========== */
.page-banner { background: linear-gradient(135deg, var(--secondary), #0F3460); padding: 40px 0; text-align: center; }
.page-banner h1 { font-size: 32px; font-weight: 800; color: var(--white); }
.page-banner p { color: rgba(255,255,255,0.7); margin-top: 5px; }

/* ========== SHOP LAYOUT ========== */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 30px; }
.shop-sidebar { position: sticky; top: 100px; align-self: start; }
.sidebar-section { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 20px; }
.sidebar-section h3 { font-size: 16px; font-weight: 700; margin-bottom: 15px; color: var(--secondary); }
.category-list li a { display: flex; justify-content: space-between; padding: 8px 0; font-size: 13px; color: var(--gray-700); border-bottom: 1px solid var(--gray-100); }
.category-list li a:hover, .category-list li a.active { color: var(--primary); font-weight: 600; }
.category-list li a span { color: var(--gray-500); font-size: 12px; }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid var(--gray-200); }
.shop-toolbar span { font-size: 13px; color: var(--gray-500); }
.sort-form select { padding: 8px 14px; border: 1px solid var(--gray-200); border-radius: var(--radius); font-size: 13px; }

/* ========== PRODUCT DETAIL ========== */
.breadcrumb { font-size: 13px; color: var(--gray-500); margin-bottom: 25px; }
.breadcrumb a { color: var(--gray-700); }
.breadcrumb a:hover { color: var(--primary); }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.product-gallery { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 40px; display: flex; align-items: center; justify-content: center; position: relative; }
.product-gallery img { max-height: 400px; object-fit: contain; }
.gallery-badge { position: absolute; top: 20px; left: 20px; background: var(--danger); color: var(--white); padding: 8px 16px; border-radius: 50px; font-weight: 700; font-size: 14px; }
.product-detail-info h1 { font-size: 26px; font-weight: 800; color: var(--secondary); margin-bottom: 15px; line-height: 1.3; }
.product-detail-price { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; padding: 15px; background: var(--gray-100); border-radius: var(--radius); }
.product-detail-price .current-price { font-size: 28px; }
.discount-tag { background: var(--danger); color: var(--white); padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 700; }
.product-detail-desc { margin-bottom: 20px; }
.product-detail-desc h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.product-detail-desc p { color: var(--gray-700); line-height: 1.7; }
.quantity-selector { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.quantity-selector label { font-weight: 600; }
.qty-controls { display: flex; align-items: center; border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.qty-controls button, .qty-controls a { width: 38px; height: 38px; background: var(--gray-100); border: none; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--gray-700); text-decoration: none; }
.qty-controls button:hover, .qty-controls a:hover { background: var(--primary-light); color: var(--primary); }
.qty-controls input { width: 50px; text-align: center; border: none; font-size: 14px; font-weight: 600; outline: none; }
.product-meta { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--gray-200); }
.product-meta p { font-size: 13px; color: var(--gray-700); margin-bottom: 8px; }
.product-trust-badges { display: flex; gap: 20px; margin-top: 20px; flex-wrap: wrap; }
.product-trust-badges span { font-size: 12px; color: var(--gray-500); font-weight: 600; }
.product-trust-badges span i { color: var(--primary); margin-right: 4px; }

/* ========== CART ========== */
.cart-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { background: var(--gray-100); padding: 12px 15px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; color: var(--gray-500); text-align: left; }
.cart-table td { padding: 15px; border-bottom: 1px solid var(--gray-200); vertical-align: middle; }
.cart-item-info { display: flex; align-items: center; gap: 12px; }
.cart-item-info img { width: 60px; height: 60px; object-fit: contain; border-radius: 8px; background: var(--gray-100); padding: 5px; }
.cart-item-info h4 { font-size: 14px; font-weight: 600; }
.cart-item-info h4 a { color: var(--secondary); }
.cart-item-info h4 a:hover { color: var(--primary); }
.cart-item-info p { font-size: 12px; color: var(--gray-500); }
.cart-remove { color: var(--danger); font-size: 16px; }
.cart-summary { background: var(--gray-100); border-radius: var(--radius); padding: 25px; position: sticky; top: 100px; }
.cart-summary h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; color: var(--secondary); }
.cart-summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--gray-200); font-size: 14px; }
.cart-summary-total { display: flex; justify-content: space-between; padding: 15px 0; font-size: 20px; font-weight: 800; color: var(--secondary); border-top: 2px solid var(--primary); margin-top: 10px; }

/* ========== CHECKOUT ========== */
.checkout-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; }
.checkout-section { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 25px; margin-bottom: 20px; }
.checkout-section h3 { font-size: 16px; font-weight: 700; margin-bottom: 15px; color: var(--secondary); }
.checkout-section h3 i { color: var(--primary); margin-right: 8px; }
.order-summary-item { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--gray-100); font-size: 13px; gap: 10px; }
.item-name { flex: 1; }
.item-qty { color: var(--gray-500); font-weight: 600; }

/* ========== FORMS ========== */
.form-container { max-width: 450px; margin: 0 auto; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 40px; }
.form-container h2 { font-size: 24px; font-weight: 800; color: var(--secondary); text-align: center; }
.form-subtitle { text-align: center; color: var(--gray-500); margin-bottom: 25px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--secondary); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 16px; border: 1px solid var(--gray-200); border-radius: var(--radius); font-size: 14px; transition: var(--transition); font-family: var(--font); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(245,166,35,0.15); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-link { text-align: center; margin-top: 20px; font-size: 14px; color: var(--gray-500); }
.form-link a { color: var(--primary); font-weight: 600; }

/* ========== ORDERS TABLE ========== */
.orders-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.orders-table th { background: var(--gray-100); padding: 14px 18px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; color: var(--gray-500); text-align: left; }
.orders-table td { padding: 14px 18px; border-bottom: 1px solid var(--gray-200); }
.status-badge { display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 600; }
.status-pending { background: #fff3cd; color: #856404; }
.status-processing { background: #d1ecf1; color: #0c5460; }
.status-shipped { background: #fff3e0; color: #e65100; }
.status-delivered { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }

/* ========== ORDER DETAIL ========== */
.order-detail { max-width: 800px; margin: 0 auto; }
.order-header { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 25px; }
.order-header-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.order-progress { display: flex; justify-content: space-between; margin-top: 20px; }
.progress-step { text-align: center; flex: 1; position: relative; }
.progress-step::before { content: ''; position: absolute; top: 20px; left: 50%; right: -50%; height: 2px; background: var(--gray-200); z-index: 0; }
.progress-step:last-child::before { display: none; }
.progress-step.completed::before { background: var(--success); }
.progress-step.active::before { background: var(--primary); }
.step-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--gray-200); color: var(--gray-500); display: flex; align-items: center; justify-content: center; margin: 0 auto 8px; position: relative; z-index: 1; }
.progress-step.completed .step-icon { background: var(--success); color: var(--white); }
.progress-step.active .step-icon { background: var(--primary); color: var(--white); }
.progress-step span { font-size: 11px; font-weight: 600; color: var(--gray-500); }
.progress-step.active span { color: var(--primary); }
.progress-step.completed span { color: var(--success); }

/* ========== ABOUT ========== */
.about-content { display: grid; grid-template-columns: 1fr; gap: 30px; }
.about-text h2 { font-size: 28px; font-weight: 800; color: var(--secondary); margin-bottom: 15px; }
.about-text h2 span { color: var(--primary); }
.about-text p { color: var(--gray-700); line-height: 1.8; margin-bottom: 12px; }
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.stat-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 25px; text-align: center; transition: var(--transition); }
.stat-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.stat-number { font-size: 36px; font-weight: 900; color: var(--primary); }
.stat-label { font-size: 13px; color: var(--gray-500); font-weight: 600; margin-top: 5px; }

/* ========== SEO CONTENT ========== */
.seo-content { max-width: 800px; margin: 0 auto; }
.seo-content h2 { font-size: 24px; font-weight: 800; color: var(--secondary); margin-bottom: 15px; }
.seo-content h3 { font-size: 18px; font-weight: 700; color: var(--secondary); margin: 20px 0 10px; }
.seo-content p { color: var(--gray-700); line-height: 1.8; margin-bottom: 12px; }
.seo-content ul { margin: 10px 0 15px 20px; }
.seo-content ul li { color: var(--gray-700); margin-bottom: 8px; line-height: 1.6; list-style: disc; }

/* ========== CATEGORY DESCRIPTION ========== */
.category-description { background: var(--primary-light); border-radius: var(--radius); padding: 20px 25px; margin-bottom: 30px; border-left: 4px solid var(--primary); }
.category-description p { color: var(--gray-700); line-height: 1.7; }

/* ========== CONTACT ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.contact-info-card { display: flex; align-items: flex-start; gap: 15px; padding: 18px; background: var(--gray-100); border-radius: var(--radius); margin-bottom: 15px; }
.contact-info-card i { font-size: 20px; color: var(--primary); margin-top: 3px; }
.contact-info-card h4 { font-size: 14px; font-weight: 700; color: var(--secondary); margin-bottom: 4px; }
.contact-info-card p { font-size: 13px; color: var(--gray-700); line-height: 1.5; }
.contact-form { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 30px; }
.contact-form h3 { font-size: 20px; font-weight: 700; color: var(--secondary); margin-bottom: 20px; }

/* ========== CTA SECTION ========== */
.cta-section { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); padding: 60px 0; text-align: center; }
.cta-content h2 { font-size: 30px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.cta-content p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 25px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; }

/* ========== EMPTY STATE ========== */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state i { font-size: 60px; color: var(--gray-300); margin-bottom: 20px; }
.empty-state h3 { font-size: 20px; font-weight: 700; color: var(--secondary); margin-bottom: 10px; }
.empty-state p { color: var(--gray-500); }

/* ========== PAGINATION ========== */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 30px; }
.pagination a, .pagination span { display: flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; padding: 0 12px; border-radius: var(--radius); font-weight: 600; font-size: 13px; transition: var(--transition); }
.pagination a { background: var(--white); border: 1px solid var(--gray-200); color: var(--gray-700); }
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination span.current { background: var(--primary); color: var(--white); }

/* ========== FLOATING WHATSAPP ========== */
.whatsapp-float { position: fixed; bottom: 30px; left: 25px; width: 60px; height: 60px; background: #25D366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 9998; transition: all 0.3s ease; animation: whatsappHeartbeat 1.5s ease-in-out infinite; }
.whatsapp-float:hover { transform: scale(1.15); box-shadow: 0 6px 30px rgba(37,211,102,0.5); color: #fff; animation-play-state: paused; }
@keyframes whatsappHeartbeat {
    0% { transform: scale(1); }
    15% { transform: scale(1.12); }
    30% { transform: scale(1); }
    45% { transform: scale(1.08); }
    60% { transform: scale(1); }
    100% { transform: scale(1); }
}

/* ========== PRODUCT BUY BUTTONS ========== */
.btn-whatsapp { background: #25D366; color: #fff; border-radius: 50px; font-weight: 700; }
.btn-whatsapp:hover { background: #1DA851; color: #fff; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(37,211,102,0.35); }
.btn-buy-now { background: linear-gradient(135deg, #E74C3C, #C0392B); color: #fff; border-radius: 50px; font-weight: 700; position: relative; overflow: hidden; }
.btn-buy-now:hover { background: linear-gradient(135deg, #C0392B, #A93226); color: #fff; transform: translateY(-2px); box-shadow: 0 5px 20px rgba(231,76,60,0.35); }
.btn-buy-now .pulse-dot { display: inline-block; width: 8px; height: 8px; background: #fff; border-radius: 50%; animation: pulseDot 1.2s ease-in-out infinite; margin-right: 4px; }
@keyframes pulseDot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } }
.product-buy-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 15px; }
.product-buy-actions .btn { width: 100%; justify-content: center; padding: 14px 20px; font-size: 15px; }
.urgency-bar { background: linear-gradient(90deg, #FFF3E0, #FFECB3); border: 1px solid #FFD54F; border-radius: var(--radius); padding: 10px 16px; margin-top: 12px; display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: #E65100; }
.urgency-bar i { font-size: 16px; animation: pulseDot 1s ease-in-out infinite; }

/* ========== PRODUCT CARD BUY BTN ========== */
.card-buy-row { display: flex; gap: 8px; margin-top: 10px; }
.card-buy-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 5px; padding: 8px 10px; border-radius: 50px; font-size: 12px; font-weight: 700; border: none; cursor: pointer; transition: var(--transition); }
.card-buy-cart { background: var(--primary); color: var(--white); }
.card-buy-cart:hover { background: var(--primary-dark); }
.card-buy-wa { background: #25D366; color: var(--white); text-decoration: none; }
.card-buy-wa:hover { background: #1DA851; color: var(--white); }

/* ========== TOAST ========== */
.toast-notification { position: fixed; bottom: 30px; right: 30px; background: var(--success); color: var(--white); padding: 14px 24px; border-radius: var(--radius); font-weight: 600; font-size: 14px; z-index: 9999; animation: slideIn 0.3s ease; box-shadow: var(--shadow-hover); }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ========== FOOTER ========== */
.footer { background: var(--secondary); color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-col h3, .footer-col h4 { color: var(--white); margin-bottom: 18px; font-size: 16px; }
.footer-col p { font-size: 13px; line-height: 1.7; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.7); }
.footer-col ul li a:hover { color: var(--primary); }
.contact-info li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; }
.contact-info li i { color: var(--primary); margin-top: 2px; font-size: 14px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; color: rgba(255,255,255,0.7); }
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding: 20px 0; text-align: center; font-size: 13px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { display: none; }
    .checkout-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .hero-content { grid-template-columns: 1fr; }
    .hero-images { grid-template-columns: repeat(4, 1fr); }
    .hero-product-img img { height: 80px; }
}
@media (max-width: 768px) {
    .top-bar-content { flex-direction: column; text-align: center; }
    .header-search { display: none; }
    .mobile-toggle { display: block; }
    .nav { display: none; }
    .nav.active { display: block; }
    .nav-links { flex-direction: column; }
    .hero-text h1 { font-size: 28px; }
    .hero-btns { flex-direction: column; }
    .hero-images { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .hero-product-img { padding: 12px; }
    .hero-product-img img { height: 70px; }
    .product-detail { grid-template-columns: 1fr; }
    .cart-layout { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .order-progress { flex-direction: column; gap: 10px; }
    .progress-step::before { display: none; }
}
