/* Logo */
.brand-logo {
height: 100px;
width: auto;
max-width: 100%;
display: block;
margin: 0 auto;
transition: transform 0.3s ease, height 0.3s ease;
object-fit: contain;
}

.navbar-brand {
display: flex;
align-items: center;
justify-content: center;
padding: 0.5rem;
}

.navbar-brand:hover .brand-logo {
transform: scale(1.05);
}

@media (max-width: 992px) {
.brand-logo {
height: 80px;
}
}

@media (max-width: 768px) {
.brand-logo {
height: 65px;
}
}

@media (max-width: 576px) {
.brand-logo {
height: 55px;
}
}

@media (max-width: 400px) {
.brand-logo {
height: 45px;
}
}
/* Logo */


/*footer logo*/
.brand-logo-footer {
height: 100px;
width: auto;
max-width: 100%;
display: block;
margin: 0;
transition: transform 0.3s ease, height 0.3s ease;
object-fit: contain;
}

.navbar-brand-footer {
display: flex;
align-items: center;
justify-content: flex-start;
padding: 0.5rem;
}

.navbar-brand-footer:hover .brand-logo {
transform: scale(1.05);
}

@media (max-width: 992px) {
.brand-logo-footer .brand-logo {
height: 80px;
}
}

@media (max-width: 768px) {
.brand-logo-footer .brand-logo {
height: 65px;
}
}

@media (max-width: 576px) {
.brand-logo-footer .brand-logo {
height: 55px;
}
}

@media (max-width: 400px) {
.brand-logo-footer .brand-logo {
height: 45px;
}
}

/*footer logo*/


/*welcome grid*/
.welcome-grids .coming-soon-badge {
position: absolute;
top: 10px;
left: 10px;
background-color: rgba(255, 0, 0, 0.85);
color: #fff;
font-size: 0.75rem;
font-weight: 700;
padding: 4px 8px;
border-radius: 20px;
z-index: 10;
opacity: 1;
transform: translateY(0);
transition: all 0.3s ease;
pointer-events: auto;
}

@media (max-width: 992px) {
.welcome-grids .coming-soon-badge {
font-size: 0.7rem;
padding: 3px 7px;
top: 8px;
left: 8px;
}
}

@media (max-width: 768px) {
.welcome-grids .coming-soon-badge {
font-size: 0.65rem;
padding: 3px 6px;
top: 6px;
left: 6px;
}
}

@media (max-width: 576px) {
.welcome-grids .coming-soon-badge {
font-size: 0.6rem;
padding: 2px 5px;
top: 5px;
left: 5px;
}
}

@media (max-width: 400px) {
.welcome-grids .coming-soon-badge {
font-size: 0.55rem;
padding: 2px 4px;
top: 4px;
left: 4px;
}
}
/*welcome grid*/


/* Index page tab css start */
.fruite-tabs .nav-link {
color: #fff;
font-weight: bold;
text-transform: uppercase;
border: 1px solid #232020;
background-color: #232020;
border-radius: 50px;
transition: all 0.3s ease;
position: relative;
margin-right: 5px;
padding: 0.5rem 1.5rem;
}

.fruite-tabs .nav-link:last-child {
margin-right: 0;
}

.fruite-tabs .nav-link:hover {
color: #fff;
background: #FF7315;
transform: translateY(-2px);
}

.fruite-tabs .nav-link.active {
color: #fff;
background: #FF7315;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.fruite-tabs .nav-link::after {
content: '';
display: block;
height: 3px;
width: 0;
background: #232020;
transition: width 0.3s;
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
}

.fruite-tabs .nav-link.active::after {
width: 50%;
}
/* index page tab css end */


/*offer-fixed section start*/
.offer-fixed-section {

width: 100%;
}

.offer-fixed-section .text-side {
background-color: #111;
color: #fff;
display: flex;
justify-content: center;
align-items: center; 
text-align: center;
padding: 2rem;
z-index: 2;
}

.offer-fixed-section .text-side .content-wrapper {
max-width: 400px;
}

.offer-fixed-section .image-side {
background-image: url('../../assets/images/pet-offer.jpg');
background-size: cover;
background-position: center;
background-attachment: fixed; 
min-height: 100vh;
}

@media (max-width: 991px) {
.offer-fixed-section {
flex-direction: column;
}

.offer-fixed-section .image-side {
background-attachment: scroll;
min-height: 300px;
}
}

.offer-fixed-section .text-side .hny-title {
font-size: 2.5rem;
font-weight: 700;
line-height: 1.2;
margin-bottom: 1rem;
color: #ffffff;
}


.offer-fixed-section .text-side p {
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 2rem;
color: #ccc;
}

.offer-fixed-section .text-side .btn {
display: inline-block;
background-color: #FF7315;
color: #111;
font-weight: 600;
padding: 0.75rem 2rem;
border-radius: 30px;
text-decoration: none;
transition: all 0.3s ease;
}

.offer-fixed-section .text-side .btn:hover {
background-color: #ffffff;
color: #FF7315;
transform: translateY(-2px);
}
/*offer-fixed section end*/


/* Fixed Background Section start */
.fixed-bg-section-end {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;   
color: #fff;
background-image: url('../../assets/images/banner3.jpg');
background-size: cover;
background-position: center;
background-attachment: fixed; /* fixed for desktop */
padding: 5rem 1rem;  
z-index: 1;
}

.fixed-bg-section-end::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
z-index: -1;
}

.fixed-bg-section-end .content-wrapper {
position: relative;
z-index: 2;
max-width: 700px; 
}

.fixed-bg-section-end .hny-title {
font-size: 2.5rem;
font-weight: 700;
line-height: 1.2;
margin-bottom: 1rem;
color: #ffffff;
}

.fixed-bg-section-end p {
font-size: 1.1rem;
margin-bottom: 2rem;
color: #eee;
}

@media (max-width: 576px) {
.fixed-bg-section-end {
min-height: 60vh;
padding: 2rem 0.5rem;
background-position: center center;
}

.fixed-bg-section-end .hny-title {
font-size: 1.5rem;
line-height: 1.3;
margin-bottom: 0.8rem;
}

.fixed-bg-section-end p {
font-size: 0.9rem;
margin-bottom: 1.5rem;
}
}

@media (max-width: 400px) {
.fixed-bg-section-end {
min-height: 50vh;
padding: 1.5rem 0.5rem;
}

.fixed-bg-section-end .hny-title {
font-size: 1.3rem;
}

.fixed-bg-section-end p {
font-size: 0.85rem;
}
}
/* Fixed Background Section end */


/* Common Styles for Wishlist and Cart */
table th,
table td {
vertical-align: middle;
text-align: left;
}

table th {
font-weight: 600;
background-color: #f8f9fa;
}

tbody tr:hover {
background-color: #f1f1f1;
}

.img-item {
width: 80px;
height: 80px;
object-fit: cover;
border-radius: 8px;
border: 1px solid #dee2e6;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-remove,
.btn-remove-wishlist {
border-radius: 50%;
width: 36px;
height: 36px;
background-color: #fff;
border: 1px solid #ccc;
display: flex;
align-items: center;
justify-content: center;
}

.btn-remove:hover,
.btn-remove-wishlist:hover {
background-color: #ffe5e5;
}

.btn-add-all,
.btn-checkout {
padding: 10px 25px;
background-color: #00b894;
color: #fff;
font-weight: 600;
text-transform: uppercase;
border: none;
border-radius: 50px;
transition: all 0.3s ease;
}

.btn-add-all:hover,
.btn-checkout:hover {
background-color: #01997a;
color: #fff;
}

.wishlist-table tbody tr:hover,
.cart-table tbody tr:hover {
background-color: #f1f1f1;
}

.wishlist-img,
.cart-img {
width: 80px;
height: 80px;
object-fit: cover;
border-radius: 8px;
border: 1px solid #dee2e6;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.quantity-wrapper {
display: flex;
align-items: center;
gap: 5px;
}

.quantity-wrapper .quantity-input {
flex: 0 0 80px;
text-align: center;
padding: 4px 8px;
border-radius: 4px;
}

.quantity-wrapper .btn-minus,
.quantity-wrapper .btn-plus {
padding: 4px 8px;
border-radius: 4px;
border: 1px solid #ccc;
background-color: #f8f9fa;
cursor: pointer;
}

.quantity-wrapper .btn-minus:hover,
.quantity-wrapper .btn-plus:hover {
background-color: #e0e0e0;
}
/* Common Styles for Wishlist and Cart End*/

/* index cart box start */
.product-card {
background: #fff;
border-radius: 15px;
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
overflow: hidden;
transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s;
display: flex;
flex-direction: column;
animation: fadeInUp 0.6s ease forwards;
border: 1px solid transparent;
height: 100%;
}

.product-card:hover {
transform: translateY(-6px) scale(1.01);
box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
border-color: #1abc9c33;
}

.product-image-container {
position: relative;
width: 100%;
aspect-ratio: 1 / 1;
overflow: hidden;
background: #f8f9fa;
}

.product-image {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.product-card:hover .product-image {
transform: scale(1.08);
}

.rating-stars-on-image {
position: absolute;
bottom: 10px;
left: 10px;
background: rgba(255, 255, 255, 0.9);
border-radius: 8px;
padding: 2px 6px;
font-size: 13px;
display: flex;
gap: 2px;
align-items: center;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
z-index: 2;
}

.rating-stars-on-image i {
color: #ffc107;
font-size: 13px;
}

.product-title {
font-size: 1.1rem;
font-weight: 600;
line-height: 1.4;
margin-bottom: 0.4rem;
transition: color 0.3s ease;

display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
height: calc(1.3em * 2);
word-break: break-word;
}

.product-title:hover {
color: #ff7315;
}

.price {
font-size: 1rem;
font-weight: 700;
color: #20c997;
}

.btn-custom {
border: none;
padding: 0.5rem 0.9rem;
border-radius: 50px;
font-size: 0.9rem;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.3s ease, transform 0.25s ease;
cursor: pointer;
gap: 0.4rem;
}

.cart-btn {
background-color: #232020;
color: #fff;
}

.cart-btn:hover {
background-color: #ff7315;
transform: scale(1.04);
}

.wishlist-btn {
background-color: #dc3545;
color: #fff;
}

.wishlist-btn:hover {
background-color: #ff7315;
transform: scale(1.04);
}

.icon-btn {
border: none;
border-radius: 50%;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 6px;
color: #333;
background-color: #f1f1f1;
transition: transform 0.2s ease, background 0.3s ease;
}

.icon-btn:hover {
transform: scale(1.1);
background-color: #f1f1f1;
}

.wishlist-btn {
color: #dc3545;
}

.quickview-btn {
color: #0d6efd;
}

.product-hover-icons {
position: absolute;
bottom: 10px;
right: 10px;
display: flex;
flex-direction: column;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
z-index: 3;
}

.product-card:hover .product-hover-icons {
opacity: 1;
visibility: visible;
}

@keyframes fadeInUp {
0% {
opacity: 0;
transform: translateY(20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}

.white-popup {
background: #fff;
padding: 20px;
border-radius: 10px;
position: relative;
max-width: 100%;
box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
.col-6 {
padding: 0 8px;
}

.product-card {
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.product-image-container {
aspect-ratio: 1 / 1;
}

.product-hover-icons {
opacity: 1 !important;
visibility: visible !important;
flex-direction: column !important;
bottom: 10px;
right: 10px;
gap: 8px;
}

.icon-btn {
width: 36px;
height: 36px;
margin-bottom: 6px;
}

.product-title {
font-size: 1rem;
}

.price {
font-size: 0.95rem;
}

.btn-custom {
font-size: 0.85rem;
padding: 0.45rem 0.8rem;
}
}

/* index cart box end */

/*quick view start*/
.white-popup {
background: #fff;
padding: 24px;
border-radius: 14px;
max-width: 900px;
width: 95%;
margin: 0 auto;
position: relative;
overflow: hidden;
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
animation: popupFadeIn 0.4s ease forwards;
}

@keyframes popupFadeIn {
0% {
opacity: 0;
transform: translateY(30px) scale(0.95);
}
100% {
opacity: 1;
transform: translateY(0) scale(1);
}
}

.quickview-container {
display: flex;
flex-wrap: wrap;
gap: 25px;
align-items: flex-start;
}

.quickview-left {
flex: 0 0 45%;
display: flex;
justify-content: center;
align-items: center;
position: relative;
}

.quickview-left img {
width: 100%;
border-radius: 12px;
object-fit: cover;
max-height: 450px;
transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.quickview-left img:hover {
transform: scale(1.05);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.quickview-right {
flex: 1;
min-width: 260px;
}

.quickview-right h3 {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 10px;
color: #333;
}

.qv-category {
color: #6c757d;
font-size: 0.9rem;
margin-bottom: 10px;
}

.qv-rating i {
color: #ffc107;
font-size: 1.1rem;
margin-right: 3px;
}

.qv-price {
font-size: 1.3rem;
color: #1abc9c;
font-weight: 700;
margin: 10px 0 15px;
}

.qv-description {
color: #555;
font-size: 0.95rem;
line-height: 1.6;
margin-bottom: 18px;
}

.qv-btn {
display: inline-flex;
align-items: center;
gap: 8px;
background: linear-gradient(135deg, #0d6efd, #1a73e8);
color: #fff;
border: none;
border-radius: 8px;
padding: 10px 18px;
font-size: 0.95rem;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.qv-btn:hover {
background: linear-gradient(135deg, #1a73e8, #0056b3);
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(13, 110, 253, 0.35);
}

@media (max-width: 768px) {
.quickview-container {
flex-direction: column;
align-items: center;
}

.quickview-left {
flex: 0 0 100%;
width: 50%;
}

.quickview-left img {
max-height: 320px;
width: 100%;
object-fit: cover;
}

.quickview-right {
text-align: center;
margin-top: 15px;
}

.qv-price {
font-size: 1.2rem;
}

.qv-description {
font-size: 0.9rem;
}

.qv-btn {
width: 100%;
justify-content: center;
}
}

.mfp-fade.mfp-bg {
background: transparent !important;
opacity: 1 !important;
transition: all 0.3s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
opacity: 0.9;
background: rgba(0, 0, 0, 0.6);
}

.mfp-fade.mfp-wrap .mfp-content {
opacity: 0;
transform: scale(0.95);
transition: all 0.3s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
opacity: 1;
transform: scale(1);
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
opacity: 0;
transform: scale(0.9);
}

#qv-add-to-cart-container .btn-container {
display: flex;
flex-wrap: wrap;
gap: 12px; /* space between buttons */
}

#qv-add-to-cart-container .btn {
flex: 1 1 48%;
min-width: 120px;
}

@media (max-width: 768px) {
#qv-add-to-cart-container .btn {
flex: 1 1 100%;
}
}
/*quick view end*/

/* product carousel general styles */
.product-carousel .product-card {
background: #fff;
border-radius: 15px;
overflow: hidden;
margin: 5px;
box-shadow: 0 6px 16px rgba(0,0,0,0.06);
transition: transform 0.3s ease, box-shadow 0.3s ease;
display: flex;
flex-direction: column;
}

.product-carousel .product-card:hover {
transform: translateY(-5px);
box-shadow: 0 16px 30px rgba(0,0,0,0.08);
}

.product-carousel .product-image-container {
position: relative;
overflow: hidden;
aspect-ratio: 1/1;
}

.product-carousel .product-image {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}

.product-carousel .product-card:hover .product-image {
transform: scale(1.05);
}

.product-carousel .product-hover-icons {
position: absolute;
bottom: 10px;
right: 10px;
display: flex;
flex-direction: column;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease;
}

.product-carousel .product-card:hover .product-hover-icons {
opacity: 1;
visibility: visible;
}

.product-carousel .rating-stars-on-image {
position: absolute;
bottom: 10px;
left: 50px;
background: rgba(255,255,255,0.9);
padding: 2px 6px;
border-radius: 8px;
font-size: 12px;
}

.product-carousel .product-info {
padding: 10px;
display: flex;
flex-direction: column;
flex-grow: 1;
}

.product-carousel .product-title {
font-size: 1rem;
font-weight: 600;
margin-bottom: 5px;

display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
height: calc(1.3em * 2);
word-break: break-word;
}

.product-carousel .price {
color: #1abc9c;
font-weight: 700;
margin-bottom: 8px;
}

/* Mobile / Extra-small devices */
@media (max-width: 480px) {
.product-carousel .product-card {
margin: 4px;
border-radius: 12px;
}

.product-carousel .product-title {
font-size: 0.9rem;
}

.product-carousel .price {
font-size: 0.85rem;
}

.product-carousel .product-hover-icons {
gap: 4px;
bottom: 6px;
right: 6px;
}

.product-carousel .icon-btn {
width: 32px;
height: 32px;
font-size: 14px; /* smaller icons for mobile */
}

.product-carousel .product-info {
padding: 8px;
}
}
/* product carousel general styles */





/* product page css start */
.fruite-categorie {
padding-left: 0;
transition: all 0.3s ease;
}
.fruite-categorie li {
margin-bottom: 10px;
list-style: none;
}


/* Main Pet Titles */
.fruite-categorie li strong a,
.fruite-categorie li.active-pet a {
background-color: #f7941d !important;
color: #fff !important;
font-weight: 600;
border-radius: 30px;
display: flex;
align-items: center;
padding: 9px 14px;
transition: all 0.3s ease;
text-transform: capitalize;
}

.fruite-categorie li.active-pet a:hover {
background-color: #d87c0c;
}

.fruite-categorie li.active-pet i {
color: #fff;
}

/* Regular Pet Links */
.fruite-categorie li a {
display: flex;
align-items: center;
justify-content: space-between;
padding: 7px 12px;
border-radius: 30px;
background-color: #f1f1f1;
color: #232020;
font-weight: 500;
font-size: 14px;
text-decoration: none;
transition: all 0.3s ease;
}

.fruite-categorie li a:hover {
background-color: #232020;
color: #fff;
transform: translateX(5px);
}

.fruite-categorie li i {
margin-right: 10px;
color: #f7941d;
transition: transform 0.3s ease;
}

.fruite-categorie li a:hover i {
transform: rotate(20deg);
color: #fff;
}

/* Subcategory Styles */
.fruite-categorie li.ms-3 a {
background-color: #f9f9f9;
font-size: 13px;
padding: 6px 12px;
border: 1px solid #eee;
}

.fruite-categorie li.ms-3 a:hover {
background-color: #f7941d;
color: #fff;
}

.fruite-categorie li.ms-3 span {
font-size: 12px;
color: #777;
}

/* Active Pet Highlight */
.active-pet {
border-left: 4px solid #f7941d;
padding-left: 8px;
transition: all 0.3s ease;
}

.active-pet a {
background-color: #f7941d !important;
color: #fff !important;
}

.active-pet i {
color: #fff;
}


.product-image-container:hover .pet-category-overlay {
opacity: 1;
}



.categories-dropdown select,
.bg-light1.ps-3.py-3.rounded select,
.bg-light.ps-3.py-3.rounded select,
#sorting.form-select-sm {
width: 100% !important;
min-width: 130px !important;
padding: 8px 15px !important;
border-radius: 30px !important;
border: 2px solid #f7941d !important;
background-color: #f1f1f1 !important;
color: #232020 !important;
font-weight: 500 !important;
font-size: 14px !important;
cursor: pointer !important;
box-shadow: none !important;
transition: all 0.3s ease !important;
appearance: none !important;
-webkit-appearance: none !important;
-moz-appearance: none !important;
}

.categories-dropdown select:hover,
.bg-light1.ps-3.py-3.rounded select:hover,
#sorting.form-select-sm:hover {
background-color: #fff !important;
border-color: #232020 !important;
}

.categories-dropdown select:focus,
.bg-light1.ps-3.py-3.rounded select:focus,
#sorting.form-select-sm:focus {
outline: none !important;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.15) !important;
}

.categories-dropdown select option,
.bg-light1.ps-3.py-3.rounded select option {
background-color: #f1f1f1 !important;
color: #232020 !important;
font-weight: 500 !important;
font-size: 14px !important;
padding: 5px 10px !important;
text-align: center!important;
}

.categories-dropdown select option:hover,
.bg-light1.ps-3.py-3.rounded select option:hover {
background-color: #f7941d !important;
color: #fff !important;
}

.categories-dropdown select option:checked,
.bg-light1.ps-3.py-3.rounded select option:checked {
background-color: #232020 !important;
color: #fff !important;
}

.categories-dropdown {
display: none;
}
@media (max-width: 992px) {
.col-lg-3.sidebar-categories {
display: none;
}
.categories-dropdown {
display: block;
}
}

@media (max-width: 576px) {
.row.g-4.mb-4 > div,
.row.g-3.mb-4 > div,
.row.g-4.align-items-center > div {
flex: 0 0 50%;
max-width: 50%;
}

.categories-dropdown select,
.bg-light1.ps-3.py-3.rounded select,
#sorting {
font-size: 13px !important;
padding: 8px 10px !important;
}

.product-info h5 {
font-size: 14px;
}
.price {
font-size: 13px;
}
.btn-custom {
font-size: 12px;
padding: 5px 10px;
}
.product-hover-icons button i {
font-size: 18px;
}
}

.text-secondary {
white-space: pre-line;
}

#productDescription.collapsed {
display: -webkit-box;
-webkit-line-clamp: 5;
-webkit-box-orient: vertical;
overflow: hidden;
}

.pagination {
display: flex;
flex-wrap: wrap;
gap: 5px;
}
.pagination a {
padding: 8px 12px;
background-color: #f1f1f1;
border-radius: 8px;
color: #232020;
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
}
.pagination a:hover {
background-color: #232020;
color: #fff;
transform: scale(1.05);
}
.pagination a.active {
background-color: #f7941d;
color: #fff;
font-weight: bold;
transform: scale(1.05);
}

.animate-fade-in {
opacity: 0;
transform: translateY(20px);
animation: fadeInUp 0.6s forwards;
}
@keyframes fadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
}
/* product page css end */




/* === Product Image Zoom (Custom Every-Corner Zoom) === */
.zoom-wrapper {
position: relative;
overflow: hidden;
cursor: zoom-in;
display: inline-block;
width: 100%;
max-width: 500px; /* adjust for your layout */
}

.zoomable {
width: 100%;
height: auto;
transition: transform 0.3s ease, transform-origin 0.3s ease;
transform-origin: center center;
}

.zoom-wrapper.active {
cursor: zoom-out;
}

.thumbnail-img {
transition: all 0.3s ease;
border: 2px solid transparent;
}

.thumbnail-img:hover {
transform: scale(1.1);
border-color: #2e9b44;
}

/* Disable zoom on mobile for better UX */
@media (max-width: 576px) {
.zoomable {
transform: none !important;
}

.zoom-wrapper {
cursor: default;
}

.thumbnail-img {
width: 55px;
height: 55px;
}
}
/* === Product Image Zoom (Custom Every-Corner Zoom) === */

/* carousel shop details page start */
.product-carousel-vertical {
width: 100%;
margin: auto;
overflow: hidden;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 15px;
}

.product-card-vertical {
background: #fff;
border: 1px solid #eee;
border-radius: 12px;
padding: 10px;
display: flex;
align-items: center;
transition: 0.3s ease;
}

.product-card-vertical:hover {
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
transform: translateY(-4px);
}

.product-image-container-vertical {
position: relative;
width: 100px;
height: 100px;
flex-shrink: 0;
}

.product-image-vertical {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 10px;
}

.rating-stars-on-image {
position: absolute;
bottom: 5px;
left: 50%;
transform: translateX(-50%);
background: rgba(255, 255, 255, 0.85);
border-radius: 12px;
padding: 2px 6px;
font-size: 0.85rem;
}

.product-info-vertical {
flex-grow: 1;
padding-left: 10px;
}

.product-info-vertical h5 {
font-size: 1rem;
color: #222;
font-weight: 600;
margin-bottom: 6px;
}

.btn-custom.cart-btn {
border: none;
border-radius: 25px;
padding: 6px 12px;
font-size: 0.9rem;
transition: 0.3s;
}

.slick-prev,
.slick-next {
background: #ff7315;
color: #fff;
border: none;
border-radius: 50%;
width: 35px;
height: 35px;
font-size: 1.2rem;
position: absolute;
left: 50%;
transform: translateX(-50%);
z-index: 10;
}

.slick-prev {
top: -20px;
}
.slick-next {
bottom: -20px;
}
.slick-prev:hover,
.slick-next:hover {
background: #222;
}

/* Responsive */
@media (max-width: 992px) {
.product-carousel-vertical {
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
}

@media (max-width: 768px) {
.product-carousel-vertical {
grid-template-columns: repeat(2, 1fr);
gap: 10px;
}

.product-card-vertical {
flex-direction: row;
padding: 8px;
}

.product-image-container-vertical {
width: 80px;
height: 80px;
}

.product-info-vertical h5 {
font-size: 0.9rem;
}

.btn-custom.cart-btn {
font-size: 0.8rem;
padding: 4px 10px;
}
}

@media (max-width: 480px) {
.product-carousel-vertical {
grid-template-columns: repeat(2, 1fr);
}

.product-card-vertical {
flex-direction: column;
align-items: flex-start;
}

.product-image-container-vertical {
width: 100%;
height: 120px;
}

.product-info-vertical {
padding-left: 0;
text-align: left;
width: 100%;
}
}
/* carousel shop details page end */


/* Checkout Form */
.checkout-form {
background: #fff;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
padding: 40px;
animation: fadeInUp 0.8s ease forwards;
transition: all 0.3s ease;
}
.checkout-form:hover {
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Form Items */
.form-item {
position: relative;
margin-bottom: 25px;
}
.form-item label {
font-weight: 600;
font-size: 15px;
color: #333;
display: block;
margin-bottom: 8px;
transition: color 0.3s ease;
}
.form-item input,
.form-item select,
.form-item textarea {
width: 100%;
border: 2px solid #e0e6ed;
border-radius: 12px;
background: #fafbfc;
font-size: 15px;
color: #333;
padding: 14px 16px;
outline: none;
transition: all 0.3s ease;
}
.form-item input:focus,
.form-item select:focus,
.form-item textarea:focus {
border-color: #FF7315;
background: #fff;
box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}
textarea.form-control {
resize: none;
}
::placeholder {
color: #999;
font-size: 14px;
}

/* Form Checkboxes / Radios */
.form-check-input {
width: 18px;
height: 18px;
cursor: pointer;
margin-top: 6px;
}
.form-check-label {
font-weight: 500;
color: #333;
margin-left: 8px;
}

/* Shipping / Payment Options */
.shipping-option p {
font-size: 14px;
color: #555;
margin: 4px 0 0 26px;
}
.payment-option p {
display: none;
}

/* Shipping Address Toggle */
#shipping-address {
overflow: hidden;
max-height: 0;
opacity: 0;
transition: all 0.5s ease;
}
#shipping-address.active {
display: block;
max-height: 600px;
opacity: 1;
animation: slideDown 0.6s ease forwards;
}

/* Checkout Table */
.checkout-table {
background: #fff;
border-radius: 15px;
padding: 30px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
}
.checkout-table:hover {
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.checkout-table h4 {
font-weight: 700;
margin-bottom: 20px;
text-align: center;
color: #222;
}
table th,
table td {
vertical-align: middle;
text-align: left;
padding: 12px 15px;
}
table th {
font-weight: 600;
background-color: #f8f9fa;
}
tbody tr:hover {
background-color: #f1f1f1;
}

/* Totals Box */
#totals,
.cart-total {
width: 100%;
max-width: 350px;
background: #fff;
border-radius: 12px;
padding: 20px;
margin-top: 25px;
font-size: 16px;
color: #000;
line-height: 1.8;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
}
.cart-total:hover {
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Coupon Section */
.coupon-section {
display: flex;
flex-wrap: wrap;
gap: 15px;
justify-content: center;
}
#coupon_code {
width: 250px;
border: 2px solid #e0e6ed;
background: #fafbfc;
border-radius: 50px;
text-align: center;
padding: 10px 15px;
transition: all 0.3s ease;
}
#coupon_code:focus {
border-color: #00b894;
background: #fff;
box-shadow: 0 0 8px rgba(0, 184, 148, 0.2);
outline: none;
}
#apply_coupon,
.coupon-btn {
padding: 12px 25px;
border-radius: 50px;
border: none;
background-color: #00b894;
color: #fff;
font-weight: 600;
text-transform: uppercase;
transition: all 0.3s ease;
cursor: pointer;
}
#apply_coupon:hover,
.coupon-btn:hover {
background-color: #01997a;
}
.coupon-msg {
font-weight: 500;
font-size: 15px;
color: #28a745;
margin-left: 15px;
}

/* Quantity */
.quantity-wrapper {
display: flex;
align-items: center;
gap: 5px;
}
.quantity-wrapper .quantity-input {
flex: 0 0 80px;
text-align: center;
padding: 4px 8px;
border-radius: 4px;
}

/* Place Order Button */
.place-order-btn {
background-color: #00b894;
color: #fff;
font-weight: 600;
border-radius: 50px;
border: none;
text-transform: uppercase;
transition: all 0.3s ease;
cursor: pointer;
}
.place-order-btn:hover {
background-color: #01997a;
}

/* Checkout Options Box */
.checkout-options, .checkout-button {
background: #fff;
border-radius: 15px;
padding: 30px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
}
.checkout-options h4 {
font-weight: 700;
color: #222;
}

/* Animations */
@keyframes fadeInUp {
0% { opacity: 0; transform: translateY(30px); }
100% { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
0% { opacity: 0; transform: translateY(-20px); }
100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
.checkout-form { padding: 25px; }
.form-item input,
.form-item select,
.form-item textarea { font-size: 14px; }
.form-item label { font-size: 14px; }
.coupon-section { justify-content: center; }
.coupon-input { flex: 1 1 100%; width: 200px; margin-bottom: 10px; }
.coupon-btn { flex: 1 1 100%; }
table th, table td { font-size: 14px; padding: 10px; }
.cart-total { margin-top: 20px; }
.form-check { padding: 10px 12px; }
.shipping-option p { margin-left: 22px; }
.place-order-btn { padding: 12px 20px; font-size: 15px; }
}

@media (max-width: 576px) {
.checkout-form { padding: 20px; }
.form-item { margin-bottom: 20px; }
.checkout-table { padding: 20px; }
table th, table td { font-size: 13px; padding: 8px 10px; }
.cart-total { padding: 20px; }
.coupon-input, .coupon-btn { font-size: 14px; padding: 10px 15px; }
.place-order-btn { padding: 10px 15px; font-size: 14px; }
}

.checkout-button {
background: #fff;
border-radius: 15px;
padding: 30px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
}

/*checkout page*/


/*order receipt*/
.order-receipt {
background: #f8f9fa;
padding: 40px 20px;
}

.order-receipt .bg-light {
background: #ffffff;
padding: 30px;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
}

.order-receipt .bg-light:hover {
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.order-receipt h2, 
.order-receipt h4 {
font-weight: 700;
color: #333;
margin-bottom: 15px;
}

.order-receipt h2 {
font-size: 28px;
}

.order-receipt p {
color: #555;
font-size: 15px;
line-height: 1.6;
}

.order-receipt a.btn {
display: inline-block;
margin-bottom: 20px;
background-color: #00b894;
color: #fff;
font-weight: 600;
border-radius: 50px;
padding: 10px 25px;
text-decoration: none;
transition: all 0.3s ease;
}

.order-receipt a.btn:hover {
background-color: #01997a;
color: #fff;
}

.order-receipt table th,
.order-receipt table td {
padding: 12px 15px;
border: 1px solid #dee2e6;
}

.order-receipt table th {
background-color: #f1f1f1;
text-align: left;
font-weight: 600;
}

.order-receipt table td {
color: #333;
}

.order-receipt table td.text-end {
text-align: right;
}

.order-receipt table td.text-center {
text-align: center;
}

.order-receipt tfoot td {
font-weight: 700;
background-color: #f8f9fa;
}

.order-receipt .text-end span {
font-weight: 600;
margin-left: 5px;
}

.order-receipt .text-end h4 {
margin-top: 15px;
font-size: 18px;
color: #222;
}

.order-receipt .text-center {
text-align: center;
}

/*order receipt*/

/* Product Price Styling */
.price {
display: flex;
gap: 5px;
align-items: baseline;
}

.price .old-price {
color: #e74c3c; /* Red color */
text-decoration: line-through;
font-size: 0.80rem;
font-weight: 500;
}

.price .new-price {
color: #28a745; /* Green color */
font-weight: 700;
font-size: 1rem;
}

.product-discount {
position: absolute;
top: 0;
right: 0;
width: 0;
height: 0;
border-top: 50px solid #e63946; /* triangle color */
border-left: 50px solid transparent;
z-index: 10;
}

.product-discount span {
position: absolute;
top: -45px;      /* adjust to center text inside triangle */
right: -18px;     /* adjust horizontal alignment */
color: #fff;
font-size: 0.75rem;
font-weight: bold;
transform: rotate(45deg);
width: 70px;     /* adjust for text length */
text-align: center;
}



#qv-description {
display: -webkit-box;
-webkit-line-clamp: 7; /* show only 5 lines */
-webkit-box-orient: vertical;
overflow: hidden;
}


/* shop-details page tab */
.tab-buttons {
    display: flex;
    flex-wrap: wrap; /* allow wrapping on small screens */
    gap: 10px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}

.tab-btn {
    padding: 8px 15px;
    cursor: pointer;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-bottom: none;
    border-radius: 5px 5px 0 0;
    font-size: 14px;
    flex: 1 1 calc(25% - 10px); /* responsive width with gap accounted */
    text-align: center;
    box-sizing: border-box;
}

.tab-btn.active {
    background: #ffffff;
    font-weight: bold;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .tab-btn {
        flex: 1 1 100%; /* full width on small screens */
        font-size: 13px;
        padding: 6px 10px;
    }
}


