/**
* 2007-2025 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2025 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

 /* Contenedor principal para la perspectiva */
        .flip-card {
            background-color: transparent;
            perspective: 1000px; /* Efecto de perspectiva 3D */
            height: 25rem;
            overflow: hidden;
            background-image: url("https://dev.ctinys.com/modules/eco_stickers/views/img/background_tiny_sticker.png");
            background-position: center;
            background-size: contain;
            background-repeat: no-repeat;
        }
        /* Contenedor interno que realiza la animación */
        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }

        /* Rotar el contenedor interno en hover */
        .flip-card:hover .flip-card-inner {
            transform: rotateY(180deg);
        }

        /* Posicionamiento de la cara frontal y trasera */
        .flip-card-front, .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden; /* Safari */
            backface-visibility: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Estilo de la cara frontal */
        /* .flip-card-front {
        } */

        /* Estilo de la cara trasera */
        .flip-card-back {
            transform: rotateY(180deg);
        }

        .flip-card img {
            max-width: 100%;
            max-height: 100%;
            border-radius: 8px; /* Opcional: para que la imagen también tenga bordes redondeados */
        }
        @media (max-width: 768px) {
            .flip-card {
                background-size: cover;
            }
        }