:root {
    --primary: #ffb400;
    --primary-light: #ffc233;
    --primary-dark: #e6a200;
    --secondary: #0056b3;
    --accent: #e64a19;
    --success: #4caf50;
    --warning: #ff9800;
    --error: #f44336;
    --info: #2196f3;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-400: #bdbdbd;
    --gray-600: #757575;
    --gray-800: #424242;
}
body{
    font-family: 'Playfair Display', serif;
    color:var(--gray-800);
}
.navbar-brand img{
    width:120px;
}

.nav-link:hover{
    color:var(--primary);
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
}
.nav-link.active{
    color:var(--primary) !important; 
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
}
.icon-nav{
    width:20px;
}
/* HERO */
.hero{
    background:#f5f5f5;
    background-image: url('../img/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80vh;
    max-height: 700px;
    display: flex;
    align-items: center;
}

.hero-title{
    font-size:42px;
    font-weight:700;
    color: #07484A;
    margin-bottom: 50px;
}

.text-hero p{
    font-size: 18px;
    color: #07484A;
    margin-bottom: 50px;
}

.text-hero .btn{
    background-color: var(--primary);
    color: var(--gray-100);
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 5px;
}

.hero-img{
    max-height:420px;
}

/* CATEGORIES */
.categories h2 {
    color: #07484A;
    font-size: 36px;
    font-weight: 700;
}

/* Sidebar */
.category-sidebar {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
}

.search-box {
    position: relative;
}

.search-box .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    opacity: 0.5;
}

.search-box .form-control {
    padding-left: 45px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #f8f8f8;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    color: #07484A;
    text-decoration: none;
    font-size: 16px;
    border-left: 3px solid transparent;
    padding-left: 15px;
    transition: all 0.3s ease;
}

.category-item:hover {
    color: var(--primary);
}

.category-item.active {
    color: var(--primary);
    border-left-color: var(--primary);
    font-weight: 600;
}

.category-item .indicator {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.category-item.indicator-blue .indicator {
    background-color: #d1e7ff;
    color: #0056b3;
}

.category-item.indicator-pink .indicator {
    background-color: #ffd1d1;
    color: #e64a19;
}

.btn-all-categories {
    width: 100%;
    background-color: var(--primary);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.btn-all-categories img {
    width: 16px;
    filter: brightness(0) invert(1);
}

/* Category Cards */
.cat-card {
    background-color: #c5c5c5;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 220px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Overlay ascuns implicit, apare la hover */
.cat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.cat-card:hover::before {
    opacity: 1;
}

.cat-card:hover {
    border-color: var(--primary);
}

/* Textul ascuns implicit */
.cat-card h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.cat-card:hover h3 {
    opacity: 1;
    transform: translateY(0);
}

.btn-explore {
    background-color: rgba(255, 255, 255, 0.9);
    color: #07484A;
    padding: 10px 30px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.cat-card:hover .btn-explore {
    opacity: 1;
    transform: translateY(0);
}

.btn-explore:hover {
    background-color: #fff;
}

/* PRODUCTS */
.products {
    background: #f7f7f7;
}

.products h2 {
    color: #07484A;
    font-size: 36px;
    font-weight: 700;
}

/* Product Hero Background */
.product-hero-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    min-height: 500px;
    height: 100%;
}

/* Product Cards */
.product-card {
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.product-card.bg-white {
    background: #fff;
}

.product-card.bg-light-blue {
    background: #dfe9f3;
}

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

.product-card img {
    width: 100%;
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.product-title {
    color: #07484A;
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.7;
}

/* Color Options */
.color-options {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 10px;
}

.color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.color-dot:hover {
    transform: scale(1.3);
}

.product-price {
    color: #07484A;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

/* Navigation Controls */
.products-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
}

.progress-bar-custom {
    flex: 1;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, #07484A 0%, #07484A 70%, transparent 100%);
    transition: width 0.3s ease;
}

.nav-arrows {
    display: flex;
    gap: 10px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow img {
    width: 16px;
    filter: brightness(0) invert(1);
}

.nav-prev {
    background: #a8d5f7;
}

.nav-prev:hover {
    background: #7ec2f0;
}

.nav-next {
    background: #f7c5c5;
}

.nav-next:hover {
    background: #f0a8a8;
}

/* Explore All Button */
.btn-explore-all {
    background-color: #5a7c7e;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-explore-all:hover {
    background-color: #4a6c6e;
    color: #fff;
    transform: translateY(-2px);
}

.btn-explore-all img {
    width: 16px;
    filter: brightness(0) invert(1);
}

/* BENEFITS */
.benefits {
    background: #dfe9f3;
}

.benefits h2 {
    color: #07484A;
    font-size: 36px;
    font-weight: 700;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 40px;
    height: 40px;
}

.benefit-icon.bg-pink {
    background: #ffd1e8;
}

.benefit-icon.bg-orange {
    background: #ffe4cc;
}

.benefit-icon.bg-green {
    background: #d1f4dd;
}

.benefit-card h5 {
    color: #07484A;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #07484A;
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
    line-height: 1.6;
}

/* PROMISE */
.promise {
    background: #fff;
}

.promise-intro-card {
    background: #5a7c7e;
    background-size: cover;
    background-position: center;
    padding: 40px 30px;
    border-radius: 12px;
    color: #fff;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promise-intro-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.promise-intro-card p {
    font-size: 16px;
    opacity: 0.95;
    margin: 0;
}

.promise-feature-card {
    background: #dfe9f3;
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    min-height: 155px;
}

.promise-feature-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.promise-feature-card h6 {
    color: #07484A;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.promise-feature-card p {
    color: #07484A;
    font-size: 11px;
    opacity: 0.8;
    margin: 0;
    line-height: 1.4;
}

/* TESTIMONIAL */
.testimonials {
    background: #fff;
}

.testimonials h2 {
    color: #07484A;
    font-size: 36px;
    font-weight: 700;
}

.testimonials .subtitle {
    color: #07484A;
    font-size: 16px;
    opacity: 0.7;
}

/* Quote Section */
.testimonial-quote-section {
    position: relative;
    min-height: 300px;
}

.quote-icon {
    font-size: 180px;
    color: #d1e7ff;
    font-family: Georgia, serif;
    line-height: 1;
    position: absolute;
    top: -20px;
    left: 0;
}

.testimonial-avatar {
    width: 220px;
    height: 280px;
    background: #d0d0d0;
    border-radius: 12px;
    position: absolute;
    bottom: 0;
    left: 80px;
}

/* Testimonial Content */
.testimonial-content {
    padding: 20px 0;
}

.testimonial-text {
    color: #07484A;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.testimonial-author strong {
    display: block;
    color: #07484A;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #07484A;
    font-size: 14px;
    opacity: 0.7;
}

/* Navigation */
.testimonial-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-progress {
    flex: 1;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.testimonial-progress-fill {
    width: 33.33%;
    height: 100%;
    background: linear-gradient(90deg, #07484A 0%, #07484A 70%, transparent 100%);
    transition: width 0.3s ease;
}

.testimonial-arrows {
    display: flex;
    gap: 10px;
}

.testimonial-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-arrow img {
    width: 16px;
    filter: brightness(0) invert(1);
}

.testimonial-prev {
    background: #a8d5f7;
}

.testimonial-prev:hover {
    background: #7ec2f0;
}

.testimonial-next {
    background: #f7c5c5;
}

.testimonial-next:hover {
    background: #f0a8a8;
}

/* See All Reviews Link */
.see-all-reviews {
    color: #07484A;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.see-all-reviews:hover {
    color: var(--primary);
}

.see-all-reviews img {
    width: 14px;
    transition: transform 0.3s ease;
}

.see-all-reviews:hover img {
    transform: translateX(4px);
}

/* NEWSLETTER */
.newsletter {
    background: #fff;
}

.newsletter-image {
    background-color: #d0d0d0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    height: 100%;
}

.newsletter-content {
    background: #d7e7e5;
    padding: 80px 60px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newsletter-content h3 {
    color: #07484A;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.newsletter-content p {
    color: #07484A;
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.newsletter-form {
    max-width: 400px;
}

.newsletter-form .form-control {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.7);
    color: #07484A;
}

.newsletter-form .form-control::placeholder {
    color: #07484A;
    opacity: 0.5;
}

.newsletter-form .form-control:focus {
    background: #fff;
    box-shadow: none;
    border: 1px solid #5a7c7e;
}

.btn-subscribe {
    width: 100%;
    background: #5a7c7e;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background: #4a6c6e;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .newsletter-content {
        padding: 60px 30px;
    }
    
    .newsletter-content h3 {
        font-size: 32px;
    }
}

/* FOOTER */
.footer {
    background: #f5f5f5;
    color: #07484A;
}

.footer-logo {
    max-width: 120px;
    height: auto;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-icon img {
    width: 24px;
    height: 24px;
}

.social-icon:hover {
    transform: translateY(-3px);
}

/* Address */
.footer-address h6 {
    color: #07484A;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-address p {
    color: #07484A;
    font-size: 14px;
    margin: 0;
    line-height: 1.8;
}

/* Footer Titles */
.footer-title {
    color: #07484A;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #07484A;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Copyright */
.footer-copyright {
    border-top: 1px solid #d0d0d0;
    padding-top: 20px;
}

.footer-copyright p {
    color: #07484A;
    font-size: 13px;
    margin: 0;
    text-align: center;
}

@media (max-width: 991px) {
    .footer-title {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
}

/* RESPONSIVE FIXES */
@media (max-width:768px){

.hero-title{
    font-size:28px;
}

.cat-card.large{
    height:220px;
}

}
