/*
Theme Name: Tuttireal Child
Theme URI: https://tuttireal.com
Author: Appledill
Author URI: https://appledill.com
Description: Child theme for Tuttireal – Appledill Framework. Add your customizations here.
Version: 1.0.5
Template: tuttireal
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tuttireal-child
*/

/* ============================================================
   Tuttireal Child Theme – Custom Overrides
   All parent theme variables and classes are inherited.
   Add your custom CSS below.
   ============================================================ */

/* Example: override primary brand color */
/* :root { --tr-color-primary: #d62828; } */

/* ── Hide product tags from frontend display ────────────────
   Tags remain in DB, WP admin, and JSON-LD schema.
   The meta.php template override (woocommerce/single-product/meta.php)
   is the primary mechanism; this CSS is the safety net.          */
.product_meta .tagged_as {
    display: none !important;
}

/* Example: custom font */
/* :root { --tr-font-base: 'Poppins', sans-serif; } */

/* ── Buyer dashboard — full-width layout ────────────────────
   page.php wraps My Account in .tr-container.tr-layout--no-sidebar
   (max-width: 860px). Target only that specific wrapper so the
   header container is not affected.                               */
.woocommerce-account .tr-container.tr-layout--no-sidebar {
    max-width: 100%;
    padding-inline: 0;
}
.woocommerce-account .tr-entry,
.woocommerce-account .tr-entry__content {
    padding: 0;
    margin: 0;
}
