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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* Top Bar */
.top-bar {
    background-color: #1a5c4c;
    color: #fff;
    font-size: 12px;
    padding: 10px 0;
}

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

.top-bar p {
    letter-spacing: 0.3px;
    font-weight: 400;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-link {
    color: #fff;
    font-size: 12px;
    transition: opacity 0.3s ease;
}

.lang-link:hover {
    opacity: 0.8;
}

.lang-divider {
    color: #fff;
}

/* Header */
.header {
    background-color: #fff;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

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

.header-left {
    display: flex;
    align-items: center;
    min-width: 150px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.logo img {
    max-height: 60px;
    max-widht:100%;
}

.logo-main {
    font-size: 16px;
    font-weight: 600;
    color: #1a5c4c;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.logo-sub {
    font-size: 14px;
    color: #1a5c4c;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    position: static;
}

.main-nav > ul {
    position: static;
}

.main-nav ul {
    display: flex;
    gap: 50px;
}

.main-nav a {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    padding-bottom: 5px;
    position: relative;
}

.main-nav a:hover {
    color: #1a5c4c;
}

.main-nav a.active {
    color: #333;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
}

/* Mega Menu Styles */
.main-nav > ul > li {
    position: static;
}

.has-mega-menu {
    position: static;
}

.has-mega-menu2 > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #1a5c4c;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.has-mega-menu:hover > a::after {
    transform: scaleX(1);
}

.has-mega-menu:hover > a {
    color: #333;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Products Mega Menu */
.products-menu .mega-menu-inner {
    display: flex;
    gap: 60px;
}

.mega-menu-categories {
    min-width: 150px;
}

.mega-menu-categories ul {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mega-menu-categories li a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
    font-weight: 400;
}

.mega-menu-categories li a:hover,
.mega-menu-categories li a.active {
    color: #333;
    font-weight: 600;
}

.mega-menu-products {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mega-menu-products .product-card {
    text-align: center;
}

.mega-menu-products .product-image {
    background-color: #f5f5f5;
    padding: 20px;
    margin-bottom: 15px;
    border-top: 3px solid #1a5c4c;
}

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

.mega-menu-products .product-card h4 {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.mega-menu-products .product-price {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* Inspiration Mega Menu */
.inspiration-menu .mega-menu-inner {
    padding: 30px 20px;
}

.inspiration-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.inspiration-card {
    position: relative;
    height: 220px;
    overflow: hidden;
    display: block;
}

.inspiration-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.inspiration-card:hover img {
    transform: scale(1.05);
}

.inspiration-label {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.inspiration-label h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-family: 'Inter', sans-serif;
}

.inspiration-arrow {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 36px;
    height: 36px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.inspiration-arrow svg {
    color: #333;
    width: 14px;
    height: 14px;
}

.inspiration-card:hover .inspiration-arrow {
    background-color: #1a5c4c;
}

.inspiration-card:hover .inspiration-arrow svg {
    color: #fff;
}

.header-right {
    display: flex;
    align-items: center;
    min-width: 200px;
    justify-content: flex-end;
}

.search-box {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    overflow: hidden;
}

.search-input {
    width: 150px;
    padding: 10px 15px;
    border: none;
    outline: none;
    font-size: 13px;
    color: #666;
    background-color: #fff;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    width: 42px;
    height: 40px;
    background-color: #1a5c4c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background-color: #14483b;
}

.search-btn svg {
    color: #fff;
}

/* Mobile Controls - Hidden on desktop */
.mobile-controls {
    display: none;
    align-items: center;
    gap: 15px;
}

.mobile-lang-switch {
    display: flex;
    align-items: center;
    gap: 5px;
}

.mobile-lang {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.mobile-lang.active {
    color: #1a5c4c;
    font-weight: 600;
}

.mobile-lang-divider {
    color: #ccc;
    font-size: 12px;
}

/* Hamburger Button */
.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Menu */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav.active {
    max-height: 500px;
    overflow-y: auto;
}

.mobile-nav > ul {
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
}

.mobile-nav > ul > li {
    border-bottom: 1px solid #eee;
}

.mobile-nav > ul > li:last-child {
    border-bottom: none;
}

.mobile-nav > ul > li > a {
    display: block;
    padding: 15px 0;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    letter-spacing: 0.5px;
}

.mobile-nav > ul > li > a.active {
    color: #1a5c4c;
}

/* Submenu Toggle */
.has-submenu {
    position: relative;
}

.has-submenu > a {
    display: inline-block !important;
    width: calc(100% - 40px);
}

.submenu-toggle {
    position: absolute;
    right: 0;
    top: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submenu-toggle.active {
    transform: rotate(180deg);
}

.submenu-toggle svg {
    color: #666;
}

/* Mobile Submenu */
.mobile-submenu {
    display: none;
    flex-direction: column;
    padding-left: 20px;
    padding-bottom: 10px;
}

.mobile-submenu.active {
    display: flex;
}

.mobile-submenu li a {
    display: block;
    padding: 10px 0;
    font-size: 13px;
    color: #666;
}

.mobile-submenu li a:hover {
    color: #1a5c4c;
}

/* Hero Section - 3D Cube Carousel */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    perspective: 1500px;
    background-color: #f5f5f0;
}

.hero-cube-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    perspective: 1500px;
}

.hero-cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    overflow: hidden;
}

/* Position slides on cube faces */
.hero-slide.slide-1 {
    transform: rotateY(0deg) translateZ(0);
}

.hero-slide.slide-2 {
    transform: rotateY(90deg) translateZ(0);
    opacity: 0;
}

.hero-slide.slide-3 {
    transform: rotateY(180deg) translateZ(0);
    opacity: 0;
}

/* Active state */
.hero-slide.active {
    opacity: 1;
    z-index: 10;
}

/* Slide background */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

/* Slide content overlay */
.slide-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 500px;
}

.slide-title {
    font-size: 56px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    font-style: italic;
}

.slide-subtitle {
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 20px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    font-family: 'Inter', sans-serif;
}

.slide-features {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.slide-features span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

.slide-features .divider {
    color: rgba(255, 255, 255, 0.5);
}

.shop-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background-color: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.shop-now-btn:hover {
    background-color: #1a5c4c;
    color: #fff;
}

.shop-now-btn svg {
    transition: transform 0.3s ease;
}

.shop-now-btn:hover svg {
    transform: translateX(5px);
}

/* Navigation buttons */
.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
}

.hero-nav-btn.prev {
    left: 30px;
}

.hero-nav-btn.next {
    right: 30px;
}

.hero-nav-btn svg {
    width: 30px;
    height: 30px;
    stroke-width: 1.5;
}

.hero-nav-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Cube rotation animation states */
.hero-cube.rotating-next {
    animation: cubeRotateNext 0.8s cubic-bezier(0.4, 0.2, 0.2, 1) forwards;
}

.hero-cube.rotating-prev {
    animation: cubeRotatePrev 0.8s cubic-bezier(0.4, 0.2, 0.2, 1) forwards;
}

@keyframes cubeRotateNext {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(-90deg);
    }
}

@keyframes cubeRotatePrev {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(90deg);
    }
}

/* Transition effects for slides */
.hero-slide.slide-out-left {
    animation: slideOutLeft 0.8s cubic-bezier(0.4, 0.2, 0.2, 1) forwards;
}

.hero-slide.slide-out-right {
    animation: slideOutRight 0.8s cubic-bezier(0.4, 0.2, 0.2, 1) forwards;
}

.hero-slide.slide-in-left {
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0.2, 0.2, 1) forwards;
}

.hero-slide.slide-in-right {
    animation: slideInRight 0.8s cubic-bezier(0.4, 0.2, 0.2, 1) forwards;
}

@keyframes slideOutLeft {
    0% {
        transform: rotateY(0deg) translateZ(300px);
        opacity: 1;
    }
    100% {
        transform: rotateY(-90deg) translateZ(300px);
        opacity: 0;
    }
}

@keyframes slideOutRight {
    0% {
        transform: rotateY(0deg) translateZ(300px);
        opacity: 1;
    }
    100% {
        transform: rotateY(90deg) translateZ(300px);
        opacity: 0;
    }
}

@keyframes slideInLeft {
    0% {
        transform: rotateY(90deg) translateZ(300px);
        opacity: 0;
    }
    100% {
        transform: rotateY(0deg) translateZ(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: rotateY(-90deg) translateZ(300px);
        opacity: 0;
    }
    100% {
        transform: rotateY(0deg) translateZ(0);
        opacity: 1;
    }
}

/* Section Header - Center */
.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.title-underline {
    display: inline-block;
    width: 50px;
    height: 3px;
    background-color: #333;
}

/* Section Header - Lines */
.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 24px;
    letter-spacing: 3px;
    color: #333;
    white-space: nowrap;
}

.section-header.light h2 {
    color: #fff;
}

.section-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background-color: #ddd;
}

.section-header.light .section-line {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Category Section */
.category-section {
    padding: 80px 0;
    background-color: #fff;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.category-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    display: block;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
}

.category-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.arrow-btn svg {
    color: #333;
    stroke-width: 2;
}

.category-card:hover .arrow-btn {
    background-color: #1a5c4c;
}

.category-card:hover .arrow-btn svg {
    color: #fff;
}

/* Product Icons */
.product-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 80px;
    padding: 0 40px;
	max-width: 1200px;
    margin: 0 auto;
	margin-top: 60px;
}

.product-icon-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.product-icon-item:hover {
    opacity: 0.7;
}

.product-icon {
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-icon-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.learn-more {
    font-size: 13px;
    color: #888;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.product-icon-item:hover .learn-more {
    color: #1a5c4c;
}

/* Events Section */
.events-section {
    background-image: url('../images/events-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
}

.section-header-center.light {
    margin-bottom: 40px;
}

.section-header-center.light h2 {
    color: #fff;
}

.title-underline.light {
    background-color: #fff;
}

/* Row 1: Full width HOT PICKS */
.events-row-top {
    margin-bottom: 5px;
}

.events-row-top .event-card.hot-picks {
    display: block;
    width: 100%;
    height: 380px;
}

/* Row 2: Left + Right stack layout */
.events-row-bottom {
    display: flex;
    gap: 5px;
    height: 340px;
}

.events-row-bottom .event-card.new-products {
    flex: 0 0 50%;
    height: 100%;
}

.events-right-stack {
    flex: 0 0 calc(50% - 2.5px);
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 100%;
}

.events-right-stack .event-card {
    flex: 1;
    min-height: 0;
}

.event-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.event-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover img {
    transform: scale(1.05);
}

/* Event Label Styles */
.event-label {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
}

.event-label.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.event-label h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-family: 'Inter', sans-serif;
}

.event-line {
    display: block;
    width: 40px;
    height: 2px;
    background-color: #fff;
    margin-top: 12px;
}

/* Customer Cases Section */
.cases-section {
    padding: 80px 0;
}

.cases-title {
    text-align: center;
    font-size: 28px;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.cases-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    font-size: 13px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #666;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover {
    border-color: #1a5c4c;
    color: #1a5c4c;
}

.filter-btn.active {
    border-color: #1a5c4c;
    background-color: #1a5c4c;
    color: #fff;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.case-item {
    position: relative;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
}

.case-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-item:hover img {
    transform: scale(1.1);
}

.cases-more {
    text-align: center;
}

.more-btn {
    padding: 15px 50px;
    background-color: #1a5c4c;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.more-btn:hover {
    background-color: #14483b;
}

/* News Section */
.news-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.news-card {
    display: block;
    background-color: #fff;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    border-color: #ddd;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.news-image {
    height: 280px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 25px 20px 20px;
}

.news-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-content p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* News Meta - Date with hover effect */
.news-meta {
    margin-top: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.news-card:hover .news-meta {
    opacity: 1;
    transform: translateY(0);
}

.news-line {
    display: block;
    width: 40px;
    height: 2px;
    background-color: #1a5c4c;
    margin-bottom: 15px;
}

.news-date {
    font-size: 13px;
    color: #888;
    font-family: 'Inter', sans-serif;
}

/* =============================================
   INSPIRATION PAGE STYLES
============================================= */

/* Inspiration Hero */
.inspiration-hero {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.inspiration-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Inspiration Section */
.inspiration-section {
    padding: 80px 0;
    background-color: #fff;
}

.inspiration-content {
    max-width: 100%;
}

.inspiration-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.inspiration-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Masonry Gallery */
.masonry-gallery {
    display: flex;
    gap: 8px;
    height: 600px;
}

.masonry-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
}

.masonry-col-left {
    flex: 0 0 45%;
}

.masonry-col-center {
    flex: 0 0 27%;
}

.masonry-col-right {
    flex: 1;
}

.masonry-item {
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.masonry-col-left .masonry-item.large {
    height: 100%;
}

.masonry-col-center .masonry-item:first-child {
    flex: 0 0 calc(42% - 4px);
}

.masonry-col-center .masonry-item:last-child {
    flex: 1;
}

.masonry-col-right .masonry-item:first-child {
    flex: 0 0 calc(55% - 4px);
}

.masonry-col-right .masonry-item:last-child {
    flex: 1;
}

/* Inspiration Responsive */
@media (max-width: 992px) {
    .inspiration-hero {
        height: 280px;
    }
    
    .masonry-gallery {
        flex-direction: column;
        height: auto;
    }
    
    .masonry-col {
        flex: none;
        width: 100%;
        height: auto;
    }
    
    .masonry-col-left .masonry-item.large {
        height: 350px;
    }
    
    .masonry-col-center .masonry-item:first-child,
    .masonry-col-center .masonry-item:last-child,
    .masonry-col-right .masonry-item:first-child,
    .masonry-col-right .masonry-item:last-child {
        flex: none;
        height: 280px;
    }
}

@media (max-width: 576px) {
    .inspiration-hero {
        height: 200px;
    }
    
    .masonry-col-left .masonry-item.large {
        height: 280px;
    }
    
    .masonry-col-center .masonry-item:first-child,
    .masonry-col-center .masonry-item:last-child,
    .masonry-col-right .masonry-item:first-child,
    .masonry-col-right .masonry-item:last-child {
        height: 220px;
    }
}

/* =============================================
   PRODUCT DETAIL PAGE STYLES
============================================= */

/* Product Detail Hero */
.product-detail-hero {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

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

/* Product Detail Section */
.product-detail-section {
    padding: 60px 0 80px;
    background-color: #fff;
}

.product-detail-wrapper {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

/* Product Detail Left - Image */
.product-detail-left {
    flex: 0 0 45%;
}

.product-main-image {
    position: relative;
    background-color: #f5f5f5;
    cursor: zoom-in;
    overflow: hidden;
}

.product-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Zoom Lens */
.image-zoom-lens {
    display: none;
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background-repeat: no-repeat;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Product Share */
.product-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.product-share .share-label {
    font-size: 13px;
    color: #888;
}

.product-share .share-icons {
    display: flex;
    gap: 8px;
}

.product-share .share-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.product-share .share-icon:hover {
    opacity: 0.8;
}

.product-share .share-icon.wechat { background-color: #7bb32e; color: #fff; }
.product-share .share-icon.weibo { background-color: #e6162d; color: #fff; }
.product-share .share-icon.qq { background-color: #12b7f5; color: #fff; }
.product-share .share-icon.qzone { background-color: #fece00; color: #fff; }
.product-share .share-icon.douban { background-color: #2e963d; color: #fff; }
.product-share .share-icon.other { background-color: #4a90d9; color: #fff; }

.product-share .share-icon svg {
    width: 14px;
    height: 14px;
}

/* Product Navigation */
.product-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.product-nav-btn {
    padding: 10px 30px;
    border: 1px solid #ddd;
    font-size: 13px;
    color: #666;
    transition: all 0.3s ease;
}

.product-nav-btn:hover {
    border-color: #1a5c4c;
    color: #1a5c4c;
}

/* Product Detail Right - Info */
.product-detail-right {
    flex: 1;
}

.product-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
}

.product-price-row {
    margin-bottom: 20px;
}

.price-label {
    font-size: 14px;
    color: #888;
    margin-right: 10px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.product-meta {
    margin-bottom: 30px;
}

.meta-row {
    margin-bottom: 10px;
}

.meta-label {
    font-size: 14px;
    color: #888;
    margin-right: 10px;
}

.meta-value {
    font-size: 14px;
    color: #333;
}

.book-now-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #333;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.book-now-btn:hover {
    background-color: #1a5c4c;
}

/* Product Tabs */
.product-tabs {
    border-top: 1px solid #eee;
}

.tab-header {
    display: flex;
    border-bottom: 1px solid #eee;
}

.tab-btn {
    padding: 20px 30px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    border-bottom-color: #333;
}

.tab-content {
    padding: 30px 0;
}

.tab-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.lightbox-close svg {
    color: #fff;
    width: 24px;
    height: 24px;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.lightbox-toolbar {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    background-color: rgba(80, 80, 80, 0.8);
    padding: 15px 25px;
    border-radius: 30px;
}

.toolbar-btn {
    width: 36px;
    height: 36px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.toolbar-btn:hover {
    opacity: 0.7;
}

.toolbar-btn svg {
    color: #fff;
    width: 20px;
    height: 20px;
}

/* Booking Form Modal */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.booking-modal.active {
    display: flex;
}

.booking-modal-content {
    background-color: #fff;
    padding: 50px 60px;
    max-width: 600px;
    width: 90%;
    position: relative;
}

.booking-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-close svg {
    color: #999;
    width: 20px;
    height: 20px;
}

.booking-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
}

.booking-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.booking-form label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

.booking-form input {
    width: 100%;
    padding: 12px 15px;
    font-size: 14px;
    border: 1px solid #ddd;
    outline: none;
    transition: border-color 0.3s ease;
}

.booking-form input:focus {
    border-color: #1a5c4c;
}

.booking-form .required-mark {
    position: absolute;
    right: -15px;
    top: 45px;
    color: #e74c3c;
    font-size: 14px;
}

.captcha-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.captcha-input {
    width: 120px !important;
    flex-shrink: 0;
}

.captcha-image {
    width: 80px;
    height: 40px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    letter-spacing: 3px;
    color: #333;
    text-decoration: line-through;
}

.change-captcha {
    font-size: 13px;
    color: #1a5c4c;
    text-decoration: none;
}

.change-captcha:hover {
    text-decoration: underline;
}

.submit-btn {
    display: block;
    width: 200px;
    padding: 15px 30px;
    background-color: #333;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    margin-top: 30px;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #1a5c4c;
}

/* Product Detail Responsive */
@media (max-width: 992px) {
    .product-detail-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .product-detail-left {
        flex: none;
    }
    
    .product-detail-hero {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .booking-modal-content {
        padding: 30px 25px;
    }
    
    .product-nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .product-nav-btn {
        text-align: center;
    }
}

/* =============================================
   PRODUCTS LIST PAGE STYLES
============================================= */

/* Products Hero */
.products-hero {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.products-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Products List Section */
.products-list-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.product-list-card {
    display: block;
    text-decoration: none;
    text-align: center;
}

.product-list-image {
    background-color: #f5f5f5;
    padding: 10px;
    margin-bottom: 15px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-list-card:hover .product-list-image img {
    transform: scale(1.05);
}

.product-list-card h4 {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 5px;
}

.product-list-price {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    font-family: 'Inter', sans-serif;
}

/* Products List Responsive */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .products-hero {
        height: 220px;
    }
    
    .product-list-image {
        height: 180px;
        padding: 20px;
    }
}

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

/* =============================================
   NEWS LIST PAGE STYLES
============================================= */

/* News Hero */
.news-hero {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.news-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* News List Section */
.news-list-section {
    padding: 80px 0;
    background-color: #fff;
}

.news-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.news-list-card {
    display: block;
    text-decoration: none;
    overflow: hidden;
}

.news-list-image {
    height: 240px;
    overflow: hidden;
}

.news-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-list-card:hover .news-list-image img {
    transform: scale(1.05);
}

.news-list-content {
    padding: 25px 20px 30px;
    background-color: #fff;
}

.news-list-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-list-content p {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-list-line {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #1a5c4c;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
}

.page-btn,
.page-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #666;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-btn:hover,
.page-num:hover {
    border-color: #1a5c4c;
    color: #1a5c4c;
}

.page-num.active {
    background-color: #1a5c4c;
    border-color: #1a5c4c;
    color: #fff;
}

.page-btn svg {
    width: 16px;
    height: 16px;
}

.page-btn.prev:hover svg,
.page-btn.next:hover svg {
    stroke: #1a5c4c;
}

/* News List Responsive */
@media (max-width: 992px) {
    .news-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-hero {
        height: 250px;
    }
    
    .pagination {
        gap: 8px;
    }
    
    .page-btn,
    .page-num {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .news-list-grid {
        grid-template-columns: 1fr;
    }
    
    .news-hero {
        height: 200px;
    }
    
    .news-list-image {
        height: 200px;
    }
}

/* =============================================
   NEWS DETAIL PAGE STYLES
============================================= */

/* News Detail Hero */
.news-detail-hero {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.news-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* News Detail Section */
.news-detail-section {
    padding: 60px 0 80px;
    background-color: #fff;
}

.news-article {
    max-width: 900px;
    margin: 0 auto;
}

/* Article Header */
.article-header {
    margin-bottom: 40px;
}

.article-header h1 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.article-meta {
    margin-bottom: 20px;
}

.article-time {
    font-size: 13px;
    color: #888;
}

.article-divider {
    width: 100%;
    height: 1px;
    background-color: #e5e5e5;
}

/* Article Content */
.article-content {
    margin-bottom: 60px;
}

.article-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

.article-content p strong {
    color: #333;
    font-weight: 600;
}

/* Article Footer */
.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.article-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-prev,
.nav-next {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-label {
    font-size: 13px;
    color: #888;
    min-width: 35px;
}

.nav-prev a,
.nav-next a {
    font-size: 14px;
    color: #333;
    transition: color 0.3s ease;
}

.nav-prev a:hover,
.nav-next a:hover {
    color: #1a5c4c;
}

/* Share Section */
.article-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-label {
    font-size: 13px;
    color: #888;
}

.share-icons {
    display: flex;
    gap: 10px;
}

.share-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.share-icon:hover {
    opacity: 0.8;
}

.share-icon.wechat {
    background-color: #7bb32e;
    color: #fff;
}

.share-icon.weibo {
    background-color: #e6162d;
    color: #fff;
}

.share-icon.qq {
    background-color: #12b7f5;
    color: #fff;
}

.share-icon.qzone {
    background-color: #fece00;
    color: #fff;
}

.share-icon.douban {
    background-color: #2e963d;
    color: #fff;
}

.share-icon svg {
    width: 16px;
    height: 16px;
}

/* News Detail Responsive */
@media (max-width: 768px) {
    .news-detail-hero {
        height: 220px;
    }
    
    .article-header h1 {
        font-size: 22px;
    }
    
    .article-footer {
        flex-direction: column;
        gap: 30px;
    }
    
    .nav-prev,
    .nav-next {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* =============================================
   CONTACT PAGE STYLES
============================================= */

/* Contact Hero */
.contact-hero {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.contact-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Section */
.about-section {
    padding: 80px 0 60px;
    background-color: #fff;
}

.about-image {
    margin-bottom: 40px;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-content {
    display: flex;
    gap: 60px;
    padding: 0 20px;
}

.about-logo {
    min-width: 150px;
}

.about-logo .logo-main {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #1a5c4c;
    font-family: 'Playfair Display', serif;
}

.about-logo .logo-sub {
    display: block;
    font-size: 14px;
    color: #1a5c4c;
    font-family: 'Playfair Display', serif;
}

.about-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.about-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Contact Info Section */
.contact-info-section {
    padding: 50px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
}

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

.contact-card {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #eee;
}

.contact-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.contact-card p {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 15px;
    min-height: 40px;
}

.contact-link {
    font-size: 14px;
    color: #333;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #1a5c4c;
}

/* Consultation Form Section */
.consult-section {
    padding: 80px 0;
    background-image: url('../images/consult-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.consult-wrapper {
    display: flex;
    background-color: #fff;
    overflow: hidden;
}

.consult-left {
    flex: 0 0 40%;
    padding: 40px;
}

.consult-subtitle {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.consult-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.consult-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.consult-right {
    flex: 0 0 60%;
    padding: 40px;
    background-color: #fff;
}

.consult-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

.consult-form label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.consult-form input,
.consult-form textarea,
.consult-form select {
    width: 100%;
    padding: 10px 0;
    font-size: 14px;
    border: none;
    border-bottom: 1px solid #ddd;
    background-color: transparent;
    outline: none;
    transition: border-color 0.3s ease;
}

.consult-form input:focus,
.consult-form textarea:focus,
.consult-form select:focus {
    border-color: #1a5c4c;
}

.consult-form textarea {
    resize: none;
    border: 1px solid #ddd;
    padding: 10px;
}

.region-selects {
    display: flex;
    gap: 15px;
}

.region-selects select {
    flex: 1;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

.required-mark {
    position: absolute;
    right: 0;
    top: 30px;
    color: #e74c3c;
    font-size: 14px;
}

.inquire-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #1a5c4c;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.inquire-btn:hover {
    background-color: #145a4a;
}

/* Contact Page Responsive */
@media (max-width: 992px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .consult-wrapper {
        flex-direction: column;
    }
    
    .consult-left,
    .consult-right {
        flex: none;
        width: 100%;
    }
    
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-hero {
        height: 200px;
    }
    
    .about-image img {
        height: 250px;
    }
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
}

.footer-top {
    background-color: #1a5c4c;
    padding: 20px 0;
    text-align: center;
}

.footer-top p {
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-main {
    padding: 40px 0;
    border-bottom: 1px solid #333;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
}

.footer-col h5 {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #ccc;
}

.footer-bottom {
    padding: 30px 0;
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 12px;
    color: #888;
}

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

.footer-contact span,
.footer-address span,
.footer-legal span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact svg,
.footer-address svg {
    color: #1a5c4c;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .events-row-top .event-card.hot-picks {
        height: 280px;
    }
    
    .events-row-bottom .event-card.new-products {
        height: 250px;
    }
    
    .event-label h3 {
        font-size: 14px;
    }
    
    .cases-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .main-nav {
        display: none;
    }
    
    /* Show mobile controls */
    .mobile-controls {
        display: flex;
    }
    
    /* Hide search box on mobile */
    .search-box {
        display: none;
    }
    
    /* Show mobile nav */
    .mobile-nav {
        display: block;
    }
    
    .header {
        position: relative;
    }
    
    .header-right {
        min-width: auto;
    }
    
    .hero {
        height: 400px;
    }
    
    .slide-content {
        left: 30px;
        max-width: 90%;
    }
    
    .slide-title {
        font-size: 32px;
    }
    
    .slide-subtitle {
        font-size: 18px;
    }
    
    .slide-features {
        gap: 10px;
    }
    
    .slide-features span {
        font-size: 12px;
    }
    
    .shop-now-btn {
        padding: 14px 30px;
        font-size: 11px;
    }
    
    .hero-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .hero-nav-btn.prev {
        left: 15px;
    }
    
    .hero-nav-btn.next {
        right: 15px;
    }
    
    .hero-nav-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .category-cards {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        height: 350px;
    }
    
    .product-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 40px;
        padding: 0 20px;
    }
    
    .events-row-bottom {
        flex-direction: column;
    }
    
    .events-row-bottom .event-card.new-products {
        flex: none;
        height: 280px;
    }
    
    .events-right-stack {
        flex: none;
        flex-direction: column;
    }
    
    .events-right-stack .event-card {
        height: 180px;
    }
    
    .event-label {
        top: 20px;
        left: 20px;
    }
    
    .event-label h3 {
        font-size: 16px;
    }
    
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .footer-info {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-contact,
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .product-icons {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0;
    }
    
    .product-icon {
        width: 60px;
        height: 45px;
    }
    
    .product-icon-item h4 {
        font-size: 16px;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .cases-filter {
        flex-wrap: wrap;
    }
}
