@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Poppins:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined');
@import url('products.css');

:root {
    --primary: #FF6E37;
    --primary-dark: #D64E19;
    --secondary: #FFE06E;
    --accent: #FA2386;
    --dark: #121212;
    --light: #F8F9FA;
    --white: #ffffff;
    --gray: #666;
    --border: #e0e0e0;
    --shadow: 0 8px 25px rgba(0,0,0,0.06);
    --radius: 12px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: var(--light);
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    padding-top: 80px;
}

@media (max-width: 1024px) {
    body {
        padding-bottom: 80px;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
}

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

ul {
    list-style: none;
}

.material-symbols-outlined {
    vertical-align: middle;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4%;
    z-index: 1001;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.logo-glow {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.nav-center {
    display: flex;
    gap: 25px;
}

.nav-link {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--dark);
}

.nav-link span {
    color: var(--primary);
    font-size: 1.3rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-btn-head {
    position: relative;
    font-size: 1.8rem;
    color: var(--dark);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff0e6;
    border-radius: 50%;
}

.cart-btn-head:hover {
    background: var(--primary);
    color: #fff;
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid #fff;
}

.btn-cta {
    background: var(--primary);
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(255, 110, 55, 0.25);
}

.btn-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.mobile-header-controls {
    display: none;
    align-items: center;
    gap: 15px;
}

.mobile-live-cart {
    position: relative;
    font-size: 1.6rem;
    color: var(--dark);
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 2000;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-header {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    background: #fcfcfc;
}

.mobile-links {
    padding: 10px 0;
    overflow-y: auto;
    flex: 1;
}

.mobile-links a {
    padding: 18px 25px;
    font-weight: 600;
    border-bottom: 1px solid #f9f9f9;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #333;
    transition: 0.2s;
}

.mobile-links a:hover,
.mobile-links a.active {
    color: var(--primary);
    background: #fff5f0;
    padding-left: 30px;
}

.mobile-links a span {
    color: var(--secondary);
    font-size: 1.4rem;
}

.sidebar-footer {
    padding: 25px;
    background: #f8f8f8;
    border-top: 1px solid #eee;
}

.sb-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #555;
    font-size: 0.9rem;
}

.sb-contact-item span {
    color: var(--primary);
    font-size: 1.2rem;
}

.sb-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.sb-soc-btn {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: 0.3s;
}

.sb-soc-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1990;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    backdrop-filter: blur(2px);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background: #fff;
    z-index: 1950;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    align-items: center;
    justify-content: space-around;
    padding: 0 10px;
}

.mb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #999;
    font-size: 0.75rem;
    font-weight: 600;
    flex: 1;
}

.mb-item span.material-symbols-outlined {
    font-size: 1.6rem;
    transition: 0.3s;
}

.mb-item.active,
.mb-item:hover {
    color: var(--primary);
}

.mb-item.active span {
    transform: translateY(-3px);
}

.mb-center-cart {
    position: relative;
    top: -30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 110, 55, 0.4);
    color: #fff;
    border: 5px solid #fff;
    cursor: pointer;
    transition: 0.3s;
}

.mb-center-cart:active {
    transform: scale(0.95);
}

.mb-center-cart span.material-symbols-outlined {
    font-size: 1.8rem;
}

.mb-cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    color: var(--primary);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent);
}

.hero-blobs {
    position: relative;
    background: linear-gradient(120deg, #fff 0%, #FFF3E0 100%);
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-bottom: 40px;
}

.blob-bg {
    position: absolute;
    top: -150px;
    right: -100px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 198, 62, 0.4) 0%, rgba(255, 110, 55, 0.05) 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.hero-content-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-l {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    background: var(--accent);
    color: #fff;
    padding: 6px 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(250, 35, 134, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-l h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 4.2rem;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.05;
    text-transform: uppercase;
}

.hero-l .highlight-main {
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.hero-l .highlight-main::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 0, 0.3);
    z-index: -1;
    transform: skewX(-10deg);
}

.hero-desc {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-soft {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-soft:hover {
    background: var(--primary);
    color: #fff;
}

.hero-img-stack {
    position: relative;
    width: 550px;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-blob-1 {
    position: absolute;
    width: 480px;
    height: 480px;
    background: #FFC63E;
    border-radius: 50%;
    opacity: 0.25;
    z-index: 1;
    animation: pulseBlob 4s infinite alternate;
}

.hero-main-img {
    position: relative;
    z-index: 2;
    width: 115%;
    max-width: 650px;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.2));
    transform: rotate(-8deg);
    transition: 0.5s;
}

.hero-main-img:hover {
    transform: rotate(0) scale(1.03);
}

.img-badge {
    position: absolute;
    bottom: 80px;
    left: -20px;
    background: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--dark);
    animation: floatBadge 3s ease-in-out infinite;
}

.img-badge span {
    color: var(--primary);
    font-size: 1.5rem;
}

@keyframes pulseBlob {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes floatBadge {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.features-strip {
    background: var(--dark);
    color: #fff;
    padding: 30px 0;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.feat-icon {
    font-size: 2.2rem;
    color: var(--secondary);
}

.feat-txt h4 {
    font-family: 'Oswald';
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.feat-txt p {
    font-size: 0.85rem;
    color: #aaa;
}

.highlight-menus {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.sec-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 30px;
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.sec-title h2 {
    font-family: 'Oswald';
    font-size: 2.5rem;
    color: var(--dark);
    line-height: 1;
}

.sec-title span {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.view-all-btn {
    color: var(--dark);
    font-weight: 700;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 2px;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 10px 0 40px;
}

.marquee-track {
    display: inline-flex;
    gap: 20px;
    animation: scrollMarquee 40s linear infinite;
    padding-left: 20px;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.h-prod-card {
    width: 380px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    display: flex;
    align-items: center;
    padding: 12px;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: 0.3s;
    flex-shrink: 0;
}

.h-prod-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.hp-img {
    width: 110px;
    height: 110px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    background: #f9f9f9;
}

.hp-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hp-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.hp-head h3 {
    font-family: 'Oswald';
    font-size: 1.15rem;
    color: var(--dark);
}

.hp-icon {
    color: var(--primary);
    font-size: 1.2rem;
}

.hp-desc {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.3;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hp-bott {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hp-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
}

.hp-add {
    width: 32px;
    height: 32px;
    background: var(--dark);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.hp-add:hover {
    background: var(--primary);
    transform: rotate(90deg);
    border-radius: 50%;
}

.promo-banner {
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    background: var(--primary);
    border-radius: 24px;
    overflow: hidden;
    color: #fff;
    min-height: 350px;
    box-shadow: 0 15px 40px rgba(255, 110, 55, 0.25);
}

.promo-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.promo-tag {
    background: var(--secondary);
    color: var(--dark);
    padding: 5px 12px;
    font-weight: 700;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 15px;
}

.promo-content h2 {
    font-family: 'Oswald';
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 15px;
}

.promo-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
    max-width: 500px;
}

.white-btn {
    background: #fff;
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.white-btn:hover {
    background: var(--dark);
    color: #fff;
}

.promo-img-box {
    position: relative;
    background: url('https://images.unsplash.com/photo-1594212699903-ec8a3eca50f5?q=80&w=800') center/cover;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.about-teaser {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.ab-img {
    position: relative;
}

.ab-img img {
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.ab-blob {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: var(--secondary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
    filter: blur(30px);
}

.ab-content h2 {
    font-family: 'Oswald';
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.1;
}

.ab-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.ab-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
}

.ab-stat-item h3 {
    font-family: 'Oswald';
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.ab-stat-item span {
    font-size: 0.9rem;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
}

.page-hero {
    background: linear-gradient(135deg, #FFF0E6 0%, #fff 100%);
    padding: 60px 0 40px;
    margin-bottom: 40px;
    text-align: center;
}

.page-title {
    font-family: 'Oswald';
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.page-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.coupon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px 0 60px;
}

.coupon-card {
    background: #fff;
    border: 2px dashed #ddd;
    border-radius: 16px;
    padding: 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: 0.3s;
    overflow: hidden;
}

.coupon-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.coupon-circle {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--light);
    border-radius: 50%;
    border: 2px solid #ddd;
    border-left: none;
}

.cc-left {
    left: -12px;
}

.cc-right {
    right: -12px;
    border: 2px solid #ddd;
    border-right: none;
}

.coup-val {
    font-size: 2.5rem;
    font-family: 'Oswald';
    color: var(--primary);
    margin-bottom: 5px;
}

.coup-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.coup-desc {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
}

.coup-code-box {
    background: #f4f4f4;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Oswald';
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--dark);
    border: 1px solid #ddd;
    cursor: pointer;
    transition: 0.2s;
    position: relative;
    width: 100%;
}

.coup-code-box:hover {
    background: var(--dark);
    color: #fff;
}

.coup-code-box::after {
    content: 'COPY';
    position: absolute;
    right: 10px;
    font-size: 0.7rem;
    top: 12px;
    opacity: 0.5;
}

.story-sec {
    padding: 40px 0 80px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.story-txt h3 {
    font-family: 'Oswald';
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.story-txt p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.val-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.val-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.val-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.val-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.val-desc {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
}

footer {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 70px 0 25px;
    margin-bottom: 50px;
}

.footer-cont {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 30px;
}

.f-brand h2 {
    font-family: 'Oswald';
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.f-brand p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 25px;
}

.f-col h4 {
    color: #fff;
    font-family: 'Oswald';
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.f-links li {
    margin-bottom: 12px;
}

.f-links a {
    color: #aaa;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

.f-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.f-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: #aaa;
    font-size: 0.9rem;
}

.f-contact span {
    color: var(--primary);
}

.f-input-group {
    position: relative;
    margin-top: 15px;
}

.f-input {
    width: 100%;
    background: #333;
    border: none;
    padding: 14px 15px;
    border-radius: 8px;
    color: #fff;
    outline: none;
    font-size: 0.9rem;
}

.f-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--primary);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.f-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.f-soc {
    width: 38px;
    height: 38px;
    background: #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.f-soc:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #666;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-center,
    .nav-right {
        display: none;
    }

    .mobile-header-controls {
        display: flex;
    }

    .mobile-bottom-nav {
        display: flex;
    }

    .hero-content-grid {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
    }

    .hero-img-stack {
        width: 100%;
        height: 400px;
        margin-top: 20px;
    }

    .hero-main-img {
        max-width: 80%;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .promo-banner {
        display: flex;
        flex-direction: column;
        border-radius: 20px;
        margin: 30px 20px;
        width: auto;
    }

    .promo-img-box {
        width: 100%;
        height: 220px;
        clip-path: none;
        border-radius: 20px 20px 0 0;
        order: 1;
    }

    .promo-content {
        padding: 30px 20px;
        text-align: center;
        order: 2;
    }

    .promo-content h2 {
        font-size: 2.2rem;
    }

    .white-btn {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .ab-content h2 {
        font-size: 2.5rem;
    }

    .ab-stats {
        justify-content: center;
    }

    .story-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .footer-cont {
        grid-template-columns: repeat(2, 1fr);
    }

    footer {
        margin-bottom: 75px;
    }
}

@media (max-width: 600px) {
    .hero-l h1 {
        font-size: 3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .feat-item {
        justify-content: flex-start;
    }

    .footer-cont {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-buttons {
        justify-content: center;
    }
}