/*
Theme Name: Niku
Theme URI: https://elena-wagyu.com/
Author:  
Author URI: 
Description: A clean, minimal custom WooCommerce-ready theme.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: elena-wagyu.com
*/


/* Base Styles */
html, body { margin: 0; padding: 0; }
body { font-family: 'Playfair Display', 'Georgia', serif; line-height: 1.6; color: #1a1a1a; background: #fff; font-weight: 400; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* Header Styles */
.site-header { background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,0.08);/* position: sticky; */ top: 0; z-index: 100; }
.site-header .brand { display: flex; align-items: center; gap: 16px; }
/* .site-header .brand a { text-decoration: none; color: inherit; font-weight: 700; font-size: 1.8rem; letter-spacing: -0.5px; } */
.site-header .nav { display: flex; gap: 8px; align-items: center; }
.site-header .nav a { text-decoration: none; color: #333; padding: 16px 24px; font-weight: 500; font-size: 0.95rem; letter-spacing: 0.5px; text-transform: uppercase; transition: all 0.3s ease; position: relative; }
.site-header .nav a:before { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: #d12129; transition: all 0.3s ease; transform: translateX(-50%); }
.site-header .nav a:hover:before { width: 80%; }
.site-header .nav a:hover { color: #d12129; }
.header-wrap { display: flex; justify-content: space-between; align-items: center; /*padding: 20px 0;*/ }

/* Footer */
.site-footer {background: #1a1a1a; color: #ccc; padding: 60px 0; border-top: none; }
main.site-main { padding: 0; }

/* Typography */
h1, h2, h3 { line-height: 1.2; margin: 0 0 16px; font-weight: 400; }
h2 { font-size: 3.5rem; color: #1a1a1a; text-align: center; margin-bottom: 60px; font-weight: 300; letter-spacing: -1px; position: relative; }
h2:after { content: ''; position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); width: 60px; height: 2px; background: #d12129; }

/* Buttons */
button, .button, input[type=submit] { border: 2px solid #1a1a1a; padding: 18px 40px; background: transparent; color: #1a1a1a; cursor: pointer; font-weight: 500; text-decoration: none; display: inline-block; transition: all 0.4s ease; font-family: inherit; letter-spacing: 1px; text-transform: uppercase; font-size: 0.9rem; position: relative; overflow: hidden; }
button:before, .button:before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; /*background: #1a1a1a; */ transition: all 0.4s ease; z-index: -1; }
button:hover:before, .button:hover:before { left: 0; }
button:hover, .button:hover, input[type=submit]:hover { color: #fff; border-color: #1a1a1a; background: #d12129 !important; }
.button-red, .wc-block-cart__submit-button { border-color: #d12129 !important; color: #d12129; }
.button-red:before, .wc-block-cart__submit-button:before { background: #d12129 !important; }
.button-red:hover, .wc-block-cart__submit-button:hover { border-color: #d12129; color: #fff; background: #d12129 !important;}

.woocommerce-variation-add-to-cart,
.single_add_to_cart_button {
    background: #b91c1c !important;
    color: #fff !important;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.woocommerce-variation-add-to-cart:hover,
.single_add_to_cart_button:hover {
    background: #991b1b !important;
}



/* Debug - Add colored borders to identify buttons */
.woocommerce button,
.woocommerce a.button,
.woocommerce input.button,
.wc-block-components-button,
.add_to_cart_button,
.single_add_to_cart_button {
    border: 3px solid red !important;
}

/* Hero Slider - Updated for left alignment */
.hero-slider { position: relative; width: 100%; height: 90vh; overflow: hidden; }
.hero-swiper, .swiper-slide { width: 100%; height: 100%; }
.swiper-slide { background-size: cover; background-position: center; position: relative; display: flex; align-items: center; min-height: 100vh; }
.swiper-slide .overlay { position: absolute; inset: 0; z-index: 1; }
.slide-content { position: relative; z-index: 2; color: #000; max-width: 800px; padding: 0 40px; display: flex; flex-direction: column; justify-content: center; height: 100vh; text-align: left; margin-left: 10%; }
.slide-content h1 { font-size: 5rem; margin-bottom: 0px; font-weight: 300; letter-spasing: -2px;  animation: fadeInDown 1s ease forwards; }
.slide-content p { font-size: 1.4rem; margin-bottom: 40px; margin-top: 0px; font-weight: 300; letter-spacing: 0.5px;  animation: fadeInUp 1.2s ease forwards; }
.slide-content .button { display: inline-block; width: auto; align-self: flex-start; text-align: center; padding: 20px 50px; font-size: 1rem; border-color: #d12129; color: #d12129; position: relative; overflow: hidden; transition: all 0.4s ease; }
.slide-content .button:before { background: #d12129; }
.slide-content .button:hover { border-color: #d12129; color: #fff;}

/* Swiper Pagination */
.swiper-pagination { bottom: 40px !important; }
.swiper-pagination-bullet { width: 12px; height: 12px; background: rgba(255,255,255,0.5); opacity: 1; margin: 0 8px !important; }
.swiper-pagination-bullet-active { background: #d12129; transform: scale(1.2); }

/* Animations */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-50px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }

/* Wagyu Heritage Section */
.wagyu-heritage { padding: 120px 0; background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); color: white; position: relative; overflow: hidden; }
.wagyu-heritage:before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: url('https://elena-wagyu.giftsbandi.com/wp-content/uploads/2025/08/8630.jpg') center/cover; }
.heritage-content { max-width: 600px; position: relative; z-index: 2; }
.heritage-content h2 { color: white; text-align: left; font-size: 4rem; margin-bottom: 40px; }
.heritage-content h2:after { left: 0; transform: none; }
.heritage-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin: 60px 0; }
.stat-item { text-align: center; padding: 30px 20px; border: 1px solid rgba(255,255,255,0.2); transition: all 0.4s ease; }
.stat-item:hover { border-color: #d12129; transform: translateY(-10px); }
.stat-number { font-size: 3rem; color: #d12129; font-weight: 300; display: block; margin-bottom: 10px; }
.stat-label { font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; }

/* Process Cards - Updated with grading hover effect */
.process-cards { padding: 120px 0; background: #fafafa; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin: 80px 0; }
.cards-grid .card { padding: 60px 40px; background: white; transition: all 0.4s ease; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,0.08); position: relative; border: 2px solid #f0f0f0; overflow: hidden; }
.cards-grid .card:before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(135deg, #d12129, #ff4444); transition: all 0.4s ease; z-index: -1; }
.cards-grid .card:hover:before { left: 0; }
.cards-grid .card:hover { color: white; transform: translateY(-15px); box-shadow: 0 40px 80px rgba(0,0,0,0.12); border-color: #d12129; }
.cards-grid .card i { color: #d12129; margin-bottom: 30px; font-size: 3.5rem; transition: color 0.4s ease; }
.cards-grid .card:hover i { color: white; }
.cards-grid .card h3 { font-size: 1.8rem; margin-bottom: 20px; color: #1a1a1a; font-weight: 300; letter-spacing: -0.5px; transition: color 0.4s ease; }
.cards-grid .card:hover h3 { color: white; }
.cards-grid .card p { color: #666; font-size: 1rem; line-height: 1.7; font-weight: 300; transition: color 0.4s ease; }
.cards-grid .card:hover p { color: white; }

/* Wagyu Grading Section */
.wagyu-grading { padding: 120px 0; background: white; }
.grading-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px; margin: 80px 0; }
.grade-card { background: white; border: 2px solid #f0f0f0; padding: 40px 30px; text-align: center; transition: all 0.4s ease; position: relative; overflow: hidden; }
.grade-card:before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(135deg, #d12129, #ff4444); transition: all 0.4s ease; z-index: -1; }
.grade-card:hover:before { left: 0; }
.grade-card:hover { color: white; transform: translateY(-10px); border-color: #d12129; }
.grade-letter { font-size: 4rem; font-weight: 300; color: #d12129; margin-bottom: 20px; transition: color 0.4s ease; }
.grade-card:hover .grade-letter { color: white; }
.grade-title { font-size: 1.2rem; font-weight: 400; margin-bottom: 15px; letter-spacing: 0.5px; }
.grade-description { font-size: 0.9rem; opacity: 0.8; line-height: 1.6; }

/* Premium Experience Section */
.premium-experience { padding: 120px 0; background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%); position: relative; }
.experience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.experience-image { position: relative; overflow: hidden;/* box-shadow: 0 30px 80px rgba(0,0,0,0.15);*/ transform: perspective(1000px) rotateY(-5deg); transition: all 0.6s ease; }
.experience-image:hover { transform: perspective(1000px) rotateY(0deg); }
.experience-image img {  transition: transform 0.6s ease; }
.experience-image:hover img { transform: scale(1.05); }
.experience-features { margin: 40px 0; }
.feature-highlight { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; padding: 25px; background: white; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: all 0.4s ease; }
.feature-highlight:hover { transform: translateX(10px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.feature-icon { width: 60px; height: 60px; background: linear-gradient(135deg, #d12129, #ff4444); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.feature-text h4 { font-size: 1.3rem; margin-bottom: 8px; color: #1a1a1a; font-weight: 400; margin-top: 0px; }
.feature-text p { color: #666; font-size: 0.95rem; line-height: 1.6; margin: 0; }

/* Products Section - Updated for premium look */
.home-products { padding:120px  0 0 0; background: white; }
/*.products-container { max-width: 1600px; margin: 0 auto; padding: 0 40px; }*/
.woocommerce ul.products, .woocommerce-page ul.products { display: grid !important; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important; gap: 20px !important; margin: 0 !important; padding: 0 !important; width: 100% !important; }
.woocommerce .products .product { background: white; overflow: hidden; text-align: center; transition: all 0.4s ease; box-shadow: 0 15px 50px rgba(0,0,0,0.1); position: relative; list-style: none !important; border: 1px solid #f0f0f0; display: flex; flex-direction: column; height: 100%; width: 100% !important; max-width: none !important; margin: 0 !important; }
.woocommerce .products .product:hover { transform: translateY(-10px); box-shadow: 0 30px 70px rgba(0,0,0,0.15); border-color: #d12129; }
.woocommerce .products .product img { height: 350px; object-fit: cover; transition: transform 0.4s ease; flex-shrink: 0; }
.woocommerce .products .product:hover img { transform: scale(1.05); }
.product-content { padding: 40px; padding-top: 0px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.woocommerce .products .product .woocommerce-loop-product__title, .woocommerce div.product .product_title { font-size: 1.6rem; font-weight: 300; margin: 0 0 20px; color: #1a1a1a; line-height: 1.3; letter-spacing: -0.5px; flex-grow: 1; }
.woocommerce .products .product .price { font-size: 1.8rem; font-weight: 300; color: #d12129; margin: 20px 0 30px; letter-spacing: -0.5px; flex-shrink: 0; }
/* Base Button Styles */
.woocommerce .products .product .button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt {
    text-align: center;
    border-radius: 0px !important;
    padding: 18px 25px;
    background: transparent;
    color: #d12129;
    font-weight: 500;
    border: 2px solid #d12129;
    transition: all 0.4s ease;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    margin-top: auto;
    z-index: 1; /* Needed so pseudo-element sits behind */
}

/* Before Element (for animation effect) */
.woocommerce .products .product .button:before,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:before,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:before,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:before,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:before,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:before,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:before,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:before,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #d12129;
    transition: all 0.4s ease;
    z-index: -1;
}

/* Hover States */
.woocommerce .products .product .button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:hover {
    color: #fff;
    border-color: #d12129;
}

.woocommerce .products .product .button:hover:before,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover:before,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover:before,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover:before,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover:before,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:hover:before,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:hover:before,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:hover:before,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:hover:before {
    left: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3{font-size: 1.6rem !important;}
.woocommerce-loop-product__title:after{bottom: 0px !important;}
.woocommerce ul.products li.product .price{font-size: 1.2rem !important; margin: 0px auto;}
.woocommerce ul.products::before, .woocommerce ul.products::after {content: none !important;display: none !important;}

/* Intro Section */
.home-intro { padding: 120px 0; background: #fafafa; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-text h2 { text-align: left; margin-bottom: 30px; color: #1a1a1a; }
.intro-text p { font-size: 1.2rem; color: #666; line-height: 1.8; margin-bottom: 25px; font-weight: 300; }
.intro-image { position: relative; overflow: hidden; }
.intro-image img { width: 100%; height: 500px; object-fit: cover; transition: transform 0.6s ease; }
.intro-image:hover img { transform: scale(1.08); }

/* Testimonials Section - Updated with photos */
.home-testimonials { padding: 120px 0; background: #1a1a1a; color: white; }
.home-testimonials h2 { color: white; }
.home-testimonials h2:after { background: #d12129; }
.testimonial-swiper { padding: 60px 0 80px; overflow: hidden; }
.testimonial-swiper .swiper-slide { background: transparent; border: 2px solid #333; padding: 60px 40px; text-align: center; height: auto; min-height: 280px; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: all 0.4s ease; }
.testimonial-swiper .swiper-slide:hover { border-color: #d12129; transform: translateY(-10px); }
.testimonial-avatar { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; margin-bottom: 25px; border: 3px solid #d12129; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-swiper .swiper-slide p { font-size: 1.3rem; font-style: italic; margin-bottom: 30px; line-height: 1.7; color: #ccc; font-weight: 300; }
.testimonial-swiper .swiper-slide h4 { font-size: 1.1rem; font-weight: 400; color: #d12129; margin: 0; letter-spacing: 0.5px; text-transform: uppercase; }
.testimonial-swiper .swiper-pagination { bottom: 20px !important; }
.testimonial-swiper .swiper-pagination-bullet { background: #666; opacity: 1; width: 10px; height: 10px; }
.testimonial-swiper .swiper-pagination-bullet-active { background: #d12129; }

/* Categories Section - Updated with better images */
.meat-categories { padding: 120px 0; background: #fff; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 80px 0; }
.category-card { position: relative; height: 500px; background-size: cover; background-position: center; overflow: hidden; transition: all 0.4s ease; cursor: pointer; }
.category-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.3); }
.category-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7)); transition: all 0.4s ease; }
.category-card:hover .category-overlay { background: linear-gradient(to bottom, rgba(209,33,41,0.3), rgba(0,0,0,0.8)); }
.category-content { position: absolute; bottom: 40px; left: 30px; right: 30px; color: white; z-index: 2; }
.category-content h3 { font-size: 2rem; margin-bottom: 8px; font-weight: 300; letter-spacing: -0.5px; }
.category-content p { font-size: 1rem; margin-bottom: 20px; opacity: 0.9; font-weight: 300; }
.category-content .button { padding: 12px 24px; font-size: 0.85rem; border-color: white; color: white; }
.category-content .button:before { background: #d12129; }
.category-content .button:hover { border-color: #d12129; }

/* Why Choose Us Section - Updated with grading hover effect */
.why-choose-us { padding: 0 0 120px 0; background: #fafafa; }
.why-choose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.features-list { margin: 40px 0 50px; }
.feature-item { display: flex; align-items: baseline; gap: 20px; margin-bottom: 10px; padding: 20px; background: white; border: 2px solid #f0f0f0; transition: all 0.4s ease; position: relative; overflow: hidden; }
.feature-item:before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(135deg, #d12129, #ff4444); transition: all 0.4s ease; z-index: -1; }
.feature-item:hover:before { left: 0; }
.feature-item:hover { color: white; border-color: #d12129; transform: translateY(-5px); }
.feature-item i { color: #d12129; font-size: 1.5rem; margin-top: 5px; flex-shrink: 0; transition: color 0.4s ease; }
.feature-item:hover i { color: white; }
.feature-item h4 { font-size: 1.3rem; margin-bottom: 8px; color: #1a1a1a; font-weight: 400; transition: color 0.4s ease; margin-top: 0px; }
.feature-item:hover h4 { color: white; }
.feature-item p { color: #666; line-height: 1.6; font-weight: 300; transition: color 0.4s ease; margin: 0px; }
.feature-item:hover p { color: white; }
.why-choose-image { position: relative; overflow: hidden; margin: auto; }
.why-choose-image img { transition: transform 0.6s ease; max-height: 600px; }
.why-choose-image:hover img { transform: scale(1.05); }

/* Meat Cuts Guide Section - Updated with better images */
.meat-cuts-guide { padding: 120px 0; background: white; }
.cuts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin: 80px 0; }
.cut-card { background: white; box-shadow: 0 15px 50px rgba(0,0,0,0.1); transition: all 0.4s ease; overflow: hidden; border: 1px solid #f0f0f0; }
.cut-card:hover { transform: translateY(-10px); box-shadow: 0 30px 70px rgba(209, 33, 41, 0.15); border-color: #d12129; }
.cut-image { position: relative; overflow: hidden; }
.cut-image img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s ease; }
.cut-card:hover .cut-image img { transform: scale(1.05); }
.cut-content { padding: 25px; }
.cut-content h3 { font-size: 1.4rem; margin-bottom: 12px; color: #1a1a1a; font-weight: 400; letter-spacing: -0.5px; }
.cut-content p { color: #666; font-size: 0.95rem; line-height: 1.6; margin-bottom: 15px; font-weight: 300; }
.cut-price { font-size: 1.2rem; color: #d12129; font-weight: 400; letter-spacing: -0.5px; }




@media (max-width: 768px) {
    .slide-content h1 { font-size: 3rem; } .slide-content p { font-size: 1.1rem; } .intro-grid { grid-template-columns: 1fr; gap: 60px; } .cards-grid { grid-template-columns: 1fr; gap: 30px; } h2 { font-size: 2.5rem; } .container, .products-container { padding: 0 20px; } .cards-grid .card { padding: 40px 30px; } .testimonial-swiper .swiper-slide { padding: 40px 30px; } .category-grid { grid-template-columns: repeat(2, 1fr); } .cuts-grid { grid-template-columns: repeat(2, 1fr); } .why-choose-grid { grid-template-columns: 1fr; gap: 60px; } .experience-grid { grid-template-columns: 1fr; gap: 60px; } .grading-grid { grid-template-columns: repeat(2, 1fr); } .woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
    .slide-content h1 { font-size: 2.5rem; } .hero-slider { height: 70vh; } h2 { font-size: 2rem; } .category-grid { grid-template-columns: 1fr; } .cuts-grid { grid-template-columns: 1fr; } .grading-grid { grid-template-columns: 1fr; }
}

/* Premium Effects */
.fade-in-up { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* Luxury Details */
.luxury-divider { height: 1px; background: linear-gradient(to right, transparent, #d12129, transparent); margin: 60px 0; }

/* Premium hover effects */
* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }



/* custom single product page */
.single-product-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.product-gallery {
    position: relative;
}

.swiper-container.main-gallery {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.swiper-container.main-gallery .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
}

.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
}

.product-details {
    position: sticky;
    top: 20px;
    padding: 20px;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.product-price {
    font-size: 1.8rem;
    color: #b91c1c;
    margin-bottom: 15px;
}

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

.total-price {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-top: 15px;
    display: block;
}





.quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 5px;
}

.qty-btn {
    background: #f3f3f3;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
}

.input-text.qty {
    width: 60px;
    text-align: center;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

select.variation-select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background: #fff;
    color: #333;
    width: 100%;
    max-width: 200px;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24"><path fill="%23333" d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
}

select.variation-select:focus {
    outline: none;
    border-color: #b91c1c;
}

.product-tabs {
    margin-top: 40px;
}

.woocommerce-tabs ul.tabs {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    border-bottom: 2px solid #ddd;
}

.woocommerce-tabs ul.tabs li {
    margin: 0;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    transition: color 0.3s;
}

.woocommerce-tabs ul.tabs li.active {
    color: #b91c1c;
    border-bottom: 2px solid #b91c1c;
}

.woocommerce-tabs .panel {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
    line-height: 1.6;
    color: #333;
}

@media (max-width: 768px) {
    .product-hero {
        grid-template-columns: 1fr;
    }

    .product-details {
        position: static;
    }

    .woocommerce-tabs ul.tabs {
        flex-direction: column;
    }

    .woocommerce-tabs ul.tabs li {
        padding: 10px;
        border-bottom: 1px solid #ddd;
    }
}



.woocommerce ul.products li.product a img{ width: revert-layer !important; margin:auto;}


.woocommerce div.product form.cart .button{float: none !important;}


.quantity-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}
.quantity-control {
    display: flex;
    align-items: center;
}
.qty-btn {
    padding: 5px 10px;
    background: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}
.qty-btn:hover { background: #555; }
.input-text.qty {
    width: 50px;
    text-align: center;
    margin: 0 5px;
}
.total-price {
    font-weight: bold;
    margin-top: 5px;
}

.wc-block-components-checkout-step__container{margin-top: 3rem !important;}
.woocommerce .woocommerce-ordering select{padding:10px 20px !important;}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt{background:#d12129 !important;}
