/*------------------------------------*\
    Table of contents
\*------------------------------------*/

/*------------------------------------------------

CSS STRUCTURE:


/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
    --accent-color: #0d0d0d;
    --bs-gray-100: #f3f3f3;
    --bs-gray-200: #e7e5e2;
    --bs-primary: #704204;
    --bs-pink: #eaaea4;
    --bs-secondary: #F6F5F2;
    --bs-primary-rgb: 112, 66, 4;
    --bs-body-bg-rgb: 253, 254, 255;
    --bs-light: #fff;
    --bs-dark: #000;
    --bs-dark-rgb: 38, 38, 38;
    --navbar-color-color: #131814;
    --swiper-theme-color: #704204 !important;
    --swiper-pagination-color: #704204 !important;
}

img {
    width: 100%;
}

.p-70 {
    padding: 70px 0;
}

.p-30 {
    padding: 30px 0;
}

/* on mobile devices below 600px
   */
@media screen and (max-width: 600px) {
    :root {
        --header-height: 100px;
        --header-height-min: 80px;
    }
}

/* Fonts */
:root {
    --body-font: "Sofia Sans", sans-serif;
    --heading-font: "Cormorant Upright", serif;
}

/*----------------------------------------------*/
/* 1 GENERAL TYPOGRAPHY */
/*----------------------------------------------*/

/* 1.1 General Styles
  /*----------------------------------------------*/
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--accent-color);
    margin: 0;
}

ul.inner-list li {
    font-size: 1.2em;
}

strong {
    font-weight: bold;
}

a {
    color: var(--bs-dark);
    text-decoration: none;
    transition: 0.3s color ease-out;
}

a:hover {
    text-decoration: none;
    color: var(--bs-primary);
}

.form-control:focus,
.accordion-button:focus {
    box-shadow: none;
}

/*------------ Background Color -----------*/
.bg-secondary {
    background: var(--bs-secondary) !important;
}

.bg-dark {
    background: var(--bs-dark) !important;
}

.bg-light {
    background: var(--bs-light) !important;
}

.bg-gray-1 {
    background-color: var(--bs-gray-100) !important;
}

/* - Section Padding
  --------------------------------------------------------------*/
.padding-small {
    padding-top: 2em;
    padding-bottom: 2em;
}

.padding-medium {
    padding-top: 4em;
    padding-bottom: 4em;
}

.padding-large {
    padding-top: 10em;
    padding-bottom: 10em;
}

/* - Toast message - sweet alert2
  --------------------------------------------------------------*/
.toast {
    opacity: 1 !important;
    transition: opacity 0.5s ease;
}

.custom-green-toast,
.custom-red-toast {
    font-weight: 500;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    width: auto;
    max-width: 90%;
}




/* Center on mobile */
@media (max-width: 576px) {
    .swal2-toast {
        top: 1rem !important;
        left: 50% !important;
        transform: translateX(-55%) !important;
    }
}



.toast.hide {
    opacity: 0 !important;
}

.swal2-container {
    z-index: 9999 !important;
}


/* - Section margin
  --------------------------------------------------------------*/
.margin-small {
    margin-top: 3em;
    margin-bottom: 3em;
}

.margin-medium {
    margin-top: 5em;
    margin-bottom: 5em;
}

.margin-large {
    margin-top: 7em;
    margin-bottom: 7em;
}

@media only screen and (max-width: 768px) {

    .margin-small,
    .margin-medium,
    .margin-large {
        margin-top: 5em;
        margin-bottom: 5em;
    }
}

/* - Section Title
  --------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--heading-font);
}

/* - Section width
  --------------------------------------------------------------*/
.container-fluid {
    max-width: 1540px;
}

.container {
    max-width: 90% !important;
}

/*--------------------------------------------------------------
  /** 2.10 Buttons
  --------------------------------------------------------------*/
/* - Button Sizes
  ------------------------------------------------------------- */
.btn.btn-small {
    padding: 0.8em 1.8em;
    font-size: 0.65em;
}

.btn.btn-medium {
    padding: 1.1em 2.8em;
    font-size: 1.1em;
    font-weight: 300;
    letter-spacing: 1px;
}

.btn.btn-large {
    padding: 2.4em 5.1em;
    font-size: 1.8em;
}

/* - Button Shapes
  ------------------------------------------------------------- */
.btn.btn-rounded,
.btn.btn-rounded::after {
    border-radius: 6px;
}

.btn.btn-pill,
.btn.btn-pill::after {
    border-radius: 2em;
}

/* button outline */
.btn.btn-outline-dark,
.btn.btn-outline-light,
.btn.btn-outline-accent {
    background: transparent;
    text-shadow: none;
    box-shadow: none;
    border: 1px solid;
}

.btn.btn-outline-dark:hover::after,
.btn.btn-outline-light:hover::after {
    background-color: transparent;
}

.btn.btn-outline-dark {
    border-color: rgba(0, 0, 0, 1);
    color: var(--bs-dark);
}

.btn.btn-outline-dark:hover {
    background: var(--bs-dark);
    color: var(--bs-light);
}

.btn.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--bs-light);
}

.btn.btn-outline-light:hover {
    background: var(--bs-primary);
    color: var(--bs-light);
    border-color: var(--bs-primary);
}

.btn.btn-outline-gray {
    background: transparent;
    border-color: var(--gray-color-600);
    color: var(--bs-dark);
}

.btn.btn-outline-gray:hover {
    border-color: var(--bs-dark);
    color: var(--bs-dark) !important;
}

.btn.btn-outline-accent {
    background: transparent;
    border-color: var(--accent-color);
    color: var(--bs-dark);
}

.btn.btn-outline-accent:hover {
    border-color: var(--bs-dark);
    color: var(--bs-dark) !important;
}

.btn.btn-full {
    display: block;
    margin: .85em 0;
    width: 100%;
    letter-spacing: 0.12em;
}

/* no border radius */
.btn-rounded-none,
.btn-rounded-none::after {
    border-radius: 0;
}

/* - Buttons Color Scheme
  ------------------------------------------------------------- */
.btn.btn-normal {
    border: none;
    color: var(--bs-dark);
    text-decoration: underline;
}

.btn.btn-normal:hover {
    text-decoration: none;
}

.btn.btn-accent {
    color: var(--bs-light);
    background-color: var(--accent-color);
    border: none;
}

.btn.btn-accent:hover {
    color: var(--bs-light) !important;
    background-color: var(--bs-primary);
}

.btn.btn-black {
    background-color: var(--bs-dark);
    color: var(--bs-light);
    border: none;
}

.btn.btn-black:hover {
    background-color: var(--bs-primary);
    color: var(--bs-light);
}

.btn.btn-light {
    background-color: var(--bs-light);
    color: var(--bs-dark);
    border: none;
}

.btn.btn-light:hover {
    background-color: var(--bs-primary);
    color: var(--bs-light);
}

.btn.btn-primary {
    background: var(--bs-primary);
    color: var(--bs-light);
    border: none;
}

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

/* - Buttons Aligns
  ------------------------------------------------------------- */
.btn-left {
    text-align: left;
    display: block;
}

.btn-center {
    text-align: center;
    display: block;
}

.btn-right {
    text-align: right;
    display: block;
}

/*----------------------------------------------*/
/* 2 SITE STRUCTURE */
/*----------------------------------------------*/

/*----- 6.1 Preloader
  --------------------------------------------------------------*/
#preloader {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    background: #dfdad4;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: inline-block;
    width: 90px;
    height: 90px;
    border: 9px solid #fff;
    border-style: dotted;
    border-radius: 300px;
    animation: loader 9s infinite ease;
}

@keyframes loader {

    0%,
    50% {
        transform: rotate(0deg);
    }

    25%,
    75%,
    100% {
        transform: rotate(360deg);
    }
}


/* - Text Effect
  ------------------------------------------------------------- */
.pseudo-text-effect {
    position: relative;
    padding: 0;
    overflow: hidden;
    transition: transform 0.5s;
    display: block;
}

.pseudo-text-effect::after {
    content: attr(data-after);
    display: inline-block;
    transform: translateY(100%);
    position: absolute;
    left: 0;
    transition: inherit;
    color: var(--bs-dark);
}

.pseudo-text-effect>span {
    display: inline-block;
    transform: translateY(0%);
    transition: inherit;
}

.pseudo-text-effect:hover>span {
    transform: translateY(-100%);
}

.pseudo-text-effect:hover::after {
    transform: translateY(0%);
}


/*--- Image hover Effects
  -----------------------------------------------*/
.image-zoom-effect {
    overflow: hidden;
}

.image-zoom-effect .image-holder {
    width: 100%;
    height: auto;
    overflow: hidden;
    transform: scale(1);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-zoom-effect:hover .image-holder {
    transform: scale(0.95);
}

.image-zoom-effect img {
    transform: scale(1);
    will-change: transform;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.image-zoom-effect:hover img {
    transform: scale(1.1);
}

/* Link Effect
  ------------------------------------------------------------- */
.link-effect {
    cursor: pointer;
}

.link-effect a {
    position: relative;
    padding: 0;
    overflow: hidden;
    transition: transform 0.5s;
    display: block;
}

.link-effect a::after {
    content: attr(data-after);
    display: inline-block;
    transform: translateY(100%);
    position: absolute;
    left: 0;
    font-size: 1rem;
    text-align: inherit;
    text-transform: uppercase;
    transition: inherit;
}

.link-effect a>span {
    display: inline-block;
    transform: translateY(0%);
    transition: inherit;
}

.link-effect:hover a>span {
    transform: translateY(-100%);
}

.link-effect:hover a::after {
    transform: translateY(0%);
}

/* Social Link Hover
  ------------------------------------------------------------- */
.icon-box-effect {
    overflow: hidden;
    cursor: pointer;
}

.icon-box-effect .social-links libutton {
    position: relative;
    bottom: 80px;
    opacity: 0;
    display: inline-block;
    margin: 7px;
    padding: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

.icon-box-effect .social-links button:hover {
    background-color: var(--bs-primary);
}

.icon-box-effect .social-links svg {
    color: var(--light-color);
    animation-name: rotate-icon;
}

.icon-box-effect .social-links button:nth-child(1) {
    transition: 1.0s;
}

.icon-box-effect .social-links button:nth-child(2) {
    transition: 1.2s;
}

.icon-box-effect .social-links button:nth-child(3) {
    transition: 1.5s;
}

.icon-box-effect .social-links button:nth-child(4) {
    transition: 1.8s;
}

.icon-box-effect .social-links button:nth-child(5) {
    transition: 2.4s;
}

.icon-box-effect:hover>.product-card .social-links button {
    bottom: 200px;
    opacity: 1;
}

/*  Image Overlay
  ------------------------------------------------------------- */
.image-overlay {
    cursor: pointer;
}

.image-overlay .product-image {
    overflow: hidden;
}

.image-overlay .product-image img {
    transform: translateY(0);
    transition: transform 0.6s ease-in-out;
}

.box-slide {
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    color: var(--bs-dark);
    transition: transform 0.6s ease-in-out;
}

.image-overlay:hover .box-slide {
    transform: translateY(0%);
}

.image-overlay:hover img {
    transform: translateY(-10%);
}

/* Button Hover Effects 2
  ------------------------------------------------------------- */
.btn.btn-arrow {
    color: var(--bs-light);
    background-color: var(--bs-primary);
    border-radius: 260px;
}

.btn.btn-arrow.btn-bg-light {
    color: var(--bs-dark);
    background-color: var(--bs-light);
}

.btn.btn-arrow.outline-dark {
    color: var(--bs-dark);
    background-color: transparent;
    border: 1px solid var(--bs-dark);
}

.btn.btn-arrow.btn-normal {
    color: var(--bs-dark);
    background-color: transparent;
    border: none;
    text-decoration: underline;
}

.btn.btn-arrow span {
    transition: all 300ms ease-out;
    will-change: transform;
}

.btn.btn-arrow:hover span {
    transform: translate3d(-7px, 0, 0);
}

.btn.btn-arrow svg {
    position: absolute;
    top: 32px;
    right: 30px;
    transform: translateY(-50%);
    transition: all 300ms ease-out;
    will-change: right, opacity;
}

.btn.btn-arrow:hover svg {
    opacity: 0;
    right: 0;
}

.btn svg.icon-arrow {
    width: 25px;
    height: 25px;
}

/* - Search Bar
  ------------------------------------------------------------- */
.search-box {
    background: var(--bs-light);
    height: 0px;
    transition: height 0.3s ease-out;
}

.search-box.active {
    height: 90px;
}

.close-button {
    top: 20px;
    right: 120px;
    cursor: pointer;
    z-index: 9;
}

.search-box input.search-input {
    width: 50%;
    height: 30px;
    min-width: 420px;
    border-radius: 80px;
    border-color: rgb(0 0 0 / 25%);
}

.search-box .search-wrap svg {
    color: var(--bs-primary);
}

.search-box svg.search {
    margin-left: -50px;
}

/* - Sticky
  ------------------------------------------------------------- */
.sticky {
    position: sticky;
    top: 0;
}

/* 1. Header
  /*----------------------------------------------*/
.site-header {
    z-index: 10;
    transition: background 0.3s ease-out;
    background-color: white;
    position: fixed;
    width: 100%;
    z-index: 1111;
}

.navbar-nav .nav-item a.nav-link {
    color: var(--accent-color);
}

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

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: var(--bs-secondary);
}

/* ------------ Toggler -------------- */
.navbar-toggler {
    background: transparent;
    border: none;
    outline: none;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.toggler-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.toggler-icon span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Animation for open state */
.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hover Effect */
.navbar-toggler:hover .toggler-icon span {
    background-color: #007bff;
}


/* ------------ Offcanvas -------------- */
#header-nav .navbar-toggler:focus {
    box-shadow: none;
}

#header-nav .offcanvas.show {
    z-index: 9999;
    background-color: var(--bs-light);
    transition: transform 0.3s ease-in-out;
    backface-visibility: hidden;
}

#header-nav .offcanvas-end {
    width: 500px;
}

/* Fix sudden font resizing on offcanvas open */
#header-nav .offcanvas-body .navbar-nav {
    padding-left: 20px;
    align-items: flex-start !important;
}

#header-nav .offcanvas-body .navbar-nav .nav-item .nav-link {
    font-size: 1.25rem;
    transition: font-size 0.2s ease-in-out;
}

/* Ensure no weird jumps on show */
.offcanvas.show .nav-item .nav-link {
    font-size: 1.25rem !important;
}


/* ------------ Top User Icons ----------- */
.site-header .user-items svg {
    cursor: pointer;
}

/* @media only screen and (max-width: 991px) {
    #navbar .user-items {
        display: none;
    }
} */


/* 2. home
  /*----------------------------------------------*/
/*------------Swiper Arrow -----------*/
.home {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('../images/deniz/home2.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.home .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.home .content {
    position: relative;
    color: white;
    max-width: 60%;
    z-index: 1;
}

.home .content h1 {
    font-size: 48px;
    font-weight: bold;
}

.home .content p {
    margin: 20px 0;
    font-size: 18px;
    line-height: 1.5;
}

/* From Uiverse.io by adamgiebl */
.home .shop-now {
    background: var(--bs-pink);
    color: white;
    font-family: inherit;
    /* padding: 0.35em;
    padding-left: 1.2em; */
    font-size: 17px;
    font-weight: 500;
    border-radius: 0.9em;
    border: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    height: 2.8em;
    padding-right: 26px;
    cursor: pointer;
    margin: auto;
    width: 32%;
    text-align: center;
}

.home .shop-now .icon {
    background: white;
    margin-left: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2em;
    border-radius: 0.7em;
    right: 0.3em;
    transition: all 0.3s;
}

.home .shop-now:hover .icon {
    width: calc(100% - 0.6em);
}

.home .shop-now .icon svg {
    width: 1.1em;
    transition: transform 0.3s;
    color: var(--bs-dark);
}

.home .shop-now:hover .icon svg {
    transform: translateX(0.1em);
}

.home .shop-now:active .icon {
    transform: scale(0.95);
}

@media screen and (max-width: 1200px) {
    .content {
        max-width: 90%;
    }



}

@media screen and (max-width: 1024px) {
    .content {
        max-width: 90%;
    }

    .home .shop-now {
        width: 35%;
    }

}

@media screen and (max-width: 920px) {
    .content {
        max-width: 90%;
    }

    .home .shop-now {
        width: 40%;
    }

}


@media screen and (max-width:768px) {
    .home .content {
        max-width: 95% !important;
    }

    .home .shop-now {
        width: 35%;
    }
}

@media screen and (max-width:600px) {
    .home .content {
        max-width: 95% !important;
    }

    .home .shop-now {
        width: 40%;
    }
}

@media screen and (max-width:599px) {
    .home .content {
        max-width: 95% !important;
    }

    .home .shop-now {
        width: 50%;
    }
}

@media screen and (max-width:400px) {
    .home .content {
        max-width: 95% !important;
    }

    .home .shop-now {
        width: 66%;
    }
}

/* 3. about-us - Company Services
  /*----------------------------------------------*/
#about-us {
    overflow: hidden;
}



/* 4. Category Section Styles
  /*----------------------------------------------*/
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    background: white;
    cursor: pointer;
}

.category-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

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

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

.category-content {
    padding: 20px;
}

.category-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    text-transform: capitalize;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background-color: #000;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.category-btn:hover {
    background-color: #704204;
    color: white;
    transform: translateX(5px);
}

.category-btn svg {
    transition: transform 0.3s ease;
}

.category-btn:hover svg {
    transform: translateX(3px);
}

/* View All Card Styles */
.view-all-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.view-all-card:hover {
    transform: translateY(-5px);
    border-color: #704204;
    color: white;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}

.view-all-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.view-all-content p {
    color: #666;
    margin-bottom: 20px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #000;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.view-all-btn:hover {
    background-color: #333;
    transform: translateX(5px);
}

.view-all-btn svg {
    transition: transform 0.3s ease;
}

.view-all-btn:hover svg {
    transform: translateX(3px);
}

/* 5. Featured Product
  /*----------------------------------------------*/
.product-store .swiper-horizontal>.swiper-pagination-bullets,
.product-store .swiper-pagination-bullets.swiper-pagination-horizontal,
.product-store .swiper-pagination-custom,
.product-store .swiper-pagination-fraction {
    position: relative !important;
}

/* From Uiverse.io by dldrs */
.cart-btn {
    position: relative;
    overflow: hidden;
    outline: none;
    cursor: pointer;
    border-radius: 0px;
    border: none;
    background-color: hsl(255deg 50% 40%);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    font-family: "Inter", sans-serif;
    padding: 0;
    margin: auto;
}

.default-btn {
    background-image: linear-gradient(90.1deg,
            rgb(165, 121, 0) 0.2%,
            #704204 99.9%);
    text-align: center;
}

.default-btn,
.hover-btn {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    text-align: center;
    gap: 3px;
    padding: 10px;
    border-radius: 0px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.hover-btn {
    position: absolute;
    inset: 0;
    font-size: 16px;
    padding: 10px;
    background: rgb(0, 131, 11);

    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    transform: translate(0%, 100%);
    text-align: center;
}

.default-btn span {
    color: hsl(0, 0%, 100%);
}

.hover-btn span {
    color: hsl(0, 0%, 100%);
}

button:hover .default-btn {
    transform: translate(0%, -100%);
}

button:hover .hover-btn {
    transform: translate(0%, 0%);
}



/* 7. Subscribe
  /*----------------------------------------------*/
.subscribe-content input,
.subscribe-content button {
    height: 65px;
}


/* footer */
/* social links */
.mobile-social {
    display: none;
}

.footer-social-links {
    display: flex;
    justify-content: center;
    margin: 50px 0 0 0;
}

.Btn {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    margin-left: 10px;
    text-align: center;
}

.instagram {
    background: #f09433;
    background: -moz-linear-gradient(45deg,
            #f09433 0%,
            #e6683c 25%,
            #dc2743 50%,
            #cc2366 75%,
            #bc1888 100%);
    background: -webkit-linear-gradient(45deg,
            #f09433 0%,
            #e6683c 25%,
            #dc2743 50%,
            #cc2366 75%,
            #bc1888 100%);
    background: linear-gradient(45deg,
            #f09433 0%,
            #e6683c 25%,
            #dc2743 50%,
            #cc2366 75%,
            #bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
}

.tiktok {
    background-color: #111111;
}

.facebook {
    background-color: #1da1f2;
}

.Btn:hover {
    width: 110px;
    transition-duration: 0.4s;
    border-radius: 30px;
}

.Btn:hover .text {
    opacity: 1;
    transition-duration: 0.4s;
}

.Btn:hover .svgIcon {
    opacity: 0;
    transition-duration: 0.3s;
}

.text {
    position: absolute;
    color: rgb(255, 255, 255);
    width: 120px;
    font-weight: 600;
    opacity: 0;
    transition-duration: 0.4s;
}

.svgIcon {
    transition-duration: 0.3s;
}

.Btn i {
    color: white;
}

.quick-links ul {
    margin: 25px 0 0 0;
    padding: 0;
    list-style: none;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
}

.quick-links li {
    padding: 0 10px;
}

.quick-links ul a {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
}

.quick-links ul a:hover {
    opacity: 1;
}

/* 8. paginationn */
.custom-pagination-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* spacing between numbers row and arrows row */
    align-items: center;
    /* center everything */
}

.custom-pagination {
    list-style: none;
    display: flex;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.custom-pagination.numbers .custom-page {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.custom-pagination.arrows .custom-page {
    font-weight: bold;
}

.custom-page.active {
    background: #eaaea4;
    color: white;
}

.custom-page.disabled span {
    color: #aaa;
}

/* login page css ---- */
.login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f2f2f2, #e0f7e9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 15px;
}

.login-page .login-container {
    width: 100%;
    max-width: 420px;
}

.login-page .login-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.login-page .login-logo {
    width: 100px;
    height: auto;
}

.login-page .custom-input {
    border-radius: 10px;
    padding: 10px 15px;
    border: 1px solid #ced4da;
    transition: all 0.2s ease-in-out;
}

.login-page .custom-input:focus {
    border-color: var(--bs-pink);
    box-shadow: 0 0 0 0.2rem var(--bs-pink);
}



.login-page .auth-btn {
    display: flex;
    justify-content: space-around;
    top: 20px;
    left: 20px;
}

.login-page .auth-btn button {
    width: 100%;
    height: 50px;
    background-color: white;
    color: #000;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--bs-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;

}

.login-page .auth-btn button:before,
.login-page .auth-btn button:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--bs-pink);
    transition: all 0.3s cubic-bezier(0.35, 0.1, 0.25, 1);
}

.login-page .auth-btn button:before {
    right: 0;
    top: 0;
    transition: all 0.5s cubic-bezier(0.35, 0.1, 0.25, 1);
}

.login-page .auth-btn button:after {
    left: 0;
    bottom: 0;
}

.login-page .auth-btn button span {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
    z-index: 1;
}

.login-page .auth-btn button span:before,
.login-page .auth-btn button span:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 0;
    background-color: var(--bs-pink);
    transition: all 0.3s cubic-bezier(0.35, 0.1, 0.25, 1);
}

.login-page .auth-btn button span:before {
    right: 0;
    top: 0;
    transition: all 0.5s cubic-bezier(0.35, 0.1, 0.25, 1);
}

.login-page .auth-btn button span:after {
    left: 0;
    bottom: 0;
}

.login-page .auth-btn button p {
    padding: 0;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.35, 0.1, 0.25, 1);
    position: absolute;
    width: 100%;
    height: 100%;
}

.login-page .auth-btn button p:before,
.login-page .auth-btn button p:after {
    position: absolute;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.35, 0.1, 0.25, 1);
    z-index: 1;
    left: 0;
}

.login-page .auth-btn button p:before {
    content: attr(data-title);
    top: 50%;
    transform: translateY(-50%);
}

.login-page .auth-btn button p:after {
    content: attr(data-text);
    top: 150%;
    color: var(--bs-pink);
}

.login-page .auth-btn button:hover:before,
.login-page .auth-btn button:hover:after {
    width: 100%;
}

.login-page .auth-btn button:hover span {
    z-index: 1;
}

.login-page .auth-btn button:hover span:before,
.login-page .auth-btn button:hover span:after {
    height: 100%;
}

.login-page .auth-btn button:hover p:before {
    top: -50%;
    transform: rotate(5deg);
}

.login-page .auth-btn button:hover p:after {
    top: 50%;
    transform: translateY(-50%);
}

.login-page .auth-btn button.start {
    background-color: #44d8a4;
    box-shadow: 0px 5px 10px -10px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.login-page .auth-btn button.register p:before {
    top: -50%;
    transform: rotate(5deg);
}

.login-page .auth-btn button.register p:after {
    color: white;
    transition: all 0s ease;
    content: attr(data-start);
    top: 50%;
    transform: translateY(-50%);
    animation: start 0.3s ease;
    animation-fill-mode: forwards;
}

@keyframes register {
    from {
        top: -50%;
    }
}

.login-page .auth-btn button.start:hover:before,
.login-page .auth-btn button.start:hover:after {
    display: none;
}

.login-page .auth-btn button.start:hover span {
    display: none;
}

.login-page .auth-btn button:active {
    outline: none;
    border: none;
}

.login-page .auth-btn button:focus {
    outline: 0;
}

.login-page .auth-btn button:hover {
    border: none;
}

/* product page */
.button-cart {
    background-color: #fff;
    padding: 5px 5px;
    border: none;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    transition: all .3s;
    width: 100%;

}

.button-cart::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 25%;
    background: #eaaea4;
    z-index: -1;
    border-radius: 10px 0px 0px 10px;
    transition: all .3s;


}

.button-cart:hover::after {
    width: 100%;
    border-radius: 10px;

}

.button-cart:hover {
    color: white;
}

.button-cart .icon-cart {
    margin-right: 10px;
}

.products-page .product-card img {
    height: 70% !important;
}

.products-page .product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.products-page .product-card .card-img-top {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.products-page .product-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.products-page .product-card .card-footer {
    margin-top: auto;
}


/* swiper */
/* Fixed height for product images */
.products-page .product-image-container {
    /* height: 270px !important; */
    overflow: hidden;
}

.product-details .product-image-container {
    overflow: hidden;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* keeps aspect ratio, crops excess */
}

.carousel-indicators [data-bs-target] {
    background-color: #eaaea4;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.product-details .button-cart {
    width: 200px;
    margin: auto;
}


@media screen and (max-width:1200px) {
    .footer-row {
        justify-content: center !important;
        text-align: center;
    }

    .mobile-social {
        display: block;
    }

    .desktop-links {
        display: none;
    }

    .product-details .button-cart {
        width: 120px;
    }
}

@media screen and (max-width:700px) {
    .footer-row {
        text-align: left;
    }

    .footer-logo {
        margin: auto !important;
        text-align: center;
        padding: 0 !important;
    }

    .category-btn {
        padding: 5px 8px;
        font-size: 13px;
    }

    .col-mobile-products {
        width: 50% !important;
        padding: 0 10px !important;
    }

    .product-details .button-cart {
        width: 120px;
    }

    .products-page .button-cart {
        width: 130px;
        margin: auto;
        text-align: center;
    }

    .products-page .button-cart::after {
        width: 39px;
    }

    .products-page .card-body {
        padding-bottom: 0;
    }

    .products-page .card-body .card-title {
        margin: 0;
        padding: 0;
        font-size: 17px;
    }

}

@media screen and (max-width:600px) {
    .product-details .button-cart {
        width: 120px;
    }
}


@media screen and (max-width:500px) {
    .product-details .button-cart {
        width: 130px;
    }

    .product-details .button-cart::after {
        width: 30%;
    }

    .button-cart .icon-cart {
        margin: 0 3px;
        margin-right: 12px;
    }

}

@media screen and (max-width:400px) {

    .products-page .card-body {
        padding-bottom: 0;
    }

    .products-page .card-body .card-title {
        margin: 0;
        padding: 0;
        font-size: 17px;
    }

    .button-cart .icon-cart {
        margin: 0 3px;
        margin-right: 11px;
    }

    .button-cart {
        padding: 5px 0px;
    }

    .product-details .button-cart {
        width: 135px;
    }

    .products-page .button-cart::after {
        width: 38px;
    }
}


@media screen and (max-width:280px) {
    .products-page .button-cart {
        width: 120px;
    }

    .product-details .button-cart {
        width: 135px;
    }
}

/* whatsapp icon css */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateX(100px); /* Start off-screen to the right */
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    background-color: #25d366;
    padding: 10px;
    animation: bounce 2s infinite;
}

/* Bounce animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Slide-in from right */
.whatsapp-float.show {
    opacity: 1;
    transform: translateX(0);
}

/* Slide-out to right */
.whatsapp-float.hide {
    opacity: 0;
    transform: translateX(100px);
}
