body {
  background-color: rgb(238, 243, 250) !important;
}

.top-navbar {
  background-color: #2f3742;
  min-height: 40px;
  padding: 5px 0;
  font-size: 14px;
}

.top-navbar .dropdown-toggle {
  text-decoration: none;
  font-weight: 500;
}

.top-navbar .dropdown-menu {
  font-size: 14px;
  min-width: 160px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-radius: 6px;
}

.top-navbar .dropdown-item:hover {
  background-color: #f8f9fa;
  color: #2f3742;
}



.page_cat_list .animation-block-gsap {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  margin: 3px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0.066px 0.133px 0px, rgba(0, 0, 0, 0.1) 0px 2px 10px 0px;
  transform: perspective(1000px);
}

.page_cat_list .animation-block-gsap img {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  max-height: 174px;
  transition: 0.3s;
}

.page_cat_list .custom_inside {
  position: relative;
  width: 100%;
  height: 170px;
  background: #fff;
  padding: 8px 12px;
  transition: 0.5s;
}

.page_cat_list .custom_inside:hover {
  background: #134858;
  box-shadow: 0 16px 48px 0 rgba(0, 82, 201, 0.35);
}

.page_cat_list .custom_inside:hover p,
.page_cat_list .custom_inside:hover h3,
.page_cat_list .custom_inside:hover h4 {
  color: #fff;
}

.page_cat_list .custom_inside_h3 {
  font-size: 18px;
  margin: 3px 0;
  font-weight: bold;
  text-transform: uppercase;
  color: black;
  transition: 0.3s;
}

.page_cat_list .custom_inside p {
  font-size: 14px;
  line-height: 16px;
  color: #000;
  width: 60%;
  transition: 0.3s;
}

.page_cat_list .custom_inside .btn {
  position: absolute;
  left: 12px;
  bottom: 8px;
  color: #000;
  font-weight: bold;
  border-color: #ececec;
  background: transparent;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0.066px 0.133px 0px, rgba(0, 0, 0, 0.1) 0px 2px 10px 0px;
  transition: 0.3s;
}

.page_cat_list .custom_inside:hover .btn {
  color: #000;
}

.qty-input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    font-weight: bold;
    text-align: center;
}

.addToCartBtn {
    padding: 6px 12px;
    font-weight: bold;
    border: 1px solid #28a745;
    background-color: #28a745;
    color: white;
    border-radius: 0;
    cursor: pointer;
}

.addToCartBtn:hover {
    background-color: #218838;
}

.product-price {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #343a40;
    color: #fff;
    padding: 2px 6px;
    font-size: 13px;
    border-radius: 3px;
}


.card-product {
    transition: 0.3s;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.card-product:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.product-img {
    height: 180px;
    object-fit: contain;
}
.product-price {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #0d6efd;
    color: white;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 14px;
}


.popular-card {
    transition: transform 0.3s ease-in-out;
    border-radius: 10px;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #eee;
}

.popular-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.popular-img {
    height: 160px;
    object-fit: contain;
    padding: 10px;
    background: #f9f9f9;
    border-bottom: 1px solid #ddd;
}

.popular-title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.popular-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    height: 32px;
    overflow: hidden;
}

.popular-price {
    font-weight: bold;
    color: #dc3545;
    font-size: 15px;
}


/* Skeleton container */
.skeleton-card {
    background: #f3f3f3;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    animation: pulse 1.5s infinite ease-in-out;
}

/* Skeleton elementləri */
.skeleton-img,
.skeleton-text,
.skeleton-btn {
    background: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 10px;
}

.skeleton-img {
    height: 140px;
    width: 100%;
}

.skeleton-text {
    height: 12px;
    width: 80%;
}

.skeleton-btn {
    height: 32px;
    width: 60%;
}

/* Animasiyası */
@keyframes pulse {
    0% { background-color: #e0e0e0; }
    50% { background-color: #f0f0f0; }
    100% { background-color: #e0e0e0; }
}

.cart-item {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s;
}
.cart-item:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.cart-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    background-color: #f9f9f9;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.qty-control button {
    width: 36px;
    height: 36px;
    border: none;
}

.qty-input {
    width: 60px;
    height: 36px;
    border: none;
    text-align: center;
    font-weight: 500;
    background-color: transparent;
}

.price {
    font-size: 14px;
    line-height: 1.2;
}

.sum {
    font-size: 16px;
    font-weight: bold;
}

.btn-delete {
    padding: 4px 8px;
}

textarea.form-control {
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 0.5rem;
    resize: vertical;
}

/* Mobil uyğunluq */
@media (max-width: 768px) {
    .cart-img {
        width: 60px;
        height: 60px;
    }

    .qty-input {
        width: 50px;
    }

    .qty-control {
        flex-grow: 1;
        justify-content: space-between;
    }

    .price, .sum {
        font-size: 14px;
    }
}

/* Mobil */
@media (max-width: 768px) {
    .cart-table thead {
        display: none;
    }

    .cart-table, .cart-table tbody, .cart-table tr, .cart-table td {
        display: block;
        width: 100%;
    }

    .cart-table tr {
        margin-bottom: 15px;
        border-bottom: 2px solid #e2e8f0;
    }

    .cart-table td {
        text-align: left;
        padding: 10px;
    }

    .cart-table td:before {
        content: attr(data-label);
        display: block;
        font-weight: 600;
        margin-bottom: 6px;
        color: #475569;
    }

    .cart-submit {
        width: 100%;
    }
}


/* footer social icons */
.footer {
    width: 100%;
    padding: 60px 0px 30px 0px;
    background: #134858;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
   color: #fff;
}




/* footer social icons */
ul.social-network {
	list-style: none;
	display: inline;
	margin-left:0 !important;
	padding: 0;
}
ul.social-network li {
	display: inline;
	margin: 0 5px;
}



/* footer social icons */
.social-network a.icoRss:hover {
	background-color: #F56505;
}
.social-network a.icoFacebook:hover {
	background-color:#3B5998;
}
.social-network a.icoTwitter:hover {
	background-color:#33ccff;
}
.social-network a.icoGoogle:hover {
	background-color:#BD3518;
}
.social-network a.icoVimeo:hover {
	background-color:#0590B8;
}
.social-network a.icoLinkedin:hover {
	background-color:#007bb7;
}
.social-network a.icoInstagram:hover {
	background-color:#2C6A93;
}
.social-network a.icoRss:hover i, .social-network a.icoFacebook:hover i, .social-network a.icoTwitter:hover i,
.social-network a.icoGoogle:hover i, .social-network a.icoVimeo:hover i, .social-network a.icoLinkedin:hover i, .social-network a.icoInstagram:hover i {
	color:#fff;
}
a.socialIcon:hover, .socialHoverClass {
	color:#44BCDD;
}

.social-circle li a {
	display:inline-block;
	position:relative;
	margin:0 auto 0 auto;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	border-radius:50%;
	text-align:center;
	width: 50px;
	height: 50px;
	font-size:20px;
}
.social-circle li i {
	margin:0;
	line-height:50px;
	text-align: center;
}

.social-circle li a:hover i, .triggeredHover {
	-moz-transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	-ms--transform: rotate(360deg);
	transform: rotate(360deg);
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	-ms-transition: all 0.2s;
	transition: all 0.2s;
}
.social-circle i {
	color: #fff;
	-webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	-o-transition: all 0.8s;
	-ms-transition: all 0.8s;
	transition: all 0.8s;
}
.social-circle a {
 background-color: #D3D3D3;   
}
.cart-container {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}
.cart-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.cart-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 8px;
    background: #f5f5f5;
    flex-shrink: 0;
}
.cart-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.stock-line {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    margin-bottom: 4px;
}
.stock-line .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
}
.stock-line .in-stock {
    background: #28a745;
}
.cart-price {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 6px;
}
.cart-price small {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-right: 8px;
}
.cart-name {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
}
.cart-qty {
    width: 120px;
}
.note-edit {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    cursor: pointer;
}
.note-edit.has-note::after {
    content: attr(data-note);
    display: inline-block;
    margin-left: 10px;
    color: #555;
    font-style: italic;
}
.delete-item {
    position: absolute;
    top: 0;
    right: 0;
}
@media (max-width: 768px) {
    .cart-container {
        flex-direction: row;
        align-items: flex-start;
        padding: 12px;
    }
    .cart-img {
        width: 80px;
        height: 80px;
    }
    .cart-content {
        margin-left: 12px;
        flex: 1;
    }
    .stock-line, .cart-price, .cart-name, .note-edit, .cart-qty {
        font-size: 13px;
        line-height: 1.2;
    }
    .cart-price strong { font-size: 14px; }
    .cart-name a { font-size: 13px; font-weight: 500; }
    .note-edit { font-size: 12px; }
    .cart-qty { width: 100px; height: 32px; }
}

          ul.column {
		width: 100%;
		margin: 10px 0;
		list-style: none;
		padding-left: 10px;
		column-count: 4;
		column-rule: 1px solid rgb(225, 231, 236);
		column-gap: 30px;
	}
	ul.column li {
		/* float: left; */
		min-width: 200px;
		/* width: 200px; */ /* ширина колонки по умолчанию */
		padding: 0;
		margin: 4px 0;
		display: inline-table;
	}
	ul.column a {
    	display: flex;
    	align-items: center;
    	justify-content: flex-start;
    	font-size: 14px;
	}
	ul.column a .icon {
	    width: 30px;
	    height: 30px;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    margin-right: 10px;
	}
	ul.column a span {
	    color: #5380b0;
	    transition: all .3s;
	    font-weight: 600;
	}
	ul.column a span:hover {
	    color: #00a9c8;
	}
	ul.column a .icon img {
	    max-width: 100%;
	    max-height: 100%;
	}
	.category-wall {
		margin-bottom: 25px;
	}
.filter-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.filter-box-header {
    background-color: #212529;
    color: #fff;
    font-weight: bold;
    padding: 10px 15px;
    font-size: 14px;
    text-transform: uppercase;
}

.filter-box-body {
    padding: 10px 15px;
    max-height: 250px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #999 #eee;
}

/* Chrome üçün scrollbar */
.filter-box-body::-webkit-scrollbar {
    width: 6px;
}
.filter-box-body::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}
.filter-box-body::-webkit-scrollbar-track {
    background-color: #f9f9f9;
}


.form-check {
    margin-bottom: 6px;
    font-size: 14px;
}

.form-check-input {
    margin-top: 4px;
    margin-right: 8px;
    accent-color: #198754;
}

.form-check-label {
    cursor: pointer;
}

@media (max-width: 768px) {
    .box {
        margin-bottom: 20px;
    }

    .box-header {
        font-size: 13px;
    }

    .box-body {
        max-height: 200px;
    }
}
.product-grid, .product-grid .product-image4 {

    position: relative 
}
.product-grid {
    font-family: Manrope,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
    text-align: center;
    border-radius: 3px;
    overflow: hidden;
    z-index: 1;
    transition: all .3s ease 0s;
    margin-bottom: 10px;
    
    
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0.0666667px 0.133333px 0px, rgba(0, 0, 0, 0.1) 0px 2px 10px 0px; background-color:white;
}
.product-grid:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .2) 
}
.product-grid {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    overflow: hidden;
}

.product-grid .product-image4 {
    overflow: hidden;
    position: relative;
}

.product-grid .product-image4 img {
    width: 100%;
    height: 125px;
    object-fit: contain;
    transition: transform 0.4s ease, filter 0.4s ease;
    display: block;
}

.product-grid:hover .product-image4 img {
    transform: scale(1.05);
    filter: brightness(0.8);
}



.product-grid:hover .pic-2 {
    opacity: 1 
}
.product-grid .social {
    width: 180px;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    position: absolute;
    right: 0;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease 0s 
}
.product-grid .social li {
    display: inline-block;
    opacity: 0;
    transition: all .7s 
}
.product-grid .social li:nth-child(1) {
    transition-delay: .15s 
}
.product-grid .social li:nth-child(2) {
    transition-delay: .3s 
}
.product-grid .social li:nth-child(3) {
    transition-delay: .45s 
}
.product-grid:hover .social li {
    opacity: 1 
}
.product-grid .social li a {
    color: #222;
    background: #fff;
    font-size: 17px;
    line-height: 36px;
    width: 40px;
    height: 36px;
    border-radius: 2px;
    margin: 0 5px;
    display: block;
    transition: all .3s ease 0s 
}
.product-grid .social li a:hover {
    color: #fff;
    background: #0b0d1e 
}
.product-grid .social li a:after, .product-grid .social li a:before {
    content: attr(data-tip);
    color: #fff;
    background-color: #000;
    font-size: 12px;
    line-height: 20px;
    border-radius: 3px;
    padding: 0 5px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    top: -30px 
}
.product-grid .social li a:after {
    content: '';
    height: 15px;
    width: 15px;
    border-radius: 0;
    transform: translateX(-50%) rotate(45deg);
    top: -22px;
    z-index: -1 
}
.product-grid .social li a:hover:after, .product-grid .social li a:hover:before {
    opacity: 1 
}
.product-grid .product-discount-label, .product-grid .product-new-label {
    color: #fff;
    background-color: #F44336;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 45px;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    position: absolute;
    left: 10px;
    top: 15px;
    transition: all .3s 
}
.product-grid .product-discount-label {
    left: auto;
    right: 10px;
    background-color: #2196f3;
}
.product-grid:hover .product-new-label {
    opacity: 0 
}
.product-grid .product-content {
    padding: 10px 
}
.product-grid .title {
    font-size: 12px;
    font-weight: 400;
    text-transform: capitalize;
    margin: 0 0 7px;
    transition: all .3s ease 0s 
}
.product-grid .title a {
    color: #222 
}
.product-grid .title a:hover {
    color: #0b0d1e 
}
.product-grid .price {
    color: #0b0d1e;
    font-size: 17px;
    font-weight: 700;
    margin: 0 2px 15px 0;
    display: block 
}
.product-grid .price span {
    color: #909090;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    text-decoration: line-through;
    text-align: left;
    vertical-align: middle;
    display: inline-block 
}
.product-grid .add-to-cart {
    border: 1px solid #e5e5e5;
    display: inline-block;
    padding: 5px 10px;
    color: #888;
    font-weight: 600;
    font-size: 12px;
    border-radius: 4px;
    transition: all .3s 
}
.product-grid:hover .add-to-cart {
    border: 1px solid transparent;
    background: #0174a7;
    color: #fff 
}
.product-grid .add-to-cart:hover {
    background-color: #505050;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5) 
}
@media only screen and (max-width: 990px) {
    .product-grid {
        margin-bottom: 30px 
   }
}

.product-grid .name {
    background-color: #fff;
    margin: 2px 2px 2px;
    line-height: 19px;
    overflow: hidden;
    width: auto;
    height: 43px;
    padding-top: 6px;
font-size: 11px; 
color:#545454;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
               }
