/* Index / Home specific styles */
:root {
    --surface: #ffffff;
    --surface-2: #f7f7f3;
    --border: rgba(34, 34, 34, 0.08);
    --text: #222222;
    --text-soft: #5f5f5f;
    --accent: #ff0000;
    --accent-2: #ff4747;
}

body.home-page {
    background: #fafafa;
    color: var(--text);
}

body.home-page .top-bar {
    display: none;
}

.hero-section {
    /* min-height: 100vh;
    padding-top: 110px; */
}

.hero-slider {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    background-color: #111;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    isolation: isolate;
    transition: background-image 0.6s ease;
}

.hero-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 8, 8, 0.86) 0%, rgba(8, 8, 8, 0.48) 46%, rgba(8, 8, 8, 0.18) 100%);
    z-index: -2;
}

.hero-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 152, 0, 0.2), transparent 35%);
    z-index: -1;
    pointer-events: none;
}

.hero-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.7fr);
    gap: 36px;
    align-items: center;
    padding: 80px 12px 60px;
}

.hero-copy {
    max-width: 700px;
}

.hero-eyebrow,
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 16px;
    font-weight: 700;
}

.hero-title {
    font-size: clamp(2.4rem, 4.8vw, 4.4rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.86);
    max-width: 620px;
    margin-bottom: 28px;
    line-height: 1.95;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 13px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--accent), #e06a00);
    color: #fff;
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero-metrics {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-metrics > div {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    min-width: 120px;
}

.hero-metrics strong {
    display: block;
    font-size: 1.1rem;
    color: #fff;
}

.hero-metrics span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.8rem;
}

.hero-panel {
    display: flex;
    justify-content: flex-end;
}

.hero-panel-card {
    width: min(100%, 360px);
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.panel-label {
    font-size: 0.74rem;
    color: var(--accent-2);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-panel-card h3 {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 12px;
}

.hero-panel-card ul {
    padding-right: 18px;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 14px;
}

.hero-panel-card li + li {
    margin-top: 7px;
}

.text-link {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-side-meta {
    position: absolute;
    left: 12px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.hero-progress-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.hero-slide-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.84);
    letter-spacing: 0.2em;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 38px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    transition: width 0.26s ease, background 0.26s ease;
}

.hero-dot.active {
    width: 58px;
    background: linear-gradient(90deg, var(--accent), #fff);
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    cursor: pointer;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: transform 0.25s ease, background 0.25s ease;
}

.hero-nav:hover {
    transform: translateY(-50%) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
}

.hero-nav-prev { left: 24px; }
.hero-nav-next { right: 24px; }

.scroll-indicator {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.scroll-arrow {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    animation: pulseDown 1.8s ease-in-out infinite;
}

.section {
    padding: 100px 0;
}

.section-surface {
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(250,250,250,0.96));
}

.section-alt {
    background: #fff;
}

.section-heading {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 42px;
}

.section-heading h2 {
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.45;
    color: #111;
    margin-bottom: 12px;
}

.section-heading p:last-child {
    color: var(--text-soft);
    line-height: 1.9;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 210px;
    padding: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    background: #111;
    box-shadow: 0 18px 45px rgba(17, 17, 17, 0.08);
}

.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.72) 100%);
    z-index: 1;
}

.category-card .category-icon {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.category-card .category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) brightness(0.92);
    transform: scale(1.04);
    transition: transform 0.4s ease;
}

.category-content {
    position: relative;
    z-index: 2;
    padding: 24px;
}

.category-card h3 {
    margin: 0;
}

.category-card .link-button {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.25s ease;
}

.category-card:hover .category-icon img {
    transform: scale(1.08);
}

.slider-container {
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding: 8px 2px 8px;
    scroll-behavior: smooth;
}

.slider-track::-webkit-scrollbar { height: 8px; }
.slider-track::-webkit-scrollbar-thumb { background: rgba(255, 152, 0, 0.45); border-radius: 999px; }

.product-card {
    flex: 0 0 min(92%, 300px);
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(17, 17, 17, 0.08);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(17, 17, 17, 0.12);
}

.product-image {
    height: 220px;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.12), rgba(255, 152, 0, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.product-card:hover .product-card-img {
    transform: scale(1.04);
}

.product-info {
    padding: 22px;
    text-align: center;
}

.product-info h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text);
}

.product-meta {
    color: var(--text-soft);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.price {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.product-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.16), rgba(255, 152, 0, 0.08));
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.feature-card {
    text-align: center;
    padding: 26px 22px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(17, 17, 17, 0.05);
}

.feature-card h3 {
    margin-top: 12px;
    font-size: 1.05rem;
    color: var(--text);
}

.feature-card p {
    color: var(--text-soft);
    line-height: 1.9;
    margin-top: 8px;
}

.brands-section {
    padding: 16px 0 0;
}

.brands-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 42px;
}

.brands-slider {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.brands-track {
    display: flex;
    gap: 18px;
    padding: 10px 2px 20px;
}

.brand-item {
    flex: 0 0 220px;
    padding: 22px 18px;
    background: #fff;
    border-radius: 22px;
    border: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(17, 17, 17, 0.05);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(17, 17, 17, 0.1);
}

.brand-submit-btn {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: none;
    border: 0;
    cursor: pointer;
    color: inherit;
}

.brand-item img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
}

.brand-placeholder {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    padding: 10px;
    background: rgba(255, 152, 0, 0.08);
    color: var(--accent);
    font-weight: 700;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(17,17,17,0.08);
    background: rgba(255,255,255,0.9);
    box-shadow: 0 10px 20px rgba(17,17,17,0.08);
    cursor: pointer;
    z-index: 3;
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.04);
}

.slider-btn-left { left: 0; }
.slider-btn-right { right: 0; }

.intro-video {
    padding: 30px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.08), rgba(255,255,255,0.9));
    border: 1px solid rgba(255, 152, 0, 0.16);
    box-shadow: 0 24px 50px rgba(17,17,17,0.06);
}

.intro-video-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    align-items: center;
}

.intro-video-text h3 {
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 12px;
}

.intro-video-text p {
    color: var(--text-soft);
    line-height: 1.95;
    margin-bottom: 0;
}

.intro-video-player {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(17,17,17,0.12);
}

.intro-video-player video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.video-sound-toggle {
    position: absolute;
    top: 12px;
    right: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.95);
    width: 40px;
    height: 40px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(17,17,17,0.12);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.gallery-item {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 35px rgba(17,17,17,0.08);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.article-card-link {
    text-decoration: none;
    color: inherit;
}

.article-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 16px 35px rgba(17,17,17,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 46px rgba(17,17,17,0.1);
}

.article-card-img-wrap {
    height: 190px;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.12), rgba(255,255,255,0.9));
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card-body {
    padding: 20px;
}

.article-card-body h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text);
}

.article-card-body p {
    color: var(--text-soft);
    line-height: 1.9;
    margin-bottom: 12px;
}

.article-card-more {
    color: var(--accent);
    font-weight: 700;
}

.article-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.article-cat-card {
    display: block;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 152, 0, 0.06);
    border: 1px solid rgba(255, 152, 0, 0.14);
    text-decoration: none;
    color: var(--text);
}

.article-cat-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.article-cat-card p {
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 0;
}

.no-decoration { text-decoration: none; color: inherit; }
.link-button {
    background: none;
    border: 0;
    padding: 0;
    color: inherit;
    cursor: pointer;
    font: inherit;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(6px);
    transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
      padding: 0px 35px;
}

.reveal-left { transform: translateX(-24px); }
.reveal-right { transform: translateX(24px); }
.reveal-left.is-visible, .reveal-right.is-visible {
    transform: translateX(0);
}

footer {
    margin-top: 0;
    background: linear-gradient(180deg, #101217 0%, #161a22 100%);
    color: #f8efe4;
    padding: 72px 0 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.15fr 0.8fr 0.8fr 1fr;
    gap: 28px;
    margin-bottom: 28px;
}

.footer-section h3 {
    font-size: 1rem;
    margin-bottom: 14px;
    color: #fff;
}

.footer-section p,
.footer-section a {
    color: rgba(248, 239, 228, 0.82);
    line-height: 1.9;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-section a:hover {
    color: #ffbf66;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    margin-bottom: 0;
}

.footer-trust-seal {
    display: flex;
    justify-content: center;
    padding: 10px 0 18px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.12);
    color: rgba(248, 239, 228, 0.7);
    font-size: 0.95rem;
}

.footer-bottom a {
    color: #ffbf66;
    text-decoration: none;
}

@keyframes pulseDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

@media (max-width: 991px) {
    .hero-shell { grid-template-columns: 1fr; padding-top: 110px; }
    .hero-panel { justify-content: flex-start; }
    .hero-side-meta { position: relative; left: auto; bottom: auto; flex-direction: row; justify-content: space-between; align-items: center; margin-top: 20px; }
    .hero-progress-wrap { align-items: flex-start; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero-slider { min-height: auto; height: auto; padding-bottom: 42px; }
    .hero-shell { padding: 46px 12px 28px; }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-side-meta { flex-direction: column; align-items: flex-start; }
    .hero-nav { display: none; }
    .section { padding: 78px 0; }
    .intro-video { padding: 20px; }
    .intro-video-grid { grid-template-columns: 1fr; }
    .slider-btn { width: 36px; height: 36px; }
    .footer-content { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 576px) {
    .hero-metrics { flex-direction: column; }
    .hero-metrics > div { width: 100%; }
    .category-grid { grid-template-columns: 1fr; }
    .product-card { flex-basis: 86%; }
    .brands-slider-wrapper { padding: 0 32px; }
    .hero-shell { padding: 34px 12px 22px; }
}