/* OceanForce Theme CSS */
/* VARIABLES */
:root {
    --deep: #0A1628;
    --ocean: #1B6B9A;
    --cyan: #3ECFE8;
    --off: #F0F4F8;
    --black: #0D0D0D;
    --energy: #E8A83E;
    --gray: #8A9BB0;
    --alert: #E85C4A;
}
/* RESET */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
}
body {
    font-family: 'Inter', sans-serif;
    color: var(--black);
    background: var(--off);
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
}
/* WRAPPER */
.of-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
/* PROMO BAR */
.of-promo-bar {
    background: var(--deep);
    color: #fff;
    text-align: center;
    padding: 0.6rem;
    font-size: 0.85rem;
}
.of-promo-bar strong {
    color: var(--energy);
}
/* HEADER */
.of-header {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(10,22,40,0.08);
}
.of-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}
.of-logo {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--deep);
}
.of-logo span {
    font-weight: 300;
    color: var(--gray);
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}
.nav-links a {
    color: var(--black);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--ocean);
}
.nav-links .nav-promo {
    color: var(--alert) !important;
    font-weight: 600;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.nav-icon {
    width: 44px;
    height: 44px;
    background: var(--off);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    position: relative;
}
.nav-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--deep);
    stroke-width: 1.5;
    fill: none;
}
.cart-icon .cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: var(--energy);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}
.burger span {
    width: 24px;
    height: 2px;
    background: var(--deep);
    border-radius: 2px;
    transition: 0.3s;
}/* HERO */
.hero {
    min-height: 600px;
    background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(27,107,154,0.88) 100%);
    display: flex;
    align-items: center;
    position: relative;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}
.hero-badges {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}
.badge-promo {
    background: var(--energy);
    color: #fff;
}
.badge-ship {
    background: rgba(255,255,255,0.12);
    color: #fff;
    backdrop-filter: blur(10px);
}
.hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 span {
    color: var(--cyan);
}
.hero-sub {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.btn-primary {
    background: var(--energy);
    color: #fff;
    box-shadow: 0 4px 20px rgba(232,168,62,0.4);
}
.btn-primary:hover {
    background: #D4962E;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232,168,62,0.5);
}
.btn-secondary {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.45);
}
/* TRUST BAR */
.trust-bar {
    background: var(--off);
    border-bottom: 1px solid rgba(10,22,40,0.1);
    padding: 1rem 2rem;
}
.trust-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--black);
}
.trust-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--cyan);
    stroke-width: 2;
    fill: none;
}
.trust-item strong {
    font-weight: 600;
}
/* SECTIONS */
.section {
    padding: 5rem 2rem;
}
.section-container {
    max-width: 1100px;
    margin: 0 auto;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.section-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    color: var(--deep);
    font-weight: 600;
}
.section-header p {
    color: var(--gray);
}
.section-header a {
    color: var(--ocean);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
/* PRODUCTS GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid transparent;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10,22,40,0.1);
}

.card-img {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img.recovery {
    background: linear-gradient(145deg, #1B6B9A, var(--deep));
}

.card-img.hydration {
    background: linear-gradient(145deg, #2A5A7A, #0A1628);
}

.card-img.relax {
    background: linear-gradient(145deg, #1A4A6A, #0D2840);
}

.card-icon {
    width: 70px;
    height: 100px;
    background: rgba(255,255,255,0.12);
    border-radius: 10px;
    position: relative;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    border: 2px solid var(--cyan);
    border-radius: 50%;
}

.card-icon::after {
    content: '';
    position: absolute;
    top: calc(25% + 10px);
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background: var(--cyan);
    border-radius: 50%;
}

.card-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.card-badge {
    padding: 0.35rem 0.65rem;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.card-badge.best {
    background: var(--energy);
    color: #fff;
}

.card-badge.sale {
    background: var(--alert);
    color: #fff;
}

.card-badge.new {
    background: var(--cyan);
    color: var(--deep);
}

.card-wish {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}

.card-wish svg {
    width: 18px;
    height: 18px;
    stroke: var(--deep);
    stroke-width: 1.5;
    fill: none;
}

.card-content {
    padding: 1.25rem;
}

.card-cat {
    font-size: 0.7rem;
    color: var(--ocean);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    color: var(--deep);
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    color: var(--gray);
}

.card-rating .stars {
    font-size: 0.9rem;
}

.card-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.card-price {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--deep);
}

.card-price-old {
    font-size: 0.9rem;
    color: var(--gray);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.card-unit {
    font-size: 0.75rem;
    color: var(--gray);
}

.card-btn {
    width: 100%;
    background: var(--deep);
    color: #fff;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.card-btn:hover {
    background: var(--ocean);
}

/* PACKS SECTION */
.packs-section {
    background: linear-gradient(180deg, var(--off) 0%, #DDE8F0 100%);
    padding: 5rem 2rem;
}

.packs-header {
    text-align: center;
    margin-bottom: 3rem;
}

.packs-label {
    display: inline-block;
    background: var(--energy);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.packs-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2.2rem;
    color: var(--deep);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.packs-header p {
    color: var(--gray);
    font-size: 1.05rem;
}

.packs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.pack-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.pack-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10,22,40,0.12);
}

.pack-featured {
    border-color: var(--energy);
    transform: scale(1.03);
}

.pack-featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.pack-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--deep);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.pack-featured .pack-badge {
    background: var(--energy);
}

.pack-icon {
    font-size: 3rem;
    margin: 1rem 0;
}

.pack-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    color: var(--deep);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pack-desc {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.pack-list {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--off);
    border-radius: 12px;
}

.pack-list li {
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pack-list li::before {
    content: '✓';
    color: var(--cyan);
    font-weight: 700;
}

.pack-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding: 0 0.5rem;
}

.pack-prices {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pack-price {
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--deep);
}

.pack-old {
    font-size: 1rem;
    color: var(--gray);
    text-decoration: line-through;
}

.pack-saving {
    background: var(--alert);
    color: #fff;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pack-btn {
    width: 100%;
    background: var(--deep);
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.pack-btn:hover {
    background: var(--ocean);
}

.pack-featured .pack-btn {
    background: var(--energy);
}

.pack-featured .pack-btn:hover {
    background: #D4962E;
}
/* CATEGORIES */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cat-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: 0.4s;
}

.cat-card:hover {
    transform: scale(1.02);
}

.cat-bg {
    position: absolute;
    inset: 0;
    transition: 0.6s;
}

.cat-card:hover .cat-bg {
    transform: scale(1.1);
}

.cat-bg.recovery {
    background: linear-gradient(145deg, #1B6B9A, var(--deep));
}

.cat-bg.hydration {
    background: linear-gradient(145deg, #2A6A8A, #0D2840);
}

.cat-bg.relax {
    background: linear-gradient(145deg, #1A4A6A, #0A1628);
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 60%);
}

.cat-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.75rem;
    color: #fff;
    z-index: 2;
}

.cat-count {
    font-size: 0.75rem;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cat-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cat-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
}

.cat-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--energy);
    font-weight: 600;
    font-size: 0.9rem;
}

/* PROMO BANNER */
.promo-banner {
    background: linear-gradient(135deg, var(--deep), #1B6B9A);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--energy);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.promo-banner h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.promo-banner h2 span {
    color: var(--cyan);
}

.promo-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.countdown-item {
    text-align: center;
}

.countdown-val {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255,255,255,0.08);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 0.4rem;
}

.countdown-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
}

.promo-btn {
    background: var(--energy);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(232,168,62,0.4);
}

.promo-btn:hover {
    background: #D4962E;
    transform: translateY(-3px);
}

/* ADVANTAGES */
.adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.adv-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(10,22,40,0.06);
}

.adv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(10,22,40,0.08);
    border-color: var(--cyan);
}

.adv-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: var(--off);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adv-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--ocean);
    stroke-width: 1.5;
    fill: none;
}

.adv-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.adv-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
}/* REVIEWS */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    transition: 0.3s;
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(10,22,40,0.08);
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.review-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--cyan), var(--deep));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
}
.review-info strong {
    display: block;
    color: var(--black);
    font-weight: 600;
    font-size: 0.95rem;
}
.review-info span {
    font-size: 0.8rem;
    color: var(--gray);
}
.review-badge {
    background: var(--cyan);
    color: var(--deep);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
}
.review-stars {
    margin-bottom: 0.75rem;
    color: var(--energy);
    font-size: 1rem;
}
.review-text {
    color: var(--black);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.review-product {
    font-size: 0.8rem;
    color: var(--ocean);
    font-weight: 500;
}
/* NEWSLETTER */
.newsletter {
    background: var(--deep);
    padding: 4rem 2rem;
    text-align: center;
}
.newsletter h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.newsletter p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}
.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
}
.newsletter-input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    background: rgba(255,255,255,0.08);
    color: #fff;
}
.newsletter-input::placeholder {
    color: rgba(255,255,255,0.5);
}
.newsletter-btn {
    background: var(--energy);
    color: #fff;
    border: none;
    padding: 1rem 1.75rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}
.newsletter-btn:hover {
    background: #D4962E;
}
/* FAQ */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: 0.3s;
}
.faq-item:hover {
    border-color: rgba(10,22,40,0.1);
}
.faq-item.active {
    box-shadow: 0 8px 25px rgba(10,22,40,0.08);
}
.faq-q {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-q h3 {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    color: var(--black);
    font-weight: 500;
    flex: 1;
    padding-right: 1rem;
}
.faq-toggle {
    width: 30px;
    height: 30px;
    background: var(--deep);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: 0.3s;
}
.faq-item.active .faq-toggle {
    background: var(--cyan);
    transform: rotate(45deg);
}
.faq-a {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
}
.faq-item.active .faq-a {
    padding: 0 1.5rem 1.5rem;
    max-height: 300px;
}
.faq-a p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.9rem;
}/* FOOTER */
.footer {
    background: var(--black);
    color: rgba(255,255,255,0.8);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-brand h3 span {
    font-weight: 300;
    color: var(--gray);
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.footer-payments {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.payment-icon {
    width: 40px;
    height: 26px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--ocean);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.footer-col h4 {
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--cyan);
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 1.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer-legal a:hover {
    color: var(--cyan);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .products-grid,
    .categories-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .adv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .packs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        flex-direction: column;
        padding: 1.5rem 2rem;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav-links.open {
        display: flex !important;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(10,22,40,0.08);
    }
    
    .burger {
        display: flex !important;
    }
    
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-sub {
        font-size: 1rem;
    }
    
    .trust-container {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
    
    .products-grid,
    .categories-grid,
    .reviews-grid,
    .adv-grid,
    .packs-grid {
        grid-template-columns: 1fr;
    }
    
    .pack-featured {
        transform: scale(1);
    }
    
    .pack-featured:hover {
        transform: translateY(-8px);
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-val {
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}