:root {
    --primary-color: #23A6F0;
    --secondary-color: #23856D;
    --text-color: #252B42;
    --light-text: #737373;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-slider{
    max-width: 1200px;
    margin: 7% 20%;
    padding: 0 15px;
}

/* Header Styles */
.header {
    font-family: 'Montserrat', sans-serif;
}

/* Top Bar Styles */
.top-bar {
    background-color: #252B42;
    color: #FFFFFF;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-info a {
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-follow {
    font-weight: 500;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-links span {
    font-weight: 700;
}

.social-links a {
    color: #FFFFFF;
    text-decoration: none;
}

/* Main Navigation Styles */
.main-nav {
    background: #FFFFFF;
    padding: 20px 0;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #252B42;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #737373;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.has-dropdown a {
    color: #252B42;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-actions a {
    color: #23A6F0;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-actions span {
    color: #23A6F0;
}

.nav-actions i {
    font-size: 16px;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    background: #96E9FB;
    height: 700px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    justify-content: space-between;
}

.slide.active {
    opacity: 1;
    position: relative;
}

.slide .container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.slider-indicators {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.indicator {
    width: 62px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background: #FFFFFF;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 450px;
}

.season {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.slide-content h2 {
    font-size: 58px;
    line-height: 1.2;
    margin: 30px 0;
    font-weight: 700;
    color: #252B42;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.slide-content p {
    font-size: 20px;
    line-height: 1.5;
    color: var(--light-text);
    margin-bottom: 30px;
    max-width: 450px;
}

.btn-shop {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    transition: background-color 0.3s ease;
}

.btn-shop:hover {
    background: #1f95d8;
}

.slide-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #252B42;
    transition: background-color 0.3s ease;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

@media (max-width: 992px) {
    .hero-slider {
        height: 600px;
    }

    .slide-content h2 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }

    .slide-image {
        width: 100%;
        opacity: 0.3;
    }

    .slide-content {
        position: relative;
        z-index: 2;
    }

    .slide-content h2 {
        font-size: 36px;
    }

    .slide-content p {
        font-size: 16px;
    }
}

/* Editor's Pick Styles */
.editors-pick {
    padding: 80px 0;
}

.editors-pick h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}

.pick-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.pick-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.pick-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pick-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.pick-content h3 {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 700;
    background: white;
    padding: 15px 40px;
    border-radius: 5px;
}

/* Bestseller Products Styles */
.bestseller-products {
    padding: 80px 0;
}

.bestseller-products h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    margin-bottom: 20px;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.product-prices {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.old-price {
    color: var(--light-text);
    text-decoration: line-through;
}

.price {
    color: var(--primary-color);
    font-weight: 700;
}

.product-colors {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.color-option {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

/* Product Grid Layout */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 239px);
    gap: 30px;
    justify-content: center;
    margin: 0 auto;
    max-width: 1036px;
    padding: 0 15px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(239px, 1fr));
        max-width: 778px;
    }
    
    .product-card {
        width: 100%;
        max-width: 239px;
    }
}

@media (max-width: 992px) {
    .product-grid {
        max-width: 508px;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .product-card {
        height: auto;
        min-height: 380px;
    }
    
    .product-image {
        height: 250px;
    }
    
    .product-info {
        padding: 15px;
    }
}

@media (max-width: 320px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        max-width: 100%;
    }
}

/* Featured Slider Styles */
.featured-slider {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0;
    margin: 80px 0;
    position: relative;
    height: 716px;
    overflow: hidden;
}

.featured-slider .slider-container {
    height: 100%;
}

.featured-slider .slide {
    height: 100%;
    background: var(--secondary-color);
}

.featured-slider .slide-content {
    color: var(--white);
    padding-top: 80px;
    max-width: 450px;
}

.featured-slider .season {
    color: var(--white);
    opacity: 0.8;
}

.featured-slider h2 {
    color: var(--white);
    font-size: 40px;
    line-height: 1.2;
    margin: 20px 0;
    font-weight: 700;
}

.featured-slider p {
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 30px;
}

.featured-slider .slide-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.featured-slider .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.featured-slider .btn-shop {
    background: var(--white);
    color: var(--secondary-color);
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
}

.featured-slider .btn-shop:hover {
    background: rgba(255, 255, 255, 0.9);
}

.featured-slider .slide-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
}

.featured-slider .slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-slider .slider-indicators {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.featured-slider .indicator {
    width: 62px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.featured-slider .indicator.active {
    background: var(--white);
}

.featured-slider .slider-nav {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.featured-slider .slider-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 992px) {
    .featured-slider {
        height: 600px;
    }

    .featured-slider h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .featured-slider {
        height: 500px;
    }

    .featured-slider .slide-image {
        width: 100%;
        opacity: 0.2;
    }

    .featured-slider .slide-content {
        position: relative;
        z-index: 2;
        padding-top: 60px;
    }

    .featured-slider h2 {
        font-size: 28px;
    }

    .featured-slider p {
        font-size: 16px;
    }

    .featured-slider .slide-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* Featured Posts Styles */
.featured-posts {
    padding: 80px 0;
    background: #FAFAFA;
}

.section-tag {
    display: block;
    text-align: center;
    color: #23A6F0;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.2px;
    margin-bottom: 10px;
}

.featured-posts h2 {
    text-align: center;
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    color: #252B42;
    margin-bottom: 10px;
}

.section-description {
    text-align: center;
    color: #737373;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
}

.post-card {
    background: #FFFFFF;
    border: 1px solid #DEDEDE;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.post-image {
    position: relative;
    height: 300px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-image .tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #E74040;
    color: #FFFFFF;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
}

.post-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.post-meta .category {
    color: #737373;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    text-decoration: none;
    letter-spacing: 0.2px;
}

.post-meta .category:hover {
    color: #23A6F0;
}

.post-card h3 {
    color: #252B42;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 10px;
    letter-spacing: 0.2px;
}

.post-card p {
    color: #737373;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 25px;
    letter-spacing: 0.2px;
    flex-grow: 1;
}

.post-footer {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
    padding-top: 15px;
}

.post-date, .post-comments {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #737373;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.2px;
}

.post-date i, .post-comments i {
    color: #23A6F0;
    font-size: 16px;
}

.learn-more {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #252B42;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    text-decoration: none;
    letter-spacing: 0.2px;
}

.learn-more i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-posts h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .section-description {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .post-grid {
        grid-template-columns: 1fr;
    }

    .post-image {
        height: 250px;
    }
}

/* Footer Styles */
.footer {
    background: #FAFAFA;
    padding: 50px 0 0 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 50px;
}

.brand-section {
    flex: 0 0 auto;
}

.brand-section h3 {
    color: #252B42;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.1px;
    margin-bottom: 20px;
}

.brand-section .social-links {
    display: flex;
    gap: 20px;
}

.brand-section .social-links a {
    color: #23A6F0;
    font-size: 24px;
    transition: color 0.3s ease;
}

.brand-section .social-links a:hover {
    color: #2A7CC7;
}

.footer-links {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.link-group h4 {
    color: #252B42;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.1px;
    margin-bottom: 20px;
}

.link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-group ul li {
    margin-bottom: 10px;
}

.link-group ul li a {
    color: #737373;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-group ul li a:hover {
    color: #252B42;
}

.subscribe-form .input-group {
    display: flex;
    margin-bottom: 10px;
}

.subscribe-form input {
    flex: 1;
    height: 58px;
    padding: 0 20px;
    border: 1px solid #E6E6E6;
    border-radius: 5px 0 0 5px;
    font-size: 14px;
    color: #737373;
    background: #F9F9F9;
}

.subscribe-form input::placeholder {
    color: #737373;
}

.subscribe-form button {
    padding: 0 22px;
    background: #23A6F0;
    border: none;
    border-radius: 0 5px 5px 0;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 14px;
    line-height: 58px;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.subscribe-form button:hover {
    background: #2A7CC7;
}

.subscribe-form p {
    color: #737373;
    font-size: 12px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.2px;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid #E6E6E6;
    background: #FAFAFA;
}

.footer-bottom p {
    color: #737373;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.2px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .subscribe {
        grid-column: span 3;
    }
}

@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
    }
    
    .brand-section {
        text-align: center;
    }
    
    .brand-section .social-links {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .subscribe {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .subscribe {
        grid-column: span 1;
    }
    
    .subscribe-form .input-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .subscribe-form input,
    .subscribe-form button {
        width: 100%;
        border-radius: 5px;
    }
    
    .footer-bottom {
        text-align: center;
    }
}

/* Additional refinements */
.slide {
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    width: 100%;
}

.slide.active {
    opacity: 1;
    position: relative;
}

.product-card {
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.pick-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.1));
    pointer-events: none;
}

/* Ensure images maintain aspect ratio */
.product-image {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-actions {
        gap: 15px;
    }
    
    .nav-actions .login-link span {
        display: none;
    }
}

.featured-slider .slide::before {
    background: linear-gradient(
        to right,
        rgba(35, 133, 109, 0.9) 0%,
        rgba(35, 133, 109, 0.7) 100%
    );
}

/* Demo Popup Styles */
.demo-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.demo-popup.active {
    display: flex;
}

.popup-content {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.popup-content p {
    margin-bottom: 20px;
    color: #252B42;
    font-size: 16px;
    font-weight: 500;
}

#dismiss-popup {
    background: #23A6F0;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

#dismiss-popup:hover {
    background: #1a8dd4;
} 