* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: #333; overflow-x: hidden; background: #fff; line-height: 1.6; }

/* Header */
.top-bar { background: #0a1628; padding: 20px 0; width: 100%; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.top-bar .container { width: 100% !important; max-width: 100% !important; padding: 0 40px !important; margin: 0 !important; }
.header-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; }

.brand-logo { text-decoration: none !important; display: flex !important; flex-direction: row !important; align-items: center !important; gap: 14px !important; transition: transform 0.3s ease; }
.brand-logo:hover { transform: translateY(-1px); }
.header-logo-img { height: 48px !important; width: auto !important; object-fit: contain; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5)); }
.logo-text-wrap { display: flex !important; flex-direction: column !important; }
.brand-logo .logo-title { font-family: 'Inter', sans-serif !important; font-size: 23px !important; font-weight: 700 !important; color: #ffffff !important; letter-spacing: 0.8px; line-height: 1.15; text-shadow: 0 1px 0 #cccccc, 0 2px 4px rgba(0, 0, 0, 0.35); }
.brand-logo .logo-subtitle { font-family: 'Inter', sans-serif !important; font-size: 11px !important; color: #ffffff !important; letter-spacing: 2.8px; text-transform: uppercase; font-weight: 700; margin-top: 3px; opacity: 0.95; text-shadow: 0 1px 2px rgba(0,0,0,0.8), 0 2px 6px rgba(0,0,0,0.5); }

.nav-links { display: flex; gap: 35px; list-style: none; }
.nav-links > li { position: relative; padding: 10px 0; }
.nav-links a { color: #fff; text-decoration: none; font-size: 15px; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: #e67e22; }

.dropdown-menu { position: absolute; top: 100%; left: 0; background: #0a1628; min-width: 240px; box-shadow: 0 12px 35px rgba(0,0,0,0.45); border-radius: 8px; padding: 8px 0; list-style: none; opacity: 0; visibility: hidden; transform: translateY(12px); transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); z-index: 200; border: 1px solid rgba(255,255,255,0.1); }
.nav-links li:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li { width: 100%; }
.dropdown-menu a { padding: 10px 20px; display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.85); white-space: nowrap; transition: all 0.2s; }
.dropdown-menu a:hover { background: rgba(230, 126, 34, 0.15); color: #e67e22; padding-left: 24px; }

.header-actions { display: flex; align-items: center; gap: 15px; }
.btn-catalog, .btn-shop { background: #e67e22; color: #fff; padding: 8px 18px; border-radius: 4px; text-decoration: none; font-size: 12px; font-weight: 600; display: flex; align-items: center; gap: 6px; transition: all 0.3s; }
.btn-catalog:hover, .btn-shop:hover { background: #d35400; transform: translateY(-1px); }
.search-icon { color: #fff; font-size: 16px; cursor: pointer; }

.container { width: 100%; padding: 0 40px; max-width: 1400px; margin-left: auto; margin-right: auto; }

/* Page Hero */
.page-hero { position: relative; height: 480px; width: 100%; background: linear-gradient(rgba(10,22,40,0.82), rgba(10,22,40,0.92)), url('../img/lifejacket/1.jpeg') center/cover no-repeat; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.page-hero-content h1 { font-family: 'Inter', sans-serif; font-size: 50px; color: #fff; font-weight: 700; line-height: 1.2; text-shadow: 2px 2px 8px rgba(0,0,0,0.5); }
.page-hero-content p { color: #e67e22; font-size: 15px; margin-top: 15px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; }
.breadcrumb { display: flex; align-items: center; gap: 12px; margin-top: 20px; color: rgba(255,255,255,0.6); font-size: 13px; justify-content: center; }
.breadcrumb a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: #e67e22; }

/* General Formatting */
.section-header { text-align: center; margin-bottom: 50px; }
.section-label { color: #e67e22; font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-family: 'Inter', sans-serif; font-size: 40px; color: #1a2744; font-weight: 700; margin-bottom: 15px; }
.section-subtitle { color: #555; font-size: 16px; max-width: 800px; margin: 0 auto; line-height: 1.7; }
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Gallery Section */
.gallery-section { padding: 90px 0; background: #f8f9fa; }
.gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.gallery-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.06); border: 1px solid #eee; transition: all 0.4s; }
.gallery-card:hover { transform: translateY(-8px); box-shadow: 0 16px 36px rgba(0,0,0,0.12); border-color: #e67e22; }
.gallery-card img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.5s; }
.gallery-card:hover img { transform: scale(1.06); }

/* Technical Specifications */
.specs-section { padding: 90px 0; background: #fff; }
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.spec-box { background: #f8f9fa; border-radius: 16px; padding: 35px; border: 1px solid #eef2f5; box-shadow: 0 5px 20px rgba(0,0,0,0.03); }
.spec-box h3 { font-size: 24px; color: #1a2744; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; font-weight: 700; }
.spec-box h3 i { color: #e67e22; }
.spec-list { list-style: none; }
.spec-list li { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid #eaedf1; font-size: 14px; color: #444; }
.spec-list li:last-child { border-bottom: none; }
.spec-list li i { color: #e67e22; margin-top: 4px; font-size: 15px; }
.spec-list li strong { color: #1a2744; min-width: 140px; font-weight: 600; }

/* Features Section */
.features-section { padding: 90px 0; background: #0a1628; color: #fff; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.feature-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 30px 20px; text-align: center; transition: all 0.3s; }
.feature-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.08); border-color: #e67e22; }
.feature-icon { width: 55px; height: 55px; background: #e67e22; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; margin: 0 auto 18px; }
.feature-card h4 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.feature-card p { font-size: 13.5px; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* Warnings Section */
.warnings-section { padding: 90px 0; background: #fdfbf7; }
.warnings-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.warning-card { background: #fff; border-left: 4px solid #e67e22; border-radius: 12px; padding: 22px 25px; box-shadow: 0 4px 15px rgba(0,0,0,0.04); display: flex; align-items: flex-start; gap: 16px; }
.warning-icon { font-size: 20px; color: #e67e22; margin-top: 2px; }
.warning-card p { font-size: 14.5px; color: #333; line-height: 1.6; margin: 0; font-weight: 500; }

/* Certificates Section */
.certs-section { padding: 80px 0; background: #fff; border-top: 1px solid #eee; }
.certs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.cert-card { background: #f8f9fa; border: 1px solid #e9ecef; border-radius: 16px; padding: 30px; text-align: center; transition: all 0.3s; }
.cert-card:hover { border-color: #e67e22; box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
.cert-icon { font-size: 36px; color: #e67e22; margin-bottom: 15px; }
.cert-card h4 { font-size: 16px; color: #1a2744; font-weight: 700; margin-bottom: 8px; }
.cert-card p { font-size: 14px; color: #e67e22; font-weight: 600; font-family: monospace; letter-spacing: 0.5px; margin: 0; }

/* CTA Section */
.cta-section { padding: 90px 0; background: linear-gradient(135deg, #1a2744 0%, #0f1b2e 100%); text-align: center; }
.cta-title { font-family: 'Inter', sans-serif; font-size: 40px; color: #fff; font-weight: 700; margin-bottom: 20px; }
.cta-text { color: rgba(255,255,255,0.7); font-size: 16px; max-width: 650px; margin: 0 auto 35px; line-height: 1.7; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; }
.btn-cta-primary { background: #e67e22; color: #fff; padding: 14px 35px; border-radius: 6px; text-decoration: none; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.btn-cta-primary:hover { background: #d35400; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(230,126,34,0.3); }
.btn-cta-secondary { background: transparent; color: #fff; padding: 14px 35px; border-radius: 6px; text-decoration: none; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; border: 2px solid rgba(255,255,255,0.3); transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.btn-cta-secondary:hover { border-color: #e67e22; color: #e67e22; }

/* Footer */
.footer { background: #0a1628 !important; padding: 70px 0 30px !important; color: rgba(255,255,255,0.7) !important; width: 100% !important; }
.footer .container { width: 100% !important; max-width: 1300px !important; margin-left: auto !important; margin-right: auto !important; padding-left: 40px !important; padding-right: 40px !important; }
.footer-grid { display: grid !important; grid-template-columns: 2fr 1fr 1fr 1fr !important; gap: 50px !important; margin-bottom: 50px !important; }
.footer-brand h3 { font-family: 'Inter', sans-serif !important; font-size: 24px !important; color: #E67E22 !important; font-weight: 700 !important; margin-bottom: 18px !important; }
.footer-brand p { font-size: 14px !important; line-height: 1.8 !important; margin-bottom: 22px !important; color: rgba(255,255,255,0.65) !important; }
.footer-social { display: flex !important; gap: 12px !important; }
.footer-social a { width: 40px !important; height: 40px !important; background: rgba(255,255,255,0.08) !important; border-radius: 50% !important; display: flex !important; align-items: center !important; justify-content: center !important; color: #fff !important; text-decoration: none !important; transition: all 0.3s ease !important; }
.footer-social a:hover { background: #e67e22 !important; transform: translateY(-3px) !important; }
.footer-links h4 { color: #E67E22 !important; font-size: 16px !important; font-weight: 600 !important; margin-bottom: 22px !important; }
.footer-links ul { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.footer-links li { margin-bottom: 12px !important; }
.footer-links a { color: rgba(255,255,255,0.65) !important; text-decoration: none !important; font-size: 14px !important; transition: color 0.3s ease !important; display: inline-flex !important; align-items: center !important; gap: 8px !important; }
.footer-links a:hover { color: #e67e22 !important; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1) !important; padding-top: 25px !important; text-align: center !important; font-size: 13.5px !important; color: rgba(255,255,255,0.5) !important; }

.scroll-top { position: fixed; bottom: 30px; right: 30px; width: 45px; height: 45px; background: #e67e22; color: #fff; border-radius: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 100; transition: all 0.3s; border: none; opacity: 0; visibility: hidden; }
.scroll-top.visible { opacity: 1; visibility: visible; }
.mobile-menu-btn { display: none !important; }

/* Mobile Menu */
.mobile-nav { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(10, 22, 40, 0.98); backdrop-filter: blur(15px); z-index: 1000; display: flex; flex-direction: column; opacity: 0; visibility: hidden; transition: all 0.35s ease; }
.mobile-nav.active { opacity: 1; visibility: visible; }
.mobile-nav-header { padding: 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.mobile-nav-close { background: none; border: none; color: #fff; font-size: 26px; cursor: pointer; }
.mobile-nav-body { padding: 25px 20px 40px; overflow-y: auto; display: flex; flex-direction: column; gap: 16px; }
.mobile-nav-body a { color: #fff; text-decoration: none; font-size: 17px; font-weight: 600; transition: color 0.3s; }
.mobile-nav-body a:hover { color: #e67e22; }
.mobile-sublinks { display: flex; flex-direction: column; gap: 10px; padding-left: 15px; margin-top: 8px; border-left: 2px solid rgba(230, 126, 34, 0.5); }
.mobile-sublinks a { font-size: 14px; color: rgba(255, 255, 255, 0.85); font-weight: 500; }
.mobile-nav-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); }

@media (max-width: 1200px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 968px) {
    .top-bar { padding: 14px 0; }
    .top-bar .container { padding: 0 20px !important; }
    .nav-links, .header-actions { display: none !important; }
    .mobile-menu-btn { display: flex !important; align-items: center; justify-content: center; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; padding: 6px; }
    .specs-grid, .warnings-grid, .certs-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 30px !important; }
    .page-hero-content h1 { font-size: 36px; }
}
@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr !important; }
}
