:root {
    --rotate-image-deg: 5deg;
    --rotate-image-minus-deg: -5deg;
    --scale-image: 0.92;
    --breakpoint-mobile: 576px;
    --breakpoint-tablet: 768px;
    --breakpoint-desktop: 1024px;

    /* Fonts */
    --h2-font: normal 400 clamp(24px, 3vw, 40px) / 1.5 "ct_font_k_g__happy",
        Sans-Serif;
    --h4-font: normal 400 clamp(20px, 2vw, 24px) / 1.5 "ct_font_k_g__happy",
        Sans-Serif;
    --tiny-text: normal 500 clamp(14px, 1.5vw, 16px) / 1.5 Poppins, Sans-Serif;
    --tiny-text-regular: normal 400 clamp(14px, 1.5vw, 16px) / 1.5 Poppins,
        Sans-Serif;
    --small-text: normal 500 clamp(16px, 1.5vw, 18px) / 1.5 Poppins, Sans-Serif;
    --small-text-regular: normal 400 clamp(16px, 1.5vw, 18px) / 1.5 Poppins,
        Sans-Serif;
    --tiny-text-custom-font: normal 400 clamp(12px, 1.2vw, 16px) / 1.5 "ct_font_k_g__happy",
        Sans-Serif;
    --header-text: normal 400 16px/1.3 "ct_font_k_g__happy", Sans-Serif;

    /*Colors*/
    --dark-gray: #767676;
    --white: #ffffff;
    --off-white-background-color: #f8f4ea;
    --light-green: #4caf5b;
    --dark-green: #033f30;
    --light-green-background-color: #e4f0e0;

    /*Colors Fruits*/
    --bananas-background-color: #faf5d6;
    --bananas-text-color: #e8c156;
    --berries-background-color: #f4e2e4;
    --berries-text-color: #a1435d;
    --bestseller-background-color: #E6EBCC;
    --bestseller-text-color: #6b9c12;
    --blackberries-background-color: #e7d1ce;
    --blackberries-text-color: #67202e;
    --blueberries-background-color: #cdcddb;
    --blueberries-text-color: #354085;
    --jackfruit-background-color: #e3e7ce;
    --jackfruit-text-color: #a6b05c;
    --pineapple-background-color: #f6e5c3;
    --pineapple-text-color: #d8790f;
    --raspberries-background-color: #f6dcdf;
    --raspberries-text-color: #c30d5a;
    --strawberry-background-color: #f8e3e2;
    --strawberry-text-color: #d95c68;
    --mango-background-color: #f7e1be;
    --mango-text-color: #ef9d1e;
    --tropic-background-color: #ffedbb;
    --tropic-text-color: #eeb103;

    /*Light Background Colors Fruits*/
    --bananas-light-background-color: #f7f5e5;
    --blackberries-light-background-color: #eddfde;
    --berries-light-background-color: #f7ebec;
    --bestseller-light-background-color: #f1f3e5;
    --blueberries-light-background-color: #dddde5;
    --jackfruit-light-background-color: #eceee1;
    --jackfruit-light-background-color: #f6e9d4;
    --mango-light-background-color: #f5eddc;
    --raspberries-light-background-color: #f6e6e8;
    --strawberry-light-background-color: #f7eaea;
    --tropic-light-background-color: #fff2d0;

    /*Light Colors Fruits*/
    --blackberries-light-color: #ca86aa;
    --berries-light-color: #db6082;
    --bestseller-light-color: #F2804E;
    --blueberries-light-color: #9aaad7;
    --jackfruit-light-color: #e9dc48;
    --mango-light-color: #fcce2d;
    --pineapple-light-color: #e2b62d;
    --raspberries-light-color: #d379aa;

    /*Border Radius*/
    --border-radius-small: 8px;
    --border-radius-medium: 15px;

    /*Spacing*/
    --custom-content-spacing: 200px;
}

/*--- Mobile Styling ---*/
@media (max-width: 767px) {
    :root {
        --rotate-image-deg: 0deg;
        --rotate-image-minus-deg: 0deg;
        --scale-image: 1;
        --full-width: 100%;
        --custom-content-spacing: 100px;
    }
}

/*--- Tablet Styling ---*/
@media (min-width: 768px) and (max-width: 1000px) {
    :root {
        --custom-content-spacing: 150px;
    }
}