/* --- 1. GENERAL RESET & FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Montserrat', sans-serif; 
}
body { 
    background-color: #000; 
    color: #fff; 
    scroll-behavior: smooth; 
}
/* --- 2. BACKGROUND VIDEO --- */
.video-bg { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: -1; 
}
.video-bg video { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    filter: brightness(35%); 
}
/* --- 3. MODERN NAVBAR DESIGN --- */
.navbar { 
    position: fixed; 
    top: 0; 
    width: 100%; 
    background: rgba(0, 0, 0, 0.95); 
    backdrop-filter: blur(15px); 
    border-bottom: 1px solid rgba(212, 175, 55, 0.5); 
    z-index: 1000; 
    padding: 15px 0; 
}
.nav-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0 20px; 
}
.logo { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
}
/* --- 3. MODERN NAVBAR DESIGN --- */
.nav-logo-img { 
    width: 60px; /* Nilakihan natin para mas kitang-kita ang details */
    height: 60px; 
    border-radius: 50%; 
    border: none; /* Inalis ang lumang gold border para malinis tignan */
    object-fit: contain; /* Sinisiguro na hindi piki o banat ang logo */
    padding: 2px;
    background: rgba(255, 255, 255, 0.1); /* Konting liwanag sa likod ng logo */
    transition: 0.3s;
}
.nav-logo-img:hover {
    transform: rotate(5deg) scale(1.1); /* Konting effect pag tinutukan */
}
.logo-text h1 { 
    color: #D4AF37; 
    font-size: 1.4rem; 
    letter-spacing: 2px; 
    font-weight: 700;
}
.logo-text span {
    font-size: 0.65rem;
    color: #fff;
    letter-spacing: 1px;
}
.nav-menu { 
    display: flex; 
    list-style: none; 
    gap: 30px; 
}
.nav-menu a { 
    color: #fff; 
    text-decoration: none; 
    font-size: 0.95rem; 
    font-weight: bold; 
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.4s; 
}
.nav-menu a:hover { 
    color: #D4AF37; 
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}
/* --- 4. HERO SECTION --- */
.hero-v2 { 
    height: 100vh; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
}
.hero-content h2 { 
    font-size: 4.5rem; 
    color: #D4AF37; 
    letter-spacing: 8px; 
    margin-bottom: 15px; 
    text-shadow: 0 0 30px rgba(0,0,0,0.8);
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}
.cta-btn { 
    padding: 18px 50px; 
    background: #D4AF37; 
    color: #000; 
    text-decoration: none; 
    font-weight: bold; 
    border-radius: 5px; 
    text-transform: uppercase;
    transition: 0.4s; 
}
.cta-btn:hover {
    background: #fff;
    transform: scale(1.05);
}
/* --- 5. FILTER & SEARCH DROPDOWNS --- */
.filter-section { 
    padding: 50px 20px; 
    text-align: center; 
    background: rgba(0, 0, 0, 0.7); 
}
.search-box input { 
    width: 100%; 
    max-width: 450px; 
    padding: 15px; 
    background: transparent; 
    border: 1px solid #D4AF37; 
    color: #fff; 
    border-radius: 30px; 
    margin-bottom: 25px; 
    outline: none; 
    text-align: center; 
    font-size: 1rem;
}
.category-btns { 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    flex-wrap: wrap; 
}
.filter-dropdown {
    background: rgba(0,0,0,0.5); 
    border: 1px solid #D4AF37; 
    color: #D4AF37; 
    padding: 12px 25px;
    border-radius: 25px; 
    outline: none; 
    cursor: pointer; 
    font-weight: bold; 
    transition: 0.3s;
}
.filter-dropdown:hover {
    background: #D4AF37;
    color: #000;
}
/* --- 6. PRODUCT GRID & CARDS --- */
.product-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 35px; 
    padding: 60px 20px; 
}
.card { 
    background: rgba(255, 255, 255, 0.03); 
    backdrop-filter: blur(20px); 
    border: 1px solid rgba(212, 175, 55, 0.2); 
    border-radius: 12px; 
    overflow: hidden; 
    transition: 0.5s; 
    position: relative; 
}
.card:hover { 
    transform: translateY(-12px); 
    border-color: #D4AF37; 
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}
/* --- 7. IMAGE HOVER SWAP LOGIC --- */
.card-img { 
    position: relative; 
    width: 100%; 
    height: 320px; 
    overflow: hidden; 
}
.card-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
    padding: 25px; 
    transition: opacity 0.6s ease; 
}
.img-hover { 
    position: absolute; 
    top: 0; 
    left: 0; 
    opacity: 0; 
}
.card:hover .img-main { opacity: 0; }
.card:hover .img-hover { opacity: 1; }
/* --- 8. CARD INFO & VIEW DETAILS BUTTON --- */
.card-info { padding: 30px; text-align: center; }

.model { font-size: 0.85rem; color: #aaa; margin-top: 5px; margin-bottom: 15px; }
.price { 
    display: block; 
    font-size: 1.5rem; 
    font-weight: bold; 
    color: #D4AF37;
    margin-bottom: 25px; 
}
.view-btn { 
    display: block; 
    background: transparent; 
    color: #D4AF37; 
    border: 1px solid #D4AF37; 
    padding: 12px; 
    text-decoration: none; 
    font-weight: bold; 
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: 0.4s; 
}
.view-btn:hover { 
    background: #D4AF37; 
    color: #000; 
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}
/* --- 9. PAGINATION (GOLD UNDERLINE) --- */
.pagination { 
    display: flex; 
    justify-content: center; 
    gap: 25px; 
    margin: 50px 0; 
}
.page-link { 
    cursor: pointer; 
    font-size: 1.3rem; 
    color: #777; 
    transition: 0.4s; 
    position: relative; 
    padding-bottom: 8px; 
}
.page-link.active { 
    color: #D4AF37; 
    font-weight: bold; 
}
.page-link.active::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    height: 3px; 
    background: #D4AF37; 
}
/* --- 10. VIBRATING BADGE ALERT --- */
.badge { 
    position: absolute; 
    top: 20px; 
    left: 20px; 
    background: #ff0000; 
    color: #fff; 
    padding: 6px 14px; 
    font-weight: bold; 
    font-size: 0.8rem; 
    border-radius: 4px; 
    z-index: 5; 
    animation: vibrate-blink 0.3s infinite; 
}
@keyframes vibrate-blink {
    0% { transform: translate(0); opacity: 1; }
    50% { transform: translate(1px, -1px); opacity: 0.8; }
    100% { transform: translate(0); opacity: 1; }
}
/* --- 11. PREMIUM FOOTER --- */
.main-footer { 
    background: rgba(0, 0, 0, 0.95); 
    border-top: 1px solid rgba(212, 175, 55, 0.3); 
    padding: 80px 20px 40px; 
    margin-top: 100px; 
}
.footer-content { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 50px; 
    text-align: center; 
}
.footer-section h4 { 
    color: #D4AF37; 
    margin-bottom: 25px; 
    text-transform: uppercase; 
    letter-spacing: 2px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 15px; }
.footer-links a { color: #fff; text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: #D4AF37; }
.footer-bottom { 
    text-align: center; 
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
    padding-top: 30px; 
    margin-top: 50px; 
    font-size: 0.85rem; 
    color: #666; 
}
/* --- 12. MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; padding: 12px; }
    .hero-content h2 { font-size: 2.5rem; letter-spacing: 4px; }
    .card-img { height: 220px; }
    .card-info { padding: 15px; }
    .price { font-size: 1.1rem; }
    .view-btn { font-size: 0.75rem; padding: 10px; }
}	
/* --- 13. ABOUT PAGE SPECIFIC STYLING --- */
.about-section {
    padding: 120px 20px 60px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.about-section h2 {
    color: #D4AF37;
    font-size: 2.5rem;
    margin-bottom: 30px;
    letter-spacing: 3px;
}
.about-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    line-height: 1.8;
    color: #ddd;
    font-size: 1.1rem;
}
.collective-badge {
    display: inline-block;
    margin-bottom: 20px;
    padding: 5px 15px;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
/* --- 14. SHIPPING PAGE SPECIFIC STYLING --- */
.shipping-container {
    padding: 120px 20px 60px;
    max-width: 900px;
    margin: 0 auto;
}
.shipping-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 40px;
}
.shipping-card h2 {
    color: #D4AF37;
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: 2px;
}
.shipping-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.shipping-item h3 {
    color: #D4AF37;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.shipping-item p {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
    padding-left: 30px;
}
.shop-more-btn {
    display: inline-block;
    margin-top: 20px;
    color: #D4AF37;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid #D4AF37;
    transition: 0.3s;
}
.shop-more-btn:hover {
    color: #fff;
    border-color: #fff;
}
