/*
Theme Name: Gigi
Theme URI: https://example.com/gigi-theme/
Author: AI Assistant & User
Author URI: https://example.com/
Description: Custom theme for Gigi Pizza.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-background, custom-logo, custom-menu, featured-images, block-styles
Text Domain: gigi
*/

/* Add custom styles below */
.promo-feedback {
    font-size: 13px;
    margin-top: 8px;
    padding: 8px 12px;
    border-radius: 4px;
    display: none; /* Hidden by default */
    transition: all 0.3s ease;
}
.promo-feedback.error {
    display: block;
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}
.promo-feedback.notice {
    display: block;
    background-color: #e3f2fd;
    color: #0d47a1;
    border: 1px solid #90caf9;
}

/* Gift item in cart */
/* Hand-drawn diagonal border around text */
.diagonal-border {
    position: relative;
    display: inline-block;
    padding: 2px 6px;
}

.diagonal-border::before,
.diagonal-border::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border: 2px solid #fe6b35; /* Match accent color */
    z-index: -1; /* Place behind the text */
    border-radius: 4px; /* Slightly rounded corners for a hand-drawn feel */
}

.diagonal-border::before {
    transform: rotate(-2deg);
}

.diagonal-border::after {
    transform: rotate(2deg);
}

/* Hand-drawn oval scribble around text */
.scribble-circle {
    position: relative;
    display: inline-block;
    padding: 4px 10px 16px 10px; /* give the text some air */
}

/* Override previous border version */
.scribble-circle::before {
    content: none !important;
    border: none !important;
}

/* Place PNG scribble under the text */
.scribble-circle::after {
    content: "";
    position: absolute;
    top: 80%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 160%;
    background: url('https://gigipizza.ru/wp-content/uploads/2025/07/OBJECTS-scaled.png') center/contain no-repeat;
    z-index: -1;
    pointer-events: none;
}
