/*====================================================
    COLOR PALETTE
====================================================*/

:root {
    --color-primary: #2daae1;
    --color-primary-dark: #1f8fc2;
    --color-gray-blue: #e6ebed;
    --color-secondary: #FFA832;
    --color-dark: #181818;
    --color-text: #666;
    --color-heading: #000;
    --color-white: #fff;
    --color-gray-light: #f8f8f8;
    --color-gray-border: #e0e0e0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/*====================================================
    ANIMATION UTILITIES
====================================================*/

/* Fade - element starts hidden */
.fade {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fade.fade-in {
    opacity: 1;
}

/* Fade-up - element starts hidden and below, slides up while fading in */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-up.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Fade-down - element starts hidden and above, slides down while fading in */
.fade-down {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-down.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Fade-left - element starts hidden and to the right, slides left while fading in */
.fade-left {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-left.fade-in {
    opacity: 1;
    transform: translateX(0);
}

/* Fade-right - element starts hidden and to the left, slides right while fading in */
.fade-right {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-right.fade-in {
    opacity: 1;
    transform: translateX(0);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "urbane", Roboto, Arial, sans-serif;
    color: var(--color-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.custom-container {
    max-width: 1640px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 30px 0;
    color:  var(--color-dark);
}

h6 {
    font-size: 14px;
    color: var(--color-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    line-height: 1.5;
}

p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.2px;
}

.section-header h2 {
    text-align: center;
    color: var(--color-dark);
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 30px;
}

button {
    outline: none;
    border: none;
}

/*====================================================
    HEADER & NAVIGATION
====================================================*/

/* Header & Navigation - Mobile First */
.header {
    position: relative;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    height: 100px;
    display: flex;
    align-items: center;
}
.header.scroll-down, .header.scroll-up {
    background: white;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
header.scroll-down:before, header.scroll-up:before {
    opacity: 0;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 20px;
    padding-top: 20px;
}
.navbar .nav-group {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.nav-menu:hover .overlaymenu {
    opacity: 1;
    height: 3px !important;
}
.overlaymenu {
    position: absolute;
    background-color: var(--color-blue);
    z-index: 1;
    transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
    height: 0px !important;
    bottom: 20px;
    display: none;
}
.logo {
    flex-shrink: 0;
    transition: var(--transition);
    max-width: 40%;
}
.footer-logo:hover img, .logo:hover img {
    opacity: 0.7;
    scale: 0.99;
}
.logo img {
    max-height: 75px;
    width: 100%;
    transition: var(--transition);
    object-fit: contain;
    display: flex;
    align-items: center;
    max-width: 240px;
    scale: 0.999;
}
.header.scroll-down .logo img {
    height: 50px;
}
.logo-text {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-black);
}
.navbr-info ul li:last-child {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px 0px 8px 8px;
    z-index: 1001;
    background: none !important;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Navigation Menu - Mobile */
.nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100dvh;
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding-top: 130px;
    list-style: none;
    overflow-y: auto;
}

header.scroll-down .nav-menu {
    padding-top: 100px;
}
.nav-menu.active {
    left: 0;
}

.nav-menu li a {
    font-size: 16px;
    font-weight: 500;
    padding: 12px 0;
    display: block;
    text-decoration: none;
    color: var(--color-dark);
    transition: var(--transition);
}

.nav-menu li a:hover {
    color: var(--color-primary);
}

/* Submenu Styles - Mobile */
.nav-menu .sub-menu, .nav-menu ul.sub-menu {
    display: none;
    padding-left: 10px;
    margin-top: 10px;
    list-style: none;
}

.nav-menu .sub-menu.active,
.nav-menu ul.sub-menu.active {
    display: block;
}

.nav-menu .sub-menu li a,
.nav-menu ul.sub-menu li a {
    font-size: 14px;
    padding: 10px 0;
    text-transform: none;
    font-weight: 400;
    border-bottom: 1px solid #f5f5f5;
}

/* Menu Item with Submenu */
.nav-menu .menu-item-has-children > a,
.nav-menu li.menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Dropdown Arrow */
.nav-menu .menu-item-has-children > a::after, .nav-menu li.menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(../images/down-chevron.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
    margin-left: 5px;
}

.nav-menu .menu-item-has-children.active > a::after, .nav-menu li.menu-item-has-children.active > a::after {
    transform: rotate(180deg);
}

/* Navigation Icons */
.nav-icons {
    display: flex;
    gap: 10%;
    align-items: center;
}

.icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--color-black);
    position: relative;
}

.nav-group .cart-count {
    position: absolute;
    background: var(--color-primary);
    width: 21px;
    height: 21px;
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: -2px;
    top: 16px;
    font-size: 12px;
    z-index: 99;
    transition: var(--transition);
    font-weight: 500;
}
.nav-group .cart-count span {
    line-height: 12px;
    margin-top: 1px;
}
.icon-link:hover .cart-count{
    border-color: var(--color-blue);
}

.icon-link img {
    width: 26px;
    height: 26px;
    transition: var(--transition);
}

.icon-link:hover {
    color: var(--color-blue);
}

.icon-link:hover img {
    filter: brightness(0) saturate(100%) invert(56%) sepia(61%) saturate(592%) hue-rotate(155deg) brightness(93%) contrast(89%);
}


@media (min-width: 1280px) {
    /* Header */

    .navbar {
        gap: 40px;
        padding-top: 0;
        padding-bottom: 0;
    }
    .hero-content:before {
        display:none;
    }

    /* Hide mobile menu toggle */
    .mobile-menu-toggle {
        display: none;
    }
    
    /* Desktop Navigation */
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        padding: 0;
        background: transparent;
        box-shadow: none;
        flex: 1;
        justify-content: flex-start;
        display: inline-flex;
        gap: 20px;
        overflow: unset;
    }
    .nav-menu li {
        position: relative;
        display: flex;
    }
    .nav-menu li a {
        font-size: 14px;
        padding: 15px 0;
        border: none;
    }
    
    /* Desktop Dropdown Styles */
    .nav-menu .menu-item-has-children > a::after, .nav-menu li.menu-item-has-children > a::after {
        content: "";
        display: inline-block;
        width: 12px;
        height: 12px;
        background-image: url(../images/down-chevron.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin-left: 10px;
        transition: transform 0.3s ease;
        transform: rotate(0deg);
    }
    
    .nav-menu .menu-item-has-children:hover > a::after, .nav-menu li.menu-item-has-children:hover > a::after {
        transform: rotate(180deg);
    }
    
    .nav-menu .sub-menu,
    .nav-menu ul.sub-menu {
        display: block !important;
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        min-width: 280px;
        padding: 15px 0 !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
        margin-top: 0 !important;
        padding-left: 0 !important;
    }
    
    .nav-menu .menu-item-has-children:hover > .sub-menu,
    .nav-menu li.menu-item-has-children:hover > ul.sub-menu,
    .nav-menu > li:hover > .sub-menu,
    .nav-menu > li:hover > ul.sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-menu .sub-menu li,
    .nav-menu ul.sub-menu li {
        padding: 0;
    }
    
    .nav-menu .sub-menu li a, .nav-menu ul.sub-menu li a {
        padding: 10px 20px;
        text-transform: none;
        font-weight: 400;
        border-bottom: none;
        display: block;
        transition: all 0.3s ease;
        width: 100%;
        font-size: 13px;
    }
    
    .nav-menu .sub-menu li a:hover, .nav-menu ul.sub-menu li a:hover {
        background: var(--color-gray-blue);
        color: var(--color-blue);
        padding-left: 25px;
    }
    
    .nav-icons {
        gap: 15px;
    }
    .navbar-info ul {
        display: inline-flex;
        width: 100%;
        font-size: 14px;
        gap: 20px;
        justify-content: flex-end;
        color: #7d7d7d;
        opacity: 1;
    }
}


/*====================================================
    HERO SLIDER - Mobile First
====================================================*/

.hero-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 70vh;
}

.hero-slider {
    position: relative;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-slider.owl-loaded {
    opacity: 1;
}

.hero-slide-item {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 60%, rgba(255,255,255,0) 100%);
    z-index: 2;
}

.hero-picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video-desktop {
    display: none;
}

.hero-video-mobile {
    display: block;
}

.hero-slide-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 40px 0;
}

.hero-content-inner {
    max-width: 100%;
}

.hero-text {
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text);
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.hero-text h1, .hero-text h2 {
    font-size: 28px;
    line-height: 1.1;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0 0 15px 0;
    letter-spacing: -1px;
}

.hero-text h3 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
    color: #000;
    margin: 0 0 12px 0;
}

.hero-text p:last-child {
    margin-bottom: 0;
}

.hero-button-wrapper {
    margin-top: 20px;
}

.btn {
    display: inline-block !important;
    padding: 14px 40px !important;
    background: var(--color-primary) !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgb(0 137 255 / 30%) !important;
    cursor: pointer !important;
    font-family: "urbane", Roboto, Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.6px !important;
}

.btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    color: #fff;
}

.hero-slider .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 30px));
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.hero-slider .owl-nav button {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    transition: all 0.3s ease;
    pointer-events: all;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 30px !important;
    justify-content: center;
}

.hero-slider .owl-nav button:hover {
    background: #fff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero-slider .owl-nav button.owl-prev {
    left: 10px;
}
.hero-slider .owl-nav button.owl-next {
    right: 10px;
}

.hero-slider .owl-nav button span {
    display: none !important;
}

.hero-slider .owl-nav button::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-image: url('../images/down-chevron.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-slider .owl-nav button.owl-prev::before {
    transform: rotate(90deg);
}

.hero-slider .owl-nav button.owl-next::before {
    transform: rotate(-90deg);
}

.hero-slider .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.hero-slider .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-slider .owl-dots .owl-dot.active {
    background: var(--color-primary);
    border-color: #fff;
    width: 12px;
    height: 12px;
}

.hero-slider .owl-dots .owl-dot:hover {
    background: var(--color-primary);
}

.owl-theme .owl-dots .owl-dot span {
    display: none;
}

@media (min-width: 992px) {
    .hero-slide-item {
        min-height: 70vh;
    }
    
    .hero-slide-bg::after {
        background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0) 100%);
    }
    
    .hero-video-desktop {
        display: block;
    }
    
    .hero-video-mobile {
        display: none;
    }
    
    .hero-slide-content {
        padding: 80px 0;
    }
    
    .hero-content-inner {
        max-width: 600px;
    }
    
    .hero-text {
        margin-bottom: 30px;
    }
    
    .hero-text p {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .hero-text h1,
    .hero-text h2 {
        font-size: 56px;
        margin-bottom: 20px;
    }
    
    .hero-text h3 {
        font-size: 42px;
        margin-bottom: 15px;
    }
    
    .hero-button-wrapper {
        margin-top: 30px;
    }

    .hero-slider .owl-nav button {
        width: 50px;
        height: 50px;
    }
    
    .hero-slider .owl-nav button.owl-prev {
        left: 20px;
    }
    
    .hero-slider .owl-nav button.owl-next {
        right: 20px;
    }
    
    .hero-slider .owl-nav button::before {
        width: 20px;
        height: 20px;
    }
    
    .hero-slider .owl-dots {
        bottom: 30px;
        gap: 10px;
    }
    
    .hero-slider .owl-dots .owl-dot {
        width: 12px;
        height: 12px;
    }
    
    .hero-slider .owl-dots .owl-dot.active {
        width: 14px;
        height: 14px;
    }
}

/*====================================================
    PRODUCT CATEGORIES - Mobile First
====================================================*/

.product-categories-section {
    padding: 40px 0;
    background: #fff;
}

.product-categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.product-category-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    background: #f5f5f5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1 / 1;
}

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

.category-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: #e0e0e0;
    height: 100%;
}

.category-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.product-category-card:hover .category-image-wrapper img {
    transform: scale(1.1);
}

.category-content {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: space-between;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
}

.category-name {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
    color: var(--color-dark);
    text-transform: capitalize;
}

.category-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.product-category-card:hover .category-arrow {
    background: #FF8C00;
    transform: translateX(4px);
}

.category-arrow svg {
    width: 20px;
    height: 20px;
}

@media (min-width: 992px) {
    .product-categories-section {
        padding: 80px 0 0;
    }
    
    h2 {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .product-categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .category-content {
        top: 20px;
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
    
    .category-name {
        font-size: 18px;
    }
    
    .category-arrow {
        width: 40px;
        height: 40px;
    }
    
    .category-arrow svg {
        width: 24px;
        height: 24px;
    }
}

/*====================================================
    NEW PRODUCTS - Mobile First
====================================================*/

.new-products-section .section-header h2 {
    margin-bottom: 20px;
}

.new-products-section {
    padding: 40px 0;
}

.new-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.product-card {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

.product-image-wrapper a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all 0.4s ease;
}

button.product-action-btn img {
    width: 16px;
    height: 16px;
    display: inline-block;
    max-width: unset;
    object-fit: contain;
    transform: scale(1) !important;
}

.product-action-top {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 5;
    height: calc(100% - 40px);
    justify-content: space-between;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 36px;
    height: 36px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    justify-content: center;
    padding: 0 !important;
}

button.product-action-btn.add-to-cart-btn {
    background: var(--color-dark);
}

button.product-action-btn.add-to-cart-btn img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(98%) saturate(0%) hue-rotate(357deg) brightness(106%) contrast(101%);
}

button.product-action-btn.add-to-cart-btn:hover {
    background: var(--color-primary);
}

.product-action-btn:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(98%) saturate(0%) hue-rotate(357deg) brightness(106%) contrast(101%);
}

.product-action-btn:hover {
    background: var(--color-primary);
    color: #fff;
    transform: scale(1.1);
}

.product-action-btn svg {
    width: 18px;
    height: 18px;
}

.product-info {
    padding: 12px;
}

.product-title {
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.product-title a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: -0.5px;
    line-height: 1.5;
}

.product-title a:hover {
    color: var(--color-primary);
}

.product-price {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text);
}

.product-price del {
    color: #999;
    font-weight: 400;
    font-size: 14px;
    margin-right: 8px;
}

@media (min-width: 992px) {
    .new-products-section {
        padding: 80px 0 40px;
    }
    
    .new-products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    
    .product-actions {
        top: 15px;
        right: 15px;
    }
    
    .product-action-btn {
        width: 40px;
        height: 40px;
    }
    
    .product-action-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .product-info {
        padding: 16px;
    }
    
    .product-title {
        font-size: 15px;
        margin-bottom: 10px;
    }
}

/*====================================================
    QUICK VIEW POPUP - Mobile First
====================================================*/

.quick-view-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow-y: auto;
}

.quick-view-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.quick-view-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: unset;
}

.quick-view-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 0;
}

.quick-view-close img {
    width: 20px;
    height: 20px;
    display: block;
}

.quick-view-close:hover {
    background: var(--color-primary);
    transform: rotate(90deg);
}

.quick-view-close:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(98%) saturate(0%) hue-rotate(357deg) brightness(106%) contrast(101%);
}

.quick-view-inner {
    display: flex;
    flex-direction: column;
}

.quick-view-gallery {
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0;
    transition: opacity 0.5s ease 0.5s;
}

.quick-view-gallery.gallery-ready {
    opacity: 1;
}

.quick-view-slide, .quick-view-slide img {
    max-height: 300px;
}

.quick-view-carousel {
    position: relative;
    width: 100%;
    visibility: hidden;
    opacity: 0;
}

.quick-view-carousel.carousel-ready {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.quick-view-carousel .owl-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.quick-view-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 20px));
    width: 100%;
    z-index: 5;
}

.quick-view-carousel .owl-nav button {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.quick-view-carousel .owl-nav button:hover {
    background: #fff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.quick-view-carousel .owl-nav button.owl-prev {
    left: 10px;
}

.quick-view-carousel .owl-nav button.owl-next {
    right: 10px;
}

.quick-view-carousel .owl-nav button span {
    display: none !important;
}

.quick-view-carousel .owl-nav button::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='18 15 12 9 6 15'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.quick-view-carousel .owl-nav button.owl-prev::before {
    transform: rotate(270deg);
}

.quick-view-carousel .owl-nav button.owl-next::before {
    transform: rotate(90deg);
}

.quick-view-details {
    padding: 20px;
    overflow-y: auto;
}

.quick-view-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #000;
}

.quick-view-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.quick-view-price del {
    color: #999;
    font-weight: 400;
    font-size: 18px;
    margin-right: 10px;
}

.quick-view-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.quick-view-cart-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-view-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-view-quantity label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.quick-view-quantity input {
    width: 80px;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.quick-view-quantity input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.quick-view-add-to-cart {
    width: 100%;
    padding: 14px 30px;
    background: var(--color-primary);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgb(0 137 255 / 30%);
}

.quick-view-add-to-cart:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgb(0 137 255 / 40%);
}

.quick-view-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (min-width: 992px) {
    .quick-view-content {
        width: 85%;
        max-width: 1000px;
        transform: translateY(calc(50vh - 150px));
    }
    
    .quick-view-close {
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .quick-view-inner {
        flex-direction: row;
        max-height: 300px;
    }
    
    .quick-view-gallery {
        width: 50%;
    }
    
    .quick-view-details {
        width: 50%;
        padding: 40px;
    }
    
    .quick-view-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .quick-view-price {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .quick-view-description {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .quick-view-cart-form {
        gap: 20px;
    }
    
    .quick-view-quantity input {
        width: 100px;
    }
}

/*====================================================
    ICONS WITH TEXT - Mobile First
====================================================*/

.icons-with-text-section {
    padding: 40px 0;
    background: #fff;
}

.icons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0px;
}

.icon-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    padding: 20px;
    gap: 10px;
}

.icon-wrapper {
    width: 60px;
    min-width: 60px;
    height: 60px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-gray-border);
    border-radius: 50%;
}

.icon-wrapper img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    width: 30px;
    filter: brightness(0) saturate(100%) invert(54%) sepia(93%) saturate(382%) hue-rotate(156deg) brightness(89%) contrast(98%);
}

.icon-content {
    width: 100%;
}

.icon-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 10px 0;
    color: var(--color-dark);
    line-height: 1.3;
    margin-bottom: 10px;
}

.icon-description {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    color: var(--color-text);
    font-weight: 300;
}

@media (min-width: 992px) {
    .icons-with-text-section {
        padding: 80px 0 40px;
    }
    
    .icons-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
    
    .icon-item {
        padding: 0;
    }
    
    .icon-title {
        font-size: 18px;
    }
    
    .icon-description {
        font-size: 14px;
    }
}

/*====================================================
    MEDIA TEXT - Mobile First
====================================================*/

.media-text-section {
    padding: 40px 0;
    background: #fff;
}

.media-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.media-text-media {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.media-text-media img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.media-video-trigger {
    position: relative;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.media-video-trigger:hover {
    transform: scale(1.02);
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    pointer-events: none;
}

.video-play-icon path {
    fill: var(--color-dark);
}

.media-video-trigger:hover .video-play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-icon svg {
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.media-text-content {
    width: 100%;
}

.media-text-wysiwyg {
    margin-bottom: 20px;
}

.media-text-wysiwyg p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text);
    margin-bottom: 15px;
}

.media-text-wysiwyg h1,
.media-text-wysiwyg h2,
.media-text-wysiwyg h3 {
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.media-text-wysiwygh6{
    color: var(--color-dark);
}

.media-text-wysiwyg h1 {
    font-size: 28px;
}

.media-text-wysiwyg h1,
.media-text-wysiwyg h2,
.media-text-wysiwyg h3 {
    font-size: 36px;
}

.media-text-wysiwyg h3 {
    font-size: 20px;
}

.media-text-wysiwyg ul,
.media-text-wysiwyg ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.media-text-wysiwyg li {
    margin-bottom: 8px;
    color: #666;
}

.media-text-button-wrapper {
    margin-top: 20px;
}

@media (min-width: 992px) {
    .media-text-section {
        padding: 80px 0 40px;
    }
    
    .media-text-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }
    
    .media-position-left .media-text-wrapper {
        flex-direction: row;
    }
    
    .media-position-right .media-text-wrapper {
        flex-direction: row-reverse;
    }
    
    .media-text-media {
        width: 50%;
        flex-shrink: 0;
    }
    
    .media-text-content {
        width: 50%;
    }
    
    .media-text-wysiwyg {
        margin-bottom: 30px;
    }
    
    .media-text-wysiwyg p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .media-text-wysiwyg h1 {
        font-size: 42px;
        margin-bottom: 20px;
    }
    
    .media-text-wysiwyg h2 {
        font-size: 48px;
    }
    
    .media-text-wysiwyg h3 {
        font-size: 28px;
        margin-bottom: 18px;
    }
    
    .media-text-button-wrapper {
        margin-top: 30px;
    }
}

/*====================================================
    BRANDS CAROUSEL - Mobile First
====================================================*/

.brands-section {
    padding: 40px 0;
    background: #fff;
}

.brands-carousel {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brands-carousel.owl-loaded {
    opacity: 1;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: 80px;
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 1;
    transition: all 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.brands-carousel .owl-nav {
    display: none;
}

.brands-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.brands-carousel .owl-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #e0e0e0;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.brands-carousel .owl-dot.active {
    background: var(--color-primary);
    width: 12px;
    height: 12px;
}

@media (min-width: 992px) {
.brands-section {
        padding: 80px 0 40px;
    }
    
    .brand-item {
        height: 100px;
        padding: 20px;
    }
    
    .brands-carousel .owl-nav {
        display: block;
    }
    
    .brands-carousel .owl-nav button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.05) !important;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 20px;
        color: #333;
    }
    
    .brands-carousel .owl-nav button:hover {
        background: var(--color-primary) !important; 
        color: #fff;
    }
    
    .brands-carousel .owl-nav button.owl-prev {
        left: -60px;
    }
    
    .brands-carousel .owl-nav button.owl-next {
        right: -60px;
    }
    
    .brands-carousel .owl-dots {
        display: none;
    }
}

/*====================================================
    PRODUCT IMAGE HOVER EFFECT (Second Image)
====================================================*/

.product-link {
    position: relative;
    display: block;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.4s ease;
}

.product-image-main {
    position: relative;
    z-index: 1;
}

.product-image-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 2;
}

.product-link:hover .product-image-hover {
    opacity: 1;
}

/*====================================================
    PRODUCT CAROUSEL - Mobile First
====================================================*/

.product-carousel-section {
    padding: 40px 0;
    background: #fff;
    overflow: hidden;
}

.product-carousel {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-carousel.owl-loaded {
    opacity: 1;
}

.product-carousel .product-card {
    margin: 0 10px;
}

.product-carousel .owl-nav {
    display: none;
}

.product-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.product-carousel .owl-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #e0e0e0;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.product-carousel .owl-dot.active {
    background: var(--color-primary);
    width: 12px;
    height: 12px;
}

@media (min-width: 992px) {
    .product-carousel-section {
        padding: 80px 0;
    }
    
    .product-carousel .product-card {
        margin: 0 15px;
    }
    
    .product-carousel .owl-nav {
        display: block;
    }
    
    .product-carousel .owl-nav button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.9) !important;
        border-radius: 50%;
        display: flex !important;
        align-items: center;
        justify-content: center;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        border-radius: 30px !important;
    }
    
    .product-carousel .owl-nav button:hover {
        background: #fff !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    
    .product-carousel .owl-nav button span {
        display: none !important;
    }
    
    .product-carousel .owl-nav button::before {
        content: "";
        display: block;
        width: 20px;
        height: 20px;
        background-image: url('../images/down-chevron.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    
    .product-carousel .owl-nav button.owl-prev {
        left: 20px;
    }
    
    .product-carousel .owl-nav button.owl-prev::before {
        transform: rotate(90deg);
    }
    
    .product-carousel .owl-nav button.owl-next {
        right: 20px;
    }
    
    .product-carousel .owl-nav button.owl-next::before {
        transform: rotate(-90deg);
    }
    
    .product-carousel .owl-dots {
        display: none;
    }
}

/*====================================================
    NEWSLETTER - Mobile First
====================================================*/

.newsletter-section {
    padding: 40px 0;
    border-top: 1px solid var(--color-gray-border);
}

.newsletter-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
}

.newsletter-content {
    margin-bottom: 30px;
}

.newsletter-content h1,
.newsletter-content h2,
.newsletter-content h3 {
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.newsletter-content h2 {
    font-size: 24px;
}

.newsletter-content h3 {
    font-size: 20px;
}

.newsletter-content p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text);
    margin-bottom: 15px;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input[type="email"],
.newsletter-form input[type="text"] {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]:focus,
.newsletter-form input[type="text"]:focus {
    outline: none;
    border-color: var(--color-primary);
}

.newsletter-form input[type="submit"],
.newsletter-form button[type="submit"] {
    width: 100%;
    padding: 14px 30px;
    background: var(--color-primary);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.newsletter-form input[type="submit"]:hover,
.newsletter-form button[type="submit"]:hover {
    background: #FF8C00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

@media (min-width: 992px) {
    .newsletter-section {
        padding: 80px 0;
    }
    
    .newsletter-wrapper {
        padding: 60px 80px;
    }
    
    .newsletter-content {
        margin-bottom: 40px;
    }
    
    .newsletter-content h1 {
        font-size: 42px;
        margin-bottom: 20px;
    }
    
    .newsletter-content h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .newsletter-content h3 {
        font-size: 28px;
        margin-bottom: 18px;
    }
    
    .newsletter-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .newsletter-form {
        display: flex;
        gap: 15px;
        align-items: center;
    }
    
    .newsletter-form input[type="email"],
    .newsletter-form input[type="text"] {
        flex: 1;
        margin-bottom: 0;
        font-size: 16px;
    }
    
    .newsletter-form input[type="submit"],
    .newsletter-form button[type="submit"] {
        width: auto;
        padding: 14px 40px;
        flex-shrink: 0;
    }
}

/*====================================================
    FOOTER - Mobile First
====================================================*/

.footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-white);
    margin: 0 0 20px 0;
    text-transform: capitalize;
}

.footer-description {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.footer-special-links {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-special-link {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-special-link:hover {
    color: var(--color-primary);
}

.footer-special-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transform: translateY(-1px);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.footer-social-link:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-list li:last-child {
    margin-bottom: 0;
}

.footer-menu-list li {
    margin-bottom: 0;
}

.footer-menu-list a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 100;
    letter-spacing: 0.5px;
}

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

.footer-menu-list a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.footer-logo-column {
    display: flex;
    align-items: flex-start;
}

.footer-logo {
    display: block;
    max-width: 200px;
    margin-top: 30px;
    width: 100%;
    margin: 30px auto 0;
}

.footer-logo img {
    object-fit: contain;
    scale: 0.999;
    transition: var(--transition);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: left;
    font-weight: 300;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (min-width: 992px) {
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 60px;
        margin-bottom: 40px;
    }
    
    .footer-title {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .footer-special-links {
        margin-bottom: 25px;
    }
    
    .footer-special-link {
        font-size: 15px;
    }
    
    .footer-bottom {
        padding-top: 30px;
    }
    
    .footer-bottom p {
        font-size: 13px;
    }
}

/*====================================================
    PAGE TITLE BLOCK - Mobile First
====================================================*/

.page-title-header {
    text-align: left;
    background-color: #f3f3f3;
    height: 200px;
    display: flex;
    align-items: center;
    position: relative;
}

.page-title-header.has-bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

.page-title-header.has-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.page-title-header .container {
    position: relative;
    z-index: 2;
}

.page-title-header h1 {
    font-weight: 600;
    font-size: 36px;
    color: var(--color-dark);
}

.page-title-header.has-bg-image h1 {
    color: #fff;
}

.breadcrumbs {
    font-size: 13px;
    margin-top: 15px;
}

.breadcrumbs a {
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid;
    color: var(--color-text);
}

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

.page-title-header.has-bg-image .breadcrumbs a {
    color: rgba(255, 255, 255, 0.9);
}

.page-title-header.has-bg-image .breadcrumbs a:hover {
    color: #fff;
}

#breadcrumbs {
    font-size: 13px !important;
    color: var(--color-text) !important;
    letter-spacing: 0.2px;
    font-weight: 300;
}

@media (min-width: 992px) {
    
    .breadcrumbs {
        font-size: 14px;
    }
}

/*====================================================
    MAP BLOCK - Mobile First
====================================================*/

.map-section {
    padding: 40px 0;
}

.map-top-content {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text);
}

.map-top-content h2,
.map-top-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.map-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-left-column {
    width: 100%;
}

.map-left-content {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 25px;
}

.map-left-content h3,
.map-left-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.map-left-content p {
    margin-bottom: 15px;
}

.map-special-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.map-special-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--color-gray-blue);
    border-radius: 8px;
    color: var(--color-dark);
    text-decoration: none;
    transition: var(--transition);
}

.map-special-link:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-special-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.map-special-link span {
    font-size: 15px;
    font-weight: 500;
}

.map-right-column {
    width: 100%;
}

.map-embed {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (min-width: 992px) {
    .map-section {
        padding: 80px 0 40px;
    }
    
    .map-top-content {
        margin-bottom: 50px;
        font-size: 16px;
    }
    
    .map-top-content h2,
    .map-top-content h3 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .map-wrapper {
        flex-direction: row;
        gap: 60px;
    }
    
    .map-left-column {
        width: 40%;
    }
    
    .map-left-content {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .map-left-content h3,
    .map-left-content h4 {
        font-size: 24px;
    }
    
    .map-special-links {
        gap: 20px;
    }
    
    .map-special-link {
        padding: 18px 20px;
    }
    
    .map-special-link span {
        font-size: 16px;
    }
    
    .map-right-column {
        width: 60%;
    }
    
    .map-embed {
        height: 500px;
    }
}

/*====================================================
    CONTACT FORM BLOCK - Mobile First
====================================================*/

.contact-form-section {
    padding: 40px 0;
    background: #f9f9f9;
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-form-info {
    width: 100%;
}

.contact-form-info h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.contact-form-description {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text);
    font-weight: 300;
}

.contact-form-fields {
    width: 100%;
}

/* Contact Form 7 Styling */
.contact-form-fields .wpcf7-form {
    display: block;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    position: relative;
}

.contact-form-left, .contact-form-right {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.wpcf7-spinner {
    position: absolute !important;
    left: 0 !important;
}

.contact-form-right p {
    width: 100%;
    text-align: right;
}

.contact-form-right label {
    text-align: left;
}

.contact-form-fields label {
    display: block;
    margin-bottom: 0;
    font-weight: 100;
    font-size: 12px;
    color: #18181880;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-form-fields .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.contact-form-fields input[type="text"], .contact-form-fields input[type="email"], .contact-form-fields input[type="tel"], .contact-form-fields textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--color-gray-border);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: #fff;
    height: 50px;
}

.contact-form-fields input[type="text"]:focus,
.contact-form-fields input[type="email"]:focus,
.contact-form-fields input[type="tel"]:focus,
.contact-form-fields textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.contact-form-fields textarea {
    min-height: 200px;
    resize: vertical;
}

.contact-form-right textarea {
    height: 100%;
    min-height: 280px;
}

.contact-form-fields input[type="submit"] {
    width: 100%;
    padding: 16px 40px;
    background: var(--color-primary);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.contact-form-fields input[type="submit"]:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.contact-form-fields .wpcf7-not-valid-tip {
    font-size: 12px;
    color: #dc3545;
    margin-top: 5px;
}

.contact-form-fields .wpcf7-response-output {
    margin: 20px 0 0;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
}

.contact-form-fields .wpcf7-mail-sent-ok {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.contact-form-fields .wpcf7-validation-errors,
.contact-form-fields .wpcf7-mail-sent-ng {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

@media (min-width: 768px) {
    .contact-form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .contact-form-right {
        height: 100%;
    }
    
    .contact-form-fields textarea,
    .contact-form-fields input[type="submit"] {
        grid-column: 1 / -1;
    }
}

@media (min-width: 992px) {
    .contact-form-section {
        padding: 80px 0 40px;
    }
    
    .contact-form-wrapper {
        flex-direction: row;
        gap: 60px;
        align-items: flex-start;
    }
    
    .contact-form-info {
        width: 30%;
    }
    
    .contact-form-info h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .contact-form-description {
        font-size: 16px;
    }
    
    .contact-form-fields {
        width: 70%;
    }
    
    .contact-form-fields input[type="text"],
    .contact-form-fields input[type="email"],
    .contact-form-fields input[type="tel"],
    .contact-form-fields textarea {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .contact-form-fields textarea {
        min-height: 180px;
    }
    
    .contact-form-fields input[type="submit"] {
        width: auto;
        padding: 16px 50px;
    }
}

/*====================================================
    TEXT BLOCK - Mobile First
====================================================*/

.text-block-section {
    padding: 40px 0;
}

.text-block-wrapper {
    width: 100%;
}

.text-block-content {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text);
}

.text-block-content h1,
.text-block-content h2,
.text-block-content h3,
.text-block-content h4,
.text-block-content h5,
.text-block-content h6 {
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.text-block-content h1 {
    font-size: 28px;
}

.text-block-content h2 {
    font-size: 24px;
}

.text-block-content h3 {
    font-size: 20px;
}

.text-block-content h4 {
    font-size: 18px;
}

.text-block-content h5 {
    font-size: 16px;
}

.text-block-content h6 {
    font-size: 14px;
}

.text-block-content p {
    margin-bottom: 15px;
}

.text-block-content ul,
.text-block-content ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.text-block-content li {
    margin-bottom: 8px;
}

.text-block-content a {
    color: var(--color-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.text-block-content a:hover {
    color: var(--color-dark);
}

.text-block-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
}

.text-block-content blockquote {
    border-left: 4px solid var(--color-primary);
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: var(--color-text);
}

@media (min-width: 992px) {
    .text-block-section {
        padding: 60px 0;
    }
    
    .text-block-content {
        font-size: 16px;
    }
    
    .text-block-content h1 {
        font-size: 42px;
    }
    
    .text-block-content h2 {
        font-size: 36px;
    }
    
    .text-block-content h3 {
        font-size: 28px;
    }
    
    .text-block-content h4 {
        font-size: 24px;
    }
    
    .text-block-content h5 {
        font-size: 20px;
    }
    
    .text-block-content h6 {
        font-size: 16px;
    }
    
    /* Narrow width option - 900px max-width centered */
    .text-block-width-narrow .text-block-wrapper {
        max-width: 900px;
        margin: 0 auto;
    }
}

/*====================================================
    ARCHIVE PRODUCT PAGE - Mobile First
====================================================*/

/* Archive Header with Background Image */
.archive-header {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0 40px;
    margin-bottom: 40px;
}

.archive-header-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.woocommerce-breadcrumb {
    font-size: 13px !important;
    color: var(--color-text) !important;
    letter-spacing: 0.2px;
}

.woocommerce-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.archive-title {
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    letter-spacing: -1px;
    color: var(--color-dark);
}

/* Archive Content Layout */
.archive-content {
    padding: 0 0 60px;
}

.archive-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Sidebar */
.archive-sidebar {
    width: 100%;
}

.sidebar-widgets {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widgets .widget {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.sidebar-widgets .widget-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-dark);
}

/* Archive Main Content */
.archive-main {
    width: 100%;
}

/* Archive Toolbar */
.archive-toolbar {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.archive-result-count {
    font-size: 14px;
    color: var(--color-text);
}

.archive-ordering {
    width: 100%;
}

.archive-ordering select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
}

/* Archive Description (SEO Text) */
.archive-description {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text);
}

.archive-description p {
    margin-bottom: 10px;
}

.archive-description p:last-child {
    margin-bottom: 0;
}

/* Products Grid */
.woocommerce-loop-product__title {
    display: none;
}

.products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

/* Archive Pagination */
.archive-pagination {
    margin-top: 40px;
}

.archive-pagination .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.archive-pagination .page-numbers li {
    margin: 0;
}

.archive-pagination .page-numbers a,
.archive-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark);
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.archive-pagination .page-numbers a:hover {
    background: var(--color-dark);
    color: #fff;
    border-color: var(--color-dark);
}

.archive-pagination .page-numbers .current {
    background: var(--color-dark);
    color: #fff;
    border-color: var(--color-dark);
}

/* No Products Found */
.no-products-found {
    text-align: center;
    padding: 60px 20px;
}

.no-products-found p {
    font-size: 16px;
    color: var(--color-text);
}

/* Tablet & Desktop */
@media (min-width: 768px) {
    .archive-header {
        padding: 120px 0 60px;
        margin-bottom: 60px;
    }
    
    .archive-title {
        font-size: 48px;
    }
    
    .archive-toolbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .archive-ordering {
        width: auto;
        min-width: 200px;
    }
    
    .products {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (min-width: 992px) {
    .archive-layout {
        flex-direction: row;
        gap: 40px;
    }
    
    .archive-sidebar {
        width: 280px;
        flex-shrink: 0;
    }
    
    .archive-main {
        flex: 1;
    }
    
    .products {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .archive-description {
        font-size: 15px;
        padding: 25px;
    }
}

@media (min-width: 1200px) {
    .products {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ====================================================
    TWO COLUMN TEXT BLOCK - Mobile First
====================================================*/

.two-column-text-section {
    padding: 40px 0;
}

.two-column-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.two-column-text-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.two-column-text-left h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0;
    line-height: 1.3;
}

.two-column-text-right {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text);
}

.two-column-text-right p {
    margin: 0 0 15px 0;
    font-weight: 300;
}

.two-column-text-right p:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .two-column-text-section {
        padding: 60px 0;
    }
    
    .two-column-text-item {
        grid-template-columns: 1fr 2fr;
        gap: 40px;
    }
    
    .two-column-text-left h3 {
        font-size: 24px;
    }
    
    .two-column-text-right {
        font-size: 15px;
    }
}

@media (min-width: 992px) {
    .two-column-text-section {
        padding: 80px 0;
    }
    
    .two-column-text-wrapper {
        gap: 60px;
    }
    
    .two-column-text-item {
        gap: 60px;
    }
    
    .two-column-text-left h3 {
        font-size: 26px;
    }
    
    .two-column-text-right {
        font-size: 16px;
    }
}

/* ====================================================
    STATISTICS BLOCK - Mobile First
====================================================*/

.statistics-section {
    padding: 50px 0;
    background: var(--color-gray-blue);
}

.statistics-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.statistic-item {
    text-align: center;
    padding: 20px;
}

.statistic-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
    line-height: 1;
}

.statistic-number .counter {
    display: inline-block;
}

.statistic-label {
    font-size: 13px;
    color: var(--color-text);
    line-height: 1.4;
}

@media (min-width: 768px) {
    .statistics-section {
        padding: 70px 0;
    }
    
    .statistics-wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
    
    .statistic-item {
        padding: 30px 20px;
    }
    
    .statistic-number {
        font-size: 48px;
        margin-bottom: 15px;
    }
    
    .statistic-label {
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    .statistics-section {
        padding: 90px 0;
    }
    
    .statistic-number {
        font-size: 56px;
    }
    
    .statistic-label {
        font-size: 15px;
    }
}

/* ====================================================
    GALLERY BLOCK - Mobile First
====================================================*/

.gallery-section {
    padding: 40px 0;
}

.gallery-content {
    margin-bottom: 40px;
    text-align: center;
}

.gallery-content h2 {
    font-size: 28px;
    font-weight: 500;
    color: var(--color-dark);
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.gallery-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.gallery-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0 0 15px 0;
    font-weight: 300;
}

.gallery-content p:last-child {
    margin-bottom: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    display: block;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.gallery-section .gallery-item img {
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    backdrop-filter: blur(10px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-content {
        margin-bottom: 50px;
    }
    
    .gallery-content h3 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .gallery-content p {
        font-size: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .gallery-item-tall {
        grid-row: span 2;
    }
}

@media (min-width: 992px) {
    .gallery-section {
        padding: 80px 0;
    }
    
    .gallery-content {
        margin-bottom: 60px;
    }
    
    .gallery-content h2 {
        font-size: 36px;
    }
    
    .gallery-content h3 {
        font-size: 30px;
    }
    
    .gallery-content p {
        font-size: 16px;
    }
    
    .gallery-grid {
        gap: 25px;
    }
}
