

/* start */
.empty{
    text-align: center;
}
.shop-cart{
    display: none;
    width: 350px;  
    background-color: #fff;
    position: absolute;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    top: 48px;
    right: -20px;  
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s;
    color: #000;
    padding: 20px;
}
.shop-delete{
    background: var(--primary);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    flex: none;
}
.shop-cart-subtotal{
    font-weight: 600;
}
.shop-cart-icon:hover .shop-cart{
    display: block;
}
.shop-cart-footer .view_cart_btn{
    display: block;
    background-color: transparent;
    border: 1px solid var(--primary);
    text-align: center;
 
}
.shop-cart::after{  
    content: ''; 
    position: absolute;
    top: -7px;
    right: 33px;
    width: 15px;
    height: 15px;
    background: #fff;
    transform: rotate(44deg);  
}
.shop-cart-total{
    padding: 10px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
}
.chekc_btn{
    background-color: var(--primary);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}
.shop-cart-body{
    max-height: 400px;
    overflow-y: auto;   
}
.shop-cart-body a{
    text-decoration: none;
    color: #212121;
}
.shop-info{
    padding: 0px 5px;
}
.shop-cart-items{
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
}
.shop-cart-footer{
    padding: 10px 20px;
}
.shop-img img{
    object-fit: contain;
    width:50px;
    height: 50px;
}

#to-top{
    width: 30px;
    line-height: 25px;
    background-color: var(--primary);
    border-radius: 3px;
    vertical-align: middle;
    text-align: center;
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 9999;
    cursor: pointer;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    display: none;
}
.mobile-menu-search {
    padding: 10px;
    display: flex;
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f5f5f5;
}
.mobile-menu-search .search-input {
    flex: 1;
    padding: 8px;
    border: none;
    background-color: transparent;
    outline: none;
}
.mobile-menu-search #jq-search-btn {
    padding: 8px;
    cursor: pointer;
}
@media (max-width: 768px) {
    .search-input {  
        box-shadow: none;
    }
}
.header-action .fas.fa-search {
    position: absolute;
    right: 15px;
    color: #8914a2;
    cursor: pointer;
    transition: color 0.3s ease;
}

.header-action .fas.fa-search:hover {
    color: #4a90e2;
}
.cart-count{
    line-height: 20px;
    position: absolute;
    top: -11px;
    left: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    color: var(--secondary);
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}
.side-menu {
    position: fixed;
    top: 0;
    left: -90%;
    width: 90%;
    height: 100%;
    background: white;
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.side-menu.active {
    left: 0;
}
.big_hide{
    display: none;
}
.menu-header {
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--med-blue));
    color: white;
    display: flex;
    align-items: center;
    padding: 0 15px;
    font-weight: bold;
}

.menu-close {
    margin-left: auto;
    font-size: 20px;
    cursor: pointer;
}

.menu-list {
    list-style: none;
    padding: 10px 0;
}

.menu-item {
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.side-menu .menu-link {
    display: block;
    width: 90%;   
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
}

.side-menu .menu-link:hover {
    background-color: #f9f9f9;
}

.menu-icon {
    margin-right: 10px;
    font-size: 16px;
    color: #666;
}

.menu-arrow {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
    transform-origin: center; 
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-arrow.expanded {
    transform: rotate(90deg);
}

.submenu {
    width: 100%;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f9f9f9;
}

.submenu.expanded {
    max-height: 1000px;
}

.submenu .menu-link {
    padding-left: 40px;
}

.submenu .submenu .menu-link {
    padding-left: 65px;
}


.content {
    margin-top: 60px;
    padding: 15px;
}

.content h1 {
    font-size: 20px;
    margin-bottom: 15px;
}

.content p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.successful_title{
    color: #58a81e;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 18px; 
    animation: flash 0.5s ease-in-out;
}
@keyframes flash {
    0%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0.5;
    }
}
.quantity-control {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    font-size: 16px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: background-color 0.3s;
}

.quantity-btn:hover {
    background-color: #e0e0e0;
}

.quantity-input {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
    -moz-appearance: textfield;
    outline: none;
    font-size: 12px;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* nodel */

.loading-spinner {
    --uib-size: 80px;
    --uib-color: black;
    --uib-speed: 1.4s;
    --uib-stroke: 5px;
    --uib-bg-opacity: .1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 5px;
    width: 100px;
    border-radius: calc(5px / 2);
    overflow: hidden;   
}
.loading-spinner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: .1;
    transition: background-color 0.3s ease;
  }

  .loading-spinner::after {
    content: '';
    height: 100%;
    width: 100%;
    border-radius: calc(5px / 2);
    animation: zoom 1.4s ease-in-out infinite;
    transform: translateX(-100%);
    background-color: black;
    transition: background-color 0.3s ease;
  }

  
  @keyframes zoom {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(100%);
    }
  }
.Pop-up{
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    max-width: 600px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    overflow: hidden;
    animation: modalFadeIn 0.5s;
}
.Pop-up .top_header{
    display: flex;
    align-items: center;
    padding: 5px;
    justify-content: end;
}
.Pop-up .products_box{
  padding: 20px;
}
.Pop-up  .box_price .discount_price{
    text-decoration: line-through;
    color: #2a2828;
    font-size: 14px;
}
.Pop-up  .box_price .price{    
    color: #2a2828;
    font-weight: 500;
    font-size: 16px;
    margin-left: 15px;
}
.Pop-up .btn {
    display: flex;
    align-items: center;
    justify-content: center;
}
.Pop-up  .btn  .button{
    padding: 10px;
    background:var(--med-gradient-medical);
    border-radius: 5px;
    margin: 0px 5px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
}
.Pop-up select {
    padding: 2px 5px;
    width: 300px;
    height: 2.75rem;
    border: 1px solid #ddd;
    font-size: 12px;
    transition: border-color 0.3s ease;
    box-shadow: inset 0 -1.4em 1em 0 rgba(0, 0, 0, .02);
    outline: none;
}
.Pop-up .sku_code{
    margin-top: 10px;
}

.overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    /* backdrop-filter: blur(5px); */
}
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* end */


:root {
    --primary: #0d9488;
    --med-teal: #0d9488;
    --med-blue: #0369a1;
    --med-purple: #7c3aed;
    --med-green: #059669;
    --med-red: #dc2626;
    --med-dark: #1e293b;
    --med-light: #f8fafc;
    --med-gray: #64748b;
    --med-card-bg: #ffffff;
    --med-section-bg: #f1f5f9;
    --med-border: #e2e8f0;
    --med-gradient-medical: linear-gradient(135deg, #0d9488 0%, #0369a1 100%);
    --med-gradient-premium: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
    --med-gradient-emergency: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    --shadow-subtle: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-soft: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-medium: 0 10px 15px rgba(0,0,0,0.1);
    --border-radius-sm: 6px;
    --border-radius: 10px;
    --border-radius-lg: 16px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

body {
    background-color: var(--med-light);
    color: var(--med-dark);
    line-height: 1.6;
}

.mt-container {
    max-width: 1400px;
    margin: 0 auto;  
}

/* Header Styles */
.mt-header {
    background: var(--med-card-bg);
    border-bottom: 1px solid var(--med-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.mt-header-top {
    background: var(--med-dark);
    color: white;
    padding: 8px 0;
    font-size: 0.875rem;
}

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

.mt-contact-info {
    display: flex;
    gap: 24px;
}

.mt-contact-info a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.mt-contact-info a:hover {
    color: white;
}

.mt-header-main {
    padding: 16px 0;
}

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

.mt-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--med-dark);
    gap: 12px;
    max-width: 150px;
    overflow: hidden;
    white-space: nowrap;
}

.mt-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--med-gradient-medical);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.mt-search-container {
    position: relative;
    max-width: 500px;
}

.mt-search-input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border: 1px solid var(--med-border);
    border-radius: 25px;
    font-size: 1rem;
    background: var(--med-light);
    transition: var(--transition-smooth);
}

.mt-search-input:focus {
    outline: none;
    border-color: var(--med-teal);
    background: white;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.mt-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--med-gray);
}

.mt-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.mt-action-btn {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 10px 16px;
    background: var(--med-light);
    border: none;
    border-radius: var(--border-radius);
    color: var(--med-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.mt-action-btn:hover {
    background: var(--med-teal);
    /* color: white; */
}

.mt-cart-btn {
    position: relative;
}

.mt-cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--med-red);
    color: white;
    font-size: 0.75rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation */
.mt-nav {
    background: var(--med-card-bg);
    border-bottom: 1px solid var(--med-border);
}

.mt-nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.mt-nav-categories {
    position: relative;
}

.mt-categories-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--med-gradient-medical);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.mt-categories-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.mt-nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.mt-nav-link {
    padding: 14px 20px;
    text-decoration: none;
    color: var(--med-dark);
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mt-nav-link:hover {
    background: var(--med-light);
    color: var(--med-teal);
}

.mt-nav-link.active {
    background: var(--med-light);
    color: var(--med-teal);
    font-weight: 600;
}

/* Mega Menu */
.mt-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 500px;
    background: white;
    box-shadow: var(--shadow-medium);
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    display: none;
    z-index: 1000;
    padding: 30px;
}

.mt-nav-categories:hover .mt-mega-menu {
    display: block;
}

.mt-mega-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mt-mega-section h4 {
    margin-bottom: 16px;
    color: var(--med-dark);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mt-mega-section h4 i {
    color: var(--med-teal);
}

.mt-mega-links {
    list-style: none;
}

.mt-mega-links li {
    margin-bottom: 10px;
}

.mt-mega-links a {
    color: var(--med-gray);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
}

.mt-mega-links a:hover {
    color: var(--med-teal);
    transform: translateX(5px);
}

/* Hero Section */
.mt-hero {
    background: linear-gradient(135deg, var(--med-dark) 0%, #0f172a 100%);
    color: white;
    padding: 40px 10px;
    position: relative;
    overflow: hidden;
}

.mt-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mt-hero-badge {
    display: inline-block;
    background: var(--med-gradient-premium);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.mt-hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.mt-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.mt-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.mt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    gap: 8px;
}

.mt-btn-primary {
    background: var(--med-gradient-medical);
    color: white;
}

.mt-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.3);
}

.mt-btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.mt-btn-secondary:hover {
    background: white;
    color: var(--med-dark);
}

.mt-hero-image {
    position: relative;
}

.mt-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
}

/* Features Section */
.mt-features {
    padding: 80px 0;
    background: var(--med-card-bg);
}

.mt-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.mt-feature-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.mt-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.mt-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--med-gradient-medical);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.mt-feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.mt-feature-card p {
    color: var(--med-gray);
    line-height: 1.6;
}

/* Categories Section */
.mt-categories {
    padding: 80px 0;
    background: var(--med-section-bg);
}

.mt-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.mt-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--med-dark);
}

.mt-section-subtitle {
    font-size: 1.1rem;
    color: var(--med-gray);
    max-width: 600px;
    margin: 0 auto;
}

.mt-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mt-category-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
}

.mt-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.mt-category-image {
    height: 200px;
    overflow: hidden;
}

.mt-category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

.mt-category-content {
    padding: 24px;
}

.mt-category-content h3 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.mt-category-content p {
    color: var(--med-gray);
    margin-bottom: 16px;
}

.mt-category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--med-teal);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.mt-category-link:hover {
    gap: 12px;
}

/* Products Section */
.mt-products {
    padding: 20px 10px;
}

.mt-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.mt-product-card {
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
}

.mt-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.mt-product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--med-gradient-emergency);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.mt-product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.mt-product-actions {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-smooth);
}

.mt-product-card:hover .mt-product-actions {
    opacity: 1;
    transform: translateX(0);
}

.mt-action-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--med-dark);
    text-decoration: none;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.mt-action-icon:hover {
    background: var(--med-teal);
    color: white;
    transform: scale(1.1);
}

.mt-product-content {
    padding: 10px;
}

.mt-product-category {
    color: var(--med-teal);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.mt-product-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.mt-product-rating {
    color: #fbbf24;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.mt-product-rating span {
    color: var(--med-gray);
    font-size: 0.875rem;
}

.mt-product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

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

/* Brands Section */
.mt-brands {
    padding: 60px 0;
    background: var(--med-section-bg);
}

.mt-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.mt-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    height: 80px;
}

.mt-brand-logo:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.mt-brand-logo img {
    max-width: 100%;
    max-height: 40px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.mt-brand-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Footer */
.mt-footer {
    background: var(--med-dark);
    color: white;
    padding: 20px;
}

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

.mt-footer-column h3 {
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.mt-footer-links {
    list-style: none;
}

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

.mt-footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.mt-footer-links a:hover {
    color: white;
}

.mt-social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.mt-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.mt-social-link:hover {
    background: var(--med-teal);
    transform: translateY(-2px);
}
.mt-social-link i {
    font-size: 1.5rem;
}
.mt-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mt-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mt-mega-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-cart-icon:hover .shop-cart{
        display: none;
    }
    .big_hide{
        display: block;
    }
    .small_hide{
        display: none;
    }
    .mt-header-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mt-search-container {
        max-width: 100%;
    }
    
    .mt-nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .mt-nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .mt-hero-title {
        font-size: 2.25rem;
    }
    
    .mt-section-title {
        font-size: 2rem;
    }
    .mt-products-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .mt-product-image{
        height: 150px;
    }
    .mt-products-grid{
        gap: 10px;
    }
}