/* --- Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #000000;
    color: #E5E5E5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- Header & Navigation --- */
header {
    background-color: #000000;
    border-bottom: 1px solid #111111;
    padding: 15px 0;
}

.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Adjustable Big Logo Section */
.logo img {
    height: 110px; /* Pinalaki mula 65px para kitang-kita ang logo niyo */
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.02);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    color: #E5E5E5;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #00A3FF !important; /* Tiniyak nating tama ang cyan color match mo */
    text-decoration: underline #00A3FF ;
}

/* --- Main Layout Wrapper --- */
.main-container {
    width: 90%;
    max-width: 1000px;
    margin: 30px auto;
    flex: 1;
}

.page-title {
    color: #00A3FF;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    font-weight: bold;
}

/* --- Hero Banner Section --- */
.hero-section {
    width: 100%;
    margin-bottom: 40px;
}

.hero-banner {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* --- Company Overview Section --- */
.overview-section {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    margin-bottom: 45px;
    align-items: start;
}

/* --- HOVER AT POSITION FIX PARA SA SECTION TAG --- */
.section-tag {
    color: #00A3FF !important; /* Tiniyak nating tama ang cyan color match mo */
    
    /* Gagamit tayo ng relative positioning para ligtas na maiangat ang text */
    position: relative !important;
    top: -15px !important;         /* Hihilahin nito ang Company Overview pataas ng 15px */
    margin-bottom: -5px !important; /* Isasama paitaas ang WHO WE ARE para hindi maiwan ang space */
}

/* --- FIX COMPANY OVERVIEW SPACING --- */
/* --- INANGAT NA COMPANY OVERVIEW --- */
.company-overview {
    color: #00E5FF !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: -10px !important;    /* Ginawang negative para umangat pa lalo pataas */
    margin-bottom: 5px !important;   /* Tamang distansya lang papunta sa WHO WE ARE */
    display: block !important;
}

.who-we-are-title {
    font-size: 32px;
    font-weight: bold;
    color: #E5E5E5;
    margin-bottom: 20px !important; /* Binibigyan ng magandang clearance ang talata sa ilalim */
    line-height: 1.2;
}

.company-text {
    color: #E5E5E5;
    font-size: 12px;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 20px;
}

.stats-container {
    display: flex;
    gap: 40px;
    margin-bottom: 25px;
}

.stat-number {
    display: block;
    color: #00A3FF;
    font-size: 18px;
    font-weight: bold;
}

.stat-label {
    color: #E5E5E5;
    font-size: 12px;
}

.btn-shop {
    display: inline-block;
    background-color: #3f3f3f;
    color: #00A3FF;
    text-decoration: none;
    font-size: 12px;
    padding: 8px 18px;
    border-radius: 4px;
    border: 2px solid #00A3FF;
    transition: background 0.3s ease;
}

.btn-shop:hover {
border: 2px solid #00E5FF;
color: #00E5FF;
}

/* --- Featured Preview Card --- */
.featured-card {
    background-color: #3F3F3F;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.image-placeholder {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-name {
    color: #E5E5E5;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 500;
}

.product-desc {
    color: #E5E5E5;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.btn-view-product {
    display: inline-block;
    border: 2px solid #00A3FF;
    color: #00A3FF;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-view-product:hover {
    border: 2px solid #00E5FF;
    color: #00E5FF;
}

/* --- Video Placeholder Section --- */
.video-section {
    width: 100%;
    margin-bottom: 50px;
}

.video-box {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 400px;
    background-color: #00A3FF;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    background: #000000;
    border: -50px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease;
    border-radius: 50%;
}

.play-button:hover {
    transform: scale(1.1);
}

/* --- Footer --- */
/* ==========================================================================
   SIGURADONG FIX: BALIK COPYRIGHT TEXT, BURA LINYA, AT RIGHT ALIGN
   ========================================================================== */

/* 1. Tinatarget at tinatago LANG ang <hr> tag kung mayroon man sa HTML mo */
footer hr, 
.footer-container hr, 
.footer-content hr {
    display: none !important;
    height: 0 !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 2. Pinupwersang lumabas ang copyright box at tinatanggalan ng kahit anong border lines */
.copyright, 
.copyright p {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: right !important;
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    margin-top: 15px !important; /* Nagbibigay ng saktong agwat mula sa contact info */
    padding: 0 !important;
}

/* 3. Binabalik sa orihinal na block layout para nakapwesto sa kanan ang lahat */
.footer-content {
    display: block !important;
    text-align: right !important;
    border: none !important;
}

/* 4. Isinasandal ang contact rows sa kanang bahagi at inaayos ang space */
.contact-info {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    gap: 8px !important;
    border: none !important;
}

/* 5. Inaayos ang background image para compact ang taas at litaw ang stripes */
.footer-container {
    background-image: url('images/footer.jpg') !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    filter: brightness(1.3) !important;
    border: none !important;
}

/* 6. Nilalagyan ng mas maliit na padding para manipis lang ang taas ng footer mo */
.footer-overlay {
    background-color: rgba(10, 10, 10, 0.4) !important;
    padding: 15px 20px !important;
    border: none !important;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-text {
    color: #E5E5E5;
    font-size: 12px;
}

.icon-placeholder {
    color: #0099ff;
    font-size: 14px;
    width: 15px;
    text-align: center;
}

.copyright {
    width: 100%;
    border-top: 1px solid #00A3FF;
    padding-top: 15px;
    display: flex;
    justify-content: flex-end;
}

.copyright p {
    color: #00A3FF;
    font-size: 11px;
}

/* --- Additional UI Elements & Utilities --- */
.highlight-blue {
    color: #00A3FF;
}

/* --- About Page Extended Styles --- */
.about-section, .mission-vision-section, .store-info-section {
    margin-bottom: 40px;
}

.about-heading {

    padding-bottom: 8px;
    margin-bottom: 20px;
    font-size: 16px;
    text-align: center;
    color: #E5E5E5;
    font-weight: 400;
}

.about-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    align-items: start;
}

.about-image-placeholder {
    background-color: #3F3F3F;
    aspect-ratio: 1/1;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-text-box p {
    color: #e5e5e5;
    font-size: 14px;
    line-height: 1.8;
    text-align: justify;
    letter-spacing: 0.5px;
}

.mv-block {
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #e5e5e5;
}

.mv-block h4 {
    color: #e5e5e5;
    font-size: 14px;
    margin-bottom: 5px;
}

.mv-block p {
    color: #e5e5e5;
    font-size: 12px;
    line-height: 1.6;
}

.store-hours {
    color: #e5e5e5;
    font-size: 12px;
}

/* --- Products Page Extended Styles --- */
.products-main-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 25px;
}

.category-tabs {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 45px;
}

.tab-btn {
    flex: 1;
    background-color: #3F3F3F;
    border: 2px solid #00A3FF;
    color: #00A3FF;
    padding: 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    text-align: center;
}



.deals-title, .related-title {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.deal-card {
    background-color: #3f3f3f;
    border-radius: 15px;
    display: grid;
    grid-template-columns: 350px 1fr;
    overflow: hidden;
    margin-bottom: 45px;
}

.deal-image-area {
    background-color: #3f3f3f;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.deal-details-area {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 3px solid #00A3FF;
    letter-spacing: 0.5px;
    font-size: 20px;
}

.deal-header h5 {
    font-size: 16px;
    margin-bottom: 8px;
}

.prices {
    display: flex;
    flex-direction: column;
    gap: 2px;
    letter-spacing: 0.5px;
    font-size: 12px;
}

.price-regular {
    color: #E5E5E5;
    font-size: 11px;
}

.price-special {
    color: #e5e5e5;
    font-size: 11px;
}

.deal-desc {
    color: #e5e5e5;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.deal-action {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-icon-btn {
    font-size: 18px;
    cursor: pointer;
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-product-card {
    background-color: #3f3f3f;
    border-radius: 15px;
    padding: 20px;
}

.grid-img-holder {
    background-color: #3f3f3f;
    width: 100%;
    aspect-ratio: 1.2 / 1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.prod-series {
    color: #E5E5E5;
    font-size: 16px;
    display: block;
    margin-bottom: 4px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.prod-title {
    font-size: 12px;
    color: #e5e5e5;
    margin-bottom: 10px;
    font-weight: 500;
}

.grid-prices {
    display: flex;
    flex-direction: column;
    gap: 2px;
    letter-spacing: 0.5px;
}

.grid-prices .reg {
    color: #00A3FF;
    font-size: 12px;
}

.grid-prices .spec {
    color: #00A3FF;
    font-size: 12px;
}

/* --- Cart Page Extended Styles --- */
.cart-main-title {
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
}

.cart-header-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background-color: #00A3FF;
    color: #e5e5e5;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 2px;
    text-align: center;
}

.cart-header-grid div:first-child {
    text-align: left;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.cart-row-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background-color: #3f3f3f;
    padding: 15px 20px;
    align-items: center;
    text-align: center;
    border-radius: 8px;
    border-bottom: 2px solid #00A3FF;
}

.cart-prod-info {
    display: flex;
    gap: 15px;
    align-items: center;
    text-align: left;
}

.cart-img-box {
    background-color: #3f3f3f;
    width: 60px;
    height: 60px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-item-name {
    font-size: 12px;
    font-weight: 600;
}

.cart-item-type {
    font-size: 12px;
    color: #e5e5e5;
    display: block;
}

.cart-item-type.color-blue {
    color: #00A3FF;
}

.cart-item-desc {
    color: #e5e5e5;
    font-size: 9px;
    margin-top: 2px;
}

.cart-price, .cart-total {
    font-size: 12px;
    color: #e5e5e5;
}

.cart-qty {
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn {
    background-color: #0099ff;
    border: none;
    color: #E5E5E5;
    width: 20px;
    height: 20px;
    font-weight: bold;
    cursor: pointer;
}

.qty-val {
    background-color: #000000;
    padding: 2px 12px;
    font-size: 12px;
    min-width: 30px;
    display: inline-block;
}

/* --- Auth (Login/Signup) Forms Layout --- */
.form-wrapper-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.auth-card-box {
    background-color: #3f3f3f;
    width: 100%;
    max-width: 380px;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.8);
}

.auth-title {
    text-align: center;
    font-size: 16px;
    color: #E5E5E5;
    margin-bottom: 25px;
    font-weight: 400;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    color: #E5E5E5;
    font-size: 12px;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    background-color: #e5e5e5;
    border: 2px solid #00A3FF;
    border-radius: 4px;
    padding: 10px 12px;
    color: #3f3f3f;
    font-size: 12px;
    outline: none;
}

.btn-auth-submit {
    width: 30%;
    margin: 10px auto 0 auto;
    display: block;
    background-color: #3F3F3F;
    border: 2px solid #00A3FF;
    color: #00A3FF;
    padding: 6px 0;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
}

.auth-redirect {
    text-align: center;
    font-size: 11px;
    color: #E5E5E5;
    margin-top: 20px;
}

.auth-redirect a {
    color: #00A3FF;
    text-decoration: none;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.checkbox-group label {
    color: #E5E5E5;
    font-size: 12px;
    cursor: pointer;
}

.terms-group {
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 15px;
}

.terms-link {
    color: #00A3FF;
    text-decoration: none;
}

/* --- Responsive Layout adjustments --- */
@media (max-width: 768px) {
    .overview-section { grid-template-columns: 1fr; gap: 30px; }
    .header-container { flex-direction: column; gap: 15px; }
    .footer-content { align-items: center; }
    .contact-info { align-items: center; }
    .copyright { justify-content: center; }
    .about-grid { grid-template-columns: 1fr; }
    .category-tabs { flex-direction: column; }
    .deal-card { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .cart-header-grid, .cart-row-item { grid-template-columns: 1fr; gap: 10px; }
    .cart-prod-info { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   EKSAKTONG HOVER EFFECTS (SA PINAKABABANG BAHAGI NG STYLE.CSS ILAGAY)
   ========================================================================== */

/* 1. Header Navigation Links Hover */
nav ul li a:hover {
    color: #00E5FF  !important; /* Nilagyan ng mas maliwanag na cyan para lutang */
    background-color: rgba(0, 210, 255, 0.1) !important;
}

/* 2. Login & Register Buttons Hover */
.btn-auth-submit:hover {
    color: #00e5ff !important;
    border: 2px solid #00e5ff !important;
    transform: translateY(-2px) !important;
}

/* 3. Input Fields Hover at Focus Border Glow */
.form-group input:focus {
    border-color: #00E5FF  !important;
    box-shadow: 0 0 8px rgba(0, 210, 255, 0.4) !important;
}

/* 4. Product Cards at Deals Item Hover (Kung meron man sa ibang page) */
.grid-product-card:hover, .deal-card:hover {
    border-color: #00E5FF  !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 20px rgba(0, 179, 255, 0.2) !important;
}

/* 5. Product Category Tabs Hover */
.tab-btn:hover {
    color: #00e5ff !important;
    border: 2px solid #00e5ff !important;
    transform: translateY(-2px) !important;
}



/* 7. Footer Contact Text Hover */
.contact-item:hover {
    color: #00E5FF  !important;
}

/* 8. Redirect Links Hover (Don't Have an Account? Register / Login) */
.auth-redirect a:hover, .terms-link:hover {
    color: #00e5ff !important;
    text-decoration: underline !important;
}

/* ==========================================================================
   PRODUCT PAGE LAYOUT & HOVER GLOW STYLES
   ========================================================================== */

/* Main Container spacing */
.products-main {
    padding: 40px 5%;
    background-color: #000000; /* Siguradong madilim ang background */
    color: #E5E5E5;
}

/* Series Section layout */
.product-series-section {
    margin-bottom: 60px;
}

/* Grid layout: Responsive cards (3 cards kada row sa desktop, kusa nag-aadjust sa mobile) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

/* Individual Product Card */
.grid-product-card {
    background-color: #000000; /* Bahagyang mas light sa true black para kita ang card box */
    border: 1px solid #000000;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

/* --- PRODUCT CARD HOVER EFFECT --- */
.grid-product-card:hover {
    border-color: #00E5FF  !important; /* Cyan glow border */
    transform: translateY(-5px) !important; /* Bahagyang umaangat kapag hinover */
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.15) !important; /* Swabeng neon halo effect */
}

/* Product Typography */
.grid-product-card h3 {
    font-size: 20px;
    color: #E5E5E5;
    margin-bottom: 15px;
    font-weight: 600;
}

.product-info .price {
    font-size: 15px;
    margin: 5px 0;
}

.regular-price {
    color: #e5e5e5;
}

.special-price {
    color: #00E5FF  !important; /* Cyan color para sa highlight prices */
    font-weight: bold;
}

/* Add to Cart Button Layout */
.btn-add-cart {
    background-color: transparent;
    color: #00A3FF ;
    border: 2px solid #00A3FF ;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease !important;
}

/* --- BUTTON HOVER EFFECT --- */
.btn-add-cart:hover {
    color: #00e5ff !important;
    border: 2px solid #00e5ff !important;
    transform: translateY(-2px) !important;
}

/* --- AUDIOWORLD 2.0 - SHOPPING CART STYLES --- */

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: #E5E5E5; /* Mas malambot na gray para sa dark text readability */
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}



.cart-summary {
    margin-top: 40px;
    padding: 24px;
    background: #3F3F3F ; /* Mismong matte dark gray na babagay sa premium audio look */
    border: 1px solid #3f3f3f; /* Bahagyang mas light na gray border para may lalim */
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.cart-summary-inner {
    display: flex;
    align-items: baseline; /* Pantay ang ilalim ng text kahit magkaiba ng laki */
    gap: 12px;
}

.cart-grand-label {
    color: #3f3f3f;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-grand-total {
    color: #E5E5E5 ;
    font-size: 26px;
    font-weight: 700;
    font-variant-numeric: tabular-nums; /* Pinipigilan ang paggalaw ng layout kapag nagbabago ang numero */
}

.btn-checkout {
    background: #3f3f3f ; /* Kinuha ang highlight-blue base sa branding mo sa products page */
    color: #00A3FF; /* Madilim na kulay para mataas ang contrast sa cyan button */
    border: 2px solid #00A3FF; /* Solid cyan border para sa premium feel */
    padding: 14px 36px;
    border-radius: 4px; /* Medyo matalas para sa premium look */
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    letter-spacing: 0.5px;
}

.btn-checkout:hover {
    color: #00e5ff !important;
    border: 2px solid #00e5ff !important;
    transform: translateY(-2px) !important;
}

.btn-checkout:active {
    transform: scale(0.98);
}

.btn-clear-cart {
    background: #3F3F3F;
    color: #00A3FF;
    border: 2px solid #00A3FF;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}

.btn-clear-cart:hover {
    color: #00e5ff !important;
    border: 2px solid #00e5ff !important;
    transform: translateY(-2px) !important;
}
        
/* ==========================================================================
   BURGER MENU - MOBILE NAV
   ========================================================================== */

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #00A3FF;
    border-radius: 2px;
    transition: all 0.3s ease;
    text-decoration: underline #00A3FF ;
}

/* Burger animation kapag open */
.burger-menu.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: #00A3FF !important;
}

.burger-menu.open span:nth-child(2) {
    opacity: 0;
}

.burger-menu.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: #00A3FF !important;
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .header-container {
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 280px;
        height: 100vh;
        background-color: #3F3F3F;
        border-left: 1px solid #00A3FF;
        z-index: 1000;
        transition: right 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    nav.open {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    nav ul li a {
        font-size: 16px;
        font-family: 'Montserrat', sans-serif;
        letter-spacing: 1px;
    }

    /* Overlay sa likod ng nav */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
        z-index: 999;
    }

    .nav-overlay.open {
        display: block;
    }
}

#read-more-btn {
    background: none;
    border: none;
    color: #e5e5e5;
    cursor: pointer;
    font-weight: bold;
    padding: 0;
    letter-spacing: 0.5px;
}