/*
Theme Name: Jacadi Theme
Theme URI: 
Author: Jacadi Team
Author URI: 
Description: A custom theme based on jacadi.us design
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jacadi-theme
*/

/* 
 * Font Information:
 * - Primary Font: Brandon Grotesque from Adobe Fonts
 * - Secondary Font: Futura PT from Adobe Fonts
 */

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

body {
    font-family: "brandon-grotesque", sans-serif;
    color: #333;
    line-height: 1.6;
}

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

/* Header styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    overflow: visible;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    will-change: transform;
}

/* Single product page - disable transition for smooth scroll-based animation */
.single-product .site-header {
    transition: none;
}

/* Add padding to body to account for fixed header */
body {
    padding-top: 120px !important;
}

/* Override for cart and single product pages specifically - higher specificity */
body.woocommerce-cart,
body.cart-page-spacing,
body.page-id-9,
body[class*="cart"],
body.single-product,
body.single,
body.woocommerce-page.single,
body[class*="single-product"],
body[class*="product-template"] {
    padding-top: 120px !important;
}

/* Override any theme-specific padding that might be different on production */
body.wp-theme-ricerice-baby,
body.theme-ricerice-baby,
body[class*="ricerice-baby"] {
    padding-top: 120px !important;
}

/* Adjust for mobile */
@media (max-width: 768px) {
    body {
        padding-top: 60px !important;
    }
    
    body.woocommerce-cart,
    body.cart-page-spacing,
    body.page-id-9,
    body[class*="cart"],
    body.single-product,
    body.single,
    body.woocommerce-page.single,
    body[class*="single-product"],
    body[class*="product-template"],
    body.wp-theme-ricerice-baby,
    body.theme-ricerice-baby,
    body[class*="ricerice-baby"] {
        padding-top: 60px !important;
    }
}

.top-bar {
    background-color: #f0e6e6;
    padding: 8px 0;
    font-size: 13px;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: #333;
    font-weight: 400;
    margin: 0 !important;
    min-height: 35px;
    position: relative;
    z-index: 10;
    overflow: visible !important;
}

.promotion-text {
    display: inline-block;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    padding: 0 5px;
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.2em;
    line-height: 1.2;
    text-transform: uppercase;
}

.fade-out {
    opacity: 0;
    transform: translateY(5px);
}

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

/* Unified Header Container */
.header-unified-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 10% 80% 10%;
    grid-template-rows: auto auto;
    grid-template-areas: 
        ". title ."
        "login navigation cart";
    align-items: center;
    padding: 20px 15px 10px;
    gap: 0;
}

/* Header Sections */
.header-login-section {
    grid-area: login;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header-main {
    grid-area: title;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    margin: 0;
    width: 100%;
}

.header-cart-section {
    grid-area: cart;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Title Section Layout */
.header-placeholder-left,
.header-placeholder-right {
    flex: 0 0 10%;
}

.site-branding {
    flex: 1;
    text-align: center;
}

.site-title {
    font-size: 28px;
    font-weight: 600;
    font-family: "futura-pt", sans-serif;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    word-spacing: 0.3em;
    margin: 0;
}

.site-title a {
    text-decoration: none;
    color: #333;
}

/* Action Bar Styles */
.action-bar {
    grid-area: navigation;
    padding: 12px 0;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
}

/* Action Bar Spacers */
.action-bar-left-spacer,
.action-bar-right-spacer {
    flex: 0 0 10%;
}

/* Login and Cart Section Styles */
.header-login-section a, 
.header-cart-section a {
    text-decoration: none;
    color: #333;
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
}

.header-login-section .icon,
.header-cart-section .icon {
    margin-right: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon svg {
    width: 18px;
    height: 18px;
    stroke: #333;
    transition: stroke 0.3s ease;
}

.header-login-section a:hover .icon svg,
.header-cart-section a:hover .icon svg {
    stroke: #888;
}

.cart-count {
    margin-left: 5px;
    font-size: 12px;
}

/* Updated navigation styles */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.1em;
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 400;
    padding: 10px 5px;
    display: inline-block;
}

.main-navigation .nav-section {
    position: relative;
}

/* Highlight effect for menu items on hover */
.main-navigation .menu-item:not(.menu-item-has-children) > a:hover,
.main-navigation .menu-item-has-children.hover-active > a,
.main-navigation .menu-item-has-children > a:hover {
    background-color: #f8f8f8;
}

/* Mega Menu Dropdown Styles */
.mega-dropdown-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #f8f8f8;
    border-top: 1px solid #eee;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.mega-dropdown {
    display: none;
    padding: 20px 0;
    width: 100%;
}

.mega-dropdown.active {
    display: block;
}

.mega-dropdown-inner {
    display: flex;
    width: 100%;
    gap: 15px;
}

.dropdown-column {
    flex: 1;
    padding: 0 15px;
    min-width: 0; /* Prevents flex items from growing beyond container */
}

.dropdown-column h4 {
    color: #333;
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    margin: 0 0 15px 0;
    letter-spacing: 0.05em;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.dropdown-column.image-view-all {
    flex: 0 0 200px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dropdown-image {
    width: 100%;
    max-width: 180px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.dropdown-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.dropdown-column.image-view-all .view-all {
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-all-link {
    color: #333;
    text-decoration: none;
    font-family: "brandon-grotesque", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #333;
    padding-bottom: 2px;
    transition: all 0.3s ease;
    display: inline-block;
}

.view-all-link:hover {
    color: #888;
    border-color: #888;
    letter-spacing: 0.12em;
    transform: translateY(-1px);
}

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

.submenu li {
    margin-bottom: 10px;
}

.submenu a {
    color: #333;
    text-decoration: none;
    font-family: "brandon-grotesque", sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.submenu a:hover {
    color: #666;
    letter-spacing: 0.12em;
}

.submenu a {
    color: #333;
    text-decoration: none;
    font-family: "brandon-grotesque", sans-serif;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0.05em;
    transition: color 0.3s;
    padding: 0;
}

.submenu a:hover {
    color: #888;
}

/* Menu item with children hover state */
.menu-item-has-children {
    position: relative;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.menu-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    position: relative;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: #333;
}

.menu-icon::before {
    top: -6px;
}

.menu-icon::after {
    bottom: -6px;
}

/* Mobile menu toggle active state */
.mobile-menu-toggle.active .menu-icon {
    background: transparent;
}

.mobile-menu-toggle.active .menu-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.active .menu-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    padding: 20px;
    background: white;
    border-top: 1px solid #eee;
    min-height: 100vh;
}

.mobile-menu ul {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}

.mobile-menu li {
    margin-bottom: 10px;
}

.mobile-menu a {
    color: #333;
    text-decoration: none;
    font-family: "brandon-grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.mobile-submenu {
    display: none;
    padding: 10px 0 10px 15px;
    margin-top: 10px;
    border-left: 1px solid rgba(0,0,0,0.1);
}

.mobile-menu .menu-item-has-children > a {
    position: relative;
}

.mobile-menu .menu-item-has-children > a::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 18px;
    transition: transform 0.3s;
}

.mobile-menu .menu-item-has-children.open > a::after {
    transform: rotate(45deg);
}

.mobile-menu .menu-item-has-children.open .mobile-submenu {
    display: block;
}

.mobile-submenu-column {
    margin-bottom: 15px;
}

.mobile-submenu-column h4 {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 500;
    font-family: "brandon-grotesque", sans-serif;
    color: #333;
}

.view-all-mobile {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.mobile-actions a {
    color: #333;
    text-decoration: none;
    font-family: "brandon-grotesque", sans-serif;
    display: flex;
    align-items: center;
    font-size: 14px;
    padding: 5px 0;
}

.mobile-actions .icon {
    margin-right: 8px;
}

/* Body scroll lock when menu is open */
body.menu-open {
    /* Scroll lock handled by JavaScript */
}

/* Mobile menu close button - removed, using toggle button instead */

/* Hero section styles */
.hero {
    position: relative;
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    background: rgba(0,0,0,0.2);
    padding: 40px;
    max-width: 800px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: white;
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn:hover {
    background: #f0f0f0;
}

/* ======================================================
   NEW ARRIVALS SECTION
   ====================================================== */

.new-arrivals-section {
    width: 100%;
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    overflow: hidden;
}

.new-arrivals-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.section-title {
    font-family: "futura-pt", sans-serif;
    font-size: 48px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #333;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.new-arrivals-section.in-view .section-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.section-subtitle {
    font-family: "brandon-grotesque", sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #666;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.new-arrivals-section.in-view .section-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

/* Products Container */
.products-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.products-scroll {
    display: flex;
    gap: 0;
    width: 100%;
}

/* Product Item */
.product-item {
    flex: 0 0 25%;
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.new-arrivals-section.in-view .product-item {
    opacity: 1;
    transform: translateY(0);
}

.new-arrivals-section.in-view .product-item:nth-child(1) {
    transition-delay: 0.6s;
}

.new-arrivals-section.in-view .product-item:nth-child(2) {
    transition-delay: 0.7s;
}

.new-arrivals-section.in-view .product-item:nth-child(3) {
    transition-delay: 0.8s;
}

.new-arrivals-section.in-view .product-item:nth-child(4) {
    transition-delay: 0.9s;
}

.product-link {
    display: block;
    position: relative;
    width: 100%;
    height: 500px;
    text-decoration: none;
    color: inherit;
}

.product-item .product-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

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

/* Product Overlay */
.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 60%, rgba(255,255,255,0) 100%);
    color: #333;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-item:hover .product-overlay {
    transform: translateY(0);
}

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

.product-item .product-title {
    font-family: "futura-pt", sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 8px 0;
    color: #333;
}

.product-item .product-price {
    font-family: "brandon-grotesque", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.product-cta {
    display: inline-block;
    font-family: "brandon-grotesque", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #333;
    position: relative;
    padding-bottom: 2px;
}

.product-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #333;
    transition: width 0.3s ease;
}

.product-item:hover .product-cta::after {
    width: 100%;
}

/* Touch hover state for mobile */
.product-item.touch-hover .product-overlay {
    transform: translateY(0);
}

/* Image loaded state */
.product-item .product-image img.loaded {
    opacity: 1;
}

.product-item .product-image img:not(.loaded) {
    opacity: 0;
}

/* Section Footer */
.section-footer {
    text-align: center;
    margin-top: 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.new-arrivals-section.in-view .section-footer {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s;
}

.view-all-btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: #333;
    border: 2px solid #333;
    border-radius: 30px;
    font-family: "brandon-grotesque", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-all-btn:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments for new arrivals */
@media (max-width: 1200px) {
    .product-item {
        flex: 0 0 33.333%;
    }
    
    .product-item:nth-child(4) {
        display: none;
    }
}

@media (max-width: 768px) {
    .new-arrivals-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .product-item {
        flex: 0 0 50%;
    }
    
    .product-item:nth-child(3),
    .product-item:nth-child(4) {
        display: none;
    }
    
    .product-link {
        height: 400px;
    }
    
    .product-overlay {
        padding: 30px 20px;
    }
    
    .product-item .product-title {
        font-size: 18px;
    }
    
    .product-item .product-price {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .product-item {
        flex: 0 0 100%;
    }
    
    .product-item:nth-child(2),
    .product-item:nth-child(3),
    .product-item:nth-child(4) {
        display: none;
    }
    
    .product-link {
        height: 450px;
    }
    
    .section-footer {
        margin-top: 40px;
    }
    
    .view-all-btn {
        padding: 12px 30px;
        font-size: 12px;
    }
}

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

/* ======================================================
   ABOUT US SECTION
   ====================================================== */

.about-us-section {
    width: 100%;
    padding: 100px 0 0;
    background: #fafafa;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    overflow: hidden;
}

.about-us-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Section Header (reusing from new arrivals) */
.about-us-section .section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.about-us-section .section-title {
    font-family: "futura-pt", sans-serif;
    font-size: 48px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #333;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-us-section.in-view .section-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.about-us-section .section-subtitle {
    font-family: "brandon-grotesque", sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #666;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-us-section.in-view .section-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

/* About Container */
.about-container {
    width: 100%;
    display: flex;
    min-height: 600px;
}

/* About Content */
.about-content {
    flex: 0 0 50%;
    background: white;
    display: flex;
    align-items: center;
    padding: 80px;
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-us-section.in-view .about-content {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.6s;
}

.content-wrapper {
    max-width: 600px;
}

.content-title {
    font-family: "futura-pt", sans-serif;
    font-size: 36px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #333;
    margin-bottom: 30px;
}

.content-text {
    font-family: "brandon-grotesque", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

/* Content Features */
.content-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border-radius: 50%;
}

.feature-text {
    font-family: "brandon-grotesque", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    letter-spacing: 0.05em;
}

/* About CTA Button */
.about-cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #333;
    color: white;
    border: 2px solid #333;
    border-radius: 30px;
    font-family: "brandon-grotesque", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.about-cta-btn:hover {
    background: transparent;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* About Gallery */
.about-gallery {
    flex: 0 0 50%;
    position: relative;
    background: #f8f8f8;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-us-section.in-view .about-gallery {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.8s;
}

.gallery-single {
    height: 100%;
    position: relative;
}

.gallery-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-us-section.in-view .gallery-item {
    opacity: 1;
    transform: scale(1);
}

.about-us-section.in-view .gallery-item.item-1 {
    transition-delay: 1s;
}

.about-us-section.in-view .gallery-item.item-2 {
    transition-delay: 1.1s;
}

.about-us-section.in-view .gallery-item.item-3 {
    transition-delay: 1.2s;
}

.about-us-section.in-view .gallery-item.item-4 {
    transition-delay: 1.3s;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Responsive adjustments for About Us */
@media (max-width: 1200px) {
    .about-content {
        padding: 60px;
    }
    
    .content-title {
        font-size: 32px;
    }
}

@media (max-width: 968px) {
    .about-container {
        flex-direction: column;
    }
    
    .about-content,
    .about-gallery {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .about-content {
        padding: 60px 40px;
    }
    
    .gallery-single {
        height: 600px;
    }
    
    .about-us-section .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 60px 0 0;
    }
    
    .about-us-section .section-header {
        margin-bottom: 50px;
    }
    
    .about-us-section .section-title {
        font-size: 32px;
    }
    
    .about-us-section .section-subtitle {
        font-size: 16px;
    }
    
    .about-content {
        padding: 40px 30px;
    }
    
    .content-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .content-text {
        font-size: 15px;
    }
    
    .content-features {
        margin: 30px 0;
    }
    
    .feature-icon {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    
    .feature-text {
        font-size: 15px;
    }
    
    .gallery-grid {
        height: 500px;
    }
}

@media (max-width: 480px) {
    .about-content {
        padding: 30px 20px;
    }
    
    .content-title {
        font-size: 24px;
    }
    
    .content-features {
        gap: 15px;
    }
    
    .about-cta-btn {
        padding: 12px 30px;
        font-size: 12px;
    }
    
    .gallery-grid {
        height: 400px;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }
}

/* Newsletter Section */
.newsletter-signup {
    padding: 60px 30px;
    background: #f0f0f0;
    text-align: center;
}

.newsletter-signup h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.newsletter-signup p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.newsletter-form button {
    padding: 12px 20px;
    background: #333;
    color: white;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.newsletter-form button:hover {
    background: #555;
}

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

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-widget h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

.footer-widget a {
    color: #ccc;
    text-decoration: none;
}

.footer-widget a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-menu ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-menu a {
    color: #ccc;
    text-decoration: none;
}

.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    color: #ccc;
    text-decoration: none;
    padding: 5px 10px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 3px;
}

.social-link:hover {
    color: white;
    border-color: rgba(255,255,255,0.3);
}

/* Social Hover Links in Footer */
.social-hover-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-hover-link {
    position: relative;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.social-hover-link:hover {
    color: white;
}

.social-hover-image {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    margin-left: 20px;
    width: 150px;
    height: 150px;
    object-fit: contain;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.social-hover-link:hover .social-hover-image {
    opacity: 1;
    visibility: visible;
}

/* Adjust position for responsive */
@media (max-width: 768px) {
    .social-hover-image {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin-left: 0;
        width: 200px;
        height: 200px;
    }
}

/* Single Post/Page Styles */
.entry-title {
    margin-bottom: 20px;
}

.entry-meta {
    margin-bottom: 20px;
    font-size: 14px;
    color: #777;
}

.page-featured-image {
    margin-bottom: 30px;
}

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

.entry-content {
    margin-bottom: 40px;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #777;
}

.cat-links, .tags-links {
    display: block;
    margin-bottom: 10px;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

/* Responsive styles */
@media (max-width: 768px) {
    .header-unified-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        grid-template-areas: 
            "title"
            "mobile-actions";
        padding: 15px;
        position: relative;
    }
    
    .header-main {
        grid-area: title;
        flex-direction: column;
        width: 100%;
        margin: 10px 0;
        position: relative;
    }
    
    .header-placeholder-left,
    .header-placeholder-right {
        display: none;
    }
    
    .site-branding {
        width: 100%;
        margin: 10px 0;
    }
    
    .header-login-section,
    .header-cart-section,
    .action-bar {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
    }
}

/* Accessibility */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Newsletter Signup Section styles */
/* ... existing newsletter styles ... */

/* Gallery Section */
.gallery-section {
    padding: 0;
    background-color: #fcf9f9;
    width: 100%;
    position: relative;
}

.gallery-section .gallery-image {
    width: 100%;
    margin: 0;
    padding: 0;
}

.gallery-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    transition: transform 0.3s ease;
}

.gallery-section .text-center {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 2;
}

.gallery-section .btn {
    background-color: #fff;
    padding: 15px 40px;
    font-size: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.gallery-section .btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Customer Service Page Styles */
.customer-service-hero {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #fcf9f9 0%, #fef5f5 50%, #fcf9f9 100%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: subtle-move 60s linear infinite;
}

@keyframes subtle-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 60px;
}

.hero-label {
    display: inline-block;
    font-family: "brandon-grotesque", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #999;
    margin-bottom: 20px;
    position: relative;
}

.hero-label::before,
.hero-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background: #ddd;
}

.hero-label::before {
    right: calc(100% + 20px);
}

.hero-label::after {
    left: calc(100% + 20px);
}

.customer-service-hero .page-title {
    font-family: "futura-pt", sans-serif;
    font-size: 64px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.1;
}

.customer-service-hero .page-subtitle {
    font-family: "brandon-grotesque", sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Service Navigation */
.service-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-nav-item {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 35px 25px;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    color: #333;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.service-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e8c4c4 0%, #fcf9f9 100%);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.service-nav-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(252, 249, 249, 0.8);
    border-color: rgba(232, 196, 196, 0.3);
}

.service-nav-item:hover::before {
    transform: translateX(0);
}

.nav-icon-wrapper {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    position: relative;
}

.nav-icon {
    width: 100%;
    height: 100%;
    color: #333;
    transition: all 0.3s ease;
}

.service-nav-item:hover .nav-icon {
    transform: scale(1.1);
    color: #000;
}

.nav-title {
    font-family: "brandon-grotesque", sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.nav-description {
    font-family: "brandon-grotesque", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #888;
    line-height: 1.4;
}

/* Service Sections */
.service-section {
    padding: 100px 0;
    position: relative;
}

.service-section.section-alt {
    background: #fafafa;
}

.service-section .section-title {
    font-family: "futura-pt", sans-serif;
    font-size: 48px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
    width: 100%;
}

.service-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #e8c4c4;
}

.section-intro {
    font-family: "brandon-grotesque", sans-serif;
    font-size: 18px;
    color: #666;
    text-align: center;
    max-width: 600px;
    margin: -20px auto 50px;
    line-height: 1.6;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    border-color: rgba(0,0,0,0.08);
}

.faq-question {
    padding: 25px 30px;
    margin: 0;
    font-family: "brandon-grotesque", sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    background: white;
}

.faq-question:hover {
    background: #fcfcfc;
}

.faq-question.active {
    background: #f8f8f8;
}

.faq-question::after {
    content: '';
    position: absolute;
    right: 30px;
    top: 50%;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
}

.faq-question::after {
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 5V19M5 12H19" stroke="%23333" stroke-width="2" stroke-linecap="round"/></svg>') center/contain no-repeat;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fcfcfc;
}

.faq-answer p {
    padding: 0 30px 25px;
    margin: 0;
    font-family: "brandon-grotesque", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Shipping & Returns Info */
.shipping-info,
.returns-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: white;
    padding: 40px 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e8c4c4 0%, #fcf9f9 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(232, 196, 196, 0.2);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card h3 {
    font-family: "futura-pt", sans-serif;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-family: "brandon-grotesque", sans-serif;
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.info-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20 6L9 17L4 12" stroke="%234CAF50" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/contain no-repeat;
}

.info-card p {
    font-family: "brandon-grotesque", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Returns specific styling */
.returns-policy,
.returns-process,
.refund-info {
    margin-bottom: 35px;
}

.returns-process ol {
    list-style: none;
    counter-reset: steps;
    padding: 0;
}

.returns-process li {
    counter-increment: steps;
    padding: 15px 0;
    padding-left: 50px;
    position: relative;
    font-family: "brandon-grotesque", sans-serif;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.returns-process li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 15px;
    width: 35px;
    height: 35px;
    background: #1a1a1a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

/* Contact Section */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.contact-method {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-method h3 {
    font-family: "brandon-grotesque", sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-method p {
    margin: 5px 0;
    color: #666;
}

.btn-chat {
    background: #333;
    color: white;
    border: 2px solid #333;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-chat:hover {
    background: transparent;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.contact-form-wrapper h3 {
    font-family: "brandon-grotesque", sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

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

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

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

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

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

.btn-submit {
    display: block;
    width: 100%;
    padding: 16px 40px;
    background: #333;
    color: white;
    border: 2px solid #333;
    border-radius: 30px;
    font-family: "brandon-grotesque", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.btn-submit:hover {
    background: #fcf9f9;
    color: #333;
    border-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Customer Service */
@media (max-width: 768px) {
    .customer-service-hero {
        padding: 80px 0 60px;
    }
    
    .hero-label::before,
    .hero-label::after {
        display: none;
    }
    
    .customer-service-hero .page-title {
        font-size: 42px;
        letter-spacing: 0.1em;
    }
    
    .customer-service-hero .page-subtitle {
        font-size: 18px;
    }
    
    .service-nav {
        gap: 15px;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
    
    .service-nav-item {
        padding: 25px 20px;
    }
    
    .nav-icon-wrapper {
        width: 40px;
        height: 40px;
        margin-bottom: 15px;
    }
    
    .nav-title {
        font-size: 16px;
    }
    
    .nav-description {
        font-size: 13px;
    }
    
    .service-section {
        padding: 60px 0;
    }
    
    .service-section .section-title {
        font-size: 36px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .info-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .customer-service-hero .page-title {
        font-size: 32px;
    }
    
    .service-nav {
        grid-template-columns: 1fr;
    }
    
    .service-nav-item {
        max-width: 280px;
        margin: 0 auto;
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .gallery-section .text-center {
        bottom: 20px;
    }
    
    .gallery-section .btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Main Hero Section */
.main-hero-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 60px;
}

.main-hero-container {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-hero-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    height: 100%;
}

.hero-left-container {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-right-container {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 60px;
    position: relative;
}

.brand-logo {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #2d2d2d;
    color: white;
    font-family: "futura-pt", sans-serif;
    font-size: 36px;
    font-weight: 600;
    border-radius: 50%;
}

.logo-img {
    max-width: 120px;
    height: auto;
    transition: transform 0.3s ease;
}

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

.brand-name {
    font-family: "futura-pt", sans-serif;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d2d2d;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-transform: uppercase;
}

.brand-slogan {
    font-family: "brandon-grotesque", sans-serif;
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #666;
    letter-spacing: 0.05em;
    font-style: italic;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.slogan-text {
    white-space: nowrap;
}

.slogan-decoration {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slogan-dash {
    width: 30px;
    height: 1px;
    background: linear-gradient(to right, transparent, #999, #999);
    display: inline-block;
}

.slogan-decoration.right .slogan-dash {
    background: linear-gradient(to left, transparent, #999, #999);
}

.slogan-dot {
    font-size: 10px;
    color: #888;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-button {
    margin-top: 10px;
}

.hero-button .btn {
    background-color: #2d2d2d;
    color: white;
    font-size: 14px;
    padding: 16px 40px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 2px solid #2d2d2d;
    font-family: "futura-pt", sans-serif;
}

.hero-button .btn:hover {
    background-color: transparent;
    color: #2d2d2d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 45, 45, 0.2);
}

/* Transition from Hero to Showcase */
.hero-to-showcase-transition {
    position: relative;
    height: 0;
    overflow: visible;
    z-index: 10;
    pointer-events: none;
}

.transition-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
}

.transition-curve svg {
    width: 100%;
    height: 60px;
    display: block;
}

/* Textile Showcase Section */
.textile-showcase {
    width: 100%;
    padding: 80px 0 100px;
    background: #ffffff;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    overflow: hidden;
}

.textile-showcase.in-view {
    opacity: 1;
    transform: translateY(0);
}

.showcase-container {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.showcase-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.showcase-title {
    font-family: "futura-pt", sans-serif;
    font-size: 48px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #333;
    margin-bottom: 15px;
}

.showcase-subtitle {
    font-family: "brandon-grotesque", sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #666;
    letter-spacing: 0.05em;
}

/* Showcase Panels Container */
.showcase-panels {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    margin: 0;
}

/* Individual Panels */
.showcase-panel {
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Default state: Modal (left) 70%, Bamboo (right) 30% */
.modal-panel {
    left: 0;
    width: 70%;
    z-index: 2;
}

.bamboo-panel {
    right: 0;
    width: 30%;
    z-index: 1;
}

/* When bamboo is active */
.showcase-panels[data-active="bamboo"] .modal-panel {
    width: 30%;
    z-index: 1;
}

.showcase-panels[data-active="bamboo"] .bamboo-panel {
    width: 70%;
    z-index: 2;
}

/* Panel Image */
.panel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Panel Content */
.panel-content {
    position: relative;
    z-index: 2;
    padding: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin: 40px;
    max-width: 500px;
    transition: opacity 0.4s ease;
}

/* Hide content for smaller panel */
.showcase-panel:not(.active) .panel-content {
    opacity: 0;
    pointer-events: none;
}

.showcase-panel.active .panel-content {
    opacity: 1;
    pointer-events: auto;
}

.panel-title {
    font-family: "futura-pt", sans-serif;
    font-size: 36px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #333;
    margin-bottom: 10px;
}

.panel-subtitle {
    font-family: "brandon-grotesque", sans-serif;
    font-size: 16px;
    font-style: italic;
    color: #888;
    margin-bottom: 25px;
}

.panel-description {
    font-family: "brandon-grotesque", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.panel-action {
    margin-top: 30px;
}

.panel-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2d2d2d;
    color: white;
    text-decoration: none;
    font-family: "futura-pt", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 2px solid #2d2d2d;
}

.panel-btn:hover {
    background-color: transparent;
    color: #2d2d2d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 45, 45, 0.2);
}

/* Panel Divider */
.panel-divider {
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Default position */
.showcase-panels[data-active="modal"] .panel-divider {
    left: 70%;
}

.showcase-panels[data-active="bamboo"] .panel-divider {
    left: 30%;
}

/* Divider Handle */
.divider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.divider-handle:hover {
    background: #f8f8f8;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.handle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-panels[data-active="bamboo"] .handle-icon {
    transform: rotate(180deg);
}

/* Hover Effects */
.showcase-panel:not(.active) {
    cursor: pointer;
}

.showcase-panel:not(.active):hover .panel-image img {
    transform: scale(1.05);
}

.showcase-panel:not(.active)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.showcase-panel:not(.active):hover::after {
    opacity: 1;
}

/* Switching animation class */
.showcase-panels.switching .panel-image img {
    filter: brightness(0.95);
}

.showcase-panels.switching .panel-divider {
    background: rgba(0, 0, 0, 0.2);
}

/* Enhanced fold effect during switch */
@keyframes foldIn {
    0% {
        transform: perspective(1000px) rotateY(90deg);
        opacity: 0;
    }
    100% {
        transform: perspective(1000px) rotateY(0);
        opacity: 1;
    }
}

@keyframes foldOut {
    0% {
        transform: perspective(1000px) rotateY(0);
        opacity: 1;
    }
    100% {
        transform: perspective(1000px) rotateY(-90deg);
        opacity: 0;
    }
}

/* Loading state */
.panel-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f5f5f5 25%, #fff 25%, #fff 50%, #f5f5f5 50%, #f5f5f5 75%, #fff 75%, #fff);
    background-size: 30px 30px;
    animation: loading 1s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.panel-image.loading::before {
    opacity: 1;
}

@keyframes loading {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 30px 30px;
    }
}

/* Enhanced divider glow effect */
.divider-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(199, 141, 140, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.divider-handle:hover::after {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .showcase-panels {
        height: 500px;
    }
    
    .showcase-header {
        padding: 0 15px;
    }
    
    .panel-content {
        padding: 40px;
        margin: 30px;
    }
    
    .panel-title {
        font-size: 28px;
    }
    
    .showcase-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .textile-showcase {
        padding: 60px 0 80px;
    }
    
    .showcase-header {
        padding: 0 15px;
    }
    
    .showcase-panels {
        height: 600px;
        display: block;
    }
    
    /* Keep horizontal layout on mobile but adjust content */
    .showcase-panel {
        position: absolute;
        top: 0;
        height: 100% !important;
    }
    
    .modal-panel {
        left: 0;
        width: 70% !important;
    }
    
    .bamboo-panel {
        right: 0;
        width: 30% !important;
    }
    
    /* When bamboo is active on mobile */
    .showcase-panels[data-active="bamboo"] .modal-panel {
        width: 30% !important;
    }
    
    .showcase-panels[data-active="bamboo"] .bamboo-panel {
        width: 70% !important;
    }
    
    .panel-divider {
        height: 100%;
        width: 2px;
        top: 0;
        left: 70%;
    }
    
    .showcase-panels[data-active="bamboo"] .panel-divider {
        left: 30%;
    }
    
    .panel-content {
        margin: 15px;
        padding: 25px;
    }
    
    /* Hide descriptive text on mobile to save space */
    .panel-description {
        display: none;
    }
    
    .showcase-title {
        font-size: 28px;
    }
    
    .panel-title {
        font-size: 20px;
    }
    
    .panel-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .panel-btn {
        padding: 12px 20px;
        font-size: 11px;
    }
    
    /* Hide hover effects on mobile */
    .showcase-panel:not(.active)::after {
        display: none;
    }
}

/* Extra small mobile screens */
@media (max-width: 480px) {
    .showcase-panels {
        height: 500px;
    }
    
    .panel-content {
        margin: 10px;
        padding: 20px;
    }
    
    .panel-title {
        font-size: 18px;
    }
    
    .panel-subtitle {
        font-size: 12px;
    }
    
    .panel-btn {
        padding: 10px 16px;
        font-size: 10px;
    }
}

/* ======================================================
   COLLECTION SHOWCASE SECTION
   ====================================================== */

.collection-showcase {
    width: 100%;
    padding: 80px 0 100px;
    background: #fafafa;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    overflow: hidden;
}

.collection-showcase.in-view {
    opacity: 1;
    transform: translateY(0);
}

.collection-showcase .showcase-container {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.collection-showcase .showcase-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.collection-showcase .showcase-title {
    font-family: "futura-pt", sans-serif;
    font-size: 48px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #333;
    margin-bottom: 15px;
}

.collection-showcase .showcase-subtitle {
    font-family: "brandon-grotesque", sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #666;
    letter-spacing: 0.05em;
}

/* Collection Panels Container */
.collection-panels {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    margin: 0;
}

/* Individual Collection Panels */
.collection-panel {
    position: absolute;
    top: 0;
    height: 100%;
    overflow: hidden;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: transparent;
}

/* Classic Collection (Left) */
.classic-panel {
    left: 0;
    width: 50%;
    transform-origin: left center;
}

/* Style Collection (Right) */
.style-panel {
    right: 0;
    width: 50%;
    transform-origin: right center;
}

/* Active state for panels */
.collection-panels[data-active="classic"] .classic-panel {
    width: 50%;
    z-index: 2;
}

.collection-panels[data-active="classic"] .style-panel {
    width: 50%;
    z-index: 1;
}

.collection-panels[data-active="style"] .classic-panel {
    width: 50%;
    z-index: 1;
}

.collection-panels[data-active="style"] .style-panel {
    width: 50%;
    z-index: 2;
}

/* Collection Panel Image */
.collection-panel .panel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.collection-panel .panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.5s ease;
}

/* Hover effects */
.collection-panel:hover .panel-image img {
    transform: scale(1.05);
}

.collection-panel:not(.active) .panel-image img {
    filter: brightness(0.7);
}

.collection-panel.active .panel-image img {
    filter: brightness(1);
}

/* Panel Content */
.collection-panel .panel-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
    background: none;
    padding: 0;
}

.collection-panel.active .panel-content {
    opacity: 1;
    transform: translateY(0);
}

.collection-panel .panel-title {
    font-family: "futura-pt", sans-serif;
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.6);
    white-space: nowrap;
}

/* Panel Action Button */
.collection-panel .panel-action {
    margin: 0;
    flex-shrink: 0;
}

.collection-panel .panel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    background: white;
    color: #333;
    border: 2px solid white;
    border-radius: 30px;
    font-family: "brandon-grotesque", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.collection-panel .panel-btn:hover {
    background: transparent;
    color: white;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border-radius: 30px;
}

/* Collection Panel Divider */
.collection-panels .panel-divider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 100px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 10;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-panels .divider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-panels .divider-handle:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.collection-panels .handle-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-panels[data-active="classic"] .handle-icon {
    transform: rotate(0deg);
}

.collection-panels[data-active="style"] .handle-icon {
    transform: rotate(180deg);
}

/* Responsive adjustments for collection showcase */
@media (max-width: 1200px) {
    .collection-showcase .showcase-title {
        font-size: 40px;
    }
    
    .collection-panel .panel-title {
        font-size: 32px;
    }
    
}

@media (max-width: 768px) {
    .collection-showcase {
        padding: 60px 0 80px;
    }
    
    .collection-showcase .showcase-header {
        padding: 0 15px;
        margin-bottom: 40px;
    }
    
    .collection-showcase .showcase-title {
        font-size: 32px;
    }
    
    .collection-showcase .showcase-subtitle {
        font-size: 16px;
    }
    
    .collection-panels {
        height: 500px;
    }
    
    .collection-panel .panel-content {
        bottom: 30px;
        left: 30px;
        right: 30px;
        gap: 20px;
    }
    
    .collection-panel .panel-title {
        font-size: 22px;
    }
    
    .collection-panel .panel-btn {
        padding: 10px 25px;
        font-size: 12px;
    }
    
    .collection-panels .panel-divider {
        height: 80px;
    }
    
    .collection-panels .divider-handle {
        width: 40px;
        height: 40px;
    }
}

/* Extra small mobile screens */
@media (max-width: 480px) {
    .collection-panels {
        height: 450px;
    }
    
    .collection-panel .panel-content {
        bottom: 20px;
        left: 20px;
        right: 20px;
        gap: 15px;
        flex-direction: column;
        align-items: flex-start;
        background: none; /* Remove glass background */
        padding: 0;
    }
    
    .collection-panel .panel-title {
        font-size: 18px; /* Smaller font size */
        white-space: normal; /* Allow text wrapping on small screens */
        line-height: 1.2;
    }
    
    .collection-panel .panel-btn {
        padding: 8px 20px;
        font-size: 10px; /* Smaller font size */
    }
    
    /* Adjust image brightness for better text visibility */
    .collection-panel.active .panel-image img {
        filter: brightness(0.6); /* Darken image more for better text contrast */
    }
}

/* ======================================================
   NO PRODUCTS FOUND STYLES
   ====================================================== */

.jacadi-no-products {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 60px 20px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 12px;
    margin: 40px 0;
}

.no-products-content {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

/* Logo Section */
.no-products-logo {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.no-products-logo .rrb-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.no-products-logo .rrb-logo:hover {
    transform: scale(1.05);
}

/* Main Message */
.no-products-message {
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.no-products-title {
    font-family: "futura-pt", sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.no-products-description {
    font-family: "brandon-grotesque", sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Suggestions Section */
.no-products-suggestions {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.suggestions-title {
    font-family: "brandon-grotesque", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.suggestion-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 15px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.suggestion-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    color: #333;
    text-decoration: none;
}

.suggestion-icon {
    font-size: 32px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.suggestion-card:hover .suggestion-icon {
    transform: scale(1.1);
}

.suggestion-text {
    font-family: "brandon-grotesque", sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.3;
}

/* Search Section */
.no-products-search {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.search-prompt {
    font-family: "brandon-grotesque", sans-serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 400;
}

.no-products-search .search-field {
    width: 100%;
    max-width: 400px;
    padding: 12px 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    font-family: "brandon-grotesque", sans-serif;
    font-size: 14px;
    background: white;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.no-products-search .search-field:focus {
    outline: none;
    border-color: #2d2d2d;
    box-shadow: 0 0 0 3px rgba(45, 45, 45, 0.1);
}

.no-products-search .search-submit {
    background: #2d2d2d;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: "futura-pt", sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.no-products-search .search-submit:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 45, 45, 0.3);
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .jacadi-no-products {
        min-height: 50vh;
        padding: 40px 15px;
        margin: 20px 0;
    }
    
    .no-products-logo .rrb-logo {
        width: 100px;
        height: 100px;
    }
    
    .no-products-title {
        font-size: 24px;
    }
    
    .no-products-description {
        font-size: 14px;
    }
    
    .suggestions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .suggestion-card {
        padding: 20px 10px;
    }
    
    .suggestion-icon {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .suggestion-text {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .jacadi-no-products {
        padding: 30px 10px;
    }
    
    .no-products-logo .rrb-logo {
        width: 80px;
        height: 80px;
    }
    
    .no-products-title {
        font-size: 20px;
    }
    
    .suggestions-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .no-products-search .search-field {
        margin-bottom: 10px;
    }
    
    .no-products-search .search-submit {
        margin-left: 0;
        width: 100%;
        max-width: 200px;
    }
}

/* ================================
   CHECKOUT PLACE ORDER BUTTON
   ================================ */

/* WooCommerce Blocks Place Order Button */
.wc-block-components-button.wc-block-components-checkout-place-order-button,
.wc-block-checkout__actions .wc-block-components-button.wp-element-button,
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-button,
button.wc-block-components-button.wc-block-components-checkout-place-order-button {
    background: #000 !important;
    color: #fff !important;
    border: 2px solid #000 !important;
    border-radius: 0 !important;
    padding: 18px 45px !important;
    font-family: "brandon-grotesque", sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    width: 100% !important;
    max-width: 400px !important;
    margin: 20px auto 0 !important;
    display: block !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    box-shadow: none !important;
    text-decoration: none !important;
    line-height: 1.2 !important;
    min-height: auto !important;
}

/* Hover state */
.wc-block-components-button.wc-block-components-checkout-place-order-button:hover,
.wc-block-checkout__actions .wc-block-components-button.wp-element-button:hover,
button.wc-block-components-button.wc-block-components-checkout-place-order-button:hover {
    background: #fff !important;
    color: #000 !important;
    border-color: #000 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

/* Focus state */
.wc-block-components-button.wc-block-components-checkout-place-order-button:focus,
.wc-block-checkout__actions .wc-block-components-button.wp-element-button:focus,
button.wc-block-components-button.wc-block-components-checkout-place-order-button:focus {
    outline: 2px solid #000 !important;
    outline-offset: 2px !important;
    box-shadow: none !important;
}

/* Active/Click state */
.wc-block-components-button.wc-block-components-checkout-place-order-button:active,
button.wc-block-components-button.wc-block-components-checkout-place-order-button:active {
    transform: scale(0.98) !important;
}

/* Disabled state */
.wc-block-components-button.wc-block-components-checkout-place-order-button:disabled,
button.wc-block-components-button.wc-block-components-checkout-place-order-button:disabled {
    background: #ccc !important;
    border-color: #ccc !important;
    color: #999 !important;
    cursor: not-allowed !important;
}

/* Loading state */
.wc-block-components-button.wc-block-components-checkout-place-order-button.is-loading,
button.wc-block-components-button.wc-block-components-checkout-place-order-button.is-loading {
    color: transparent !important;
}

/* Classic checkout form place order button */
#place_order,
.woocommerce-checkout #place_order,
.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
    background: #000 !important;
    color: #fff !important;
    border: 2px solid #000 !important;
    border-radius: 0 !important;
    padding: 18px 45px !important;
    font-family: "brandon-grotesque", sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    width: 100% !important;
    margin-top: 20px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    text-decoration: none !important;
}

#place_order:hover,
.woocommerce-checkout #place_order:hover {
    background: #fff !important;
    color: #000 !important;
    border-color: #000 !important;
}

/* Ensure button text is visible */
.wc-block-components-button__text {
    color: inherit !important;
    display: inline-block !important;
}

/* Container alignment */
.wc-block-checkout__actions,
.woocommerce-checkout-payment {
    text-align: center !important;
}

/* Force override with higher specificity for stubborn elements */
body .wc-block-components-button.wc-block-components-checkout-place-order-button.contained,
body .wp-block-woocommerce-checkout .wc-block-components-button.wc-block-components-checkout-place-order-button,
body.woocommerce-checkout .wc-block-components-button.wc-block-components-checkout-place-order-button {
    background-color: #000 !important;
    color: #fff !important;
    border: 2px solid #000 !important;
    font-family: "brandon-grotesque", sans-serif !important;
}

body .wc-block-components-button.wc-block-components-checkout-place-order-button:not(:disabled):hover,
body.woocommerce-checkout .wc-block-components-button.wc-block-components-checkout-place-order-button:not(:disabled):hover {
    background-color: #fff !important;
    color: #000 !important;
} 