/* ==========================================================================
   COZYFOX CSS STYLESHEET
   ========================================================================== */

/* 
 * THEME CONFIGURATION 
 * Change these colors to alter the entire theme of the website instantly.
 */
 :root {
    --primary-color: #1E3D59;     /* Deep Blue from your bottle */
    --secondary-color: #FF6B6B;   /* Red/Orange from the cap */
    --accent-color: #F5D020;      /* Yellow from the dishwash liquid */
    --text-color: #333333;        /* Main dark text */
    --text-light: #666666;        /* Subtitle/Paragraph text */
    --bg-light: #F8F9FA;          /* Light gray for alternating sections */
    --white: #FFFFFF;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-hover: 0 10px 25px rgba(0,0,0,0.15);
}

/* ========================= RESET & BASE ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

.text-center { text-align: center; }
.mt-3 { margin-top: 1rem; }
.mt-5 { margin-top: 3rem; }
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-white { color: var(--white); }
.bg-light { background-color: var(--bg-light); }
.shadow-lg { box-shadow: var(--shadow-hover); }

/* ========================= TYPOGRAPHY & SECTIONS ========================= */
.section-padding {
    padding: 80px 0;
}

.section-subtitle {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 50px auto;
}

/* ========================= BUTTONS ========================= */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ========================= TOP BAR ========================= */
.topbar {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.9rem;
    padding: 10px 0;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left span {
    margin-right: 20px;
}

.topbar-left i, .topbar-right i {
    margin-right: 5px;
    color: var(--accent-color);
}

.topbar-right a {
    color: var(--white);
    margin-left: 15px;
}

.topbar-right a:hover {
    color: var(--accent-color);
}

/* ========================= HEADER & NAV ========================= */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.logo .tagline {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.navbar {
    /* Gradient Menu Bar Styling */
    background: linear-gradient(135deg, var(--primary-color), #2A5278);
    padding: 10px 30px;
    border-radius: 50px;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

/* Hover Effect for Menu */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.mobile-menu-icon {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ========================= HERO SLIDER ========================= */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background-color: var(--bg-light);
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-content {
    max-width: 600px;
    color: var(--white);
    animation: fadeInUp 1s ease;
}

.slide-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.slider-controls button {
    background-color: rgba(255,255,255,0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition);
}

.slider-controls button:hover {
    background-color: var(--secondary-color);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================= ABOUT SECTION ========================= */
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: 10px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.about-list {
    margin: 20px 0;
}

.about-list li {
    margin-bottom: 10px;
    font-weight: 500;
}

.about-list i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* ========================= FEATURES / WHY CHOOSE US ========================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--secondary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(30, 61, 89, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px auto;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ========================= PRODUCTS SECTION ========================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.product-img-wrapper {
    position: relative;
    height: 350px;
    background-color: #f4f4f4; /* Light gray background to pop the product images */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-badge.bg-secondary {
    background: var(--accent-color);
    color: var(--text-color);
}

.product-info {
    padding: 25px;
}

.product-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.product-category {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    min-height: 65px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.product-price .volume {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

/* ========================= CTA SECTION ========================= */
.cta {
    padding: 100px 0;
    color: var(--white);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
}

/* ========================= REVIEWS ========================= */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: rgba(30, 61, 89, 0.05);
    font-family: serif;
    line-height: 1;
}

.stars {
    color: #FFB800;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
}

.reviewer h4 {
    color: var(--primary-color);
}

.reviewer span {
    font-size: 0.8rem;
    color: var(--secondary-color);
}

/* ========================= FOOTER ========================= */
.footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 80px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul a {
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-col ul i {
    font-size: 0.8rem;
    margin-right: 5px;
    color: var(--secondary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-top: 5px;
    font-size: 1rem;
    margin-right: 15px;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    font-size: 0.9rem;
}

/* ========================= RESPONSIVE MEDIA QUERIES ========================= */
@media (max-width: 992px) {
    .about-inner {
        grid-template-columns: 1fr;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
    .slide-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .topbar {
        display: none; /* Hide topbar on small mobile for cleaner look */
    }
    .navbar {
        background: transparent;
        padding: 0;
    }
    .nav-links {
        display: none; /* In a real scenario, toggle this with JS */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        flex-direction: column;
        padding: 20px 0;
        border-radius: 0 0 10px 10px;
    }
    .mobile-menu-icon {
        display: block;
        color: var(--primary-color);
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .slider-controls {
        padding: 0 10px;
    }
}/* ================= Modern Page Header ================= */
.page-header {
    position: relative;
    background: linear-gradient(135deg, #0b192c 0%, #1e3d59 100%);
    color: white;
    padding: 80px 0 70px;
    text-align: center;
    overflow: hidden;
}

/* Subtle glowing shapes in background */
.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(50px);
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 71, 87, 0.15); /* CozyFox red/pink glow */
    border-radius: 50%;
    filter: blur(50px);
}

.page-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
}

/* Glassmorphism Breadcrumb Styling */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    list-style: none;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.breadcrumb li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
}

.breadcrumb li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb li a:hover {
    color: #ff4757;
}

/* Add stylish arrow between links */
.breadcrumb li + li::before {
    content: '\f105'; /* FontAwesome Angle Right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}