/* Global Font Family - Fredoka */
body {
    font-family: 'Fredoka', sans-serif;
}
input, textarea, select, button,
h1, h2, h3, h4, h5, h6,
p, span, a, li, td, th, label {
    font-family: 'Fredoka', sans-serif;
}

/* Top Promo Bar */
.top-promo-bar {
    width: 100%;
    background-color: #e0f2fe;
    background-image: url('../images/pattern-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    position: relative;
    overflow: hidden;
    z-index: 1000;
}
form#checkout-form {
    z-index: 1;
}
.top-promo-slider {
    position: relative;
}

.top-promo-item {
    display: none;
    padding: 12px 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.top-promo-item.active {
    display: block;
    opacity: 1;
}

.top-promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-promo-text {
    color: #1e40af;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.3px;
    font-family: 'Fredoka', sans-serif;
    white-space: nowrap;
}

.top-promo-nav {
    background: transparent;
    border: none;
    color: #1e40af;
    cursor: pointer;
    padding: 4px 8px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 4px;
    opacity: 0.9;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.top-promo-prev {
    left: 20px;
}

.top-promo-next {
    right: 20px;
}

.top-promo-nav:hover {
    opacity: 1;
    background: rgba(30, 64, 175, 0.1);
}

.top-promo-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.top-promo-nav svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .top-promo-text {
        font-size: 12px;
        padding: 0 40px;
    }
    
    .top-promo-nav {
        padding: 4px;
    }
    
    .top-promo-prev {
        left: 10px;
    }
    
    .top-promo-next {
        right: 10px;
    }
    
    .top-promo-nav svg {
        width: 14px;
        height: 14px;
    }
}

/* Uray Template Header Styles */
.header {
    background: #ffffff;
    position: relative;
    z-index: 999;
    margin: 0;
    max-width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.header .container-fluid {
    padding: 0 15px;
}

/* Header Section 1: Top Utility Bar (First Image Section) */
.header-section-1 {
    background: #1e3a8a;
    border-bottom: none;
    padding: 12px 0;
    font-size: 13px;
}

.utility-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.utility-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.utility-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.utility-item i {
    color: #ffffff;
    font-size: 13px;
}

.utility-item:hover {
    color: #e0e7ff;
}

.utility-item:hover i {
    color: #e0e7ff;
}

.utility-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.utility-link:hover {
    color: #e0e7ff;
    text-decoration: underline;
}

.utility-separator {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.3);
    display: inline-block;
}

.utility-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-size: 13px;
}

.utility-badge i {
    font-size: 14px;
    color: #ffffff;
}

.utility-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-selector,
.currency-selector {
    position: relative;
}

.lang-btn,
.currency-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    padding: 0;
    border: none;
    background: transparent;
    transition: color 0.3s;
}

.lang-btn:hover,
.currency-btn:hover {
    color: #e0e7ff;
}

.lang-btn i,
.currency-btn i {
    font-size: 10px;
    color: #ffffff;
}

.language-selector .dropdown-menu,
.currency-selector .dropdown-menu {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 120px;
    padding: 5px 0;
    margin-top: 5px;
}

.language-selector .dropdown-menu .dropdown-item,
.currency-selector .dropdown-menu .dropdown-item {
    color: #333;
    padding: 8px 15px;
    font-size: 13px;
    transition: all 0.3s;
}

.language-selector .dropdown-menu .dropdown-item:hover,
.currency-selector .dropdown-menu .dropdown-item:hover {
    background: #f5f5f5;
    color: #1e3a8a;
}

/* Header Section 2: Main Header Row (Second Image Section) */
.header-section-2 {
    padding: 20px 0;
    background: #fff;
    border-bottom: 1px solid #e9ecef;
}

.header-main-row {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    max-height: 50px;
    width: auto;
}

/* Bumedi Logo Styling */
.bumedi-logo {
    text-decoration: none;
    display: inline-block;
    width: 135px;
    height: 32.53px;
    line-height: 0;
}

.logo-img-bumedi {
    width: 135px;
    height: 32.53px;
    object-fit: contain;
    display: block;
    max-width: 135px;
    max-height: 32.53px;
}

/* Header Search */
.header-search-wrapper {
    flex: 1;
    max-width: 843.26px;
}

.header-search-form {
    display: flex;
    gap: 0;
    width: 100%;
    height: 50px;
    background: #e0f2fe;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid transparent;
    align-items: center;
}

.search-input-wrapper {
    position: relative;
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #2563eb;
    font-size: 16px;
    z-index: 1;
}

.header-search-input {
    width: 100%;
    height: 100%;
    padding: 0 15px 0 45px;
    border: none;
    background: transparent;
    border-radius: 0;
    font-size: 14px;
    color: #333;
    transition: all 0.3s;
}

.header-search-input::placeholder {
    color: #999;
}

.header-search-input:focus {
    outline: none;
    background: transparent;
}

.search-submit-btn {
    height: 100%;
    padding: 0 30px;
    background: #ff6b35;
    color: #fff;
    border: none;
    border-radius: 0 50px 50px 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit-btn:hover {
    background: #e55a2b;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.action-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.action-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #e0e7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
    flex-shrink: 0;
}

.action-icon:hover {
    background: transparent;
    color: #2563eb;
    border-color: #2563eb;
}

.action-icon-wishlist {
    border-color: #ef4444 !important;
    color: #ef4444 !important;
}

.action-icon-wishlist:hover {
    background: transparent !important;
    color: #ef4444 !important;
    border-color: #ef4444 !important;
}

.action-icon-user-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-icon-user-wrapper .action-icon {
    flex-shrink: 0;
}

.user-link-text {
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    line-height: 1.3;
}

.sign-in-text {
    color: #000;
    font-weight: 700;
    font-size: 13px;
}

.account-text {
    color: #999;
    font-size: 12px;
}

.header-cart-section {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.cart-icon-wrapper {
    position: relative;
    width: 40px;
    height: 40px;
    border: 2px solid #e0e7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.cart-icon-wrapper:hover {
    background: transparent;
    color: #2563eb;
    border-color: #2563eb;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
}

.cart-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: left;
}

.cart-total {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cart-amount {
    font-size: 13px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
}

.cart-label {
    font-size: 12px;
    color: #999;
    line-height: 1.3;
}

/* Header Section 3: Navigation Menu (Third Image Section) */
.header-section-3 {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 0;
}

.main-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 15px 18px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s;
    border-bottom: none;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.menu-active {
    color: #2563eb;
    border-bottom: none;
}

.nav-link-blue {
    color: #2563eb !important;
    font-weight: 400 !important;
}

.nav-link-blue:hover {
    color: #2563eb !important;
}

.nav-link-orange {
    color: #ff6b35 !important;
    font-weight: 400 !important;
}

.nav-link-orange:hover {
    color: #ff6b35 !important;
}

.nav-link i {
    font-size: 10px;
    margin-left: 4px;
}

.nav-item.has-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    list-style: none;
    margin: 0;
    border-radius: 4px;
    z-index: 1000;
}

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

.nav-item.has-dropdown .dropdown-menu li {
    width: 100%;
}

.nav-item.has-dropdown .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.nav-item.has-dropdown .dropdown-menu a:hover {
    background: #f5f5f5;
    color: #2563eb;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-action-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-action-link:hover {
    color: #2563eb;
}

.nav-action-link i {
    font-size: 16px;
    color: #2563eb;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Global Button Styles - Consistent Border Radius and Colors */
.btn:not(.btn-circle):not(.btn-round),
button:not(.btn-circle):not(.btn-round),
a.btn:not(.btn-circle):not(.btn-round),
input[type="submit"]:not(.btn-circle):not(.btn-round),
input[type="button"]:not(.btn-circle):not(.btn-round) {
    border-radius: 8px;
    font-family: 'Fredoka', sans-serif;
    transition: all 0.3s;
}

/* Search Header */
.search-header {
    background: rgba(0,0,0,0.9);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.search-header.active {
    display: flex;
}
.search-header form {
    position: relative;
    width: 600px;
    max-width: 90%;
}
.search-header input {
    width: 100%;
    padding: 20px;
    font-size: 24px;
    border: none;
    background: #fff;
    border-radius: 50px;
}
.search-header .close-search {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
    color: #999;
}

/* Header Desktop */
.header .container-fluid {
    padding: 0;
}

.header-menu-desktop {
    align-items: center;
}

/* Logo */
.logo-wrapper {
    flex-shrink: 0;
}
.logo {
    padding: 0;
}
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}
.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    font-family: 'Fredoka', sans-serif;
}

/* Menu */
.nav-menu-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}
.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 35px;
    align-items: center;
}
.menu ul li {
    position: relative;
}
.menu ul li a {
    color: #8B5CF6;
    text-decoration: none;
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
    font-family: 'Fredoka', sans-serif;
}
.menu ul li a i {
    font-size: 12px;
    margin-left: 2px;
}
.menu ul li a:hover,
.menu ul li a.menu-active {
    color: #7C3AED;
}

/* Dropdown Menu */
.menu ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    display: block;
    flex-direction: column;
    gap: 0;
    border-radius: 8px;
    z-index: 1000;
    margin-top: 5px;
}
.menu ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.menu ul li ul li {
    width: 100%;
}
.menu ul li ul li a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: normal;
    color: #222;
    display: block;
}
.menu ul li ul li a:hover {
    background: #f5f5f5;
    color: #8B5CF6;
}

/* Header Right */
.header-actions {
    flex-shrink: 0;
}
.header-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    align-items: center;
}
.header-right ul li {
    position: relative;
}
.header-right ul li a {
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    color: #222;
    text-decoration: none;
    transition: all 0.3s;
}
.header-right ul li a i {
    font-size: 18px;
    color: #222;
}
.header-right ul li a:hover i {
    color: #8B5CF6;
}
.header-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: all 0.3s;
}
.header-right ul li a:hover .header-icon {
    opacity: 0.7;
}
.number-cart {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #8B5CF6;
    color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}
.btn-contact {
    background: #000 !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-transform: capitalize !important;
    transition: all 0.3s !important;
    border: none !important;
    font-family: 'Poppins', sans-serif !important;
}
.btn-contact:hover {
    background: #333 !important;
    color: #fff !important;
}
.language-selector {
    position: relative;
}
.lang-btn {
    background: #fff !important;
    color: #222 !important;
    padding: 8px 15px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    border: 1px solid #e0e0e0 !important;
    transition: all 0.3s !important;
    font-family: 'Poppins', sans-serif !important;
}
.lang-btn:hover {
    background: #f8f8f8 !important;
    color: #222 !important;
}
.flag-icon-img {
    width: 20px;
    height: 15px;
    object-fit: contain;
}
.dropdown-icon-img {
    width: 12px;
    height: 12px;
    object-fit: contain;
}
.lang-text {
    font-size: 14px;
}
.language-selector .dropdown-menu {
    min-width: 150px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 8px 0;
    margin-top: 5px;
}
.language-selector .dropdown-item {
    padding: 8px 20px;
    font-size: 14px;
    color: #222;
    transition: all 0.3s;
}
.language-selector .dropdown-item:hover {
    background: #f5f5f5;
    color: #8B5CF6;
}

/* Widget Shopping Cart */
.widget_shopping_cart {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    width: 360px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    padding: 20px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
    z-index: 999;
}
.widget_shopping_cart.active {
    /* Ensure visibility when toggled via JS, overriding base theme */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block !important; /* base style.css sets display:none; override for click toggle */
}

/* Mini Cart Content (matches screenshot look) */
.widget_shopping_cart .shopping-item { width: 100%; box-shadow: none; position: static; padding: 0; }
.widget_shopping_cart .dropdown-cart-header { display: none !important; }
.widget_shopping_cart .shopping-list { margin: 0; padding: 0; }
.widget_shopping_cart .shopping-list li {
    display: flex;
     /* image left, content right */
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    width: 100%;
}
.widget_shopping_cart .shopping-list .cart-img { 
    width: 80px;
    height: 80px;
    border: 1px solid #ededed; 
    overflow: hidden; 
}
.widget_shopping_cart .shopping-list .cart-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.widget_shopping_cart .shopping-list .item-header { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.widget_shopping_cart .shopping-list h4 { margin: 0; font-size: 14px; line-height: 1.4; }
.widget_shopping_cart .shopping-list h4 a { color: #333; font-weight: 600; text-decoration: none; }
.widget_shopping_cart .shopping-list h4 a:hover { color: var(--primary-color); }
.widget_shopping_cart .shopping-list .quantity { 
    margin: 4px 0 0; 
    font-size: 12px; 
    color: #777; 
    line-height: 1.6; 
}

/* Override base theme absolute positioning that created two columns */
.widget_shopping_cart .widget_shopping_cart_content ul li .product-title {
    margin-left: 0 !important;
}
.widget_shopping_cart .widget_shopping_cart_content ul li .woocommerce-Price-amount,
.widget_shopping_cart .widget_shopping_cart_content ul li .quantity {
    position: static !important;
    left: auto !important;
    top: auto !important;
    display: block;
    margin-top: 6px;
}
.widget_shopping_cart .shopping-list li .remove { 
    position: absolute !important; 
    right: 0 !important; 
    top: 8px !important; 
    width: 18px; 
    height: 18px; 
    line-height: 18px; 
    text-align: center; 
    font-size: 12px; 
    color: #999; 
    border: none; 
    background: transparent; 
}
.widget_shopping_cart .shopping-list li .remove:hover { color: #333; }

.widget_shopping_cart .shopping-item .total { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 16px 0; 
    margin-top: 6px; 
    border-top: 1px solid #eee; 
}
.widget_shopping_cart .shopping-item .total span { font-size: 14px; color: #333; text-transform: none; }
.widget_shopping_cart .shopping-item .total .total-amount { font-weight: 600; }

.widget_shopping_cart .shopping-item .bottom { text-align: left; }
.widget_shopping_cart .shopping-item .bottom .btn { 
    width: 100%; 
    background: #fff !important; 
    color: #333 !important; 
    border: 1px solid #ddd !important; 
    padding: 12px 16px; 
    font-size: 13px; 
    font-weight: 600; 
    letter-spacing: .2px; 
}
.widget_shopping_cart .shopping-item .bottom .btn:hover { background: #f8f8f8; color: #111; }

/* Inline price with title */
.widget_shopping_cart .item-content { flex: 1; }
.widget_shopping_cart .item-header { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.widget_shopping_cart .item-price { font-weight: 600; color: #333; }
.widget_shopping_cart .item-attrs { display:block; margin-top: 4px; color:#888; }

/* Ensure list items use full width and no centered margin */
.widget_shopping_cart .widget_shopping_cart_content ul li { 
    width: 100% !important; 
    margin: 0 !important; 
}

/* Position remove icon to the right, vertically centered per item */
.widget_shopping_cart .shopping-list li .remove { 
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%);
}

/* Introduce Sidebar */
.introduce {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    z-index: 9999;
    transition: all 0.3s;
    overflow-y: auto;
}
.introduce.active {
    right: 0;
}
.content-introduce {
    padding: 40px;
}
.content-introduce h3 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}
.content-introduce > p {
    color: #999;
    margin-bottom: 30px;
}
.img-controduce {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 40px;
}
.img-controduce img {
    width: 100%;
    height: auto;
}
.content-introduce h4 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    color: #222;
    margin: 30px 0 10px 0;
}
.content-introduce form {
    position: relative;
    margin-bottom: 30px;
}
.content-introduce input {
    width: 100%;
    padding: 10px 50px 10px 15px;
    border: 1px solid #ddd;
}
.content-introduce .bt {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 45px;
    background: #ffa6a8;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 0 8px 8px 0;
}
.content-introduce .bt:hover {
    background: #ff8a8d;
}
.icon-introduce {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}
.icon-introduce a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    transition: all 0.3s;
}
.icon-introduce a:hover {
    background: #ffa6a8;
    color: #fff;
}
.close-introduce {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
}

/* Header Mobile */
.header-mobile {
    display: none;
    padding: 15px 0;
}
.mobile-menu-toggle {
    background: transparent;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 24px;
    color: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 8px;
}
.mobile-menu-toggle:hover {
    background: #f5f5f5;
    color: #8B5CF6;
}
.mobile-menu-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}
.mobile-menu-toggle i {
    font-size: 24px;
    line-height: 1;
}
.header-menu-mobile {
    align-items: center;
}
.menu-mobile {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: all 0.3s;
    overflow-y: auto;
    box-shadow: 5px 0 20px rgba(0,0,0,0.1);
}
.menu-mobile.active {
    left: 0;
}
.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    color: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 8px;
    z-index: 10000;
    width: 40px;
    height: 40px;
}
.mobile-menu-close:hover {
    background: #f5f5f5;
    color: #ef4444;
}
.mobile-menu-close:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}
.mobile-menu-close i {
    font-size: 24px;
    line-height: 1;
}
.menu-mobile ul {
    list-style: none;
    padding: 20px;
    margin: 0;
    padding-top: 60px;
}
.menu-mobile ul li {
    border-bottom: 1px solid #f5f5f5;
}
.menu-mobile ul li a {
    display: block;
    padding: 15px 0;
    color: #222;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
}
.menu-mobile .drop-menu {
    display: none;
    padding-left: 20px;
}
.menu-mobile .drop-link {
    float: right;
    cursor: pointer;
    transition: all 0.3s;
}
.menu-mobile .drop-link.active {
    transform: rotate(180deg);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .header-main-row {
        gap: 20px;
    }
    
    .header-search-wrapper {
        max-width: 400px;
    }
    
    .nav-menu {
        gap: 0;
    }
    
    .nav-link {
        padding: 15px 12px;
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .header-section-1 {
        display: none;
    }
    
    .header-main-row {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .header-search-wrapper {
        order: 3;
        width: 100%;
        max-width: 100%;
    }
    
    .header-navigation {
        display: none;
    }
    
    .header-desktop {
        display: block;
    }
    
    .header-mobile {
        display: block;
    }
    
    .action-icons {
        gap: 10px;
    }
    
    .action-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .header-main-row {
        padding: 0 10px;
    }
    
    .header-logo img {
        max-height: 40px;
    }
    
    .bumedi-logo {
        width: 135px;
        height: 32.53px;
    }
    
    .logo-img-bumedi {
        width: 135px;
        height: 32.53px;
        max-width: 135px;
        max-height: 32.53px;
    }
    
    .header-search-input {
        font-size: 13px;
        padding: 10px 15px 10px 40px;
    }
    
    .search-submit-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .cart-info {
        display: none;
    }
    
    .utility-row {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .utility-center {
        display: none;
    }
}

@media (min-width: 992px) {
    .header-desktop {
        display: block;
    }
    .header-mobile {
        display: none;
    }
}

@media (max-width: 1200px) {
    .menu ul {
        gap: 25px;
    }
    .header-right ul {
        gap: 15px;
    }
}

@media (max-width: 1100px) {
    .menu ul {
        gap: 20px;
    }
    .menu ul li a {
        font-size: 14px;
    }
}

/* Footer Uray Template */
.footer-uray {
    background: #fff;
    padding: 80px 0 0 0;
    border-top: 1px solid #f0f0f0;
}
.footer-content {
    padding-bottom: 60px;
}
.footer-widget {
    margin-bottom: 30px;
}
.footer-logo {
    margin-bottom: 20px;
}
.footer-tagline {
    font-size: 14px;
    color: #999;
    margin: 0;
}
.footer-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin: 20px 0;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.footer-social a {
    width: 35px;
    height: 35px;
    background: #f5f5f5;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s;
}
.footer-social a:hover {
    background: #ffa6a8;
    color: #fff;
}
.footer-title {
    font-size: 18px;
    font-weight: bold;
    color: #222;
    margin-bottom: 25px;
    text-transform: capitalize;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
}
.footer-links li i {
    color: #ffa6a8;
    margin-right: 10px;
    margin-top: 2px;
    font-size: 12px;
}
.footer-links li a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
}
.footer-links li a:hover {
    color: #ffa6a8;
    padding-left: 5px;
}
.newsletter-desc {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}
.newsletter-input {
    position: relative;
    display: flex;
}
.newsletter-input input {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
}
.newsletter-input input:focus {
    outline: none;
    border-color: #ffa6a8;
}
.newsletter-input button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffa6a8;
    border: none;
    width: 40px;
    height: 35px;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}
.newsletter-input button:hover {
    background: #ff8a8d;
}
.footer-bottom {
    border-top: 1px solid #f0f0f0;
    padding: 30px 0;
    text-align: center;
}
.copyright-text {
    color: #999;
    font-size: 14px;
    margin: 0;
}
@media (max-width: 991px) {
    .footer-uray {
        padding: 50px 0 0 0;
    }
    .footer-content {
        padding-bottom: 30px;
    }
    .footer-widget {
        margin-bottom: 40px;
    }
}
ul.shopping-list {
    display: block !important;
}

/* =========================================
   Product Grid UI Updates (Benoquin Style)
   ========================================= */

.single-product.card-style-benoquin {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
    height: 100%;
    background: #fff;
}

.single-product.card-style-benoquin:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.single-product .product-img {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 4px;
}

/* Wishlist Top Right */
.wishlist-top-right {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateX(10px);
}

.single-product:hover .wishlist-top-right {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.wishlist-top-right .btn-wishlist-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    text-decoration: none;
    font-size: 14px;
}

.wishlist-top-right .btn-wishlist-icon:hover {
    background: #ff6b35;
    color: #fff;
}

/* Product Action Bottom (Add to Cart) */
.product-action-bottom {
    margin-top: 15px;
}

.product-action-bottom .add_to_cart {
    display: block !important;
    width: 100%;
    text-align: center;
    border-radius: 8px !important; /* Override global 30px for a more card-fitting look, or keep 30px if preferred. Benoquin uses rounded but maybe not full pill. Let's stick to the global style if user wants it, but usually cards have full width buttons. */
    /* Let's try to match the global style but make it full width */
    background: #fff3e7 !important;
    color: #fe8614 !important;
    font-weight: 600 !important;
    padding: 10px 0;
    text-transform: uppercase;
    font-size: 13px;
}

.product-action-bottom .add_to_cart:hover {
    background: #fe8614 !important;
    color: #fff !important;
}

.product-action-bottom .add_to_cart.disabled {
    background: #f5f5f5 !important;
    color: #999 !important;
    cursor: not-allowed;
}

/* Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.rating-value {
    font-size: 12px;
    color: #999;
    font-weight: 500;
    margin-top: 1px;
}

/* Price Badge */
.price-dec {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff6b35;
    color: #fff;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    z-index: 9;
}

/* Product Content Spacing */
.product-content h3 {
    margin-bottom: 5px;
    font-size: 15px;
    line-height: 1.4;
}

.product-content h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.product-content h3 a:hover {
    color: #fe8614;
}

.product-price {
    font-weight: 700;
    color: #333;
    font-size: 16px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-price .price-current {
    font-weight: 700;
    color: #333;
}

.product-price .price-old {
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
    font-size: 13px;
}

/* =========================================
   Product Card Styles (Ported from Homepage)
   ========================================= */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    position: relative;
    min-height: 436px;
}

.product-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 225px;
    margin: 0 auto;
    overflow: hidden;
    background: #f9fafb;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image-wrapper a {
    display: block;
    width: 100%;
    height: 100%;
}
    
.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

.discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #10b981;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    font-family: 'Fredoka', sans-serif;
    z-index: 2;
    line-height: 1.2;
}

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ffc0cb;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    color: #fff;
    text-decoration: none;
}

.wishlist-btn:hover {
    background: #ffb3c1;
    color: #fff;
}

.wishlist-btn i {
    font-size: 15px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px 10px;
    margin-bottom: 0;
}

.stars {
    display: flex;
    gap: 3px;
    color: #fbbf24;
}

.stars i {
    font-size: 14px;
}

.rating-number {
    font-size: 13px;
    color: #6b7280;
    font-family: 'Fredoka', sans-serif;
    font-weight: 400;
}

.product-name {
    margin: 0;
    padding: 0 15px 14px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    font-family: 'Fredoka', sans-serif;
    flex: 1;
    color: #1f2937;
}

.product-name a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: #1f2937;
}

.product-price {
    padding: 0 15px 16px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 0;
}

.current-price {
    font-size: 18px;
    font-weight: 600;
    color: #10b981;
    font-family: 'Fredoka', sans-serif;
}

.original-price {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: line-through;
    font-family: 'Fredoka', sans-serif;
    font-weight: 400;
}

.add-to-cart-btn {
    margin: 0 15px 15px;
    padding: 12px 20px;
    background: #fff3e7;
    color: #fe8614;
    border: none;
    border-radius: 30px !important;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    width: calc(100% - 30px);
    margin-top: auto;
    display: block;
    text-align: center;
    text-decoration: none;
}

.add-to-cart-btn:hover {
    background: #fe8614;
    color: #ffffff;
    text-decoration: none;
}

.btn-add-to-cart-single {
    background: #fff3e7 !important;
    color: #fe8614 !important;
    border: none !important;
    border-radius: 30px !important;
    font-family: 'Fredoka', sans-serif !important;
    font-weight: 700 !important;
    padding: 0 35px;
    height: 42px;
    line-height: 42px;
    display: inline-block;
    transition: all 0.3s ease;
    margin-right: 5px;
}

.btn-add-to-cart-single:hover {
    background: #fe8614 !important;
    color: #ffffff !important;
    text-decoration: none;
}

.add-to-cart-btn.disabled {
    background: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
}
