/* assets/css/style.css */

:root { 
    --bg-page: #F8F9FA; 
    --bg-card: #FFFFFF; 
    --primary-navy: #1A3C87; 
    --dark-navy: #0F172A; 
    --accent-orange: #FF9F1C; 
    --text-main: #334155; 
    --text-muted: #64748B; 
    --success-green: #10B981; 
    --warning-yellow: #F59E0B; 
    --font-head: 'Poppins', sans-serif; 
    --font-body: 'Inter', sans-serif; 
}

* { margin: 0; padding: 0; box-sizing: border-box; } 

body { 
    font-family: var(--font-body); 
    background-color: var(--bg-page); 
    color: var(--text-main); 
    display: flex; 
    flex-direction: column; 
    min-height: 100vh; 
    top: 0 !important; 
    position: static !important; 
    margin-top: 0 !important; 
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); }
a { text-decoration: none; }

/* HEADER */
.top-bar { background-color: var(--dark-navy); color: white; padding: 10px 5%; font-size: 13px; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-head); position: sticky; top: 0; z-index: 10000; box-shadow: 0 4px 10px rgba(0,0,0,0.2); height: 60px; }
.logo-area { display: flex; align-items: center; gap: 10px; } 
.logo-img { width: 35px; height: 35px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.2); background: #fff; } 
.logo-text { font-weight: 700; font-size: 16px; letter-spacing: 0.5px; color: white; }
.top-right-nav { display: flex; align-items: center; gap: 20px; } 
.nav-link-custom { color: rgba(255,255,255,0.8); text-decoration: none; font-weight: 500; font-size: 12px; transition: 0.3s; } 
.nav-link-custom:hover { color: #fff; text-decoration: underline; }

/* STATUS BADGE */
.status-badge { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); padding: 5px 14px; border-radius: 30px; font-size: 12px; border: 1px solid rgba(255,255,255,0.1); white-space: nowrap; flex-shrink: 0; } 
.dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; } 
.dot.online { background-color: var(--success-green); box-shadow: 0 0 10px var(--success-green); animation: pulse 2s infinite; } 
.dot.rest { background-color: var(--warning-yellow); box-shadow: 0 0 10px var(--warning-yellow); } 
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }

/* RESPONSIVE MOBILE */
@media (max-width: 480px) { 
    .logo-text { display: none; } 
    .top-bar { padding: 10px 15px; } 
    .top-right-nav { gap: 10px; } 
    .nav-link-custom { font-size: 11px; } 
    .status-badge { padding: 4px 10px; font-size: 11px; } 
}

/* HERO SECTION */
.hero { background: linear-gradient(180deg, var(--primary-navy) 0%, var(--dark-navy) 100%); padding: 50px 20px 80px 20px; text-align: center; color: white; scroll-margin-top: 60px; } 
.hero h1 { font-size: 2rem; margin-bottom: 15px; font-weight: 700; letter-spacing: -0.5px; line-height: 1.3; max-width: 900px; margin-left: auto; margin-right: auto;} 
.hero p { opacity: 0.9; font-size: 1rem; max-width: 700px; margin: 0 auto 30px auto; font-family: var(--font-body); }
.search-container { position: relative; max-width: 500px; margin: 0 auto; } 
.search-box input { width: 100%; padding: 14px 24px; padding-right: 50px; border-radius: 50px; border: none; outline: none; font-family: var(--font-head); font-size: 14px; box-shadow: 0 10px 20px rgba(0,0,0,0.2); } 
.search-btn { position: absolute; right: 5px; top: 5px; bottom: 5px; width: 40px; border: none; background: var(--accent-orange); color: white; border-radius: 50%; cursor: pointer; transition: 0.2s; display: flex; align-items: center; justify-content: center; }

/* NAVIGATION */
.cat-nav { background: white; border-bottom: 1px solid #e2e8f0; overflow-x: auto; white-space: nowrap; padding: 15px 5%; } 
.cat-btn { display: inline-block; padding: 8px 20px; margin-right: 8px; border-radius: 50px; background: #F1F5F9; color: var(--text-main); font-family: var(--font-head); font-size: 13px; font-weight: 500; transition: 0.3s; border: 1px solid transparent; } 
.cat-btn.active { background: var(--primary-navy); color: white; }

/* GRID SYSTEM */
.container { max-width: 1200px; margin: 40px auto; padding: 0 20px; flex-grow: 1; width: 100%; } 
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 25px; width: 100%; } 
@media (max-width: 480px) { .grid { grid-template-columns: 1fr 1fr; gap: 12px; } }

/* PRODUCT CARD */
.card { background: var(--bg-card); border-radius: 16px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.03); border: 1px solid #f1f5f9; transition: transform 0.2s; display: flex; flex-direction: column; height: 100%; position: relative; } 
.card:hover { transform: translateY(-5px); border-color: var(--primary-navy); } 
.card-img { height: 160px; background: #f8fafc; position: relative; } 
.card-img img { width: 100%; height: 100%; object-fit: cover; } 
.badge-cat { position: absolute; top: 12px; left: 12px; background: rgba(15, 23, 42, 0.8); backdrop-filter: blur(4px); color: white; padding: 4px 10px; font-size: 10px; border-radius: 6px; font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; } 
.btn-share { position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; background: rgba(255,255,255,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--dark-navy); cursor: pointer; transition: 0.2s; box-shadow: 0 2px 5px rgba(0,0,0,0.1); } 
.btn-share:hover { background: var(--accent-orange); color: white; transform: scale(1.1); }

.card-body { padding: 18px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; } 
.card-title { font-family: var(--font-head); font-size: 15px; font-weight: 600; margin-bottom: 4px; line-height: 1.5; color: var(--text-main); } 
.duration-text { font-size: 11px; color: var(--text-muted); margin-bottom: 8px; } 
.desc-toggle { cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--primary-navy); font-weight: 600; margin-top: 5px; background: #f8fafe; padding: 6px 10px; border-radius: 6px; } 
.desc-content { display: none; font-size: 12px; color: var(--text-muted); margin-top: 8px; padding: 0 5px; line-height: 1.4; white-space: pre-wrap; } 
.desc-toggle.active i { transform: rotate(180deg); } 
.price-real { font-family: var(--font-head); font-size: 17px; color: var(--primary-navy); font-weight: 700; margin-top: 10px; } 
.btn-buy { display: block; width: 100%; background: var(--accent-orange); color: white; text-align: center; padding: 12px; border-radius: 10px; font-family: var(--font-head); font-weight: 600; font-size: 14px; margin-top: 15px; transition: 0.2s; } 
.btn-buy:hover { background: #e88f0c; }

/* FEATURES */
.features-section { background: white; padding: 50px 20px; border-top: 1px solid #f1f5f9; margin-top: 50px; text-align: center;} 
.features-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; text-align: left;} 
.feature-item { text-align: left; padding: 20px; border-radius: 12px; background: #F8F9FA; } 
.feature-icon { font-size: 24px; color: var(--primary-navy); margin-bottom: 15px; } 
.feature-title { font-size: 16px; font-weight: 700; color: var(--primary-navy); margin-bottom: 8px; font-family: var(--font-head); } 
.feature-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; } 
.btn-proof { display: inline-block; background: transparent; border: 2px solid var(--primary-navy); color: var(--primary-navy); padding: 12px 25px; border-radius: 50px; font-weight: 600; margin-top: 30px; font-size: 14px; cursor: pointer; transition: 0.3s; } 
.btn-proof:hover { background: var(--primary-navy); color: white; }

/* INFO SECTION */
.info-section { max-width: 1200px; margin: 50px auto 70px auto; padding: 0 20px; } 
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; } 
@media (max-width: 768px) { .info-grid { grid-template-columns: 1fr; gap: 40px; } } 
.section-head { font-size: 20px; font-weight: 700; color: var(--dark-navy); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; } 
.about-box { background: #fff; padding: 30px; border-radius: 16px; border: 1px solid #f1f5f9; box-shadow: 0 10px 30px rgba(0,0,0,0.03); height: 100%; } 
.about-text { font-size: 15px; line-height: 1.8; color: var(--text-muted); text-align: justify; } 
.about-brand { font-weight: 700; color: var(--primary-navy); } 

/* FAQ */
details.faq-item { background: white; margin-bottom: 15px; border-radius: 8px; border: 1px solid #e2e8f0; overflow: hidden; transition: all 0.3s ease; } 
details.faq-item[open] { border-color: var(--primary-navy); box-shadow: 0 4px 12px rgba(0,0,0,0.08); background: #F8FAFC; } 
summary.faq-q { padding: 15px 20px; cursor: pointer; font-weight: 600; font-family: var(--font-head); color: var(--text-main); list-style: none; display: flex; justify-content: space-between; align-items: center; transition: background 0.2s; } 
summary.faq-q::-webkit-details-marker { display: none; } 
summary.faq-q::after { content: '\f078'; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--text-muted); transition: transform 0.3s; font-size: 12px; } 
details[open] summary.faq-q::after { transform: rotate(180deg); color: var(--accent-orange); } 
details[open] .faq-a { animation: slideDown 0.3s ease-out forwards; } 
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } } 
.faq-a { padding: 0 20px 20px 20px; font-size: 14px; color: var(--text-muted); line-height: 1.6; border-top: 1px solid #e2e8f0; margin-top: 5px; padding-top: 15px; }

/* POPUPS & MODALS */
#sales-popup { position: fixed; bottom: -120px; left: 20px; z-index: 999; background: white; padding: 16px; border-radius: 16px; width: 340px; box-shadow: 0 15px 35px rgba(0,0,0,0.15); border: 1px solid #f1f5f9; border-left: 6px solid var(--accent-orange); display: flex; align-items: center; gap: 15px; transition: bottom 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); font-family: var(--font-head); } 
.popup-img-container { width: 60px; height: 60px; flex-shrink: 0; border-radius: 10px; overflow: hidden; background: #f1f5f9; } 
.popup-img-container img { width: 100%; height: 100%; object-fit: cover; } 
.popup-text { flex-grow: 1; } 
.buyer-info { font-size: 12px; color: var(--text-muted); margin-bottom: 2px; font-weight: 400; } 
.product-name { font-size: 13px; color: var(--primary-navy); font-weight: 700; line-height: 1.3; display: block;} 
.time-ago { font-size: 10px; color: #94A3B8; margin-top: 4px; display: block; }

.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 10002; display: none; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(5px); } 
.modal-box { background: white; width: 100%; max-width: 500px; border-radius: 16px; overflow: hidden; position: relative; box-shadow: 0 20px 50px rgba(0,0,0,0.2); animation: popUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); } 
@keyframes popUp { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } } 
.modal-img-top { width: 100%; height: 250px; object-fit: cover; } 
.modal-content { padding: 25px; } 
.modal-close { position: absolute; top: 15px; right: 15px; width: 35px; height: 35px; background: rgba(0,0,0,0.5); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 18px; z-index: 2; }

/* WELCOME POPUP */
.welcome-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 10003; display: none; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(5px); } 
.welcome-box { background: white; width: 100%; max-width: 450px; border-radius: 16px; overflow: hidden; position: relative; box-shadow: 0 20px 50px rgba(0,0,0,0.25); text-align: center; padding: 40px 30px; } 
.welcome-icon { font-size: 50px; color: var(--accent-orange); margin-bottom: 20px; } 
.welcome-title { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--primary-navy); margin-bottom: 10px; } 
.welcome-text { font-size: 14px; color: var(--text-main); line-height: 1.6; margin-bottom: 25px; } 
.welcome-btn { background: var(--primary-navy); color: white; border: none; padding: 10px 30px; border-radius: 50px; font-weight: 600; cursor: pointer; transition: 0.3s; } 
.welcome-btn:hover { background: var(--dark-navy); } 
.welcome-close-corner { position: absolute; top: 15px; right: 15px; cursor: pointer; font-size: 20px; color: #999; }

/* VARIANT OPTIONS */
.variant-options { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 15px; } 
.var-opt { border: 1px solid #ddd; padding: 8px 12px; border-radius: 8px; font-size: 13px; cursor: pointer; transition: 0.2s; background: #fff; } 
.var-opt:hover { border-color: var(--primary-navy); background: #f8fafe; } 
.var-opt.selected { border-color: var(--primary-navy); background: var(--primary-navy); color: white; box-shadow: 0 4px 10px rgba(26, 60, 135, 0.2); }

/* TOAST & UTILS */
#copyToast { visibility: hidden; min-width: 250px; background-color: #333; color: #fff; text-align: center; border-radius: 50px; padding: 16px; position: fixed; z-index: 10005; left: 50%; bottom: 30px; transform: translateX(-50%); font-size: 14px; } 
#copyToast.show { visibility: visible; -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s; animation: fadein 0.5s, fadeout 0.5s 2.5s; } 
@keyframes fadein { from {bottom: 0; opacity: 0;} to {bottom: 30px; opacity: 1;} } 
@keyframes fadeout { from {bottom: 30px; opacity: 1;} to {bottom: 0; opacity: 0;} }

/* TRANSLATE WIDGET */
.translate-fab { position: fixed; top: 50%; right: 20px; transform: translateY(-50%); z-index: 10001; width: 50px; height: 50px; background-color: var(--dark-navy); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: white; font-size: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); cursor: pointer; transition: 0.3s; } 
.gtranslate_wrapper { position: fixed; top: 50%; right: 80px; transform: translateY(-50%); background: white; padding: 10px; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.15); z-index: 10001; display: none; border: 1px solid #e2e8f0; min-width: 150px; } 
.gtranslate_wrapper.active { display: block; animation: fadeIn 0.3s; } 
iframe#\:1\.container, .VIpgJd-ZVi9od-ORHb-OEVmcd, .skiptranslate.goog-te-banner-frame, .goog-te-banner-frame { display: none !important; visibility: hidden !important; height: 0 !important; } 
body { top: 0px !important; margin-top: 0px !important; position: static !important; } 
.goog-te-menu-value { color: var(--text-main) !important; text-decoration: none !important; } 
.goog-te-gadget-icon { display: none !important; }

/* FOOTER */
footer { background: var(--dark-navy); color: white; padding: 30px 20px; text-align: center; } 
.footer-credit { font-size: 12px; color: #94A3B8; margin-top: 8px; font-family: var(--font-head); }