/* ================= CSS VARIABLES ================= */
:root {
    --bg-cream: #fdfcf8;
    --text-gold: #d99d37; 
    --gold-secondary: #d4af37;
    --white: #ffffff;
    --black: #000000;
    --transition: all 0.3s ease-in-out;
    --transition-slow: all 0.8s ease;
    --font-heading: 'Dune Rise', serif;
    --font-body: Gotham, Arial, Verdana, sans-serif;
}


/* ================= FONT : DUNE RISE ================= */
@font-face {
    font-family: 'Dune Rise';
    src: 
        url('/wp-content/uploads/fonts/dune-rise/Dune_Rise.otf') format('opentype'),
        url('/wp-content/uploads/fonts/dune-rise/Dune_Rise.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


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

/* ================= BASE STYLES ================= */
body {
    font-family: var(--font-body);
    background: var(--bg-cream);
    color: var(--black);
    overflow-x: hidden;
}
/* h1, h2, h3, h4, h5, h6, .heading {
    font-family: var(--font-heading);
} */
.twg-nav-center a {
    display: flex;
    align-items: center;
}
.twg-nav-center img {
    height: 35px;
    padding-right:20px;
}
/* ================= HEADER (TWG Style) ================= */
.twg-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    transition: var(--transition);
    color: var(--white); 
}

.twg-header.scrolled {
    background: var(--white);
    color: #1a1a1a;
    height: 70px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.twg-nav-left, .twg-nav-right {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}
.side-menu ul li a {
    color: #000 !important;
}

.twg-nav-right { 
    justify-content: flex-end;
}
.twg-logo-img { 
    height: 120px; 
    cursor: pointer;
}
.twg-header.scrolled .twg-logo-img { filter: none; }

.twg-icon-btn {
    background: none;
    border: none;
    font-size: 25px;
    cursor: pointer;
    color: #000;
    box-shadow: none;
}
.item-card:hover {
    flex: 1.4;
    transition: all 0.8s ease-in-out;
    --transition-slow: all 0.8s ease;
}
.twg-lang-selector {
    display: flex;
    align-items: center;
    font-size: 12px;
    gap: 8px;
    font-weight: bold;
}

/* ================= HOFUNAKI HEADER ================= */
.hf-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 25px 30px;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    align-items: center;
    justify-items: end;
}

.hf-logo-left img {
    height: 35px;
}

.hf-logo-text {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 25px;
    letter-spacing: 6px;
    color: #000;
    font-weight: bold;
}

.hf-menu {
    list-style: none;
    display: flex;
    gap: 6px;
    margin:0;
}
.hf-logo-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap:30px;
}
.hf-menu a {
    text-decoration: none;
    color: var(--black);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    transition: var(--transition);
}

.hf-menu a:hover {
    color: #656565;
}

/* ================= SIDE MENU (Drawer) ================= */
.side-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: var(--white);
    z-index: 1001;
    transition: var(--transition);
    padding: 20px;
    box-shadow: 10px 0 30px rgba(0,0,0,0.1);
    color: #1a1a1a;
}

.side-menu.open { left: 0; }

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 1000;
}

.side-menu ul { 
    list-style: none; 
    margin: 40px 0px; 
}
.side-menu ul li { 
       margin-bottom: 16px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid #aeaeae;
    padding-bottom: 10px;
}
.side-menu ul li:hover { color: var(--text-gold); }
.close-menu { 
    font-size: 24px; 
    cursor: pointer; 
    position: absolute; 
    right: 20px; 
    top: 20px; 
    color: var(--black);
}

/* ================= HERO BANNER (TWG) ================= */
.hero-banner {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 30%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    padding: 0 20px;
}

.hero-content h1 {
    font-family: var(--font-body);
    font-size: clamp(28px, 6vw, 48px);
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 20px;
        color: #fff;
}

.hero-content p {
    font-size: clamp(14px, 2vw, 18px);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* ================= HOFUNAKI SHOWCASE ================= */
.main-showcase {
    width: 100%;
    height: calc(100vh - 110px);
}

.item-grid {
    display: flex;
    height: 100%;
}

.item-card {
    position: relative;
    flex: 1;
    overflow: hidden;
    border-right: 1px solid #787878bd;
    transition: all 0.8s ease-in-out;
    --transition-slow: all 0.8s ease;
}



.video-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.7);
    transform: scale(1.1);
    transition: all 1.5s ease;
    
}

.item-card:hover video {
    filter: grayscale(0%) brightness(0.9);
    transform: scale(1);
}

.item-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.45));
    z-index: 2;
}

.item-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.item-number {
    font-size: 11px;
    letter-spacing: 5px;
    color: var(--gold-secondary);
    margin-bottom: 10px;
}

.item-title {
font-size: 24px;
    color: #ffffff;
    font-family: var(--font-body);
    text-transform: uppercase;
}

.item-description {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    max-width: 280px;
    margin-bottom: 25px;
}

.item-cta {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    width: fit-content;
    padding-bottom: 5px;
    transition: var(--transition);
}

.item-cta:hover {
    border-bottom-color: var(--text-gold);
    color: var(--text-gold);
}

/* ================= PRODUCT SECTION ================= */
.content-section {
    max-width: 1375px;
    margin: 80px auto;
    padding: 0 20px;
}

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

.product-card {
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
}

.img-container {
    position: relative;
    aspect-ratio: 1/1.2;
    background: #f2f2f2;
    margin-bottom: 15px;
    overflow: hidden;
}

.img-container img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: var(--transition); 
}
.img-container:hover img { transform: scale(1.05); }

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--white);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    padding: 0;
    color: #000;
}

.wishlist-btn:hover {
    background: var(--text-gold);
    color: var(--white);
}

.info { 
    border-top: 1px solid #ddd; 
    padding-top: 15px; 
}
.price-row { 
    display: flex; 
    justify-content: space-between; 
    font-size: 13px; 
    color: #666; 
    margin-bottom: 10px; 
}
.title { 
    font-size: 14px; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-bottom: 5px; 
    color: #000;
}
.desc { 
    font-size: 12px; 
    color: var(--text-gold); 
    line-height: 1.6; 
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .item-grid {
        flex-direction: column;
    }
    .main-showcase {
        height: auto;
    }
    .item-card {
        min-height: 60vh;
    }
    
    .hf-header {
        padding: 18px 20px;
    }
}

@media (max-width: 768px) {
    .twg-header { 
        padding: 0 20px; 
    }
    .twg-nav-right .twg-lang-selector { 
        display: none; 
    }
    
    .hf-logo-text {
        font-size: 24px;
        letter-spacing: 4px;
    }
    
    .hf-menu {
        gap: 15px;
    }
    
    .hf-menu a {
        font-size: 11px;
        letter-spacing: 2px;
    }
}

 /* Footer */
        footer {
            padding: 40px 30px 20px;
            background:#fff;
        }

        .footer-grid {
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
            margin-bottom: 20px;
        }

        .footer-column ul {
            list-style: none;
            margin:0;
        }
        .footer-column h4 {
            font-family: Gotham, Arial, Verdana, sans-serif;
                text-transform: uppercase;
        }
        .footer-column ul li a {
          text-decoration: none;
            font-size: 12px;
            line-height: 1rem;
            transition: color 0.3s;
            text-transform: uppercase;
            color: rgb(101 101 101 / 1);
        }

        .bottom-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 10px;
        }

        .social-links a {
            color: #000;
            margin-right: 15px;
            font-size: 14px;
        }

/* --- Contact Bar --- */
.contact-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.hofunaki-logo-footer {
    font-family: var(--font-heading);
    font-size: 18px;
    color: #000;
    margin: 0;
    letter-spacing: 4px;
}

.social-icons-footer {
    display: flex;
    gap: 15px;
}

.social-icons-footer a {
    display: flex;
    color: #000;
    font-size: 18px;
}

.contact-item {
    text-align: center;
    color: #000;
    font-size: 12px;
    line-height: 1.6;
        display: flex;
    gap: 40px;
    align-items: center;
}

.contact-item p {
    margin: 0;
}

.contact-item:hover {
    transform: translateY(-2px);
    transition: var(--transition);
}


/* ================= FOOTER RESPONSIVE ================= */
@media (max-width: 1024px) {
    .newsletter-column {
        grid-column: span 2;
    }
    
    .footer-hofu {
        padding: 50px 30px;
    }
    
    .contact-bar-content {
        justify-content: center;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    
    .newsletter-column {
        grid-column: span 1;
    }
    
    .footer-hofu {
        padding: 40px 20px;
    }
    
    .contact-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .hofunaki-logo-footer {
        font-size: 20px;
        letter-spacing: 3px;
    }
    
    .social-icons-footer {
        justify-content: center;
    }
    
    .shape-1,
    .shape-2 {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-hofu {
        padding: 30px 15px;
    }
    
    .footer-grid-layered {
        gap: 20px;
    }
    
    .footer-column h4 {
        font-size: 14px;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }
    
    .footer-column a {
        font-size: 13px;
    }
    
    .contact-item {
        font-size: 13px;
    }
    
    .newsletter-form input,
    .natural-btn {
        padding: 10px 14px;
        font-size: 13px;
    }
}


/* ================= COMING SOON SECTION ================= */
.coming-soon-section {
    padding: 100px 20px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.coming-soon-section .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--black);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #000, transparent);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    letter-spacing: 2px;
    text-transform: uppercase;
}



@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.countdown-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 500;
}

/* Coming Soon Content */
.coming-soon-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 80px;
    align-items: start;
}

.coming-soon-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 30px;
    color: var(--black);
}

.coming-soon-text p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.twg-icon-btn:hover{
    background: none;
    border: none;
    color: #000;
}
.hof-gallery-column .woocommerce-product-gallery--columns-4.images {
    width: 90% !important;
}
/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }
    
    .countdown-container {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 80px;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
    
    .coming-soon-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .notify-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .countdown-container {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 70px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .notify-box {
        padding: 30px 20px;
    }
}