/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

 .back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
    background-color: #FFD700 !important; /* Gold color */
    border: 2px solid #FFD700 !important;
    color: #000000 !important;
}

.back-to-top:hover {
    background-color: #FFB90F !important; /* Slightly darker gold on hover */
    border-color: #FFB90F !important;
    color: #000000 !important;
    transform: translateY(-3px);
}
/*** Spinner End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.border-secondary {
    transition: 0.5s;
}

.btn.border-secondary:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
    border-color: var(--bs-secondary);
}
/*** Topbar Start ***/
.fixed-top {
    transition: 0.5s;
    background: var(--bs-white);
    border: 0;
}

.topbar {
    padding: 20px;
    border-radius: 230px 100px;
    background: linear-gradient(135deg, var(--bs-secondary) 0%, var(--bs-primary) 100%);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.topbar .top-info {
    font-size: 15px;
    line-height: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-info small {
    color: var(--bs-white) !important;
    transition: 0.3s;
}

.topbar .top-info small:hover {
    color: var(--bs-light) !important;
}

.topbar .top-info i {
    color: var(--bs-white);
}

.topbar .top-link {
    font-size: 15px;
    line-height: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link a {
    letter-spacing: 1px;
}

.topbar .top-link a small {
    color: var(--bs-white) !important;
    transition: 0.3s;
}

.topbar .top-link a small:hover {
    color: var(--bs-light) !important;
}

.topbar .top-link a small:hover i {
    color: var(--bs-white) !important;
}
/*** Topbar End ***/

/*** Navbar Start ***/
.navbar {
    height: 100px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.1);
}

.navbar .navbar-brand h1 {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    color: var(--bs-text-primary) !important;
    text-shadow: 2px 2px 4px rgba(255, 215, 0, 0.3);
}

.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 16px;
    transition: .5s;
    color: var(--bs-secondary);
    font-weight: 600;
    position: relative;
}

.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bs-primary);
    transition: .3s;
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    color: var(--bs-primary);
    margin: 0;
    padding: 0 5px;
}

.navbar .dropdown-toggle {
    position: relative;
    padding-right: 30px; /* Space for arrow */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar .dropdown-toggle {
        padding-right: 20px;
    }
    
    .navbar .dropdown-toggle::after {
        font-size: 14px;
        padding: 0 3px;
    }
}

/* Hover effect */
.navbar .dropdown-toggle:hover::after {
    color: var(--bs-secondary);
}

.dropdown .dropdown-menu {
    background: var(--bs-white) !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.dropdown .dropdown-menu a {
    color: var(--bs-secondary);
    font-weight: 500;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.navbar .nav-item .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-white) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.navbar .nav-item .dropdown-menu a {
    color: var(--bs-secondary);
    font-weight: 500;
}

.navbar .nav-item .dropdown-menu a:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.navbar .btn-search {
    background-color: #FFD700 !important; /* Gold color */
    border-color: #FFD700 !important;
    color: #000000 !important;
    transition: all 0.3s ease;
}

.navbar .btn-search:hover {
    background-color: #FFB90F !important; /* Slightly darker gold on hover */
    border-color: #FFB90F !important;
    color: #000000 !important;
    transform: translateY(-2px);
}

.navbar .btn-search i {
    color: #000000 !important; /* Black color */
}

.navbar .btn-search:hover i {
    color: #000000 !important; /* Black color */
}

.navbar .fa-shopping-bag {
    color: var(--bs-secondary);
    transition: .3s;
}

.navbar .fa-shopping-bag:hover {
    color: var(--bs-primary);
}

.navbar .fa-user {
    color: var(--bs-secondary);
    transition: .3s;
}

.navbar .fa-user:hover {
    color: var(--bs-primary);
}

.navbar .badge {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    border-radius: 50% !important;
    padding: 5px 8px !important;
    font-size: 12px !important;
}
/*** Navbar End ***/

/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(248, 223, 173, 0.1), rgba(248, 223, 173, 0.1)), url(../img/hero-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.carousel-item {
    position: relative;
}

.carousel-item a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    background: linear-gradient(rgba(255, 215, 0, 0.7), rgba(255, 215, 0, 0.7));
}

.carousel-control-next,
.carousel-control-prev {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    border: 1px solid var(--bs-white);
    background: var(--bs-primary);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-next {
    margin-right: 20px;
}

.carousel-control-prev {
    margin-left: 20px;
}

.page-header {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/images3.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-header h4 {
    color: var(--bs-text-secondary) !important;
}

.hero-header h1 {
    color: var(--bs-text-primary) !important;
    font-weight: 800;
}

.hero-header .btn-primary {
    background-color: var(--bs-text-primary);
    border-color: var(--bs-text-secondary);
    color: var(--bs-white);
    padding: 0.5rem 2rem;
    transition: all 0.3s ease;
}

.hero-header .btn-primary:hover {
    background-color: var(--bs-text-secondary);
    border-color: var(--bs-text-secondary);
    color: var(--bs-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.hero-header .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(255, 215, 0, 0.2);
}

@media (min-width: 992px) {
    .hero-header,
    .page-header {
        margin-top: 152px !important;
    }
}

@media (max-width: 992px) {
    .hero-header,
    .page-header {
        margin-top: 97px !important;
    }
}
/*** Hero Header end ***/


/*** featurs Start ***/
.featurs .featurs-item .featurs-icon {
    position: relative;
    width: 120px;
    height: 120px;
}

.featurs .featurs-item .featurs-icon::after {
    content: "";
    width: 35px;
    height: 35px;
    background: var(--bs-secondary);
    position: absolute;
    bottom: -10px;
    transform: translate(-50%);
    transform: rotate(45deg);
    background: var(--bs-secondary);
    
}
/*** featurs End ***/


/*** service Start ***/
.service .service-item .service-content {
    position: relative;
    width: 250px; 
    height: 130px; 
    top: -50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
}

/*** service End ***/


/*** Fruits Start ***/
.fruite .tab-class .nav-item a.active {
    background: var(--bs-secondary) !important;
}

.fruite .tab-class .nav-item a.active span {
    color: var(--bs-white) !important; 
}

.fruite .fruite-categorie .fruite-name {
    line-height: 40px;
}

.fruite .fruite-categorie .fruite-name a {
    transition: 0.5s;
}

.fruite .fruite-categorie .fruite-name a:hover {
    color: var(--bs-secondary);
}

.fruite .fruite-item {
    height: 100%;
    transition: 0.5s;
}
.fruite .fruite-item:hover {
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.fruite .fruite-item .fruite-img {
    overflow: hidden;
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
}

.fruite .fruite-item .fruite-img img {
    transition: 0.5s;
}

.fruite .fruite-item .fruite-img img:hover {
    transform: scale(1.3);
}
/*** Fruits End ***/


/*** vesitable Start ***/
.vesitable .vesitable-item {
    height: 100%;
    transition: 0.5s;
}

.vesitable .vesitable-item:hover {
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.vesitable .vesitable-item .vesitable-img {
    overflow: hidden;
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
}

.vesitable .vesitable-item .vesitable-img img {
    transition: 0.5s;
}

.vesitable .vesitable-item .vesitable-img img:hover {
    transform: scale(1.2);
}

.vesitable .owl-stage {
    margin: 50px 0;
    position: relative;
}

.vesitable .owl-nav .owl-prev {
    position: absolute;
    top: -8px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;

}

.vesitable .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.vesitable .owl-nav .owl-next {
    position: absolute;
    top: -8px;
    right: 88px;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.vesitable .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

/* Equal size cards for gopuram, kalasam, thiruvachi */
.vesitable-item {
    min-height: 400px;
    transition: all 0.3s ease;
    margin-top: 20px; /* Reduced margin for better visibility */
}

.vesitable-item .vesitable-img {
    height: 250px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.vesitable-item .vesitable-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vesitable-item .vesitable-content {
    padding: 15px;
    min-height: 120px;
}

/*** vesitable End ***/


/*** Banner Section Start ***/
.banner .banner-btn:hover {
    background: var(--bs-primary);
}
/*** Banner Section End ***/


/*** Facts Start ***/
.counter {
    padding: 20px;
    text-align: center;
}

.counter i {
    font-size: 60px;
    margin-bottom: 25px;
    display: inline-block;
}

@media (max-width: 768px) {
    .counter i {
        font-size: 45px;
        margin-bottom: 20px;
    }
    
    .counter h4 {
        font-size: 16px;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    
    .counter h1 {
        font-size: 24px;
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .counter i {
        font-size: 40px;
        margin-bottom: 15px;
    }
    
    .counter h4 {
        font-size: 14px;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .counter h1 {
        font-size: 20px;
        margin-bottom: 0;
    }
}

.counter h4 {
    color: var(--bs-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.5;
    word-wrap: break-word;
    white-space: normal;
}

.counter h1 {
    margin-bottom: 0;
    font-size: 36px;
    line-height: 1.2;
}

.facts .container {
    padding: 20px;
}

@media (max-width: 768px) {
    .facts .container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .facts .container {
        padding: 10px;
    }
}

.facts .row {
    margin: 0 -10px;
}

.facts .col-md-3 {
    padding: 0 10px;
}
/*** Facts End ***/


/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -35px;
    left: 0;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -35px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .testimonial .owl-nav .owl-prev,
    .testimonial .owl-nav .owl-next {
        top: -25px;
        padding: 5px 20px;
    }
}

@media (max-width: 480px) {
    .testimonial .owl-nav .owl-prev,
    .testimonial .owl-nav .owl-next {
        top: -20px;
        padding: 5px 15px;
    }
}

@media (max-width: 360px) {
    .testimonial .owl-nav .owl-prev,
    .testimonial .owl-nav .owl-next {
        top: -15px;
        padding: 5px 10px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: -30px; /* Position higher for testimonials */
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-carousel .owl-nav button {
    background: var(--bs-white);
    border: 2px solid var(--bs-primary);
    font-size: 24px;
    color: var(--bs-primary);
    cursor: pointer;
    padding: 12px 18px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 45px;
    min-height: 45px;
}

.testimonial-carousel .owl-nav button:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
    transform: scale(1.1);
    border-color: var(--bs-secondary);
}

.testimonial-carousel .owl-nav button.owl-prev:hover {
    background: linear-gradient(135deg, var(--bs-secondary) 0%, var(--bs-primary) 100%);
}

.testimonial-carousel .owl-nav button.owl-next:hover {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
}

/* Testimonial Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .testimonial-carousel .owl-nav {
        top: -20px; /* Adjusted for tablet testimonials */
        padding: 0 15px;
    }
    
    .testimonial-carousel .owl-nav button {
        font-size: 20px;
        padding: 10px 15px;
        min-width: 40px;
        min-height: 40px;
    }
}

@media (max-width: 480px) {
    .testimonial-carousel .owl-nav {
        top: -15px; /* Adjusted for mobile testimonials */
        padding: 0 12px;
    }
    
    .testimonial-carousel .owl-nav button {
        font-size: 18px;
        padding: 8px 12px;
        min-width: 35px;
        min-height: 35px;
    }
}

@media (max-width: 360px) {
    .testimonial-carousel .owl-nav {
        top: -10px; /* Adjusted for small mobile testimonials */
        padding: 0 10px;
    }
    
    .testimonial-carousel .owl-nav button {
        font-size: 16px;
        padding: 6px 10px;
        min-width: 30px;
        min-height: 30px;
    }
}

.owl-carousel:not(.testimonial-carousel) .owl-nav {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.owl-carousel:not(.testimonial-carousel) .owl-nav button {
    background: var(--bs-white);
    border: 2px solid var(--bs-primary);
    font-size: 24px;
    color: var(--bs-primary);
    cursor: pointer;
    padding: 12px 18px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 45px;
    min-height: 45px;
}

.owl-carousel:not(.testimonial-carousel) .owl-nav button:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
    transform: scale(1.1);
    border-color: var(--bs-secondary);
}
/*** testimonial End ***/


/*** Single Page Start ***/
.pagination {
    display: inline-block;
}
  
.pagination a {
    color: var(--bs-dark);
    padding: 10px 16px;
    text-decoration: none;
    transition: 0.5s;
    border: 1px solid var(--bs-secondary);
    margin: 0 4px;
}
  
.pagination a.active {
    background-color: var(--bs-primary);
    color: var(--bs-light);
    border: 1px solid var(--bs-secondary);
}
  
.pagination a:hover:not(.active) {background-color: var(--bs-primary)}

.nav.nav-tabs .nav-link.active {
    border-bottom: 2px solid var(--bs-secondary) !important;
}
/*** Single Page End ***/


/*** Footer Start ***/
.footer {
    background-color: rgba(255, 215, 0, 0.1) !important;
}

.footer .footer-item .btn-link {
    line-height: 35px;
    color: var(--bs-dark);
    transition: 0.5s;
}

.footer .footer-item .btn-link:hover {
    color: var(--bs-primary) !important;
}

.footer .footer-item p.mb-4 {
    line-height: 35px;
    color: var(--bs-dark);
}

.footer-item h4 {
    color: #1A1A1A; /* Dark black color */
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-item h4::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--bs-primary);
    margin-bottom: 10px;
}

.footer-item a {
    color: var(--bs-dark);
    transition: 0.3s;
}

.footer-item a:hover {
    color: var(--bs-primary);
}

.footer-item .btn-link {
    color: var(--bs-dark);
}

.footer-item .btn-link:hover {
    color: var(--bs-primary);
}

.footer-item .btn {
    border-color: var(--bs-primary);
    color: var(--bs-dark);
}

.footer-item .btn:hover {
    background-color: var(--bs-primary);
    color: var(--bs-dark);
}

/* Footer Logo */
.footer a h1 {
    color: #FFD700 !important; /* Gold color */
    transition: color 0.3s ease;
}

.footer a h1:hover {
    color: #FFB90F !important; /* Slightly darker gold on hover */
}

/* Footer Text */
.footer .text-light,
.footer .text-secondary,
.footer .text-white {
    color: #000000 !important;
}

.footer a {
    color: #000000 !important;
}

.footer a:hover {
    color: #000000 !important;
}

.copyright span,
.copyright a {
    color: #000000 !important;
}

/* Footer Contact Section */
.footer .footer-item h4 {
    color: #000000 !important;
    font-weight: 600;
}

.footer .footer-item p {
    color: #000000 !important;
    opacity: 0.9;
    font-size: 16px;
}

.footer .footer-item a {
    color: #000000 !important;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer .footer-item a:hover {
    opacity: 1;
    color: #000000 !important;
}

/* Footer Links */
.footer .btn-link {
    color: #000000 !important;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    text-decoration: none !important;
}

.footer .btn-link:hover {
    opacity: 1;
    color: #000000 !important;
    text-decoration: none !important;
}

/* Footer Subscribe Button */
.footer .btn-primary {
    background-color: #FFD700 !important; /* Gold color */
    border-color: #FFD700 !important;
    color: #000000 !important;
    transition: all 0.3s ease;
}

.footer .btn-primary:hover {
    background-color: #FFB90F !important; /* Slightly darker gold on hover */
    border-color: #FFB90F !important;
    color: #000000 !important;
    transform: translateY(-2px);
}
/*** Footer End ***/

/*** Copyright Section ***/
.copyright {
    background-color: rgba(255, 215, 0, 0.1) !important;
}

.copyright .text-light {
    color: var(--bs-dark);
}

.copyright a {
    color: var(--bs-primary);
}

.copyright a:hover {
    color: var(--bs-dark);
}
/*** Organic Products Section ***/
.organic-products {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0.02) 100%);
}

/*** Category Navigation ***/
.category-nav {
    margin-bottom: 3rem;
}

.category-nav .nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    background: white;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.category-nav .nav-link {
    background: var(--bs-white);
    border: 1px solid var(--bs-light);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    color: var(--bs-text-secondary) !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 150px;
    justify-content: center;
}

.category-nav .nav-link i {
    color: var(--bs-text-secondary);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-nav .nav-link:hover,
.category-nav .nav-link.active {
    background: var(--bs-text-primary) !important;
    border-color: var(--bs-text-primary) !important;
    color: var(--bs-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.category-nav .nav-link:hover i,
.category-nav .nav-link.active i {
    color: var(--bs-white);
    transform: scale(1.1);
}

/*** Products Grid ***/
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-template-rows: 1fr;
    gap: 2rem;
    padding: 1rem;
    height: 500px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: var(--bs-light);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.products-grid::-webkit-scrollbar {
    display: none;
}

.product-item {
    scroll-snap-align: start;
    min-width: 250px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    height: 200px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--bs-text-secondary);
    opacity: 0.9;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.product-info {
    padding: 1.5rem;
    background: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-info h4 {
    color: var(--bs-secondary);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.product-info p {
    font-size: 0.9rem;
    color: var(--bs-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bs-primary);
    margin-bottom: 1rem;
}

.btn-outline-primary {
    border-color: var(--bs-text-secondary);
    color: var(--bs-text-secondary) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1.5rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

.btn-outline-primary:hover {
    background-color: var(--bs-text-primary) !important;
    border-color: var(--bs-text-primary) !important;
    color: var(--bs-white) !important;
    transform: translateY(-2px);
}

.products-container {
    position: relative;
    height: 550px;
    overflow: hidden;
    margin: 2rem 0;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.product-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    background: var(--primary-color);
    color: white;
}

.product-nav-btn:hover {
    background: var(--primary-color-dark);
    transform: scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        height: 450px;
    }
    
    .products-container {
        height: 500px;
    }
    
    .product-nav-btn {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        height: 400px;
    }
    
    .products-container {
        height: 450px;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Navbar Adjustments */
    .navbar-brand h1 {
        font-size: 24px;
    }
    
    .topbar {
        padding: 10px;
    }
    
    .topbar .top-info,
    .topbar .top-link {
        font-size: 12px;
    }
    
    /* Hero Section Adjustments */
    .hero-header {
        padding: 40px 0;
    }
    
    .hero-header h1 {
        font-size: 28px;
    }
    
    .hero-header h4 {
        font-size: 16px;
    }
    
    /* Card Adjustments */
    .vesitable-item {
        margin-bottom: 20px;
        min-height: auto;
    }
    
    .vesitable-item .vesitable-img {
        height: 200px;
    }
    
    .vesitable-item .vesitable-content {
        padding: 10px;
    }
    
    /* Carousel Adjustments */
    .carousel-item img {
        height: 300px;
        object-fit: cover;
    }
    
    /* General Layout Adjustments */
    .container {
        padding: 10px;
    }
    
    .vesitable {
        padding: 20px 0;
    }
    
    /* Search Modal Adjustments */
    .modal-content {
        margin: 20px;
    }
    
    .modal-body .input-group {
        width: 100%;
    }
    
    /* Button Adjustments */
    .btn-md-square,
    .btn-lg-square {
        width: 40px;
        height: 40px;
    }
    
    /* Text Adjustments */
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    h3 {
        font-size: 18px;
    }
    
    /* Prevent Overflow */
    .owl-carousel {
        overflow: hidden;
    }
    
    .vesitable-item {
        overflow: hidden;
    }
    
    /* Footer Adjustments */
    .footer {
        padding: 20px 0;
    }
    
    .footer .footer-item {
        margin-bottom: 20px;
    }
}

/* Additional Small Screen Adjustments */
@media (max-width: 480px) {
    .topbar {
        display: none;
    }
    
    .navbar-brand h1 {
        font-size: 20px;
    }
    
    .hero-header h1 {
        font-size: 24px;
    }
    
    .vesitable-item .vesitable-img {
        height: 180px;
    }
    
    .vesitable-item .vesitable-content {
        padding: 5px;
    }
    
    .btn {
        padding: 5px 10px;
        font-size: 14px;
    }
}

/* Prevent Scrollbar Issues */
body {
    overflow-x: hidden;
}

/* Fix Navbar Overflow */
.navbar-nav {
    flex-wrap: wrap;
    gap: 10px;
}

/* Fix Overflowing Text */
.vesitable-item .vesitable-content,
.contact-info,
.footer-item {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Make Map Responsive */
.contact iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

@media (max-width: 768px) {
    .contact iframe {
        height: 300px;
    }
}

/* Arrow Navigation for Mobile */
.owl-carousel .owl-nav {
    position: absolute;
    top: 10px; /* Position above content but visible */
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.owl-carousel .owl-nav button {
    background: var(--bs-white);
    border: 2px solid var(--bs-primary);
    font-size: 24px;
    color: var(--bs-primary);
    cursor: pointer;
    padding: 12px 18px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 45px;
    min-height: 45px;
}

.owl-carousel .owl-nav button:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
    transform: scale(1.1);
    border-color: var(--bs-secondary);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .owl-carousel .owl-nav {
        top: 15px; /* Adjusted for tablets */
        padding: 0 15px;
    }
    
    .owl-carousel .owl-nav button {
        font-size: 20px;
        padding: 10px 15px;
        min-width: 40px;
        min-height: 40px;
    }
}

@media (max-width: 480px) {
    .owl-carousel .owl-nav {
        top: 20px; /* Adjusted for mobile */
        padding: 0 12px;
    }
    
    .owl-carousel .owl-nav button {
        font-size: 18px;
        padding: 8px 12px;
        min-width: 35px;
        min-height: 35px;
    }
}

@media (max-width: 360px) {
    .owl-carousel .owl-nav {
        top: 25px; /* Adjusted for small mobile */
        padding: 0 10px;
    }
    
    .owl-carousel .owl-nav button {
        font-size: 16px;
        padding: 6px 10px;
        min-width: 30px;
        min-height: 30px;
    }
}

/* Additional Hover Effects */
.owl-carousel .owl-nav button.owl-prev:hover {
    background: linear-gradient(135deg, var(--bs-secondary) 0%, var(--bs-primary) 100%);
}

.owl-carousel .owl-nav button.owl-next:hover {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
}

/* Touch Target Improvements */
.owl-carousel .owl-nav button {
    min-width: 40px;
    min-height: 40px;
}

@media (max-width: 768px) {
    .owl-carousel .owl-nav button {
        min-width: 35px;
        min-height: 35px;
    }
}

/*** Contact Page Responsive ***/
.contact-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    text-align: left;
    width: 100%;
    flex-wrap: wrap;
}

.contact-info i {
    min-width: 40px;
    text-align: center;
    font-size: 24px;
}

.contact-info h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    line-height: 1.4;
    color: var(--bs-primary);
}

.contact-info p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* Email Address Specific Adjustments */
.contact-info p a[href="mailto:info@example.com"] {
    display: inline-block;
    word-break: break-all;
    max-width: 100%;
    white-space: normal;
    text-decoration: none;
    color: inherit;
    font-size: 14px;
}

.contact-info p a[href="mailto:info@example.com"]:hover {
    color: var(--bs-primary);
}

/* Email Text Container */
.contact-info p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* Mobile Email Adjustments */
@media (max-width: 768px) {
    .contact-info p a[href="mailto:info@example.com"] {
        font-size: 13px;
        display: inline-block;
        word-break: break-all;
    }
    
    .contact-info p {
        font-size: 13px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .contact-info p a[href="mailto:info@example.com"] {
        font-size: 12px;
        word-break: break-all;
        display: inline-block;
    }
    
    .contact-info p {
        font-size: 12px;
        line-height: 1.4;
    }
}

/* Extra Small Screens */
@media (max-width: 360px) {
    .contact-info p a[href="mailto:info@example.com"] {
        font-size: 11px;
        word-break: break-all;
        display: inline-block;
        max-width: 100%;
    }
    
    .contact-info p {
        font-size: 11px;
        line-height: 1.3;
    }
}

/* Email Container Adjustments */
.contact-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    text-align: left;
    width: 100%;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .contact-info {
        padding: 8px;
    }
}

/*** Contact Form Adjustments ***/
.contact form .form-control {
    height: auto;
    padding: 12px;
    font-size: 14px;
}

.contact textarea {
    min-height: 120px;
    padding: 12px;
}

/* Mobile Form Adjustments */
@media (max-width: 768px) {
    .contact form .form-control {
        padding: 10px;
        font-size: 13px;
    }
    
    .contact textarea {
        min-height: 100px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .contact form .form-control {
        padding: 8px;
        font-size: 12px;
    }
    
    .contact textarea {
        min-height: 80px;
        padding: 8px;
    }
}

/* Contact Container Adjustments */
.contact .container {
    padding: 20px;
}

@media (max-width: 768px) {
    .contact .container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .contact .container {
        padding: 10px;
    }
}

/*** Root Variables ***/
:root {
    --bs-primary: #FFD700; /* Gold color */
    --bs-secondary: #FFD700; /* Gold color */
    --bs-light: rgba(255, 215, 0, 0.1);
    --bs-text-primary: #FFD700; /* Gold color */
    --bs-text-secondary: #FFD700; /* Gold color */
}
