<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:media="http://search.yahoo.com/mrss/"
	
	>

<channel>
	<title>CÉLIAvalverde</title>
	<link>https://xavorqeni.one</link>
	<description>CÉLIAvalverde</description>
	<pubDate>Mon, 10 Nov 2025 20:37:21 +0000</pubDate>
	<generator>https://xavorqeni.one</generator>
	<language>en</language>
	
		
	<item>
		<title>FOTO INICIAL CÉLIA </title>
				
		<link>https://xavorqeni.one/FOTO-INICIAL-CELIA</link>

		<pubDate>Thu, 26 Jul 2018 19:57:38 +0000</pubDate>

		<dc:creator>CÉLIAvalverde</dc:creator>

		<guid isPermaLink="true">https://xavorqeni.one/FOTO-INICIAL-CELIA</guid>

		<description>

</description>
		
	</item>
		
		
	<item>
		<title>C </title>
				
		<link>https://xavorqeni.one/C</link>

		<pubDate>Thu, 26 Jul 2018 19:57:38 +0000</pubDate>

		<dc:creator>CÉLIAvalverde</dc:creator>

		<guid isPermaLink="true">https://xavorqeni.one/C</guid>

		<description>SHOP︎
ROMI SUNGLASSES

&#60;img src="https://files.cargocollective.com/c238138/celia_valverde_logo.png" style="width:600px"&#62;



︎DISCOVER MORE
</description>
		
	</item>
		
		
	<item>
		<title>COLECCIONES</title>
				
		<link>https://xavorqeni.one/COLECCIONES</link>

		<pubDate>Thu, 26 Jul 2018 19:57:41 +0000</pubDate>

		<dc:creator>CÉLIAvalverde</dc:creator>

		<guid isPermaLink="true">https://xavorqeni.one/COLECCIONES</guid>

		<description>︎COLLECTIONS
</description>
		
	</item>
		
		
	<item>
		<title>VIDEO </title>
				
		<link>https://xavorqeni.one/VIDEO</link>

		<pubDate>Sat, 22 Sep 2018 10:04:08 +0000</pubDate>

		<dc:creator>CÉLIAvalverde</dc:creator>

		<guid isPermaLink="true">https://xavorqeni.one/VIDEO</guid>

		<description></description>
		
	</item>
		
		
	<item>
		<title>INFO</title>
				
		<link>https://xavorqeni.one/INFO</link>

		<pubDate>Thu, 26 Jul 2018 19:57:42 +0000</pubDate>

		<dc:creator>CÉLIAvalverde</dc:creator>

		<guid isPermaLink="true">https://xavorqeni.one/INFO</guid>

		<description>
	CONTACT
	

©&#38;nbsp; CÉLIAvalverde 2025
	INSTAGRAM
	SHIPPING&#38;nbsp;
	PRIVACY POLICY
	TERM OF USE&#38;nbsp;
&#38;nbsp;CÉLIA VALVERDEccc@


    
        #cookie-banner, #cookie-settings {
            position: fixed;
            left: 0;
            width: 100%;
            background: #000;
            color: #fff;
            padding: 15px;
            font-family: sans-serif;
            font-size: 14px;
            z-index: 99999;
            text-align: center;
            box-sizing: border-box;
        }
        #cookie-banner {
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        #cookie-settings {
            display: none;
            bottom: 50%;
            left: 50%;
            transform: translate(-50%, 50%);
            padding: 20px;
            background: #111;
            border-radius: 10px;
            width: 90%;
            max-width: 400px;
        }
        .cookie-btn {
            background: #fff;
            color: #000;
            border: none;
            padding: 8px 12px;
            margin: 0 5px;
            cursor: pointer;
            border-radius: 4px;
            transition: background 0.3s;
        }
        .cookie-btn:hover {
            background: #ccc;
        }
        .cookie-checkbox {
            margin: 10px 0;
            display: block;
            text-align: left;
        }
        .cookie-text {
            margin: 0;
        }
    


    
    
        Este sitio usa cookies para mejorar tu experiencia.
        
            Aceptar
            Rechazar
            Configurar
        
    

    
    
        Preferencias de cookies
        
            
            Cookies necesarias (siempre activas)
        
        
            
            Cookies analíticas (Google Analytics)
        
        
            
            Cookies de publicidad (Meta Pixel)
        
        
            Guardar
            Cerrar
        
    

    
        document.addEventListener("DOMContentLoaded", function() {
            // Funciones de almacenamiento
            function loadConsent() {
                return JSON.parse(localStorage.getItem("cookieConsent") &#124;&#124; "{}");
            }
            
            function saveConsent(consent) {
                localStorage.setItem("cookieConsent", JSON.stringify(consent));
            }

            // Elementos del DOM
            const banner = document.getElementById("cookie-banner");
            const settings = document.getElementById("cookie-settings");
            const analyticsCb = document.getElementById("analytics-cb");
            const adsCb = document.getElementById("ads-cb");

            // Mostrar banner solo si no hay consentimiento
            if (!localStorage.getItem("cookieConsent")) {
                banner.style.display = "flex";
            }

            // Inicializar checkboxes según consentimiento previo
            const consent = loadConsent();
            if (analyticsCb) analyticsCb.checked = (consent.analytics !== undefined) ? consent.analytics : false;
            if (adsCb) adsCb.checked = (consent.ads !== undefined) ? consent.ads : false;

            // Botones Aceptar / Rechazar
            document.getElementById("accept-all").addEventListener("click", function() {
                saveConsent({ analytics: true, ads: true });
                banner.style.display = "none";
            });
            
            document.getElementById("reject-all").addEventListener("click", function() {
                saveConsent({ analytics: false, ads: false });
                banner.style.display = "none";
            });

            // Abrir / cerrar popup configuración
            document.getElementById("open-settings").addEventListener("click", function() {
                settings.style.display = "block";
            });
            
            document.getElementById("close-settings").addEventListener("click", function() {
                settings.style.display = "none";
            });

            // Guardar configuración personalizada
            document.getElementById("save-settings").addEventListener("click", function() {
                const c = {
                    analytics: analyticsCb.checked,
                    ads: adsCb.checked
                };
                saveConsent(c);
                settings.style.display = "none";
                banner.style.display = "none";
            });
        });
    </description>
		
	</item>
		
		
	<item>
		<title>COMB</title>
				
		<link>https://xavorqeni.one/COMB</link>

		<pubDate>Mon, 10 Nov 2025 20:37:21 +0000</pubDate>

		<dc:creator>CÉLIAvalverde</dc:creator>

		<guid isPermaLink="true">https://xavorqeni.one/COMB</guid>

		<description>

  
  
&#60;img width="1920" height="2599" width_o="1920" height_o="2599" data-src="https://freight.cargo.site/t/original/i/d6f78cecd46025217fb432cd0dbdfd7fb6e03aa6b1ef6d8bf76f9c6c0436a6c4/rose.jpg" data-mid="240469012" border="0"  src="https://freight.cargo.site/w/1000/i/d6f78cecd46025217fb432cd0dbdfd7fb6e03aa6b1ef6d8bf76f9c6c0436a6c4/rose.jpg" /&#62;
&#60;img width="1920" height="2570" width_o="1920" height_o="2570" data-src="https://freight.cargo.site/t/original/i/ede3185d6f5fe49c669ae718fbb25e0489a08dbc07c433f0edf39bdc5b54fcd5/jade.jpg" data-mid="240469147" border="0"  src="https://freight.cargo.site/w/1000/i/ede3185d6f5fe49c669ae718fbb25e0489a08dbc07c433f0edf39bdc5b54fcd5/jade.jpg" /&#62;
&#60;img width="1440" height="1920" width_o="1440" height_o="1920" data-src="https://freight.cargo.site/t/original/i/0fd70f043f56ad2508e04e46901acbe8bf69ebf810b145980d43d5c444481fa7/malmo.jpg" data-mid="240469088" border="0"  src="https://freight.cargo.site/w/1000/i/0fd70f043f56ad2508e04e46901acbe8bf69ebf810b145980d43d5c444481fa7/malmo.jpg" /&#62;


  

  
    
      GELINA ROSE
      30,00 €
    
    
      GELINA MALMO
      30,00 €
    
    
      GELINA JADE
      30,00 €
    
  

  

  
  
&#60;img width="1920" height="2560" width_o="1920" height_o="2560" data-src="https://freight.cargo.site/t/original/i/3cdeb31bf6e560b6626d7668064f193eed80747ced7a85f24d8887964d65a895/thumbnail_PHOTO-2025-08-05-09-02-44-2.jpg" data-mid="240469443" border="0"  src="https://freight.cargo.site/w/1000/i/3cdeb31bf6e560b6626d7668064f193eed80747ced7a85f24d8887964d65a895/thumbnail_PHOTO-2025-08-05-09-02-44-2.jpg" /&#62;
&#60;img width="1440" height="1920" width_o="1440" height_o="1920" data-src="https://freight.cargo.site/t/original/i/00b73a273248620de9658df0bbfc1bab281e257f98e6f4a59c1b78a491642e25/thumbnail_PHOTO-2025-08-05-09-00-06-1.jpg" data-mid="240469618" border="0"  src="https://freight.cargo.site/w/1000/i/00b73a273248620de9658df0bbfc1bab281e257f98e6f4a59c1b78a491642e25/thumbnail_PHOTO-2025-08-05-09-00-06-1.jpg" /&#62;
&#60;img width="1440" height="1920" width_o="1440" height_o="1920" data-src="https://freight.cargo.site/t/original/i/c94454ccdcd140eaee4160df816095e20cea23777c98160d06cf62ee633405a2/thumbnail_P1010140-2.jpg" data-mid="240469674" border="0"  src="https://freight.cargo.site/w/1000/i/c94454ccdcd140eaee4160df816095e20cea23777c98160d06cf62ee633405a2/thumbnail_P1010140-2.jpg" /&#62;


  

  
    
      GELINA SUNSET
      30,00 €
    

    
      MINA MALMO
      32,00 €
    

    
      MINA JADE
      32,00 €
    
  

  

  
  
&#60;img width="1440" height="1920" width_o="1440" height_o="1920" data-src="https://freight.cargo.site/t/original/i/b24cf8f3ca9a02f8dbc2c5f1c4c1f1b4889958bfb1534f690867fd2e98a25f5b/thumbnail_PHOTO-2025-08-05-09-00-05.jpg" data-mid="240469660" border="0"  src="https://freight.cargo.site/w/1000/i/b24cf8f3ca9a02f8dbc2c5f1c4c1f1b4889958bfb1534f690867fd2e98a25f5b/thumbnail_PHOTO-2025-08-05-09-00-05.jpg" /&#62;


  

  
    
      MINA SUNSET
      32,00 €
    
  







  
    &#60;img width="1920" height="2599" width_o="1920" height_o="2599" data-src="https://freight.cargo.site/t/original/i/d6f78cecd46025217fb432cd0dbdfd7fb6e03aa6b1ef6d8bf76f9c6c0436a6c4/rose.jpg" data-mid="240469012" border="0"  src="https://freight.cargo.site/w/1000/i/d6f78cecd46025217fb432cd0dbdfd7fb6e03aa6b1ef6d8bf76f9c6c0436a6c4/rose.jpg" /&#62;
    GELINA ROSE
    30,00 €
  

  
    &#60;img width="1440" height="1920" width_o="1440" height_o="1920" data-src="https://freight.cargo.site/t/original/i/0fd70f043f56ad2508e04e46901acbe8bf69ebf810b145980d43d5c444481fa7/malmo.jpg" data-mid="240469088" border="0"  src="https://freight.cargo.site/w/1000/i/0fd70f043f56ad2508e04e46901acbe8bf69ebf810b145980d43d5c444481fa7/malmo.jpg" /&#62;
    GELINA MALMO
    30,00 €
  

  
    &#60;img width="1920" height="2570" width_o="1920" height_o="2570" data-src="https://freight.cargo.site/t/original/i/ede3185d6f5fe49c669ae718fbb25e0489a08dbc07c433f0edf39bdc5b54fcd5/jade.jpg" data-mid="240469147" border="0"  src="https://freight.cargo.site/w/1000/i/ede3185d6f5fe49c669ae718fbb25e0489a08dbc07c433f0edf39bdc5b54fcd5/jade.jpg" /&#62;
    GELINA JADE
    30,00 €
  

  
    &#60;img width="1920" height="2560" width_o="1920" height_o="2560" data-src="https://freight.cargo.site/t/original/i/3cdeb31bf6e560b6626d7668064f193eed80747ced7a85f24d8887964d65a895/thumbnail_PHOTO-2025-08-05-09-02-44-2.jpg" data-mid="240469443" border="0"  src="https://freight.cargo.site/w/1000/i/3cdeb31bf6e560b6626d7668064f193eed80747ced7a85f24d8887964d65a895/thumbnail_PHOTO-2025-08-05-09-02-44-2.jpg" /&#62;
    GELINA SUNSET
    30,00 €
  

  
    &#60;img width="1440" height="1920" width_o="1440" height_o="1920" data-src="https://freight.cargo.site/t/original/i/00b73a273248620de9658df0bbfc1bab281e257f98e6f4a59c1b78a491642e25/thumbnail_PHOTO-2025-08-05-09-00-06-1.jpg" data-mid="240469618" border="0"  src="https://freight.cargo.site/w/1000/i/00b73a273248620de9658df0bbfc1bab281e257f98e6f4a59c1b78a491642e25/thumbnail_PHOTO-2025-08-05-09-00-06-1.jpg" /&#62;
    MINA MALMO
    32,00 €
  

  
    &#60;img width="1440" height="1920" width_o="1440" height_o="1920" data-src="https://freight.cargo.site/t/original/i/c94454ccdcd140eaee4160df816095e20cea23777c98160d06cf62ee633405a2/thumbnail_P1010140-2.jpg" data-mid="240469674" border="0"  src="https://freight.cargo.site/w/1000/i/c94454ccdcd140eaee4160df816095e20cea23777c98160d06cf62ee633405a2/thumbnail_P1010140-2.jpg" /&#62;
    MINA JADE
    32,00 €
  

  
  
 &#60;img width="1440" height="1920" width_o="1440" height_o="1920" data-src="https://freight.cargo.site/t/original/i/b24cf8f3ca9a02f8dbc2c5f1c4c1f1b4889958bfb1534f690867fd2e98a25f5b/thumbnail_PHOTO-2025-08-05-09-00-05.jpg" data-mid="240469660" border="0"  src="https://freight.cargo.site/w/1000/i/b24cf8f3ca9a02f8dbc2c5f1c4c1f1b4889958bfb1534f690867fd2e98a25f5b/thumbnail_PHOTO-2025-08-05-09-00-05.jpg" /&#62;
    MINA SUNSET
    32,00 €
  





  .catalogo-pc { display: block; }
  .catalogo-mobile { display: none; }

  @media (max-width: 768px) {
    .catalogo-pc { display: none; }
    .catalogo-mobile {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }
    .catalogo-mobile .product-item { margin-bottom: 5px; }
    .catalogo-mobile .product-item a img {
      width: 100%;
      height: auto;
    }
    .catalogo-mobile .title {
      display: block;
      margin-top: 10px;
      color: #000;
      text-decoration: none;
      font-size: 18px;
      font-family: "Sequel100Wide-45Wide", Icons;
    }
    .catalogo-mobile .price {
      display: block;
      margin-top: 5px;
      font-weight: 600;
      font-size: 16px;
      font-family: "Sequel100Wide-45Wide", Icons;
    }
  }
</description>
		
	</item>
		
		
	<item>
		<title>GODDESS</title>
				
		<link>https://xavorqeni.one/GODDESS</link>

		<pubDate>Tue, 07 May 2024 20:02:04 +0000</pubDate>

		<dc:creator>CÉLIAvalverde</dc:creator>

		<guid isPermaLink="true">https://xavorqeni.one/GODDESS</guid>

		<description>
	
	
	

	
	
	

&#60;img width="450" height="658" width_o="450" height_o="658" data-src="https://freight.cargo.site/t/original/i/715f00a50779c4a74e86feab79ff0928430332e85feb2b329a296dfb5ae90302/CELIAvalverde-ss16-Look07-A.jpg" data-mid="210472709" border="0"  src="https://freight.cargo.site/w/450/i/715f00a50779c4a74e86feab79ff0928430332e85feb2b329a296dfb5ae90302/CELIAvalverde-ss16-Look07-A.jpg" /&#62;
&#60;img width="356" height="571" width_o="356" height_o="571" data-src="https://freight.cargo.site/t/original/i/898869ff4b3841aa11611dac9bc410a7e4498f1e9ef5a2fdeb811616bc3a4095/17ss15K.jpg" data-mid="210473335" border="0"  src="https://freight.cargo.site/w/356/i/898869ff4b3841aa11611dac9bc410a7e4498f1e9ef5a2fdeb811616bc3a4095/17ss15K.jpg" /&#62;
&#60;img width="450" height="672" width_o="450" height_o="672" data-src="https://freight.cargo.site/t/original/i/f15dcd98ade5a41a6562469c0cf106e0306b9528cac76984fb44c969c1d4909a/BACK-TOP.jpg" data-mid="210472662" border="0"  src="https://freight.cargo.site/w/450/i/f15dcd98ade5a41a6562469c0cf106e0306b9528cac76984fb44c969c1d4909a/BACK-TOP.jpg" /&#62;
&#60;img width="450" height="672" width_o="450" height_o="672" data-src="https://freight.cargo.site/t/original/i/0cfb7afe98079f7b27fa37209930ac24c2075a014638bcdeb28ccfa050b81ab5/TOP-DELANTE.jpg" data-mid="210472635" border="0"  src="https://freight.cargo.site/w/450/i/0cfb7afe98079f7b27fa37209930ac24c2075a014638bcdeb28ccfa050b81ab5/TOP-DELANTE.jpg" /&#62;

 &#38;nbsp; &#38;nbsp;
	GODDESS
120,00 €MAXI TULLE DRESS + PUFF SLEEVES
RUFFLED TOP WITH SLEEVES&#38;nbsp;
BACK CLOSURE WITH LACES
HAND DYED SO EACH SAMPLE MAY VARY OR HAVE ASYMMETRIC STAINING PROCESSDETAILS &#38;amp; CARE100% Polyester&#38;nbsp;WASH MACHINEU SIZE ( FITS FROM XS TO XL)MADE IN SPAIN


 &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp;&#38;nbsp;


</description>
		
	</item>
		
		
	<item>
		<title>LOTTUS PUFF </title>
				
		<link>https://xavorqeni.one/LOTTUS-PUFF</link>

		<pubDate>Tue, 07 May 2024 20:07:38 +0000</pubDate>

		<dc:creator>CÉLIAvalverde</dc:creator>

		<guid isPermaLink="true">https://xavorqeni.one/LOTTUS-PUFF</guid>

		<description>
	
	
	

	
	
	

&#60;img width="593" height="656" width_o="593" height_o="656" data-src="https://freight.cargo.site/t/original/i/9f71f4381b974eb81927d2bd857860890547fbc4997164f4ba7562f78d02fd7c/TOP-VOLANTES.jpg" data-mid="210473979" border="0"  src="https://freight.cargo.site/w/593/i/9f71f4381b974eb81927d2bd857860890547fbc4997164f4ba7562f78d02fd7c/TOP-VOLANTES.jpg" /&#62;
&#60;img width="450" height="676" width_o="450" height_o="676" data-src="https://freight.cargo.site/t/original/i/4f8cb8e72432e59b0ce1876fe295563fb6e702e1e3aab9ea59ade84d796d7b43/kylie-jenner-635x953.jpg" data-mid="210474124" border="0"  src="https://freight.cargo.site/w/450/i/4f8cb8e72432e59b0ce1876fe295563fb6e702e1e3aab9ea59ade84d796d7b43/kylie-jenner-635x953.jpg" /&#62;
&#60;img width="400" height="677" width_o="400" height_o="677" data-src="https://freight.cargo.site/t/original/i/f2280d981b14923e812cff310b4c7ce3aceb876a2906b70ddf6900cfb9ce1cd6/GGGG.jpg" data-mid="210473900" border="0"  src="https://freight.cargo.site/w/400/i/f2280d981b14923e812cff310b4c7ce3aceb876a2906b70ddf6900cfb9ce1cd6/GGGG.jpg" /&#62;
&#60;img width="450" height="675" width_o="450" height_o="675" data-src="https://freight.cargo.site/t/original/i/de18012b1cf6ca75398427c4f5b695352d20ba92eb7379ae6146dd05f5376ecd/jenner4.jpg" data-mid="210474123" border="0"  src="https://freight.cargo.site/w/450/i/de18012b1cf6ca75398427c4f5b695352d20ba92eb7379ae6146dd05f5376ecd/jenner4.jpg" /&#62;

 &#38;nbsp; &#38;nbsp;
	LOTTUS PUFF SLEEVES
80,00 €


PUFFY SLEEVES ON FUCSIA MIKADO FABRICADJUST WITH ELASTIC BANDDETAILS &#38;amp; CARE100% PolyesterHand Wash ColdU SIZE ( FITS FROM XS TO XL)MADE IN SPAIN

 &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp;&#38;nbsp;


</description>
		
	</item>
		
		
	<item>
		<title>HOME TOP</title>
				
		<link>https://xavorqeni.one/HOME-TOP</link>

		<pubDate>Tue, 07 May 2024 19:57:51 +0000</pubDate>

		<dc:creator>CÉLIAvalverde</dc:creator>

		<guid isPermaLink="true">https://xavorqeni.one/HOME-TOP</guid>

		<description>


&#60;img width="450" height="672" width_o="450" height_o="672" data-src="https://freight.cargo.site/t/original/i/c2de2712a68693c3617a674417ef0903568d731e946409157acbad85aafa4fb1/TOP-DELANTE.jpg" data-mid="210472358" border="0"  src="https://freight.cargo.site/w/450/i/c2de2712a68693c3617a674417ef0903568d731e946409157acbad85aafa4fb1/TOP-DELANTE.jpg" /&#62;
&#60;img width="400" height="677" width_o="400" height_o="677" data-src="https://freight.cargo.site/t/original/i/2ab31cd5194202ceaa2b3c47b1e132b6ba0d74460c512fd5e535a6c9d8587185/GGGG.jpg" data-mid="210472381" border="0"  src="https://freight.cargo.site/w/400/i/2ab31cd5194202ceaa2b3c47b1e132b6ba0d74460c512fd5e535a6c9d8587185/GGGG.jpg" /&#62;
&#60;img width="593" height="656" width_o="593" height_o="656" data-src="https://freight.cargo.site/t/original/i/9a9306e8e2ec34fe4e6df262b881db9ded6f00d942ca66407a32d8b7df5bc9c3/TOP-VOLANTES.jpg" data-mid="210472401" border="0"  src="https://freight.cargo.site/w/593/i/9a9306e8e2ec34fe4e6df262b881db9ded6f00d942ca66407a32d8b7df5bc9c3/TOP-VOLANTES.jpg" /&#62;



    
        &#38;nbsp; &#38;nbsp; GODDES TOP
        &#38;nbsp; &#38;nbsp;120,00€
    

    
        &#38;nbsp; LOTTUS PUFF SLEEVES
        &#38;nbsp; 80,00€
    

    
        &#38;nbsp; &#38;nbsp;&#38;nbsp;
    


 









    &#60;img width="450" height="672" width_o="450" height_o="672" data-src="https://freight.cargo.site/t/original/i/c2de2712a68693c3617a674417ef0903568d731e946409157acbad85aafa4fb1/TOP-DELANTE.jpg" data-mid="210472358" border="0"  src="https://freight.cargo.site/w/450/i/c2de2712a68693c3617a674417ef0903568d731e946409157acbad85aafa4fb1/TOP-DELANTE.jpg" /&#62;
    GODDES TOP
    120,00 €



    &#60;img width="400" height="677" width_o="400" height_o="677" data-src="https://freight.cargo.site/t/original/i/2ab31cd5194202ceaa2b3c47b1e132b6ba0d74460c512fd5e535a6c9d8587185/GGGG.jpg" data-mid="210472381" border="0"  src="https://freight.cargo.site/w/400/i/2ab31cd5194202ceaa2b3c47b1e132b6ba0d74460c512fd5e535a6c9d8587185/GGGG.jpg" /&#62;
    LOTTUS PUFF SLEEVES
    80,00 €



    &#60;img width="593" height="656" width_o="593" height_o="656" data-src="https://freight.cargo.site/t/original/i/9a9306e8e2ec34fe4e6df262b881db9ded6f00d942ca66407a32d8b7df5bc9c3/TOP-VOLANTES.jpg" data-mid="210472401" border="0"  src="https://freight.cargo.site/w/593/i/9a9306e8e2ec34fe4e6df262b881db9ded6f00d942ca66407a32d8b7df5bc9c3/TOP-VOLANTES.jpg" /&#62;
    LOTTUS PUFF SLEEVES
    80,00 €


 




/* Ocultar todas las versiones móviles por defecto */
.mobile-version,
.mobile-version-2,
.mobile-version-3 {
    display: none;
}

/* Productos móviles */
.mobile-product {
    margin-bottom: 40px;
    text-align: left;
}

.mobile-product img {
    width: 100% !important;
    height: auto !important;
    display: block;
}

.mobile-product h3 {
    margin: 10px 0 5px;
    font-size: 18px;
}

.mobile-product p {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

/* --------------------------------------------- */
/*  BREAKPOINT MÓVIL                             */
/* --------------------------------------------- */
@media screen and (max-width: 768px) {

    /* Oculta versiones de escritorio */
    .desktop-version,
    .desktop-version-2,
    .desktop-version-3 {
        display: none !important;
    }

    /* Muestra versión móvil */
    .mobile-version,
    .mobile-version-2,
    .mobile-version-3 {
        display: block !important;
    }

    /* Galería en 1 columna */
    .image-gallery {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .image-gallery .image-link img {
        width: 100% !important;
        height: auto !important;
    }

    /* Ajuste de títulos/precios del HTML original */
    [grid-row][grid-responsive] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        margin-top: 10px;
    }

    [grid-col="x10"] {
        width: 100% !important;
        display: block !important;
        text-align: left !important;
    }

    [grid-col="x10"] h2 {
        margin: 5px 0 !important;
    }

    [grid-col="x10"] a {
        display: inline-block;
        margin: 0 !important;
        padding: 0 !important;
    }
}

</description>
		
	</item>
		
		
	<item>
		<title>LOTTUS FIRE </title>
				
		<link>https://xavorqeni.one/LOTTUS-FIRE-1</link>

		<pubDate>Tue, 07 May 2024 19:17:40 +0000</pubDate>

		<dc:creator>CÉLIAvalverde</dc:creator>

		<guid isPermaLink="true">https://xavorqeni.one/LOTTUS-FIRE-1</guid>

		<description>
	
	
	

	
	
	

&#60;img width="450" height="666" width_o="450" height_o="666" data-src="https://freight.cargo.site/t/original/i/b72dae5a2d02a397380647b0f544d53d35824530cc83b384647455453085aa2f/270325.jpg" data-mid="210470454" border="0"  src="https://freight.cargo.site/w/450/i/b72dae5a2d02a397380647b0f544d53d35824530cc83b384647455453085aa2f/270325.jpg" /&#62;
&#60;img width="500" height="667" width_o="500" height_o="667" data-src="https://freight.cargo.site/t/original/i/5dd1307cc90aa41cad9438171108e90d31e8667a9ea44332681acb5637a6f86b/IMG_0073.jpg" data-mid="210470456" border="0"  src="https://freight.cargo.site/w/500/i/5dd1307cc90aa41cad9438171108e90d31e8667a9ea44332681acb5637a6f86b/IMG_0073.jpg" /&#62;
&#60;img width="750" height="1125" width_o="750" height_o="1125" data-src="https://freight.cargo.site/t/original/i/c4ebc84e113520c787c955492481a0bf183ca0122e21be1ead938f52e8a1da3d/CLIAvalverde-ss19---22B.jpg" data-mid="210470455" border="0"  src="https://freight.cargo.site/w/750/i/c4ebc84e113520c787c955492481a0bf183ca0122e21be1ead938f52e8a1da3d/CLIAvalverde-ss19---22B.jpg" /&#62;
&#60;img width="500" height="667" width_o="500" height_o="667" data-src="https://freight.cargo.site/t/original/i/434dc292f97783cd6b31a338dff9de57e0da810e3c857457ca552694ebcda472/VFSP1027.jpg" data-mid="210470460" border="0"  src="https://freight.cargo.site/w/500/i/434dc292f97783cd6b31a338dff9de57e0da810e3c857457ca552694ebcda472/VFSP1027.jpg" /&#62;
&#60;img width="500" height="667" width_o="500" height_o="667" data-src="https://freight.cargo.site/t/original/i/936c65d0c755ebc57e079af6c29e64926b9960b0aef269447e27aa373cf76ed2/IMG_0074.jpg" data-mid="210470457" border="0"  src="https://freight.cargo.site/w/500/i/936c65d0c755ebc57e079af6c29e64926b9960b0aef269447e27aa373cf76ed2/IMG_0074.jpg" /&#62;
&#60;img width="500" height="667" width_o="500" height_o="667" data-src="https://freight.cargo.site/t/original/i/6e085acf6197eee77a141bdaa4fd6a7c9b58ddbf407c433b80c77106e4fa132b/VCGE1636.jpg" data-mid="210470459" border="0"  src="https://freight.cargo.site/w/500/i/6e085acf6197eee77a141bdaa4fd6a7c9b58ddbf407c433b80c77106e4fa132b/VCGE1636.jpg" /&#62;

 &#38;nbsp; &#38;nbsp;
	LOTTUS FIRE310,00 €30 METRES OF FLYERS AND VOLUME
FIT ADJUSTABLE ON INTERIOR WITH ELASTIC BANDSDETAILS &#38;amp; CARE100% Polyester&#38;nbsp;Dry CleanU SIZE ( FITS FROM XS TO XL)ESTIMATED TIME 15 - 20 &#38;nbsp;DAYS FOR PRODUCTIONAVAILABLE IN MORE COLOR UPON REQUEST ( SEND US MAIL )MADE IN SPAIN



 &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp;&#38;nbsp;


</description>
		
	</item>
		
	</channel>
</rss>