/* ============================================================
   ROOT THEME COLORS — AKG LUXURY
============================================================ */
:root {
    --gold: #d4af37;
    --gold-soft: #f7d97b;
    --gold-light: #fce9a0;
    --dark: #0c0c0c;
    --dark-soft: #161616;
    --white: #fff;
    --gray: #b5b5b5;
    --transition: all .28s ease;
    --radius: 18px;
}

/* ============================================================
   GLOBAL RESET
============================================================ */
body {
    background: var(--dark);
    font-family: "Poppins", sans-serif;
    color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

/* ============================================================
   PREMIUM SCROLLBAR
============================================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: #111;
}

/* ============================================================
   TOP GOLD LINE
============================================================ */
.akg-navbar-topline {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #b38b1b, var(--gold), var(--gold-light));
}

/* ============================================================
   NAVBAR
============================================================ */
.akg-navbar {
    background: rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    transition: var(--transition);
    padding: 1rem 0;
    min-height: 70px;
}

.akg-navbar.scrolled {
    background: rgba(0, 0, 0, 0.96);
    border-color: rgba(212, 175, 55, 0.45);
}

/* Logo */
.akg-logo {
    height: 60px;
}

.akg-brand-text {
    color: var(--gold-soft);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: .5px;
}

/* Navbar action buttons (coupon / deals) */
.coupon-fab,
.promo-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
}
.coupon-fab::before {
    content: '🎫';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    line-height: 1;
    color: #000 !important; /* solid dark so it shows on gold */
    font-family: "Segoe UI Emoji","Apple Color Emoji","Noto Color Emoji",sans-serif;
    pointer-events: none;
}
.promo-toggle::before {
    content: '⚡';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    line-height: 1;
    color: #000 !important; /* solid dark so it shows on gold */
    font-family: "Segoe UI Emoji","Apple Color Emoji","Noto Color Emoji",sans-serif;
    pointer-events: none;
}

/* Align nav items to the right on desktop (logical start for RTL/LTR) */
.akg-navbar .navbar-nav {
    margin-inline-start: auto;
    margin-left: auto;
    gap: 0rem;
}

/* iPad Air/Pro (tablet) – shift Deals button 150px from right */
@media (min-width: 769px) and (max-width: 1280px) {
    .promo-toggle {
        position: absolute !important;
        top: 10px !important;
        right: 150px !important;
        left: auto !important;
    /* This rule will be reinserted under mobile media query */
    /* html[lang="ar"] .akg-navbar .navbar-nav {
        flex-direction: column;
        align-items: flex-end;
        gap: 0.35rem;
    }
    html[lang="ar"] .akg-navbar .nav-item,
    html[lang="ar"] .akg-navbar .nav-link {
        width: 100%;
        text-align: right;
    } */
        gap: 8px;
    }
    .akg-brand-text {
        display: inline-block !important;
        color: var(--gold-soft);
        font-size: 1.1rem;
    }
/* Keep nav/dropdown on the right */
.akg-navbar .navbar-nav {
    margin-left: auto;
}
.akg-navbar .navbar-toggler {
    position: absolute;
    right: 12px;
    top: 10px;
    z-index: 1300;
}

/* iPad Pro / Nest Hub only: use dropdown on the right, hide inline nav */
@media (min-width: 1024px) and (max-width: 1366px) {
    .akg-navbar {
        position: relative;
    }
    .akg-navbar .navbar-nav {
        display: none;
    }
    .akg-navbar .navbar-collapse {
        position: absolute;
        top: 60px;
        right: 0;
        left: auto;
        width: 240px;
        background: rgba(0,0,0,0.92);
        padding: 12px 16px;
        border-radius: 0 0 0 14px;
        z-index: 1400;
        display: none;
    }
    .akg-navbar .navbar-collapse.show {
        display: block;
    }
    .akg-navbar .navbar-toggler {
        display: block;
        position: absolute;
        right: 12px;
        top: 12px;
        z-index: 1500;
    }
}
    /* Buttons on iPad: show نص فقط، أكبر قليلاً، بدون أيقونة */
    .coupon-fab,
    .promo-toggle {
        position: absolute !important;
        top: 18px !important;
        padding: 10px 18px !important;
        height: auto !important;
        width: auto !important;
        border-radius: 12px !important;
        font-size: 0.95rem !important;
        line-height: 1.1 !important;
        text-indent: 0 !important;
        color: inherit !important;
        box-shadow: none;
    }
    .coupon-fab { left: 12px !important; }
    .promo-toggle { right: 150px !important; left: auto !important; }
    .coupon-fab::before,
    .promo-toggle::before {
        content: none !important; /* remove icons on iPad */
    }
}

/* NAV LINKS */
.akg-navbar .nav-link {
    position: relative;
    color: #dcdcdc !important;
    font-weight: 500;
    padding: 0.55rem 0.7rem !important;
    font-size: 0.92rem;
    transition: var(--transition);
}

/* Tighter padding when using akg-nav-tight (non-AR UL) */
.akg-nav-tight .nav-link {
    padding: 0.5rem 0.62rem !important;
    font-size: 0.9rem;
}

/* Slightly tighter nav spacing for Portuguese to accommodate longer words */
html[lang="pt"] .akg-navbar .nav-link {
    padding: 0.5rem 0.62rem !important;
    font-size: 0.9rem;
}

/* Prevent Arabic nav labels from wrapping to two lines */
html[lang="ar"] .akg-navbar .nav-link {
    white-space: nowrap;
    text-align: right;
    font-size: 0.9rem;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Gold Underline Animation */
.akg-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #b38b1b, var(--gold), var(--gold-light));
    transform: translateX(-50%);
    border-radius: 999px;
    transition: width .25s ease;
}

.akg-navbar .nav-link:hover,
.akg-navbar .nav-link.active {
    color: var(--gold-soft) !important;
    text-shadow: 0 0 6px rgba(212, 175, 55, .5);
}

.akg-navbar .nav-link:hover::after,
.akg-navbar .nav-link.active::after {
    width: 65%;
}

/* Cart badge */
.bg-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: #000 !important;
}

/* Dropdown */
.akg-dropdown {
    background: #0b0b0b;
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.akg-dropdown a:hover {
    background: rgba(212, 175, 55, 0.15);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-gold {
    background: var(--gold);
    color: #000;
    border-radius: 25px;
    padding: 10px 26px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
}

.btn-gold:hover {
    background: var(--gold-soft);
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: 25px;
    padding: 9px 25px;
    font-weight: 600;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #000;
}

/* ============================================================
   HERO SECTION
============================================================ */
/* ============================================================
   HERO WITH VIDEO BACKGROUND — AKG LUXURY STYLE
============================================================ */

.akg-hero {
    min-height: 90vh;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.7);
}

/* VIDEO FULL SIZE */
.akg-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000; 
    z-index: 1;
}

/* DARK GOLD OVERLAY */
.akg-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.5), transparent);
    z-index: 2;
}


/* CONTENT ALWAYS ABOVE */
.akg-hero .container {
    position: relative;
    z-index: 3;
}

/* TITLE */
.akg-hero-title {
    font-size: 3.6rem;
    font-weight: 800;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212,175,55,0.4);
}

/* SUBTITLE */
.akg-hero-subtitle {
    font-size: 1.1rem;
    color: #e6e6e6;
    max-width: 520px;
    line-height: 1.6;
}

/* Hero buttons: shrink to ~20% of original size */
.akg-hero .btn,
.akg-hero .btn-gold,
.akg-hero .btn-outline-gold {
    padding: 3px 8px;
    font-size: 0.65rem;
    border-radius: 6px;
    min-width: 0;
    min-height: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.akg-hero-buttons-bottom {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 18px;
}

/* TRUST BAR */
.akg-trust-bar {
    background: #0f0f0f;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 14px 24px;
    border-radius: 16px;
}


.akg-trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    padding: 10px;
}

.akg-trust-number {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: .5px;
}

.akg-trust-label {
    color: #cfcfcf;
    font-size: 0.9rem;
}



/* ============================================================
   SECTION HEADERS
============================================================ */
.akg-section-head {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    margin-bottom: 20px;
}

/* ============================================================
   UNIVERSAL CARD STYLE
============================================================ */
.akg-card,
.service-item,
.product-card,
.team-item,
.akg-testimonial-card,
.akg-project-card {
    background: var(--dark-soft);
    border-radius: var(--radius);
    padding: 25px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    /* Remove forced height for better compatibility */
    min-height: 120px;
}

.akg-card:hover,
.service-item:hover,
.product-card:hover,
.team-item:hover,
.akg-project-card:hover,
.akg-testimonial-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .7);
}

/* ============================================================
   SERVICE ICONS
============================================================ */
.akg-card-icon {
    font-size: 2.7rem;
    color: var(--gold);
    margin-bottom: 15px;
}
.lightbox-thumb {
    border: 1px solid rgba(212,175,55,0.25);
    transition: .3s;
}

.lightbox-thumb:hover {
    transform: scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212,175,55,0.25);
}


/* ============================================================
   PROJECT CARDS
============================================================ */
.akg-project-img {
    height: 230px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

/* ===============================
   FIXED CENTERED LIGHTBOX OVERLAY
=============================== */
#lightboxOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    /* CENTER vertically */
    justify-content: center;
    /* CENTER horizontally */
    z-index: 5000 !important;
    /* Always on top */
    padding: 30px;
    overflow: auto;
    /* Allow scroll if image too big */
}

/* LIGHTBOX CONTENT */
#lightboxOverlay .lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

#lightboxImage {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.22);
}

/* Close / Next / Prev buttons */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #FFD700;
    font-size: 3rem;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    padding: 10px 20px;
    transition: 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #ffffff;
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

.lightbox-close {
    position: absolute;
    top: -25px;
    right: -10px;
    color: #FFD700;
    font-size: 2.6rem;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}


/* ============================================================
   PRODUCT CARDS
============================================================ */
.product-card img {
    height: 220px;
    border-radius: var(--radius);
}

.akg-price-tag {
    background: var(--gold);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: bold;
    margin-top: 6px;
}

/* ============================================================
   PRODUCTS TABS (NO BLUE!)
============================================================ */
.nav-pills .nav-link {
    border-radius: 999px !important;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #dcdcdc !important;
    margin: 0 6px;
}

.nav-pills .nav-link:hover {
    border-color: var(--gold);
    color: var(--gold) !important;
}

.nav-pills .nav-link.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: #000 !important;
    border-color: transparent;
}

/* =============================
   LUXURY PRODUCT SECTION
============================= */

/* Section Label */
.akg-section-label {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

/* Tabs */
.akg-tabs .nav-link {
    color: #b3b3b3;
    margin: 0 10px;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 500;
    border: 1px solid transparent;
    transition: var(--transition);
}

.akg-tabs .nav-link.active,
.akg-tabs .nav-link:hover {
    color: #000;
    background: linear-gradient(135deg, #d4af37, #ffe08c);
    border-color: #d4af37;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

/* PRODUCT CARD */
.akg-product-card {
    background: var(--dark-soft);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 18px;
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
}

.akg-product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
    border-color: var(--gold);
}

/* IMAGE BOX */
.akg-product-img-box {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.akg-product-img {
    height: 230px;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform .4s ease;
}

.akg-product-card:hover .akg-product-img {
    transform: scale(1.08);
}

.akg-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: #000;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
    z-index: 2;
}

/* OVERLAY ON HOVER */
.akg-product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s ease;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.akg-product-card:hover .akg-product-overlay {
    opacity: 1;
}

/* BUTTON INSIDE OVERLAY */
.btn-gold-small {
    padding: 8px 18px;
    background: var(--gold);
    color: #000;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-gold-small:hover {
    background: var(--gold-soft);
}

/* INFO */
.akg-product-info {
    margin-top: 15px;
}

.akg-product-title {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 600;
}

.akg-product-desc {
    color: #aaa;
    font-size: 0.85rem;
    margin: 5px 0;
}

.akg-product-price {
    display: inline-block;
    padding: 5px 14px;
    background: var(--gold);
    color: #000;
    font-weight: 700;
    border-radius: 20px;
    margin-top: 5px;
}

/* ============================================================
   TEAM
============================================================ */
/* =============================
      TEAM SECTION (LUXURY)
============================= */

.akg-team-card {
    background: #131313;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 18px;
    padding: 25px;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

.akg-team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
    border-color: var(--gold);
}

/* IMAGE BOX */
.akg-team-img-box {
    width: 130px;
    height: 130px;
    margin: auto;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #d4af37, #f7d97b, #d4af37);
    display: flex;
    align-items: center;
    justify-content: center;
}

.akg-team-card:hover .akg-team-img-box {
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}

.akg-team-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* INFO */
.akg-team-name {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 600;
}

.akg-team-job {
    color: #ccc;
    font-size: 0.85rem;
    letter-spacing: .3px;
}

/* LABEL ABOVE TITLE */
.akg-section-label {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: .9rem;
    text-transform: uppercase;
}


/* ============================================================
   TESTIMONIALS
============================================================ */
/* =============================
   TESTIMONIALS (Luxury Gold)
============================= */
.akg-testimonial-card {
    background: rgba(15, 15, 15, 0.9);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.08);
    transition: all .35s ease;
}

.akg-testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.15);
}

.akg-testimonial-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.akg-testimonial-stars {
    color: var(--gold);
    letter-spacing: 1px;
}

.akg-testimonial-text {
    font-size: 1rem;
    color: #dcdcdc;
    font-style: italic;
}

.akg-client-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}


/* ============================================================
   CONTACT FORM
============================================================ */
.akg-input {
    background: #111;
    border: 1px solid #333;
    border-radius: var(--radius);
    color: var(--white);
    padding: 12px 16px;
}

.akg-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.25);
    outline: none;
}

.akg-quick-contact {
    background: #0f0f0f;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 10px 16px;
    border-radius: 12px;
    color: #e8e8e8;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ============================================================
   FOOTER
============================================================ */
.akg-footer {
    background: #080808;
    padding: 40px 0;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.akg-footer-menu a {
    color: var(--gray);
    margin: 0 5px;
}

.akg-footer-menu a:hover {
    color: var(--gold);
}

/* ============================================================
   About
============================================================ */
/* =============================================
   ABOUT SECTION – LUXURY BLACK & GOLD
============================================= */
.about-lux-img {
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .45);
    transition: all .35s ease;
}

/* Hover effect */
.about-lux-img:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, .75);
    border-color: var(--gold);
}

/* Sizes based on old layout */
.img-large {
    height: 260px;
}

.img-medium {
    height: 210px;
}

/* Fix alignment spacing */
.about-lux-grid .col-6:nth-child(2) img {
    margin-top: 35px;
}

.about-lux-grid .col-6:nth-child(3) img {
    margin-bottom: 35px;
}

/* ==============================
   EXPERIENCE BOXES – luxury style
============================== */
.experience-box {
    display: flex;
    align-items: center;
    background: var(--dark-soft);
    border-left: 4px solid var(--gold);
    padding: 18px 22px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .45);
    transition: all .35s ease;
}

.experience-box:hover {
    transform: translateY(-6px);
    border-color: var(--gold-soft);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .7);
}

.experience-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--gold);
    margin: 0;
    line-height: 1;
}

.g-recaptcha {
    transform: scale(0.92);
    transform-origin: center;
}

/* WHY US LIST */
.akg-why-box {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.akg-why-item {
    display: flex;
    align-items: center;
    color: #dcdcdc;
    font-size: 0.95rem;
}
/* ============================================================
   HERO IMAGE WITHout OVERLAY for all pages
============================================================ */

.akg-hero-img-box {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 60vh; /* Adjust hero height */
    overflow: hidden;
}

.akg-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.akg-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55); /* gold black tint */
    z-index: 2;
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
    padding-top: 20px;
}

/* ============================
   SERVICES – EXPANDABLE CARDS
============================ */
.akg-service-card {
    cursor: default;
    position: relative;
}

.akg-service-toggle {
    font-size: 0.85rem;
}

.akg-service-toggle .fa {
    transition: transform 0.25s ease;
}

/* تدوير السهم عند الفتح (Bootstrap يضيف .show على العنصر المنهار) */
.akg-service-details.show + .akg-service-toggle .fa,
.akg-service-toggle[aria-expanded="true"] .fa {
    transform: rotate(180deg);
}

/* محتوى التفاصيل */
.akg-service-details {
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    padding-top: 10px;
}

/* نص العنوان والآيكون يبدوان أثقل قليلاً */
.akg-service-card h4 {
    font-size: 1.15rem;
    letter-spacing: .3px;
}
/* Fade + Slide for Hero Title */
.akg-hero-title {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 1.2s ease forwards;
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade for Breadcrumb */
.hero-content ol {
    opacity: 0;
    animation: fadeIn 1.6s ease forwards;
    animation-delay: 0.3s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}



.akg-newcard{
    background: #0f0f0f;
    border-radius: var(--radius);
    padding: 25px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    /* Remove forced height for better compatibility */
    min-height: 120px;
}

.akg-newcard:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .7);
}

/* ============================================================
   MOBILE / TABLET TWEAKS (kept from recent changes)
   - Keep desktop as original
   - Simplify navbar text on small screens
   - Shrink hero text/buttons and hide subtitle on small screens
============================================================ */
@media (max-width: 992px) {
    /* Hide brand text on tablets/phones, keep logo smaller */
    .akg-brand-text { display: none; }
    .akg-logo { height: 40px; }

    /* Hero text adjustments for tablets */
    .akg-hero-title { font-size: 2.2rem; }
    .akg-hero-subtitle { display: none; }

    /* Keep hero buttons tiny on tablet */
    .akg-hero .btn,
    .akg-hero .btn-gold,
    .akg-hero .btn-outline-gold {
        padding: 3px 8px;
        font-size: 0.65rem;
    }
}

@media (max-width: 768px) {
    /* Phones: further reduce hero title & buttons */
    .akg-hero-title { font-size: 1.8rem; }
    .akg-hero .btn,
    .akg-hero .btn-gold,
    .akg-hero .btn-outline-gold {
        padding: 3px 8px;
        font-size: 0.65rem;
    }

    /* Navbar on phones: logo centered (icon only), coupons & deals small on left */
    .akg-navbar { position: relative; }
    .akg-navbar .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
    }
    .akg-navbar .navbar-toggler {
        position: absolute;
        top: 10px;
        right: 12px;
        z-index: 1300;
    }
    .akg-navbar .navbar-toggler {
        top: 10px;
        right: 12px;
    }
    .akg-brand-text { display: none; }
    .akg-logo { height: 38px; }

    .coupon-fab,
    .promo-toggle {
        position: absolute !important;
        top: 10px;
        width: 38px;
        height: 38px;
        padding: 8px;
        font-size: 0 !important; /* hide text label */
        line-height: 0 !important;
        text-indent: -9999px; /* hide text label */
        border-radius: 12px;
        box-shadow: 0 8px 18px rgba(0,0,0,0.25);
    }
    .coupon-fab { left: 12px; right: auto; }
    .promo-toggle { left: 56px; right: auto; }
    .promo-toggle::before {
        content: '⚡';
        font-size: 15px;
        line-height: 1;
        text-indent: 0;
        color: #000;
    }
    .coupon-fab::before {
        content: '⚡';
        font-size: 15px;
        line-height: 1;
        text-indent: 0;
        color: #000;
    }

    /* Keep deals/coupon buttons same position on small screens for all locales */
    html[lang="ar"] .coupon-fab,
    html[lang="ar"] .promo-toggle,
    html[lang="pt"] .coupon-fab,
    html[lang="pt"] .promo-toggle {
        left: auto;
    }
    html[lang="ar"] .coupon-fab,
    html[lang="pt"] .coupon-fab {
        left: 12px;
        right: auto;
    }
    html[lang="ar"] .promo-toggle,
    html[lang="pt"] .promo-toggle {
        left: 56px;
        right: auto;
    }

    /* Collapse menu pinned to the right under the toggler */
    .akg-navbar .navbar-collapse {
        position: absolute;
        top: 58px;
        right: 0;
        left: auto;
        width: 220px;
        background: rgba(0,0,0,0.92);
        padding: 10px 16px;
        border-radius: 0 0 0 14px;
        z-index: 1200;
    }
    .akg-navbar .navbar-nav { margin-left: 0; }

    /* Arabic mobile: stack items vertically in the burger menu */
    html[lang="ar"] .akg-navbar .navbar-nav.akg-nav-rtl {
        flex-direction: column !important;
        align-items: flex-end;
        gap: 0.35rem;
    }
    html[lang="ar"] .akg-navbar .navbar-nav.akg-nav-rtl .nav-item,
    html[lang="ar"] .akg-navbar .navbar-nav.akg-nav-rtl .nav-link {
        width: 100%;
        text-align: right;
    }
}

/* RTL tweaks: keep collapse on the right and align nav to end */
html[dir="rtl"] .akg-navbar .navbar-collapse {
    right: 0;
    left: auto;
}
html[dir="rtl"] .akg-navbar .navbar-nav.akg-nav-rtl {
    flex-direction: row-reverse;
    text-align: right;
    justify-content: flex-end;
    align-items: center;
    gap: 0.4rem;
}
html[dir="rtl"] .akg-navbar .navbar-nav.akg-nav-rtl .nav-item {
    text-align: right;
}

/* Laptop/tablet widths: tighten nav spacing to prevent wrapping */
@media (max-width: 1200px) {
    .akg-navbar .nav-link { padding: 0.48rem 0.6rem !important; }
    .akg-nav-tight .nav-link { padding: 0.45rem 0.55rem !important; }
    html[lang="pt"] .akg-navbar .nav-link { padding: 0.44rem 0.54rem !important; }
    .akg-navbar .navbar-nav { gap: 0.25rem; }
    html[dir="rtl"] .akg-navbar .navbar-nav.akg-nav-rtl { gap: 0.3rem; }
}

/* Slightly tighten nav link padding on tablets/phones to avoid wrapping in longer locales */
@media (max-width: 992px) {
    .akg-navbar .nav-link { padding: 0.5rem 0.65rem !important; }
    html[lang="pt"] .akg-navbar .nav-link { padding: 0.45rem 0.6rem !important; }
}

/* Ensure hero text aligns from the logical start in all languages */
.akg-hero-content {
    text-align: start;
}

/* Desktop/Laptop: remove icons from coupon/deals buttons */
@media (min-width: 769px) {
    .coupon-fab::before,
    .promo-toggle::before {
        content: none !important;
    }
    .akg-hero-ma {margin-top: 95px;}
}
/* Smaller badge for product page */
.badge-sm {
    font-size: 0.5em;
    padding: 0.15em 0.35em;
    line-height: 1;
    border-radius: 0.3rem;
}

