/* Google Fonts Import - temporarily removed to fix loading issues */
/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap'); */

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

/* Hide all price-related elements - user requested to remove all price displays */
.product-price,
.search-result-price,
.card-price,
.price-range-display,
.price-label,
.price-slider,
.enquiry-btn[data-product-price] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
}

/* Horizontal scroll container styles */
.categories-grid-horizontal {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: #d4a373 #f8f8f8;
    -webkit-overflow-scrolling: touch;
}

/* Hide horizontal scrollbar but keep scrolling functionality */
.categories-grid-horizontal::-webkit-scrollbar {
    height: 6px;
}

.categories-grid-horizontal::-webkit-scrollbar-track {
    background: #f8f8f8;
    border-radius: 3px;
}

.categories-grid-horizontal::-webkit-scrollbar-thumb {
    background: #d4a373;
    border-radius: 3px;
}

/* Form input error styles */
input.error,
textarea.error {
    border-color: #ff4757 !important;
    box-shadow: 0 0 0 2px rgba(255, 71, 87, 0.2) !important;
    background-color: #fff5f5 !important;
    transition: all 0.3s ease;
}

input.error:focus,
textarea.error:focus {
    border-color: #ff6b81 !important;
    box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.3) !important;
}

/* Form message styling */
.form-message {
    margin-top: 10px;
    text-align: center;
    min-height: 20px;
    font-size: 14px;
    line-height: 1.4;
}

.categories-grid-horizontal::-webkit-scrollbar-thumb:hover {
    background: #c49363;
}

/* Product category grid layout - supports two-row display */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Extra small button style */
.btn-secondary-xs {
    display: inline-block;
    padding: 4px 8px;
    background-color: #d4a373;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.btn-secondary-xs:hover {
    background-color: #d4a373; /* Keep the same background color as default state */
    transform: none; /* Remove position change effect */
}

/* Product Recommendations Section - set to 80% size */
.product-recommendations {
    padding: 10px 0;
}

.product-recommendations .container {
    max-width: 80%;
    margin: 0 auto;
}

.product-recommendations .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.product-recommendations .section-header h2 {
    font-size: 2.2rem;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.product-recommendations .section-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #d4a373, #e4b383);
    border-radius: 2px;
}
/* Removed unused category-card-small styles */
.category-info-small {
    padding: 12px;
    text-align: center;
}

.category-info-small h3 {
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
    line-height: 1.3;
    font-weight: 600;
}

/* Reduced button styles */
.btn-secondary-small {
    display: inline-block;
    padding: 6px 12px;
    background-color: #d4a373;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary-small:hover {
    background-color: #e4b383;
    transform: translateY(-2px);
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #333;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    text-align: center;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.3rem;
}

h6 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Responsive Typography */
@media (max-width: 1400px) {
    h1 { font-size: 3.2rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.7rem; }
    h4 { font-size: 1.4rem; }
    h5 { font-size: 1.2rem; }
    p { font-size: 0.95rem; }
}

@media (max-width: 1200px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.3rem; }
    h3 { font-size: 1.6rem; }
    h4 { font-size: 1.3rem; }
}

@media (max-width: 992px) {
    h1 { font-size: 2.7rem; }
    h2 { font-size: 2.1rem; }
    h3 { font-size: 1.5rem; }
    p { font-size: 0.95rem; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.3rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }
    h4 { font-size: 1.2rem; }
    h5 { font-size: 1.1rem; }
    h6 { font-size: 1rem; }
    p { font-size: 0.9rem; }
}

@media (max-width: 576px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }
    h4 { font-size: 1.1rem; }
    p { font-size: 0.85rem; }
}

/* About Preview Section */
.about-preview {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.about-preview .section-header {
    margin-bottom: 40px;
}

.about-preview .section-header h2 {
    color: #3a5a40;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.about-preview .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.about-cta {
    margin-top: 30px;
}

/* New Arrivals Section */
.new-arrivals {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.new-arrivals .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.new-arrivals .section-header h2 {
    color: #3a5a40;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.new-arrivals .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Scrolling Products Container */
.scrolling-products-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.scrolling-products-wrapper {
    display: flex;
    width: max-content;
    animation: scrollProducts 30s linear infinite;
    gap: 20px;
    padding: 10px 0;
}

/* Pause animation on hover */
.scrolling-products-container:hover .scrolling-products-wrapper {
    animation-play-state: paused;
}

/* Scrolling Product Card */
.scrolling-product-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-width: 280px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
}

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

/* Scrolling Product Image */
.scrolling-product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

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

/* Scrolling Product Info */
.scrolling-product-info {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.scrolling-product-info h3 {
    font-size: 0.87rem;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
    opacity: 0.8;
}

.scrolling-product-info p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}

/* Small secondary button */
.btn-secondary-sm {
    display: inline-block;
    padding: 8px 16px;
    background-color: #d4a373;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: center;
    margin-top: auto;
}

.btn-secondary-sm:hover {
    background-color: #e4b383;
    transform: translateY(-2px);
}

/* Animation for scrolling products */
@keyframes scrollProducts {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design for New Arrivals */
@media (max-width: 992px) {
    .new-arrivals .section-header h2 {
        font-size: 2.2rem;
    }
    
    .scrolling-product-card {
        min-width: 240px;
        max-width: 240px;
    }
}

@media (max-width: 768px) {
    .new-arrivals {
        padding: 40px 0;
    }
    
    .new-arrivals .section-header h2 {
        font-size: 1.8rem;
    }
    
    .new-arrivals .section-header p {
        font-size: 1rem;
    }
    
    .scrolling-product-card {
        min-width: 200px;
        max-width: 200px;
    }
    
    .scrolling-product-image {
        height: 160px;
    }
    
    .scrolling-product-info {
        padding: 15px;
    }
    
    .scrolling-product-info h3 {
        font-size: 0.87rem;
        opacity: 0.8;
    }
    
    .scrolling-product-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .new-arrivals .section-header h2 {
        font-size: 1.6rem;
    }
    
    .scrolling-products-container {
        padding: 15px 0;
    }
    
    .scrolling-products-wrapper {
        gap: 15px;
    }
    
    .scrolling-product-card {
        min-width: 180px;
        max-width: 180px;
    }
    
    .scrolling-product-image {
        height: 140px;
    }
    
    .btn-secondary-sm {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* Responsive Design for About Preview */
@media (max-width: 992px) {
    .about-preview .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about-preview {
        padding: 40px 0;
    }
    
    .about-preview .section-header h2 {
        font-size: 1.8rem;
    }
    
    .about-preview .section-header p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-preview .section-header h2 {
        font-size: 1.6rem;
    }
}

/* Our Services & Advantages Section */
.our-services-advantages {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.our-services-advantages .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.our-services-advantages .section-header h2 {
    color: #3a5a40;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.our-services-advantages .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: auto;
    padding-bottom: 20px;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3a5a40, #d4a373);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: #f0f5f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: #e6f0e6;
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2.2rem;
    color: #3a5a40;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: #4a6a50;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Design for Services Section */
@media (max-width: 1400px) {
    .services-grid {
        max-width: 1200px;
    }
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 1000px;
    }
}

@media (max-width: 992px) {
    .our-services-advantages .section-header h2 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .our-services-advantages {
        padding: 60px 0;
    }
    
    .our-services-advantages .section-header {
        margin-bottom: 40px;
    }
    
    .our-services-advantages .section-header h2 {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .our-services-advantages .section-header h2 {
        font-size: 1.6rem;
    }
    
    .our-services-advantages .section-header p {
        font-size: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    background-color: #3a5a40;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(58, 90, 64, 0.2);
}

/* Responsive Button Sizes */
@media (max-width: 1200px) {
    .btn {
        padding: 13px 26px;
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        letter-spacing: 0.3px;
    }
}

.btn:hover {
    background-color: #4a6a50;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(58, 90, 64, 0.3);
}

.btn-primary {
    background-color: #3a5a40;
}

.btn-primary:hover {
    background-color: #4a6a50;
}

.btn-secondary {
    background-color: #d4a373;
}

.btn-secondary:hover {
    background-color: #e4b383;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    box-shadow: none;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    color: #fff;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 20px;
}

.logo {
    margin-left: 0;
    padding: 10px 0;
}

.logo a {
    display: inline-block;
    text-decoration: none;
    letter-spacing: 1px;
}

.logo img {
    max-height: 60px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3a5a40;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(10px);
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu a:hover {
    background-color: #f9f9f9;
}

.search-icon {
    font-size: 1.2rem;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section Base Styles */
.hero-section {
    min-height: 500px;
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    width: 100%;
}

/* Hero Section Variants */
.hero-home {
    background-image: url('img/bodybrushh.webp');
}

.hero-body-brush {
    background-image: url('img/Body-Brush.webp');
}

.hero-facial-brush {
    background-image: url('img/facialbrush.webp');
}

.hero-massage-brush {
    background-image: url('img/Massage\ Brush\ .webp');
}

.hero-wheat-straw {
    background-image: url('img/wheat-straw.webp');
}

.hero-wooden {
    background-image: url('img/Wooden\ brush.webp');
}

.hero-plastic {
    background-image: url('img/Plastic\ Brush.webp');
}

.hero-acetate {
    background-image: url('img/Acetate\ brush.webp');
}

.hero-about {
    background-image: url('img/bodybrushh.webp');
}

.hero-contact {
    background-image: url('img/hairbrushh.webp');
}

.hero-blog {
    background-image: url('img/blog-hero.webp');
}

.hero-about {
    background-image: url('img/bodybrushh.webp');
}

.hero-contact {
    background-image: url('img/hairbrushh.webp');
}

/* Hero Carousel Section */
.hero-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: auto;
    min-height: 500px;
    background-color: #333;
    margin-top: 5px;
    
}

/* 响应式hero-section样式 */
@media (max-width: 1200px) {
    .hero-section {
        min-height: 450px;
    }
    .hero-carousel {
        min-height: 450px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        min-height: 400px;
    }
    .hero-carousel {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 350px;
    }
    .hero-carousel {
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 250px;
    }
    .hero-carousel {
        min-height: 250px;
    }
}

/* Hero Section Overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* 默认半透明遮罩 */
    z-index: 1;
}

/* Solid Color Hero Section */
.hero-solid {
    min-height: 200px !important;
    background-image: none !important;
    background-color: #f8f9fa !important;
    color: #333 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 40px;
}

.hero-solid::before {
    display: none !important;
}

/* Gradient Bottom Border for Solid Hero */
.hero-solid::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3a5a40, #d4a373, #3a5a40);
}

/* Color Variants for Hero Overlays */
.hero-green-overlay::before {
    background-color: rgba(58, 90, 64, 0.7);
}

.hero-wheat-overlay::before {
    background-color: rgba(145, 168, 61, 0.7);
}

.hero-purple-overlay::before {
    background-color: rgba(153, 102, 153, 0.7);
}

.hero-blue-overlay::before {
    background-color: rgba(59, 89, 152, 0.7);
}

/* 保持简洁的hero-content样式 */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px 20px;
    text-align: center;
    animation: fadeUp 1.2s ease forwards;
    margin: 0 auto;
}

/* Hero content responsive styles for tablets and mobile */
@media (max-width: 992px) {
    .hero-content {
        padding: 30px 15px;
    }
    
    .hero-content .hero-tagline {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem !important;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .hero-content .btn-secondary {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 25px 10px;
    }
    
    .hero-content .hero-tagline {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem !important;
        margin-bottom: 12px;
    }
    
    .hero-content p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .hero-content .btn-secondary {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 20px 10px;
    }
    
    .hero-content .hero-tagline {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem !important;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 0.8rem;
        margin-bottom: 5px;
        line-height: 1.5;
    }
    
    .hero-content .btn-secondary {
        padding: 7px 7px;
        font-size: 0.75rem;
        letter-spacing: 0.2px;
    }
}

/* Additional Fullscreen Hero Section */
.additional-hero {
    min-height: 90vh;
    background-image: url('img/hairbrushh.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    
}



.additional-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 0px;
    animation: fadeIn 1.5s ease-in-out;
}

.additional-hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
}

.additional-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    line-height: 1.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments for Additional Hero Section */
@media (max-width: 992px) {
    .additional-hero {
        min-height: 70vh;
    }
    
    .additional-hero-content h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .additional-hero {
        min-height: 60vh;
    }
    
    .additional-hero-content h2 {
        font-size: 2.2rem;
    }
    
    .additional-hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .additional-hero {
        min-height: 50vh;
        margin: 20px 0;
    }
    
    .additional-hero-content h2 {
        font-size: 1.8rem;
    }
    
    .additional-hero-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

/* 已移除冲突的hero-content定义 */

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slide.active .hero-content {
    animation-delay: 0.3s;
}

.hero-tagline {
    display: inline-block;
    font-size: 1.2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    padding: 8px 20px;
    background-color: rgba(58, 90, 64, 0.8);
    border-radius: 30px;
    font-weight: 500;
}

.hero h1 {
    margin-bottom: 25px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
    font-weight: 800;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* Hero Carousel Styles - 已合并到上方定义 */

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

.hero-section {
    width: 100%;
    min-height: 90vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: -1px;
}

.hero-section-alt {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("uploads/68e5c80a74754_test.jpeg");
    margin-bottom: 0;
}

/* Background Animation for Hero Slides */
@keyframes backgroundZoom {
    0% {
        background-size: 100%;
    }
    100% {
        background-size: 110%;
    }
}



/* Responsive Adjustments for Hero Sections */
@media (max-width: 1200px) {
    .hero-section {
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        min-height: 65vh;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
        padding: 6px 16px;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 50vh;
        justify-content: center;
        text-align: center;
    }
    
    .hero-content {
        margin-right: 0 !important;
    }
    
    .hero-section p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 80%;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 45vh;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
        padding: 5px 12px;
        margin-bottom: 15px;
    }
    
    .hero-section p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
}

/* Featured Products */
.featured-products {
    padding: 10px 0;
    background-color: #fff;
}

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

/* Unified Card Styles */
.product-card, .wood-card {
    background-color: #f9f9f9;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 1px 7px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover, .wood-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
}

.product-card img, .wood-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.product-card h3, .wood-card h3 {
    padding: 6px;
    text-align: center;
    font-size: 0.5rem;
}

.product-card .btn, .wood-card .btn {
    display: block;
    margin: 0 6px 6px;
    text-align: center;
    padding: 4px 8px;
    font-size: 0.6rem;
}

/* Responsive adjustments for product grid */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .product-card img, .wood-card img {
        height: 93px;
    }
    
    .product-card h3, .wood-card h3 {
        font-size: 0.25rem;
        padding: 2px;
    }
    
    .product-card .btn, .wood-card .btn {
        padding: 2px 4px;
        font-size: 0.26rem;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .product-card img, .wood-card img {
        height: 80px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-card img, .wood-card img {
        height: 120px;
    }
}

/* Wood Types - Override specific styles for wood cards */
.wood-card {
    background-color: #fff;
}

.wood-types {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.wood-certification {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.wood-certification img {
    max-height: 80px;
    margin-bottom: 15px;
}

/* Philosophy Section */
.philosophy {
    padding: 100px 0;
    background-image: url('images/philosophy-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 8px;
}

.philosophy blockquote {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.philosophy blockquote footer {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Blog Preview */
.blog-preview {
    padding: 80px 0;
    background-color: #fff;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.blog-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-card h3 {
    padding: 20px;
}

.blog-card p {
    padding: 0 20px 20px;
}

.blog-card .btn {
    margin: 0 20px 20px;
}

/* Product Recommendations Section */
.product-recommendations {
    padding: 80px 0;
    background-color: #fff;
}

.product-recommendations .container {
    text-align: center;
}

.product-recommendations h2 {
    color: #3a5a40;
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.product-recommendations p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Category Sections - Using unified definition below */

/* Products Grid with Enhanced Visual Appeal */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

/* Enhanced Product Card Design */
.product-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

.product-image {
    position: relative;
    overflow: hidden;
    height: 120px;
}

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

.product-info {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    color: #333;
    font-size: 0.8rem;
    margin-bottom: 8px;
    text-align: center;
    line-height: 1.3;
    font-weight: 600;
}

.product-info p {
    color: #666;
    font-size: 0.7rem;
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.4;
    flex-grow: 1;
}

.product-info .btn {
    align-self: center;
    width: 100%;
    max-width: 120px;
    margin-top: auto;
    padding: 6px 12px;
    font-size: 0.6rem;
}

/* View All Products Button */
.view-all-products {
    margin-top: 40px;
}

.view-all-products .btn {
    padding: 14px 30px;
    font-size: 1.1rem;
    border-radius: 6px;
}

/* Responsive Design for Product Recommendations */
@media (max-width: 1200px) {
    .products-grid {
        gap: 12px;
    }
    
    .product-image {
        height: 113px;
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .product-image {
        height: 107px;
    }
    
    .product-recommendations h2 {
        font-size: 0.67rem;
    }
    
    .category-section h3 {
        font-size: 0.47rem;
    }
}

@media (max-width: 768px) {
    .product-recommendations {
        padding: 40px 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 13px;
    }
    
    .product-image {
        height: 120px;
    }
    
    .product-recommendations h2 {
        font-size: 0.6rem;
    }
    
    .product-recommendations p {
        font-size: 0.34rem;
    }
}

@media (max-width: 576px) {
    .product-recommendations {
        padding: 27px 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 13px;
    }
    
    .product-image {
        height: 133px;
    }
    
    .product-recommendations h2 {
        font-size: 0.53rem;
    }
    
    .category-section h3 {
        font-size: 0.44rem;
    }
}

/* No Products Message */
.no-products {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-style: italic;
}
.product-recommendations {
    padding: 120px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.product-recommendations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3a5a40, #d4a373, #3a5a40);
    opacity: 0.8;
}

.product-recommendations .container {
    max-width: 1400px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.product-recommendations h2 {
    font-size: 3rem;
    color: #3a5a40;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
}

.product-recommendations h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background-color: #d4a373;
    border-radius: 2px;
}

.product-recommendations p {
    font-size: 1.25rem;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Category Sections */
.category-section {
    margin-bottom: 100px;
    position: relative;
}

.category-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3a5a40, #d4a373, #3a5a40);
    opacity: 0.7;
}

.category-section h3 {
    font-size: 2rem;
    color: #333;
    margin-top: 40px;
    margin-bottom: 50px;
    padding-bottom: 12px;
    border-bottom: 3px solid #f0f0f0;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enhanced Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

/* Full Size Introduction Banner - Removed as not in use */

/* Full Size Featured Product Display - Removed as not in use */

/* Enhanced Product Card */
.product-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-card .product-image {
    position: relative;
    overflow: hidden;
    height: 240px;
    background-color: #f8f8f8;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
}

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

.product-card .product-info {
    padding: 30px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card h3 {
    font-size: 0.8rem;
    color: #333;
    margin-bottom: 15px;
    text-align: left;
    padding: 0;
    border: none;
    font-weight: 600;
}

.product-card p {
    font-size: 0.7rem;
    color: #666;
    margin-bottom: 30px;
    text-align: left;
    padding: 0;
    flex-grow: 1;
    line-height: 1.6;
}

.product-card .btn {
    align-self: flex-start;
    margin-top: auto;
    transition: all 0.3s ease;
    padding: 8px 15px;
    font-size: 0.6rem;
}

.product-card .btn:hover {
    transform: translateX(8px);
}

/* View All Products Button */
.view-all-products {
    text-align: center;
    margin-top: 80px;
}

.view-all-products .btn {
    padding: 18px 45px;
    font-size: 1.15rem;
    background-color: #3a5a40;
    color: white;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #3a5a40;
    font-weight: 600;
}

.view-all-products .btn:hover {
    background-color: transparent;
    color: #3a5a40;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(58, 90, 64, 0.25);
    border-color: #3a5a40;
}

/* Newsletter - Using the unified definition from later in the file */

/* Footer */
.footer {
    background-color: #333;
    padding: 60px 20px 30px;
}

/* Footer columns for included footer.html */
.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-column h3 {
    color: #d4a373;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-column p {
    color: #e0e0e0;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #d4a373;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul a:hover {
    color: #d4a373;
}

.footer-column address {
    font-style: normal;
    color: #fff;
}

.footer-column address p {
    color: #fff;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    color: #fff;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #f4f2f1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #fcfbfa;
    transform: translateY(-3px);
}

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

/* Back to Top Button - Using the unified definition from later in the file */

/* Responsive Design */
@media (max-width: 1200px) {
    .products-grid,
    .woods-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    /* Navigation is now handled in the unified max-width: 991px media query */
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .woods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-recommendations h2 {
        font-size: 2.2rem;
    }
    
    /* Featured Product Responsive */
    .featured-product-fullsize {
        flex-direction: column;
        padding: 30px;
        gap: 30px;
    }
    
    .featured-product-image {
        height: 400px;
        width: 100%;
    }
    
    .featured-product-content h2 {
        font-size: 2.4rem;
    }
    
    /* Full Size Introduction Banner Responsive */
    .fullsize-intro-banner {
        flex-direction: column;
    }
    
    .fullsize-intro-image {
        min-width: 100%;
        height: 400px;
    }
    
    .fullsize-intro-content {
        min-width: 100%;
        padding: 60px;
    }
    
    .fullsize-intro-content h2 {
        font-size: 2.5rem;
    }
    
    .fullsize-intro-content p {
        font-size: 1.2rem;
    }
    
    /* Features and Collections Responsive */
    .feature-grid,
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-container {
        flex-direction: column;
    }
    
    .filters-sidebar {
        width: 100%;
        margin-bottom: 30px;
        text-align: right;
        padding-right: 10%;
    }
    
    .quick-view-container {
        flex-direction: column;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .blog-posts {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form input,
    .newsletter-form .btn {
        width: 100%;
        border-radius: 4px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-recommendations h2 {
        font-size: 1.8rem;
    }
    
    .product-recommendations p {
        font-size: 1rem;
    }
    
    .category-section h3 {
        font-size: 1.5rem;
    }
    
    .product-card .product-image {
        height: 180px;
    }
    
    /* Featured Product Responsive for 768px */
    .featured-product-fullsize {
        padding: 25px;
        gap: 25px;
    }
    
    .featured-product-image {
        height: 350px;
    }
    
    .featured-product-content h2 {
        font-size: 2rem;
    }
    
    .featured-product-content p {
        font-size: 1.1rem;
    }
    
    .highlight-item {
        font-size: 1rem;
    }
    
    /* Full Size Introduction Banner Responsive for 768px */
    .fullsize-intro-image {
        height: 350px;
    }
    
    /* Removed redundant fullsize-intro-banner responsive styles */
}

@media (max-width: 576px) {
    .products-grid,
    .woods-grid,
    .feature-grid,
    .collection-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card .product-image {
        height: 200px;
    }
    
    .product-recommendations {
        padding: 60px 0;
    }
    
    .category-section {
        margin-bottom: 50px;
    }
    
    .view-all-products {
        margin-top: 40px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .philosophy-content {
        padding: 20px;
    }
    
    .philosophy blockquote {
        font-size: 1.2rem;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    /* Removed redundant featured-product-fullsize and fullsize-intro-banner responsive styles */
    
    .fullsize-intro-content h2 {
        font-size: 1.8rem;
    }
    
    .fullsize-intro-content p {
        font-size: 1rem;
    }
    
    .fullsize-intro-content .btn {
        width: 100%;
        text-align: center;
        padding: 14px 30px;
        font-size: 1rem;
    }
}
.filters-sidebar {
    width: 280px;
    flex-shrink: 0;
    text-align: right;
    padding-right: 10%;
}

/* Removed unused filter section styles */

/* Products Content */
.products-content {
    flex: 1;
}

/* Sort Options */
.sort-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.sort-by {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-by select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background-color: #fff;
    cursor: pointer;
}

.view-options {
    display: flex;
    gap: 10px;
}

.view-options button {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.view-options button.active,
.view-options button:hover {
    background-color: #ff69b4;
    color: white;
    border-color: #ff69b4;
}

/* Products Grid - Using the unified definition from earlier */

/* Product Card - Using the unified definition from earlier */

/* Features Section */
.features {
    padding: 80px 40px;
    background-color: #f9f9f9;
}

/* Removed unused collection section styles */


/* Removed unused benefits section styles */
/* Mission Section styles removed as not in use */

/* Products Content Section */
.products-content {
    padding: 40px 0;
    width: 100%;
}

/* Full width content when sidebar is removed */
.products-content.full-width {
    margin: 0;
    width: 100%;
}

.products-content h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 28px;
}

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

/* Newsletter Section */
.newsletter {
    padding: 80px 40px;
    background-color: #333;
    color: white;
    text-align: center;
}

.newsletter h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.newsletter p {
    margin-bottom: 30px;
    font-size: 18px;
    color: #ccc;
}

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

.newsletter input {
    flex: 1;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
}

.newsletter button {
    padding: 12px 24px;
    background-color: #fff;
    color: #333;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter button:hover {
    background-color: #f5f5f5;
}

/* Footer - Using the unified definition from earlier */

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

.social-links a {
    font-size: 20px;
    color: #d4a373;
    transition: color 0.3s ease;
}

/* Team Section Styles */
.team-section {
    padding: 80px 40px;
    background-color: white;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.team-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #333;
    margin: 20px auto 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.team-member p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.search-group {
    display: flex;
    flex-direction: column;
}

.search-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.search-group select,
.search-group input[type="text"],
.search-group input[type="number"] {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.price-range {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-range input {
    flex: 1;
}

.no-results {
    text-align: center;
    padding: 80px 40px;
    color: #666;
}

.no-results h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.no-results p {
    font-size: 18px;
    margin-bottom: 30px;
}

.search-results-container {
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Footer columns - Using the unified definition from earlier */

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

.social-links a {
    font-size: 20px;
    color: #666;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff69b4;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ff69b4;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(255, 105, 180, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #e64d99;
    transform: translateY(-3px);
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 30px;
    background-color: #333;
    color: white;
    padding: 15px 30px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s;
    z-index: 1002;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* Menu Toggle Button Styles */
.menu-toggle {
    display: none; /* Hide menu button by default, only show on mobile devices */
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .feature-grid,
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-container {
        flex-direction: column;
    }
    
    .filters-sidebar {
        width: 100%;
        margin-bottom: 30px;
        text-align: right;
        padding-right: 10%;
    }
    
    .quick-view-container {
        flex-direction: column;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    /* Navigation is now handled in the unified max-width: 991px media query */
    /* Adding the specific active class style that was only in this breakpoint */
    .nav-links.active {
        right: 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .sort-options {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .quick-view-actions {
        flex-direction: column;
    }
    
    .newsletter form {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .benefits-container,
    .mission-container {
        flex-direction: column;
    }
    
    .benefit-item,
    .mission-item {
        margin: 10px 0;
    }
}

@media (max-width: 576px) {
    .feature-grid,
    .collection-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
}

/* Search Page Styles */
.search-section {
    margin-top: 10px;
    padding: 60px 40px;
    background-color: #f9f9f9;
}

.search-container {
    max-width: 1400px;
    margin: 0 auto;
}

.search-container h1 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.search-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto 40px;
}

.search-form input {
    flex: 1;
    padding: 12px 20px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    width: 80%;
}

.search-form button {
    border-radius: 0 4px 4px 0;
}

.search-categories {
    max-width: 600px;
    margin: 0 auto;
}

.search-categories h3 {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.category-tags a {
    display: inline-block;
    padding: 8px 16px;
    background-color: white;
    color: #333;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.category-tags a:hover {
    background-color: #333;
    color: white;
}

/* Search Results Styles */
.search-results-container {
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.search-results {
    margin-top: 20px;
}

.search-results h2 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

/* Product Details Page Styles */
.product-details {
    margin-top: 80px;
    padding: 60px 40px;
}

.product-details-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-gallery img {
    width: 100%;
    height: auto;
}

.thumbnail-images {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.thumbnail {
    width: 100px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #ff69b4;
}

.product-info h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.product-price {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.product-rating {
    margin-bottom: 20px;
}

.product-rating i {
    color: #ffc107;
    margin-right: 5px;
}

.product-rating span {
    margin-left: 10px;
    color: #666;
}

.product-description {
    margin-bottom: 30px;
    color: #666;
    line-height: 1.6;
}


.product-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.product-quantity button {
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border: none;
    font-size: 20px;
    cursor: pointer;
    border-radius: 4px;
}

.product-quantity input {
    width: 60px;
    height: 40px;
    text-align: center;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.product-actions {
    display: flex;
    gap: 20px;
}

/* Product Details Tabs */
.product-details-tabs {
    margin-top: 60px;
    padding: 60px 40px;
    background-color: #f9f9f9;
}

.tabs-container {
    max-width: 1400px;
    margin: 0 auto;
}

.tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.tab {
    padding: 15px 30px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    color: #666;
    transition: color 0.3s ease;
}

.tab:hover {
    color: #ff69b4;
}

.tab.active {
    color: #ff69b4;
    font-weight: 600;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ff69b4;
}

.tab-content {
    display: none;
    padding: 20px 0;
    color: #666;
    line-height: 1.6;
}

.tab-content.active {
    display: block;
}

/* Reviews Section */
.review-form {
    margin-top: 30px;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.review-form h3 {
    margin-bottom: 20px;
    color: #333;
}

.review-form .form-group {
    margin-bottom: 20px;
}

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

.review-form input,
.review-form textarea {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.review-form textarea {
    resize: vertical;
    min-height: 120px;
}

.rating-stars {
    display: flex;
    gap: 10px;
}

.rating-stars i {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
}

.rating-stars i:hover,
.rating-stars i.active {
    color: #ffc107;
}

/* Related Products */
.related-products {
    margin-top: 60px;
    padding: 60px 40px;
}

.related-products h2 {
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
}

.related-products .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Products Section Styles */
.products-section {
    margin-top: 40px;
}

.products-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

/* Product Categories Styles */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 0;
}

.category-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.category-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-icon {
    font-size: 48px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-info {
    padding: 25px;
    text-align: center;
}

.category-info h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 15px;
    color: #333;
    opacity: 0.8;
}

.category-info p {
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Subcategories Styles */
.subcategories {
    margin-bottom: 20px;
    text-align: left;
}

.subcategories-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px !important;
    font-size: 1rem;
}

.subcategories-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.subcategories-list li {
    margin: 0;
}

.subcategories-list a {
    display: inline-block;
    padding: 6px 12px;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 16px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.subcategories-list a:hover {
    background-color: #ff69b4;
    color: white;
    border-color: #ff69b4;
}

.category-info .btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-size: clamp(0.9rem, 1vw, 1rem);
    opacity: 0.8;
}

.category-info .btn:hover {
    background-color: #555;
}

/* Category style distinction and subcategory header removed as not in use */

.no-categories {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 18px;
}

.related-products .product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.related-products .product-link {
    display: block;
    text-decoration: none;
    color: #333;
}

.related-products .product-image {
    height: 250px;
    overflow: hidden;
}

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

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

.related-products .product-info {
    padding: 20px;
}

.related-products .product-info h3 {
    font-size: 0.8rem;
    margin-bottom: 10px;
    color: #333;
}

.related-products .product-price {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

/* Cart Page Styles */
.cart-page {
    margin-top: 80px;
    padding: 60px 40px;
}

.cart-container {
    max-width: 1400px;
    margin: 0 auto;
}

.cart-items {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.cart-items th,
.cart-items td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cart-items th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.cart-items img {
    width: 80px;
    height: auto;
}

.cart-summary {
    float: right;
    width: 300px;
    background-color: #f5f5f5;
    padding: 30px;
}

.cart-summary h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.cart-summary p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cart-summary .total {
    font-weight: bold;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

/* Checkout Page Styles */
.checkout-page {
    margin-top: 80px;
    padding: 60px 40px;
}

.checkout-container {
    max-width: 1400px;
    margin: 0 auto;
}

.checkout-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.checkout-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 20px;
}

.checkout-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.checkout-step.active .checkout-step-number {
    background-color: #333;
    color: #fff;
}

.checkout-form {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 20px;
    font-size: 16px;
    border: 1px solid #ddd;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* About Page Styles */
.about-page {
    margin-top: 80px;
    padding: 60px 40px;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.about-image img {
    width: 100%;
    height: auto;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
}

/* Blog Page Styles */
.blog-page {
    margin-top: 80px;
    padding: 60px 40px;
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-post {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-10px);
}

.blog-post img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.blog-post-content {
    padding: 20px;
}

.blog-post-date {
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-post h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.blog-post p {
    color: #666;
    margin-bottom: 20px;
}

.blog-post a {
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
}

.blog-post a:hover {
    color: #888;
}

/* Contact Page Styles */
.contact-page {
    margin-top: 80px;
    padding: 60px 40px;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 20px;
    color: #666;
}

/* Contact Details Styles */
.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #333;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.contact-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-text p {
    margin: 0;
    color: #666;
}

/* Contact Form Styles */
.contact-form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

.contact-form h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #ff69b4;
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button.btn.primary {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button.btn.primary:hover {
    background-color: #555;
}

/* Breadcrumb Styles */
.breadcrumb {
    margin-top: 20px;
    padding: 15px 40px;
    background-color: #f5f5f5;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ff69b4;
    text-decoration: underline;
}

.breadcrumb span {
    color: #333;
    font-weight: 500;
}

.breadcrumb a + span {
    margin-left: 10px;
}

.breadcrumb a:not(:last-child)::after {
    content: ' > ';
    margin: 0 10px;
    color: #999;
    pointer-events: none;
}

/* Page Header Styles */
.page-header {
    text-align: center;
    padding: 60px 40px;
    margin-bottom: 40px;
    background-color: #fff;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Products Page Styles */
.products-page {
    margin-top: 60px;
    padding: 0 40px 60px;
}

.products-container {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.filters-sidebar {
    width: 250px;
    flex-shrink: 0;
}

/* Removed unused filter section styles */

.filter-options {
    list-style: none;
}

.filter-options li {
    margin-bottom: 10px;
}

.filter-options a {
    display: block;
    padding: 8px 0;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.filter-options a:hover,
.filter-options a.active {
    color: #333;
    font-weight: 500;
}

.products-content {
    flex: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* Enhanced product card styles for specific sections */
.related-products .product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.product-name {
    font-size: 0.8rem;
    margin: 15px 15px 10px;
    color: #333;
}

.product-price {
    font-size: 16px;
    font-weight: bold;
    margin: 0 20px 20px;
    color: #333;
}

.product-buttons {
    display: flex;
    gap: 10px;
    padding: 0 20px 20px;
}

.view-details-btn {
    flex: 1;
    padding: 10px;
    background-color: #333;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.view-details-btn:hover {
    background-color: #555;
}

.enquiry-btn {
    flex: 1;
    padding: 10px;
    background-color: transparent;
    color: #333;
    border: 1px solid #333;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enquiry-btn:hover {
    background-color: #333;
    color: white;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #666;
}

.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background-color: #ffebee;
    color: #c62828;
    border-radius: 4px;
}
.nav-icons {
    margin-right:40px;
}

/* Comprehensive responsive design - set adaptive layout for all pages */

/* Basic responsive font size settings */
/* Use relative units and clamp() function to ensure text size automatically adjusts with screen */

/* Global base font size - use rem as unit */
html {
    font-size: 16px; /* Base font size for rem calculations */
}

/* Use clamp() to implement automatic text size adjustment */
body {
    font-size: clamp(1rem, 1vw, 1.125rem);
    line-height: 1.6;
}

/* Text responsiveness - consolidated */
p, a, ul, ol, li {
    font-size: clamp(1rem, 1vw, 1.125rem);
}

p {
    margin-bottom: 1rem;
}

/* Form elements and button text responsiveness */
button, label, input, textarea, select {
    font-size: clamp(0.9rem, 0.9vw, 1rem);
}

/* Navigation link text responsiveness - slightly larger */
.nav-links a {
    font-size: clamp(0.95rem, 0.95vw, 1.05rem);
}

/* Specific component text responsiveness */
.product-name {
    font-size: clamp(1rem, 1vw, 1.125rem);
}

/* Price text responsiveness - currently hidden but keeping for future reference */
.product-price {
    font-size: clamp(1.1rem, 1.1vw, 1.25rem);
}

/* Responsive text utility classes - provide different levels of responsive text sizes */
.text-xs {
    font-size: clamp(0.75rem, 0.75vw, 0.875rem);
}

.text-sm {
    font-size: clamp(0.875rem, 0.875vw, 1rem);
}

.text-base {
    font-size: clamp(1rem, 1vw, 1.125rem);
}

.text-lg {
    font-size: clamp(1.125rem, 1.125vw, 1.25rem);
}

.text-xl {
    font-size: clamp(1.25rem, 1.25vw, 1.5rem);
}

.text-2xl {
    font-size: clamp(1.5rem, 1.5vw, 1.75rem);
}

.text-3xl {
    font-size: clamp(1.75rem, 1.75vw, 2rem);
}

.text-4xl {
    font-size: clamp(2rem, 2vw, 2.5rem);
}

.text-5xl {
    font-size: clamp(2.5rem, 2.5vw, 3rem);
}

/* Mobile-first media query strategy */

/* Extra small screen devices (less than 576px) */
@media (max-width: 575px) {
    /* Basic style adjustments */
    html {
        font-size: 14px; /* Slightly reduce base font size on small screens */
    }
    
    body {
        font-size: clamp(0.875rem, 4vw, 1rem);
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Heading font size adjustments */
    h1 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    h2 {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
    }
    
    h3 {
        font-size: clamp(1.1rem, 3vw, 1.4rem);
    }
    
    /* Button style adjustments */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Navigation bar adjustments */
    header nav {
        flex-direction: column;
        padding: 15px 0;
    }
    
    .logo {
        margin-left: 0;
        margin-bottom: 15px;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .nav-links a {
        margin: 5px 0;
        padding: 8px 0;
    }
    
    .nav-icons {
        margin-right: 0;
        margin-top: 15px;
    }
    
    /* Product grid adjustments */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Shopping cart page adjustments */
    .cart-page {
        padding: 40px 20px;
    }
    
    .cart-items th, .cart-items td {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .cart-summary {
        float: none;
        width: 100%;
        margin-top: 30px;
    }
    
    /* Product details page adjustments */
    .product-details {
        flex-direction: column;
    }
    
    .product-gallery, .product-info {
        width: 100%;
    }
    
    /* Blog preview adjustments */
    .blog-posts {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Form element adjustments */
    input, select, textarea {
        padding: 12px;
        font-size: 1rem;
    }
    
    /* Footer adjustments */
    footer {
        padding: 40px 0;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* Small devices (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    /* Basic style adjustments */
    html {
        font-size: 15px; /* Medium screen base font size */
    }
    
    body {
        font-size: clamp(0.9rem, 3vw, 1rem);
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Heading font size adjustments */
    h1 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
    
    h2 {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }
    
    h3 {
        font-size: clamp(1.2rem, 2vw, 1.5rem);
    }
    
    /* Product grid adjustments */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Navigation bar adjustments */
    header nav {
        flex-direction: column;
        padding: 20px 0;
    }
    
    .logo {
        margin-left: 0;
        margin-bottom: 20px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links a {
        margin: 0 10px 10px;
    }
    
    /* Blog preview adjustments */
    .blog-posts {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    /* Shopping cart page adjustments */
    .cart-summary {
        float: none;
        width: 100%;
        margin-top: 30px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Medium devices (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    /* Basic style adjustments */
    html {
        font-size: 16px; /* Standard base font size */
    }
    
    body {
        font-size: clamp(0.95rem, 2vw, 1.05rem);
    }
    
    /* Heading font size adjustments */
    h1 {
        font-size: clamp(2rem, 3vw, 3rem);
    }
    
    h2 {
        font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    }
    
    h3 {
        font-size: clamp(1.4rem, 2vw, 1.6rem);
    }
    
    /* Product grid adjustments */
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    /* Blog preview adjustments */
    .blog-posts {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* Navigation bar adjustments */
    .nav-links a {
        margin: 0 15px;
    }
    
    /* Footer adjustments */
    .footer-content {
        flex-wrap: wrap;
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-column {
        width: 45%;
        margin-bottom: 30px;
    }
}

/* Large devices (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    /* Footer adjustments for large devices */
    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
    /* Basic style adjustments */
    body {
        font-size: clamp(1rem, 1.5vw, 1.1rem);
    }
    
    /* Heading font size adjustments */
    h1 {
        font-size: clamp(2.2rem, 2.5vw, 3rem);
    }
    
    h2 {
        font-size: clamp(1.9rem, 2vw, 2.2rem);
    }
    
    h3 {
        font-size: clamp(1.5rem, 1.5vw, 1.6rem);
    }
    
    /* Product grid adjustments */
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    /* Container width adjustments */
    .container {
        max-width: 1140px;
    }
}

/* Extra large devices (1200px and above) */
@media (min-width: 1200px) {
    /* Footer adjustments for extra large devices */
    .footer-columns {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
    /* Basic style adjustments */
    html {
        font-size: 17px; /* Large screens can slightly increase base font size */
    }
    
    body {
        font-size: clamp(1rem, 1vw, 1.125rem);
    }
    
    /* Heading font size adjustments */
    h1 {
        font-size: clamp(2.5rem, 2vw, 3.5rem);
    }
    
    h2 {
        font-size: clamp(2rem, 1.5vw, 2.5rem);
    }
    
    h3 {
        font-size: clamp(1.6rem, 1.2vw, 1.8rem);
    }
    
    /* Container width adjustments */
    .container {
        max-width: 1400px;
    }
}

/* Universal responsive utility classes */

/* Hide/show elements */
.hidden-mobile {
    display: none;
}

.visible-mobile {
    display: block;
}

@media (min-width: 576px) {
    .hidden-mobile {
        display: block;
    }
    
    .visible-mobile {
        display: none;
    }
}

/* Text size adjustments */
.text-responsive {
    font-size: clamp(1rem, 2vw, 1.25rem);
}

/* Image responsiveness */
.img-responsive {
    max-width: 100%;
    height: auto;
}

/* Table responsiveness */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Flex layout responsive helper classes */
.flex-responsive {
    display: flex;
    flex-wrap: wrap;
}

/* Spacing responsiveness */
.padding-responsive {
    padding: clamp(1rem, 3vw, 2rem);
}

.margin-responsive {
    margin: clamp(1rem, 3vw, 2rem);
}

/* Ensure all page content doesn't exceed screen width on mobile devices */
* {
    max-width: 100%;
    box-sizing: border-box;
}

img, video {
    max-width: 100%;
    height: auto;
}

/* Form element responsive adjustments */
form {
    width: 100%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
textarea,
select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

/* Navigation bar menu responsiveness */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    z-index: 1002; /* Ensure button is on top layer */
    padding: 15px;
    position: relative;
    /* Ensure large touch target area */
    min-width: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation; /* Prevent double-tap zoom */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3); /* Visual feedback */
    user-select: none;
}

/* Acetate Material Product Section Specific Styles */
.product-card .product-info{
    width: 100%;
}
.product-card .product-info .product-name,
.product-card .product-info .product-title {
    font-size: 1.2rem !important;
    margin-bottom: 20px !important;
    font-weight: 500 !important;
    color: #333 !important;
    text-align: center !important;
}

.product-card .product-info .btn-primary {
    font-size: 1.0rem !important;
    display: block !important;
    margin: 0 auto 10px !important;
    text-align: center !important;
    width: 200px !important;
    white-space: nowrap !important;
    background-color: #e1bb10 !important;
    color: white !important;
    font-weight: 500 !important;
    border-radius: 6px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    min-height: 40px !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1.3 !important;
}

.product-card .product-info .btn-primary:hover {
    background-color: #a976a9 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(153, 102, 153, 0.3) !important;
}

/* Desktop devices (992px and above) */
@media (min-width: 992px) {
    .menu-toggle {
        display: none !important; /* Ensure menu toggle is hidden on desktop */
    }
    
    .nav-links {
        display: flex !important; /* Ensure navigation links are always visible */
        position: relative;
        width: auto;
        background: none;
        box-shadow: none;
        padding: 0;
    }
}

/* Mobile and Tablet Navigation (less than 992px) */
@media (max-width: 991px) {
    .menu-toggle {
        display: block;
        color: #3a5a40; /* Use the same main color as logo */
    }
    
    .hero-section .menu-toggle {
        color: #fff; /* Use white text in hero area */
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
}