

/*
Theme Name: Brami Inspired Theme 2
Theme URI: https://brami.cz/
Version: 2.0.2
Text Domain: brami-inspired
*/

/* ===== HEADER STYLES ===== */

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f5f5f5;
    transition: all 0.3s ease;
}

.social-icons .social-link:hover {
    transform: translateY(-2px);
}

.social-icons .social-link i {
    font-size: 14px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    font-size: 16px;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: #4a4a4a;
}

a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #666;
}
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s ease;
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-navigation {
        display: none;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        background: #fff;
        position: absolute;
        top: 60px;
        width: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .main-navigation.active {
        display: flex;
    }

    .site-header {
        position: fixed;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    body.mobile-menu-open {
        overflow: hidden;
    }
}
/* ===== LAYOUT UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.grid {
    display: grid;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.gap-40 { gap: 40px; }

/* ===== HERO SECTION ===== */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: #1a1a1a;
    color: #fff;
}

.btn-primary:hover {
    background: #333;
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: #fff;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* ===== PRODUCT GRID ===== */
.products-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Product Card Styles */
/* .product-card {
    position: relative;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.product-card .product-link {
    display: block;
    text-decoration: none;
    color: inherit;
    flex: 1;
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.product-content {
    padding: 20px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-title a {
    color: #333;
    text-decoration: none;
    font-size:17px;
}

.product-title a:hover {
    color: #666;
}

.product-price {
    font-size: 16px;
    font-weight: 500;
    color: #333;
} */

/* WooCommerce product grid */
.woocommerce ul.products,
.woocommerce-page ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (max-width: 768px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .product-card img {
        height: 250px;
    }
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* .product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

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

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #000;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-content {
    padding: 20px;
}

.product-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.product-price .old-price {
    text-decoration: line-through;
    color: #999;
    font-weight: 400;
    margin-right: 0.5rem;
} */

.add-to-cart-btn {
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #333;
}

/* ===== CATEGORY CARDS ===== */
/* .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-decoration: none;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease;
}

.category-card:hover::before {
    background: rgba(0, 0, 0, 0.6);
}

.category-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-count {
    font-size: 0.9rem;
    opacity: 0.8;
} */

/* bracelet-category-slider  */
    /* .bracelet-category-slider{
        margin-bottom:4rem;
    } */


/* ===== FOOTER ===== */
.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    margin-bottom: 10px;
    display: block;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-menu-bottom {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

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

.footer-menu-bottom a {
    color: #ccc;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu-bottom a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
    }
    
    .footer-menu-bottom {
        justify-content: center;
        margin-top: 15px;
    }
}
.swiper-wrapper{
    height:auto !important;
}

/* ===== COMPLETE RESPONSIVE DESIGN SYSTEM ===== */

/* Mobile Navigation Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #1a1a1a;
    padding: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

.mobile-menu-toggle:focus {
    outline: none;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: #1a1a1a;
    margin: 2px 0;
    transition: 0.3s;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-4px, 4px);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-4px, -4px);
}

/* Navigation Responsive Styles */
@media (max-width: 991px) {
    .main-navigation {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
    }
    
    .main-navigation.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-navigation .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }
    
    .main-navigation .nav-menu li {
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        text-align: center;
    }
    
    .main-navigation .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .main-navigation .nav-menu a {
        display: block;
        padding: 15px 20px;
        text-align: center;
        font-size: 16px;
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Header Complete Responsive Design */
@media (max-width: 991px) {
    .header-content {
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
    }
    
    .header-left {
        order: 1;
        flex: 0 0 auto;
    }
    
    .header-center {
        order: 2;
        flex: 1 1 auto;
        justify-content: center;
    }
    
    .header-right {
        order: 3;
        flex: 0 0 auto;
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .site-header {
        padding: 10px 0;
    }
    
    .header-right a span {
        display: none;
    }
    
    .header-right {
        gap: 10px;
    }
    
    .site-logo {
        font-size: 22px !important;
    }
    
    .logo-dots .dot {
        width: 3px;
        height: 3px;
    }
    
    .search-field {
        width: 80px;
    }
    
    .search-field:focus {
        width: 120px;
    }
}

@media (max-width: 575px) {
    .header-right {
        gap: 8px;
    }
    
    .site-logo {
        font-size: 18px !important;
    }
    
    .search-field {
        width: 60px;
    }
    
    .search-field:focus {
        width: 100px;
    }
}

@media (max-width: 479px) {
    .header-content {
        gap: 5px;
    }
    
    .site-logo {
        font-size: 16px !important;
    }
    
    .header-right {
        gap: 5px;
    }
    
    .search-field {
        width: 50px;
    }
    
    .search-field:focus {
        width: 80px;
    }
}

/* Footer Responsive Styles */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .site-footer {
        padding: 40px 0 15px;
    }
    
    .newsletter-section {
        padding: 30px 0;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form input {
        width: 100%;
    }
}

@media (max-width: 479px) {
    .site-footer {
        padding: 30px 0 10px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
    }
}

/* Front Page Hero Section Responsive */
.hero-3col-grid {
    width: 100%;
    margin: 0 auto 40px auto;
    padding: 0;
}

.hero-3col-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    min-height: 350px;
}

@media (max-width: 991px) {
    .hero-3col-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-3col-item {
        min-height: 250px;
    }
    
    .hero-3col-img {
        min-height: 250px;
    }
    
    .hero-3col-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .hero-3col-item {
        min-height: 220px;
    }
    
    .hero-3col-img {
        min-height: 220px;
    }
    
    .hero-3col-overlay {
        padding: 20px;
    }
    
    .hero-3col-title {
        font-size: 1.5rem;
    }
    
    .hero-3col-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 479px) {
    .hero-3col-item {
        min-height: 180px;
    }
    
    .hero-3col-img {
        min-height: 180px;
    }
    
    .hero-3col-overlay {
        padding: 15px;
    }
    
    .hero-3col-title {
        font-size: 1.2rem;
    }
    
    .hero-3col-subtitle {
        font-size: 0.9rem;
    }
}

/* Category Slider Responsive */
.all-category-slider-section {
    width: 100%;
    padding: 0 4.5rem;
    background: #fff;
}

@media (max-width: 991px) {
    .all-category-slider-section {
        padding: 0 2rem;
    }
}

@media (max-width: 767px) {
    .all-category-slider-section {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 479px) {
    .all-category-slider-section {
        padding: 0 0.5rem;
    }
    
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
}

/* ===== COMPREHENSIVE RESPONSIVE DESIGN ===== */

/* Extra Large Screens (1440px and up) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    .container-wide {
        max-width: 1600px;
        padding: 0 40px;
    }
    
    .hero h1 {
        font-size: 4.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 40px;
    }
}

/* Large Desktop (1200px - 1439px) */
@media (max-width: 1439px) and (min-width: 1200px) {
    .container {
        max-width: 1200px;
        padding: 0 30px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
    }
}

/* Standard Desktop (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .container {
        max-width: 960px;
        padding: 0 25px;
    }
    
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

/* Large Tablets (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 20px;
    }
    
    .hero {
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.8rem; }
}

/* Standard Tablets (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .container {
        max-width: 540px;
        padding: 0 20px;
    }
    
    .hero {
        min-height: 50vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .products-section {
        padding: 60px 0;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
    
    h1 { font-size: 2.2rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.6rem; }
}

/* Large Mobile (480px - 575px) */
@media (max-width: 575px) and (min-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 40vh;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .products-section {
        padding: 50px 0;
    }
    
    .testimonials-section {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }
}

/* Small Mobile (320px - 479px) */
@media (max-width: 479px) {
    .container {
        padding: 0 12px;
    }
    
    .hero {
        min-height: 35vh;
        padding: 20px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .products-section {
        padding: 40px 0;
    }
    
    .testimonials-section {
        padding: 40px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }
    h4 { font-size: 1.1rem; }
    h5 { font-size: 1rem; }
    h6 { font-size: 0.9rem; }
}

/* ===== WOOCOMMERCE SPECIFIC STYLES ===== */
/* .woocommerce .products { */
    /* display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px; */
    /* display: flex;
    flex-direction: column; */
/* } */

.woocommerce .product {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.woocommerce .product:hover {
    transform: translateY(-5px);
}

.woocommerce .woocommerce-loop-product__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 15px 0 10px;
    color: #1a1a1a;
}

.woocommerce .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.woocommerce .button {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.woocommerce .button:hover {
    background: #333;
}

/* ===== CUSTOM WOOCOMMERCE PAGES ===== */
.woocommerce-cart,
.woocommerce-checkout {
    padding:0;
}

.cart-table {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cart-table th {
    background: #f8f9fa;
    padding: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.cart-table td {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.cart-totals {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
}

.checkout-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #1a1a1a;
}

.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
    outline: none;
    border-color: #1a1a1a;
}

/* ===== SINGLE PRODUCT PAGE ===== */
.single-product {
    padding:0;
}

.product-gallery {
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
}

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

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.product-description {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.product-description p{
    padding:0 7rem;
}
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.quantity-selector input {
    /* width: 80px; */
    text-align: center;
}
.quantity{
     width: 100%;
    max-width: 10%;
    gap: 2px;
    display: flex

}

.variations {
    margin-bottom: 2rem;
}

.variations select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-left: 10px;
}

/* ===== LOADING STATES ===== */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #1a1a1a;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease forwards;
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.6s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.6s ease forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Shop page horizontal row layout */
.products-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 30px !important;
    margin-bottom: 40px !important;
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.products-row .product-item {
    width: 300px !important;
    flex: 0 0 auto !important;
    margin-bottom: 20px !important;
}

.products-row .product-item img {
    width: 100% !important;
    height: 390px !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.3s !important;
}

.products-row .product-item:hover img {
    transform: scale(1.05) !important;
}

.products-row .product-meta {
    text-align: center !important;
    margin-top: 10px !important;
    padding: 0 15px 15px !important;
}

.products-row .product-cats {
    color: #888 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    margin-bottom: 4px !important;
    font-weight: 500 !important;
}

.products-row .product-name {
    font-size: 16px !important;
    margin: 0 0 8px 0 !important;
    font-weight: 600 !important;
    color: #222 !important;
}

.products-row .product-name a {
    color: #222 !important;
    text-decoration: none !important;
}

.products-row .product-name a:hover {
    color: #ff4757 !important;
}

.products-row .product-price {
    font-weight: bold !important;
    margin-top: 4px !important;
    color: #ff4757 !important;
    font-size: 18px !important;
}

/* Shop page specific styles */
.shop-main {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.shop-content {
    min-width: 0 !important;
    flex: 1 !important;
}

/* Responsive row adjustments */
@media (max-width: 1024px) {
    .products-row {
        gap: 20px !important;
    }
    
    .products-row .product-item {
        width: 280px !important;
    }
}

@media (max-width: 768px) {
    .products-row {
        gap: 15px !important;
    }
    
    .products-row .product-item {
        width: 250px !important;
    }
    
    .products-row .product-item img {
        height: 250px !important;
    }
    
    .products-row .product-name {
        font-size: 14px !important;
    }
    
    .products-row .product-price {
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    .products-row {
        gap: 15px !important;
    }
    
    .products-row .product-item {
        width: 200px !important;
    }
    
    .products-row .product-item img {
        height: 200px !important;
    }
}



/* Sale Flash Styling */
.sale-flash {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

.sale-flash .onsale {
    display: inline-block;
    background: #ff4757;
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Product Gallery Positioning */
.woocommerce-product-gallery {
    position: relative;
}

.woocommerce-product-gallery__image {
    position: relative;
}

/* Single Product Gallery Styling */
.single-product-custom .product-gallery {
    position: relative;
    width: 100%;
}

.single-product-custom .woocommerce-product-gallery {
    width: 100%;
    margin-bottom: 20px;
}

.single-product-custom .woocommerce-product-gallery__image {
    width: 100%;
    position: relative;
}

.single-product-custom .woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.single-product-custom .woocommerce-product-gallery__trigger {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    z-index: 10;
}

.single-product-custom .woocommerce-product-gallery__trigger:hover {
    background: rgba(255, 255, 255, 1);
    color: #ff4757;
}

/* Product Gallery Thumbnails */
.single-product-custom .flex-control-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    list-style: none;
    padding: 0;
}

.single-product-custom .flex-control-thumbs li {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.single-product-custom .flex-control-thumbs li:hover,
.single-product-custom .flex-control-thumbs li.flex-active {
    border-color: #ff4757;
}

.single-product-custom .flex-control-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Flexslider Navigation */
.single-product-custom .flex-direction-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-product-custom .flex-direction-nav a {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    z-index: 10;
    transition: all 0.3s ease;
}

.single-product-custom .flex-direction-nav a:hover {
    background: rgba(255, 255, 255, 1);
    color: #ff4757;
}

.single-product-custom .flex-direction-nav .flex-prev {
    left: 10px;
}

.single-product-custom .flex-direction-nav .flex-next {
    right: 10px;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .single-product-custom .flex-control-thumbs li {
        width: 60px;
        height: 60px;
    }
    
    .single-product-custom .flex-direction-nav a {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .single-product-custom .flex-control-thumbs li {
        width: 50px;
        height: 50px;
    }
    
    .single-product-custom .flex-direction-nav a {
        width: 30px;
        height: 30px;
    }
}

/* Custom Single Product Layout */
.custom-single-product-row {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}
.custom-product-gallery {
    width: 50%;
}
.custom-product-summary {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.woocommerce-product-gallery {
    width: 100%;
}
.woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}
/* Vertical thumbnails */
.flex-control-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-right: 15px;
}
.flex-control-thumbs img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #eee;
    cursor: pointer;
    transition: border-color 0.2s;
}
/* Payment icons box */
.secure-payment-icons {
    margin-top: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}
.secure-payment-icons img {
    height: 32px;
}
.secondary-buy-btn {
    width: 100%;
    margin-top: 10px;
    background: #ededed;
    color: #222;
    border: none;
    padding: 12px 0;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    font-size: 16px;
}
@media (max-width: 900px) {
    .custom-single-product-row {
        flex-direction: column;
        gap: 20px;
    }
    .custom-product-gallery,
    .custom-product-summary {
        width: 100%;
    }
    .flex-control-thumbs {
        flex-direction: row;
        margin-right: 0;
        margin-top: 10px;
    }
}
.related.products ul.products {
    display: flex !important;
    flex-direction: columns;
    /* grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); */
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.related.products ul.products li.product {
    border: none;
    padding: 20px;
    background: transparent;
    text-align: center;
}
/* Main Layout */
.custom-product-json-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Sections */
.product-section {
    margin-bottom: 40px;
}

/* Two Column Layout */
.product-section:first-child {
    display: flex;
    gap: 20px;
}

.product-section:first-child > div {
    width: 50%;
}

/* Product Elements */
.product-title {
    font-size: 2em;
    margin-bottom: 15px;
    color: #000;
}

.product-price {
    font-size: 1.5em;
    color: #2a2a2a;
    margin: 15px 0;
}

.product-excerpt {
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .product-section:first-child {
        flex-direction: column;
    }
    
    .product-section:first-child > div {
        width: 100%;
    }
}
.product-info{
    display:flex;
    flex-direction:column;
    justify-content: center;
    align-items:center;
}
.product-summary form{
    display: flex;
    gap:20px;
}
.product-summary input{
    width: 100%;
    padding: 5px;
    font-size: 16px;
    box-shadow: 2px 2px 2px #ccc;
    border:1px solid #ccc;
}
.add-to-cart button{
    padding:12px 4rem !important;
    border-radius:0 !important;
}
@media(max-width:768px){
    .add-to-cart button{
        padding:12px 3rem !important;
    }
}
@media(max-width:468px){
    .add-to-cart button{
        padding:12px 2rem !important;
    }
}

.breadcrumb{
    padding:1rem 2rem 0 4rem;
}
.wc-block-cart__submit-button{
    background-color: #d1d1d1;
    color:#000;
}
.wc-block-cart__submit-button:hover{
    background-color:#000;
    color:#fff;
}
.wp-block-woocommerce-cart{
    margin-top:40px !important;
}
@media(max-width:768px){
.product-slider .swiper-button-next, .product-slider .swiper-button-prev{
    display:none !important;
}
}
.woocommerce-product-gallery ol.flex-control-thumbs li.flex-active-slide{
    border-color:transparent !important;
}
.woocommerce-product-gallery ol.flex-control-thumbs li:hover {
    border-color:transparent !important;
}

/*My account dropdown*/
.account-dropdown {
    position: relative;
    display: inline-block;
}

.account-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    min-width: 180px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 1000;
	transition: opacity 0.15s ease;
    opacity: 0;
    pointer-events: none;
}

.account-dropdown-menu li {
    list-style: none;
}

.account-dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease;
    font-size: 14px;
}

.account-dropdown-menu li a:hover {
    background: #f5e7e7;
}

.account-dropdown:hover .account-dropdown-menu {
    display: block;
	opacity: 1;
    pointer-events: all;
}

/* Mobile-friendly tweaks */
@media (max-width: 768px) {
  .account-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: #f9f9f9;
    border-radius: 0;
  }

  .account-dropdown-menu li a {
    padding: 12px 18px;
    border-bottom: 1px solid #eee;
  }
}
/*End of my account drop down*/
