:root {
    --primary-color: #26d3d3;
    --text-color: #333;
    --nav-links: #666;
    --bg-gray: #f5f6f7;
    --white: #ffffff;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #fff;
    color: var(--text-color);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.header {
    background-color: var(--white);
    padding: 0 0;
    border-bottom: 1px solid #eef0f2;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Styling */
.logo img {
    width: 160px;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    position: relative;
}

.logo-text {
    line-height: 1;
    color: var(--primary-color);
}

.logo-icon {
    margin: 0 -2px;
    font-size: 24px;
    display: flex;
    align-items: center;
    transform: translateY(-2px);
}

.logo-icon i {
    color: #444;
}

.sparkles {
    position: absolute;
    right: -10px;
    top: -5px;
    color: var(--primary-color);
    font-size: 14px;
    display: flex;
    gap: 4px;
}

.sparkles::after {
    content: '\2726';
    /* Sparkle unicode */
    font-size: 16px;
    opacity: 0.6;
}

/* Nav Styling */
.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav ul li a {
    text-decoration: none;
    color: var(--nav-links);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav ul li a:hover,
.nav ul li a.active {
    color: var(--text-color);
}

.nav ul li a i {
    font-size: 12px;
    margin-left: 5px;
}

/* Actions Styling */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.action-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    background-color: var(--bg-gray);
    color: var(--text-color);
    transition: all 0.3s ease;
    font-size: 18px;
}

.action-btn:hover {
    background-color: #e8e9ea;
}

.cart-btn {
    background-color: var(--primary-color);
    color: var(--white);
}

.cart-btn:hover {
    background-color: #1ec2c2;
    transform: translateY(-2px);
}

.sign-in-btn {
    background-color: var(--black);
    color: var(--white);
    border: none;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-left: 5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sign-in-btn:hover {
    background-color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Dropdown styling placeholder */
.dropdown {
    position: relative;
}

/* Footer Styling */
.footer {
    background-color: #3b4249;
    color: #ffffff;
    padding: 80px 0 0;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    width: 160px;
}

.footer-logo a .logo-icon i {
    color: #ffffff;
    /* White cart icon for dark background */
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 15px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    color: #ffffff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-color);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.contact-info li i {
    color: #ffffff;
    font-size: 18px;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form input {
    background-color: #f7f9fa;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 14px;
    width: 100%;
    font-family: inherit;
    color: #333;
}

.subscribe-btn {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background-color: #1ec2c2;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(38, 211, 211, 0.2);
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: #31373d;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.bottom-links {
    display: flex;
    gap: 25px;
    display: none;
}

.bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.bottom-links a:hover {
    color: #ffffff;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .bottom-links {
        justify-content: center;
    }
}

/* Policy Page Styling */
.policy-page {
    background-color: #ffffff;
}

.policy-hero {
    background-color: #f7f9fa;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #eef0f2;
}

.policy-hero h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.last-updated {
    color: var(--nav-links);
    font-size: 15px;
}

.policy-content {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin: 40px 0 20px;
}

.content-wrapper h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin: 25px 0 15px;
}

.content-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.content-wrapper ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-wrapper ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
    position: relative;
    list-style: disc;
}

.contact-list {
    list-style: none !important;
    padding-left: 0 !important;
}

.contact-list li {
    list-style: none !important;
}

.contact-list li strong {
    color: var(--black);
}

.section-padding {
    padding: 30px 0 50px;
}

/* Process Steps Styling */
.process-steps {
    list-style: none !important;
    padding-left: 0 !important;
    margin-top: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.step-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 45px;
    bottom: -15px;
    width: 2px;
    background-color: #f0f0f0;
}

.step-number {
    width: 42px;
    height: 42px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(38, 211, 211, 0.2);
}

.step-content {
    background: #fcfdfe;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #f0f2f5;
    flex-grow: 1;
    transition: all 0.3s ease;
}

.step-content:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.step-content p {
    margin-bottom: 0 !important;
    font-size: 15px !important;
    color: #444 !important;
}

.step-content strong {
    color: var(--black);
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
}

.note-box {
    background-color: #fff9e6;
    border-left: 4px solid #ffcc00;
    padding: 15px 20px;
    border-radius: 4px;
    margin: 20px 0;
}

.info-box {
    background-color: #e6f7ff;
    border-left: 4px solid #1890ff;
    padding: 15px 20px;
    border-radius: 4px;
    margin: 20px 0;
}

/* Global Section Padding */
.section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
}

/* Hero Section */
.hero {
    height: auto;
    min-height: 500px;
    background: #e9f9f9;
    background: linear-gradient(135deg, #e9f9f9 0%, #f7ffff 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

/* Background Blobs */
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    z-index: 1;
}

.hero-inner-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-sub {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #94a3b8;
    margin-bottom: 20px;
    display: block;
}

.hero h1 {
    font-size: 80px;
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 30px;
    color: #1a202c;
    letter-spacing: -3px;
}

.hero h1 span {
    color: #2ed5d5;
    background: linear-gradient(120deg, #2ed5d5 0%, #a5f3fc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 20px;
    color: #64748b;
    margin-bottom: 45px;
    max-width: 520px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-img-box {
    position: relative;
    z-index: 2;
}

.hero-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Slider Controls */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    z-index: 100;
}

.nav-btn {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    border: none;
}

.nav-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Happy Customers */
.hero-reviews {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar-group {
    display: flex;
    padding-left: 10px;
}

.avatar-item {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}

.avatar-item:nth-child(1) {
    background: #4fd1c5;
    margin-left: 0;
}

.avatar-item:nth-child(2) {
    background: #63b3ed;
}

.avatar-item:nth-child(3) {
    background: #4fd1c5;
}

.avatar-item:nth-child(4) {
    background: #4fd1c5;
}

.avatar-item.total {
    background: #f1f5f9;
    color: #64748b;
    font-size: 12px;
    border-color: #f1f5f9;
}

.review-info .stars {
    color: #fbbf24;
    font-size: 14px;
    margin-bottom: 2px;
}

.review-info span {
    font-size: 14px;
    font-weight: 700;
    color: #334155;
}

.btn {
    padding: 18px 38px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #2ed5d5;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(46, 213, 213, 0.3);
}

.btn-primary:hover {
    background-color: #1ec2c2;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(38, 211, 211, 0.3);
}

.btn-outline {
    border: 2px solid var(--black);
    color: var(--black);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--black);
    color: var(--white);
    transform: translateY(-3px);
}

/* Feature Bar */
.features-bar {
    background: #fff;
    padding: 40px 0;
    border-bottom: 1px solid #f0f0f0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
}

.feature-info h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.feature-info p {
    font-size: 13px;
    color: #888;
}

/* Categories Section */
.categories-section {
    background: #fcfdfe;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--black);
}

.section-title .divider {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
}

.category-card {
    text-align: center;
    text-decoration: none;
    color: var(--black);
    transition: all 0.3s ease;
}

.category-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #fff;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #fcfcfc;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.category-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.category-img i {
    font-size: 45px;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.category-card span {
    font-weight: 700;
    font-size: 16px;
    display: block;
    color: #333;
}

.category-card:hover .category-img {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(38, 211, 211, 0.2);
}

.category-card:hover .category-img i {
    color: #fff;
}

.category-card:hover .category-img::after {
    opacity: 1;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid #f0f2f5;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--black);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    z-index: 5;
    text-transform: uppercase;
}

.product-wishlist {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    z-index: 5;
    transition: all 0.3s ease;
    color: #888;
}

.product-wishlist:hover {
    background: #ff4d4d;
    color: #fff;
}

.product-image {
    height: 320px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image i {
    font-size: 90px;
    color: #e2e8f0;
}

.add-to-cart-overlay {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover .add-to-cart-overlay {
    bottom: 0;
}

.overlay-btn {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
}

.overlay-btn:hover {
    background: #1ec2c2;
    transform: scale(1.02);
}

.product-info {
    padding: 25px;
}

.product-cat {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
    line-height: 1.4;
}

.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
}

.old-price {
    font-size: 15px;
    color: #cbd5e1;
    text-decoration: line-through;
    margin-left: 10px;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 35px;
    padding: 80px 40px;
    color: #fff;
    text-align: center;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(38, 211, 211, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-banner h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.cta-banner p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 800px;
    margin-inline: auto;
    position: relative;
    z-index: 2;
}

.cta-banner .btn {
    position: relative;
    z-index: 2;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 52px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-banner h2 {
        font-size: 36px;
    }

    .hero-inner-grid {
        grid-template-columns: 1fr;
    }

    .hero-img {
        width: 100%;
        max-height: 300px;
    }



}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        height: auto;
        padding: 40px 0 30px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-banner {
        padding: 60px 20px;
        border-radius: 20px;
    }

    .cta-banner h2 {
        font-size: 32px;
    }

    .footer {
        padding: 40px 0 0;
        text-align: center;
    }

    .contact-info li,
    .social-links,
    .logo a {
        justify-content: center;
    }

    .container {
        padding: 0 24px;
    }

}

/* Micro-animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.feature-box {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.feature-box:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-box:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-box:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-box:nth-child(4) {
    animation-delay: 0.4s;
}

.category-card {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.category-card:nth-child(1) {
    animation-delay: 0.2s;
}

.category-card:nth-child(2) {
    animation-delay: 0.3s;
}

.category-card:nth-child(3) {
    animation-delay: 0.4s;
}

.category-card:nth-child(4) {
    animation-delay: 0.5s;
}

.category-card:nth-child(5) {
    animation-delay: 0.6s;
}

.category-card:nth-child(6) {
    animation-delay: 0.7s;
}

.product-card {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.product-card:nth-child(1) {
    animation-delay: 0.3s;
}

.product-card:nth-child(2) {
    animation-delay: 0.4s;
}

.product-card:nth-child(3) {
    animation-delay: 0.5s;
}

/* Sticky Header Glassmorphism on Scroll Overlay */
.header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}