/*
Theme Name: Dev Patel Theme
Author: Dev Patel
Description: A premium FSE theme by Dev Patel.
Version: 3.0.0
Requires at least: 6.2
Tested up to: 6.4
*/

/* 
   Modern CSS Reset & Base Styles 
   Most styles are in theme.json, but these ensure consistency.
*/
:root {
    --transition-base: all 0.2s ease-in-out;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Utils */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

/* Badge (Premium) */
.badge-wrapper {
    position: relative;
    display: inline-block;
}

.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--wp--preset--color--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Retina / High Res Images */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    /* Placeholder for high-res specific overrides if needed */
}

/* RTL Support Basis */
[dir="rtl"] .text-right {
    text-align: left;
}

[dir="rtl"] .text-left {
    text-align: right;
}