/*!
Theme Name: annpurti
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: annpurti
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

annpurti is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/* =======================
   GLOBAL
======================= */
body {
    margin: 0;
    font-family: 'Antonio', sans-serif;
}

.container {
    max-width: 1280px;
    margin: auto;
    padding: 0 20px;
}

/* =======================
   PROMO BAR
======================= */
.promo-bar {
    background: #FFDE17;
    font-size: 14px;
    font-weight: 600;
}

.promo-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.promo-right span {
    cursor: pointer;
}

.promo-item {
    text-decoration: none;
    display: flex;
    gap: 8px;
    align-items: center;
}

.promo-item:hover svg {
    transform: rotate(10deg) scale(1.08);
}

.promo-left span {
    font-family: Georgia;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    color: #3B0017;
}

.promo-right {
    display: flex;
    gap: 29px;
}

.promo-right a span {
    font-family: Segoe UI;
    font-size: 12px;
    font-weight: 700;
    line-height: 14px;
    color: #3B0017;
}

/* =======================
   HEADER
======================= */
.main-header {
    background: #FF7727;
    padding: 80px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    z-index: 1;
    padding-left: 20px;
    position: relative;
}

.logo a {
    text-decoration: none;
    color: #4b0d0d;
}

.logo img {
    max-width: 100%;
    height: auto;
}

/* MENU BADGE */
.menu-badge {
    position: absolute;
    left: 20px;
    top: -36px;
    background: #ffd21f;
    color: #4b0d0d;
    border-radius: 100%;
    font-weight: 400;
    transform: rotate(-16deg);
    border: none;
    font-size: 24px;
    line-height: 100%;
    font-family: 'Luckiest Guy', cursive;
    height: 64px;
    width: 98px;
    transition: transform 0.3s ease;
}

.menu-badge:hover {
    transform: rotate(-4deg);
}

/* ACTIONS */
.actions {
    display: flex;
    gap: 20px;
}

/* ACCOUNT FLOWER */
.account-btn {
    background: url('http://annpurti.webtx.co/wp-content/uploads/2026/04/flower-shape.png') no-repeat center;
    background-size: contain;
    border: none;
    color: #FFDE17;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Luckiest Guy', cursive;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 130px;
    width: 159px;
    height: 107px;
    font-size: 24px;
    line-height: 1;
}

/* CART */
.cart-btn {
    font-family: 'Luckiest Guy', cursive;
    background: #3B0017;
    color: #FFDE17;
    border-radius: 50%;
    border: none;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 98px;
    height: 64px;
    font-size: 24px;
    transform: rotate(13deg);
    transition: transform 0.3s ease;
}

.cart-btn:hover {
    transform: rotate(0deg);
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 992px) {
    .main-header {
        padding: 20px 0;
    }

    .menu-badge {
        left: 228px;
        top: 0;

        width: 80px;
        height: 55px;
        transform: rotate(-8deg);
        font-size: 16px;
    }

    .cart-btn {
        top: 0;
        right: 10px;
        width: 60px;
        height: 45px;
        font-size: 14px;
        transform: rotate(8deg);
    }

    .account-btn {
        top: 0;
        right: 84px;

        width: 90px;
        height: 60px;

        font-size: 12px;
    }

    .logo img {
        height: 50px;
        width: 200px;
    }

    .logo {
        padding-left: 0;
    }
}

@media (max-width: 768px) {

    .promo-inner {
        flex-direction: column;
        gap: 0px;
        padding: 6px 0px;
    }

    .promo-left span {
        font-size: 12px;
    }

}