www.piperloucollection.com Open in urlscan Pro
2620:127:f00f:e::  Public Scan

Submitted URL: https://piper-lou.attentivemail.com/ls/click?upn=u001.QNfhb2A0iHsi5XIznRqviH4Z-2Bk-2BVOF-2F1y4YeDHdSKGjSEyTSSnOVAVv3m-2BIuTT5mBd5gBg...
Effective URL: https://www.piperloucollection.com/pages/privacy-policy?utm_campaign=1%2F29-B1G2-Tumblers&utm_medium=email&utm_source=attentive&ext...
Submission: On March 04 via api from EE — Scanned from DE

Form analysis 5 forms found in the DOM

POST /cart

<form id="CartDrawerForm" action="/cart" method="post" novalidate="" class="drawer__contents">
  <div class="drawer__fixed-header">
    <div class="drawer__header appear-animation appear-delay-1">
      <div class="h2 drawer__title">CART</div>
      <div class="drawer__close">
        <button type="button" class="drawer__close-button js-drawer-close">
          <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-close" viewBox="0 0 64 64">
            <path d="M19 17.61l27.12 27.13m0-27.12L19 44.74"></path>
          </svg>
          <span class="icon__fallback-text">Close cart</span>
        </button>
      </div>
      <div class="cart-shipping__wrapper">
        <span class="custom_price_text" style="display:none;">5000</span>
        <p class="custom_emtpy_cart">Spend $<span class="cart-shipping__num">50</span>Today and Get a FREE Gift!</p>
        <p class="cart-shipping__numOuter cart_counter" style="display: flex;"> 🎁 You are $<span class="cart-shipping__num">50</span> away from a FREE GIFT!</p>
        <p class="cart-shipping__success" style="display: none;"> Congrats! You’ve unlocked a Free Gift 🎁</p>
        <div class="cart-shippingThreshold__bar bar_hide cart_counter" style="display: flex;">
          <span class="cart-shippingThreshold__progress" style="width: 0%"></span>
        </div>
      </div>
      <style>
        .drawer__header {
          display: flex;
          flex-wrap: wrap;
          align-items: center;
        }

        .drawer__header .drawer__title {
          width: 90% !important;
          margin-bottom: 0px;
          padding: 5px 0px 5px 10px;
          font-size: 20px;
        }

        .drawer__header .drawer__close {
          width: 10% !important;
        }

        .drawer__header .drawer__close-button {
          padding: 0 !important;
          right: 0 !important;
        }

        .cart-shipping__wrapper {
          padding: 0px 0px 0px 0px;
          width: 100%;
          margin: 0 auto;
          display: table-cell;
        }

        .cart-shipping__num {
          color: #ff0000;
          padding-right: 5px;
        }

        .cart-shippingThreshold__bar {
          position: relative;
          background-color: #d8d8d8;
          height: 0.4rem;
          border-radius: 10px;
        }

        .custom-shipping-icon {
          height: 16px;
          padding-right: 5px;
        }

        .cart-shippingThreshold__progress {
          position: absolute;
          top: 0;
          left: 0;
          min-width: 0;
          max-width: 100%;
          height: 100%;
          display: block;
          background-color: #000;
          border-radius: 10px;
        }

        .cart-shipping__success {
          text-align: center;
          color: #fff;
          background: #57B625;
          padding: 8px 0px;
          margin-bottom: 0;
          justify-content: center;
          font-size: 15px;
        }

        .cart-shipping__wrapper {
          width: 100%;
          margin: 0 !important;
          border-top: 1px solid #e8e8e1;
          padding-top: 8px;
        }

        .cart-shipping__numOuter,
        .cart-shipping__success {
          text-align: center;
          font-weight: bold;
        }

        .cart-shipping__numOuter {
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 12px;
          margin-bottom: 5px;
          margin-top: 7px;
        }

        .cart_counter {
          display: none !important;
        }

        p.custom_emtpy_cart {
          align-items: center;
          justify-content: center;
          font-size: 12px;
          margin-bottom: 0px;
          margin-top: 0px;
          text-align: center;
        }

        @media(max-width:375px) {
          .cart-shipping__success {
            font-size: 13px;
          }
        }
      </style>
      <script>
        $(document).ready(function() {
          setInterval(function() {
            var val = $('.custom_price_text').html();

            function calculateProgress(currentVal, targetVal) {
              var progressBar = document.querySelectorAll('.cart-shippingThreshold__progress');
              var progressNum = document.querySelectorAll('.cart-shipping__num');
              var progressOuter = document.querySelectorAll('.cart-shipping__numOuter, .bar_hide');
              var successMsg = document.querySelectorAll('.cart-shipping__success');
              var result = Math.round(100 * currentVal / targetVal);
              progressBar.forEach(function(el) {
                el.setAttribute('style', "width: ".concat(result, "%"));
              })
              var newProgressNum = (targetVal - currentVal) / 100;
              if (newProgressNum <= 0) {
                successMsg.forEach(function(el) {
                  el.style.display = 'flex';
                });
                progressOuter.forEach(function(el) {
                  el.style.display = 'none';
                });
                progressNum.forEach(function(el) {
                  el.textContent = newProgressNum;
                });
              } else {
                successMsg.forEach(function(el) {
                  el.style.display = 'none';
                });
                progressOuter.forEach(function(el) {
                  el.style.display = 'flex';
                });
                progressNum.forEach(function(el) {
                  el.textContent = newProgressNum;
                });
              }
            };
            fetch('/cart.js').then(response => response.json()).then(data => {
              calculateProgress(data.total_price, val);
            });
            $.getJSON("/cart.js", function(cart) {
              var vl = cart.item_count;
              if (vl == 0) {
                $('.cart-shipping__numOuter, .bar_hide').addClass('cart_counter');
                $('.custom_emtpy_cart').removeClass('cart_counter')
              } else {
                $('.cart-shipping__numOuter, .bar_hide').removeClass('cart_counter');
                $('.custom_emtpy_cart').addClass('cart_counter')
              }
            });
          }, 400)
        })
      </script>
    </div>
  </div>
  <div class="drawer__inner">
    <div class="drawer__scrollable">
      <div data-products="" class="appear-animation appear-delay-2">
        <div class="cart__items" data-count="0" data-cart-subtotal="0">
        </div>
      </div>
      <div class="container_cart_upsells">
        <h2>More Items You Might Like</h2>
        <div class="row_cart_upsells">
          <div class="column_cart_upsells showmob_1">
            <div class="inner_r">
              <img class="cart_up" src="//www.piperloucollection.com/cdn/shop/products/SiteImages720x995_f700447e-d5da-494e-9919-cf101d409fc6_1024x1024.png?v=1673376225">
              <div class="inner_col">
                <a href="/products/mystery-tumbler">
              <h3>Mystery Tumbler</h3>
            </a>
                <h4>Christmas Snarky</h4>
                <div class="price_area">
                  <p>$12.95</p>
                  <button type="button" data-var="40151212228666">ADD</button>
                </div>
                <select class="cart_variants">
                  <option selected="" disabled="">Choose Your Size</option>
                  <option data-id="40151212228666">Christmas Snarky</option>
                  <option data-id="40151212261434">Christmas Wholesome</option>
                  <option data-id="39401373073466">General</option>
                  <option data-id="39401373007930">Cursing</option>
                  <option data-id="39782775783482">Moms</option>
                  <option data-id="39782775980090">Drinking</option>
                </select>
              </div>
            </div>
          </div>
          <div class="column_cart_upsells showmob_2">
            <div class="inner_r">
              <img class="cart_up" src="//www.piperloucollection.com/cdn/shop/files/PriorityProcessing-Tall_1024x1024.jpg?v=1682359852">
              <div class="inner_col">
                <a href="/products/priority-processing-ships-next-business-day">
              <h3>$12 - Priority Processing (Ships Next Business Day)</h3>
            </a>
                <h4>Default Title</h4>
                <div class="price_area">
                  <p>$12.00</p>
                  <button type="button" data-var="39881803563066">ADD</button>
                </div>
              </div>
            </div>
          </div>
        </div>
      </div>
      <style>
        .container_cart_upsells {
          padding: 15px 15px 10px 15px;
          box-shadow: inset 0px 8px 10px 0px #d3d3d35c;
          margin-top: 20px;
        }

        .container_cart_upsells h2 {
          font-size: 27px;
          font-weight: 400;
          color: #6FB341;
          text-align: center;
        }

        .row_cart_upsells {
          display: flex;
          flex-direction: column;
        }

        .column_cart_upsells {
          padding: 15px 15px 15px 15px;
          background: #f7f7f7;
          margin-bottom: 15px;
          border-radius: 5px;
        }

        .inner_r {
          display: flex;
          align-items: center;
        }

        img.cart_up {
          /*     height: 100px; */
          object-fit: cover;
          width: 100px;
        }

        .inner_col {
          width: calc(100% - 100px);
          padding: 10px 0px 10px 10px;
        }

        .inner_col h3 {
          font-size: 15px;
          font-weight: 400;
          margin: 0;
        }

        .inner_col h4 {
          color: #a8aab3;
          font-weight: 400;
          font-size: 13px;
          letter-spacing: 0px;
          text-transform: unset;
          margin: 5px 0px 20px 0px;
        }

        .price_area {
          display: flex;
          justify-content: space-between;
          align-items: center;
        }

        .price_area p {
          margin: 0;
          font-size: 15px;
        }

        .price_area button {
          font-size: 14px;
          padding: 8px 50px;
          border: 1.5px solid #000;
          background: transparent;
          color: #000;
          transition: 0.2s;
        }

        .price_area button:hover {
          background: #000;
          color: #fff;
        }

        select.cart_variants {
          padding: 8px 10px;
          font-size: 14px !important;
          width: 100%;
          margin-top: 10px;
          background-color: #fff;
          display: none;
        }

        @media(max-width:590px) {
          .column_cart_upsells {
            padding: 10px 8px 10px 10px;
          }

          .inner_col {
            width: calc(100% - 90px);
          }

          .showmob_2 {
            display: none;
          }

          img.cart_up {
            width: 90px;
            height: 90px;
          }

          .price_area button {
            font-size: 12px;
            padding: 5px 35px;
          }

          .inner_col h3 {
            font-size: 14px;
          }

          .container_cart_upsells {
            padding: 10px 5px 10px 5px;
            box-shadow: unset;
            background: #f7f7f7b5;
          }
        }
      </style>
      <script>
        $(document).on('click', '.price_area button', function() {
          $(this).parent().next().toggle()
          $(this).parent().next().addClass('remove_after_add')
          $(this).hide()
        })
        $(document).on("change", ".cart_variants", function() {
          var vid = $(this).find(':selected').attr('data-id');
          vid = parseInt(vid);
          var ht = $(this).find(':selected').html();
          $('.inner_col h4').html(ht);
          $.ajax({
            async: false,
            type: "POST",
            url: "/cart/add.js",
            data: {
              quantity: 1,
              id: vid,
            },
            dataType: "json",
            success: function() {
              document.dispatchEvent(new CustomEvent("cart:build"));
              $('.remove_after_add').prev().find('button').show()
              $('.remove_after_add').prev().find('button').html('ADDED')
              $('.remove_after_add').hide()
            },
          })
          setTimeout(function() {
            $('.remove_after_add').prev().find('button').html('ADD')
            $('.remove_after_add').removeClass('remove_after_add')
          }, 2500)
        })
      </script>
    </div>
    <div class="drawer__footer appear-animation appear-delay-4">
      <div data-discounts="">
        <div class="cart__discounts cart__item-sub cart__item-row hide">
          <div>Discounts</div>
          <div>
          </div>
        </div>
      </div>
      <div class="cart__item-sub cart__item-row subtotal_drawer_row">
        <div class="ajaxcart__subtotal">Subtotal:</div>
        <div data-subtotal="" class="sub_cart">$0.00</div>
      </div>
      <div class="cart__checkout-wrapper">
        <button type="submit" name="checkout" data-terms-required="false" class="btn cart__checkout cart__checkout_drawer"> PROCEED TO CHECKOUT : <span>→</span>
        </button>
      </div>
    </div>
  </div>
  <div class="drawer__cart-empty appear-animation appear-delay-2">
    <div class="drawer__scrollable"> Your cart is currently empty. </div>
  </div>
</form>

GET /search

<form action="/search" method="get" role="search" id="HeaderSearchForm" class="site-header__search-form" autocomplete="off">
  <input type="hidden" name="type" value="product">
  <input type="hidden" name="options[prefix]" value="last">
  <label for="search-icon" class="hidden-label">Search</label>
  <label for="SearchClose" class="hidden-label">"Close (esc)"</label>
  <button type="submit" id="search-icon" class="text-link site-header__search-btn site-header__search-btn--submit">
    <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-search" viewBox="0 0 64 64">
      <path d="M47.16 28.58A18.58 18.58 0 1 1 28.58 10a18.58 18.58 0 0 1 18.58 18.58zM54 54L41.94 42"></path>
    </svg>
    <span class="icon__fallback-text">Search</span>
  </button>
  <input type="search" name="q" value="" placeholder="Search our store" class="site-header__search-input" aria-label="Search our store">
</form>

POST /contact#contact_form

<form method="post" action="/contact#contact_form" id="contact_form" accept-charset="UTF-8" class="contact-form"><input type="hidden" name="form_type" value="customer"><input type="hidden" name="utf8" value="✓">
  <input type="hidden" name="contact[tags]" value="newsletter">
  <div class="newsletter__input-group">
    <input type="email" value="" placeholder="Enter Email Address" name="contact[email]" id="mail" class="input-group-field" aria-label="Your email" autocorrect="off" autocapitalize="off">
    <input type="button" class="btn newsletter_btn" name="subscribe" id="subscribe" value="Sign Up Now!">
  </div>
</form>

<form class="rebuy-cart__flyout-discount-form">
  <div class="rebuy-input-wrapper rebuy-input-wrapper--floating-label"><span class="rebuy-input-label">Discount Code</span> <input placeholder="Discount Code" id="rebuy-discount-input" aria-label="Input Discount" autocomplete="" class="rebuy-input">
  </div> <button class="rebuy-button"><span>Apply</span></button>
</form>

POST /localization

<form action="/localization" method="POST"><input name="_method" type="hidden" value="PUT"><input name="source" type="hidden" value="geolocation_selector"><input name="return_to" type="hidden"
    value="/pages/privacy-policy?utm_campaign=1%2F29-B1G2-Tumblers&amp;utm_medium=email&amp;utm_source=attentive&amp;externalId=wQ_Jz"><label class="locale-selectors__label" id="country_code_label"
    for="country_code"><span>Country/region</span><select id="country_code" class="locale-selectors__selector" name="country_code">
      <option value="CA">Canada (CAD $)</option>
      <option value="MX">Mexico (USD $)</option>
      <option value="ZA">South Africa (USD $)</option>
      <option value="US">United States (USD $)</option>
    </select></label><label class="locale-selectors__label" id="locale_code_label" for="locale_code"><span>Language</span><select id="locale_code" class="locale-selectors__selector" name="locale_code">
      <option value="en">English</option>
      <option value="ja">日本語</option>
    </select></label></form>

Text Content

Skip to content
Toggle menu
Close menu
 * Categories
   
   
    * Best Sellers
   
    * Tumblers
   
    * Tees & Tanks
   
    * Hoodies
   
    * Wine Cups
   
    * Hats
   
    * 40oz Tumblers
   
    * Shop All

   Shop By
    * 
   
    * DRINKING
      
       * DRINKING Toggle menu
   
    * HOLIDAYS
      
       * Valentine's Day Toggle menu
       * Fathers day Toggle menu
       * 4th of July Toggle menu
       * Halloween Toggle menu
       * St. Patricks Day Toggle menu
         
   
    * 
    * 
    * 
      
      
      

 * Box of Awesome
 * About Us
 * Customer Support
 * Log in | Create account

CART
Close cart
5000

Spend $50Today and Get a FREE Gift!

🎁 You are $50 away from a FREE GIFT!

Congrats! You’ve unlocked a Free Gift 🎁




MORE ITEMS YOU MIGHT LIKE


MYSTERY TUMBLER

CHRISTMAS SNARKY

$12.95

ADD
Choose Your Size Christmas Snarky Christmas Wholesome General Cursing Moms
Drinking


$12 - PRIORITY PROCESSING (SHIPS NEXT BUSINESS DAY)

DEFAULT TITLE

$12.00

ADD
Discounts

Subtotal:
$0.00
PROCEED TO CHECKOUT : →
Your cart is currently empty.
Pause slideshow Play slideshow
St. Patrick's Day, our second favorite Drinking holiday!! SHOP HERE!
5000

Spend $50Today and Get a FREE Gift!

🎁 You are $50 away from a FREE GIFT!

Congrats! You’ve unlocked a Free Gift 🎁

St. Patrick's Day, our second favorite Drinking holiday!! SHOP HERE!
5000

Spend $50Today and Get a FREE Gift!

🎁 You are $50 away from a FREE GIFT!

Congrats! You’ve unlocked a Free Gift 🎁

 * Tumblers
 * St. Patrick's Day
 * Categories
   * Shop By Collection
   * Join Our Monthly Club
   * Best Sellers
   * Tumblers
   * 40oz Tumblers
   * Tees & Tanks
   * Crewnecks
   * Hoodies & Long Sleeves
   * Wine Cups
   * Hats
   * New Beanies
   * Curvy Apparel
 * Clearance

Search Site navigation Cart 0
Tumblers
Clearance
Deals
Search "Close (esc)" Search
"Close (esc)"


POPULAR PRODUCTS

Personalized (CUSTOM) Laser Etched Tumbler
4.8 rating (127 votes) 127 Reviews
Regular price $34.99 Sale pricefrom $32.99
Proudly printed & shipped in the US.  DRINKS STAY COLD OR HOT: Double-walled,
vacuum insulated stainless steel cups that come with a splash-p...
Quick Add
Apparently We're Trouble When We're Together Laser Etched Tumbler
5.0 rating (1,114 votes) 1,114 Reviews
Regular price $34.99 Sale pricefrom $29.99
Proudly printed & shipped in the US.  DRINKS STAY COLD OR HOT: Double-walled,
vacuum insulated stainless steel cups that come with a splash-p...
Quick Add
Warning The Girls Are Drinking Again Laser Etched Tumbler
5.0 rating (477 votes) 477 Reviews
Regular price $34.99 Sale pricefrom $29.99
Proudly printed & shipped in the US.  DRINKS STAY COLD OR HOT: Double-walled,
vacuum insulated stainless steel cups that come with a splash-p...
Quick Add
Welcome To The Shitshow Laser Etched Tumbler
5.0 rating (642 votes) 642 Reviews
Regular price $34.99 Sale pricefrom $29.99
Proudly printed & shipped in the US.  DRINKS STAY COLD OR HOT: Double-walled,
vacuum insulated stainless steel cups that come with a splash-p...
Quick Add
This Is Probably Vodka Laser Etched Tumbler
5.0 rating (280 votes) 280 Reviews
Regular price $34.99 Sale pricefrom $29.99
Proudly printed & shipped in the US.  DRINKS STAY COLD OR HOT: Double-walled,
vacuum insulated stainless steel cups that come with a splash-p...
Quick Add
The Sun The Sand And A Drink In My Hand In My Hand Laser Etched Tumbler
5.0 rating (356 votes) 356 Reviews
Regular price $34.99 Sale pricefrom $29.99
Proudly printed & shipped in the US.  DRINKS STAY COLD OR HOT: Double-walled,
vacuum insulated stainless steel cups that come with a splash-p...
Quick Add
$10 Special | Piper Lou Tye Dye Tumbler
5.0 rating (109 votes) 109 Reviews
Regular price $34.99 Sale pricefrom $10.00
Proudly printed & shipped in the US.  DRINKS STAY COLD OR HOT: Double-walled,
vacuum insulated stainless steel cups that come with a splash-p...
Quick Add
$10 Special | Sparkle Mermaid Tumbler
5.0 rating (16 votes) 16 Reviews
Regular price $34.99 Sale price$10.00
Proudly printed & shipped in the US.  DRINKS STAY COLD OR HOT: Double-walled,
vacuum insulated stainless steel cups that come with a splash-p...
Quick Add
Clearance | Pint Glass

Regular price $24.99 Sale price$5.00
ATTENTION BEER LOVERS: You need this 16oz pint glass in your life! Made from
thick, high quality glass, these glasses are extremely durable and wi...
Quick Add
Clearance | Wine Glass

Regular price $24.99 Sale price$5.00
ATTENTION WINE LOVERS: You need this 10oz wine glass in your life! Made from
thick, high quality glass, these mugs are extremely durable and will l...
Quick Add
Clearance | Stemless Wine Glass

Regular price $24.99 Sale price$5.00
Stemless wine glasses are perfect for your clumsy friends. You still kinda want
them to be fancy so you give them glass, but don't really trust the...
Quick Add
Holiday Deals | Shot Glass Set
5.0 rating (1 votes) 1 Reviews
Regular price $24.99 Sale price$5.00
ATTENTION LIQUOR LOVERS: You need these 2oz shot glasses in your life! Made from
thick, high quality glass, these glasses are extremely durable and...
Quick Add
$12 Tuesday | Personalized (CUSTOM) Laser Etched Tumbler
5.0 rating (21 votes) 21 Reviews
Regular price $34.99 Sale price$12.00
Proudly printed & shipped in the US.  DRINKS STAY COLD OR HOT: Double-walled,
vacuum insulated stainless steel cups that come with a splash-p...
Quick Add
$12 Tuesday | Vacation Drunkfest (CUSTOM) Laser Etched Tumbler
5.0 rating (3 votes) 3 Reviews
Regular price $34.99 Sale price$12.00
Proudly printed & shipped in the US.  DRINKS STAY COLD OR HOT: Double-walled,
vacuum insulated stainless steel cups that come with a splash-p...
Quick Add
$12 Tuesday | Cruisin And Boozin (CUSTOM) Personalize Laser Etched Tumbler
5.0 rating (2 votes) 2 Reviews
Regular price $34.99 Sale price$12.00
Proudly printed & shipped in the US.  DRINKS STAY COLD OR HOT: Double-walled,
vacuum insulated stainless steel cups that come with a splash-p...
Quick Add
$12 Tuesday | (CUSTOM) Name Baseball Laser Etched Tumbler
5.0 rating (1 votes) 1 Reviews
Regular price $34.99 Sale price$12.00
Proudly printed & shipped in the US.  DRINKS STAY COLD OR HOT: Double-walled,
vacuum insulated stainless steel cups that come with a splash-p...
Quick Add
$12 Tuesday | Personalized (CUSTOM) Laser Etched Tumbler
5.0 rating (1 votes) 1 Reviews
Regular price $39.99 Sale price$12.00
Proudly printed & shipped in the US.  DRINKS STAY COLD OR HOT: Double-walled,
vacuum insulated stainless steel cups that come with a splash-p...
Quick Add
$12 Tuesday | The Real Housewives Of (CUSTOM) Laser Etched Tumbler

Regular price $34.99 Sale pricefrom $10.00
Proudly printed & shipped in the US.  DRINKS STAY COLD OR HOT: Double-walled,
vacuum insulated stainless steel cups that come with a splash-p...
Quick Add

VIEW ALL NEW PRODUCTS


COLLECTIONS



SHOP ALL
View more
★★★★★ 4.9 | 1.9 Million Happy Customers



CONFIRM YOUR AGE

Are you 18 years old or older?

No I'm not Yes I am


COME BACK WHEN YOU'RE OLDER

Sorry, the content of this store can't be seen by a younger audience. Come back
when you're older.

Oops, I entered incorrectly
Home / Privacy Policy


PRIVACY POLICY

https://www.piperloucollection.com/ Privacy Policy
This privacy policy has been compiled to better serve those who are concerned
with how their 'Personally Identifiable Information' (PII) is being used online.
PII, as described in US privacy law and information security, is information
that can be used on its own or with other information to identify, contact, or
locate a single person, or to identify an individual in context. Please read our
privacy policy carefully to get a clear understanding of how we collect, use,
protect or otherwise handle your Personally Identifiable Information in
accordance with our website.

What personal information do we collect from the people that visit our blog,
website or app?

When ordering or registering on our site, as appropriate, you may be asked to
enter your name, email address, mailing address, phone number, credit card
information or other details to help you with your experience.

When do we collect information?

We collect information from you when you register on our site, place an order,
fill out a form or enter information on our site.


How do we use your information?

We may use the information we collect from you when you register, make a
purchase, sign up for our newsletter, respond to a survey or marketing
communication, surf the website, or use certain other site features in the
following ways:


      • To allow us to better service you in responding to your customer service
requests.
      • To administer a contest, promotion, survey or other site feature.
      • To quickly process your transactions.
      • To send periodic emails regarding your order or other products and
services.
      • To follow up with them after correspondence (live chat, email or phone
inquiries)

How do we protect your information?

Our website is scanned on a regular basis for security holes and known
vulnerabilities in order to make your visit to our site as safe as possible.


We use regular Malware Scanning.


Your personal information is contained behind secured networks and is only
accessible by a limited number of persons who have special access rights to such
systems, and are required to keep the information confidential. In addition, all
sensitive/credit information you supply is encrypted via Secure Socket Layer
(SSL) technology.

We implement a variety of security measures when a user places an order enters,
submits, or accesses their information to maintain the safety of your personal
information.

For your convenience we may store your credit card information kept for more
than 60 days in order to expedite future orders, and to automate the billing
process.


Do we use 'cookies'?

Yes. Cookies are small files that a site or its service provider transfers to
your computer's hard drive through your Web browser (if you allow) that enables
the site's or service provider's systems to recognize your browser and capture
and remember certain information. For instance, we use cookies to help us
remember and process the items in your shopping cart. They are also used to help
us understand your preferences based on previous or current site activity, which
enables us to provide you with improved services. We also use cookies to help us
compile aggregate data about site traffic and site interaction so that we can
offer better site experiences and tools in the future.

We use cookies to:
      • Help remember and process the items in the shopping cart.
      • Understand and save user's preferences for future visits.
      • Keep track of advertisements.
      • Compile aggregate data about site traffic and site interactions in order
to offer better site experiences and tools in the future. We may also use
trusted third-party services that track this information on our behalf.

You can choose to have your computer warn you each time a cookie is being sent,
or you can choose to turn off all cookies. You do this through your browser
settings. Since browser is a little different, look at your browser's Help Menu
to learn the correct way to modify your cookies.

If you turn cookies off, Some of the features that make your site experience
more efficient may not function properly.It won't affect the user's experience
that make your site experience more efficient and may not function properly.


Third-party disclosure

We do not sell, trade, or otherwise transfer to outside parties your Personally
Identifiable Information.

Third-party links

We do not include or offer third-party products or services on our website.

Google

Google's advertising requirements can be summed up by Google's Advertising
Principles. They are put in place to provide a positive experience for users.
https://support.google.com/adwordspolicy/answer/1316548?hl=en 


We use Google AdSense Advertising on our website.

Google, as a third-party vendor, uses cookies to serve ads on our site. Google's
use of the DART cookie enables it to serve ads to our users based on previous
visits to our site and other sites on the Internet. Users may opt-out of the use
of the DART cookie by visiting the Google Ad and Content Network privacy policy.

We have implemented the following:
      • Remarketing with Google AdSense
      • Google Display Network Impression Reporting
      • Demographics and Interests Reporting

We, along with third-party vendors such as Google use first-party cookies (such
as the Google Analytics cookies) and third-party cookies (such as the
DoubleClick cookie) or other third-party identifiers together to compile data
regarding user interactions with ad impressions and other ad service functions
as they relate to our website.

Opting out:
Users can set preferences for how Google advertises to you using the Google Ad
Settings page. Alternatively, you can opt out by visiting the Network
Advertising Initiative Opt Out page or by using the Google Analytics Opt Out
Browser add on.

California Online Privacy Protection Act

CalOPPA is the first state law in the nation to require commercial websites and
online services to post a privacy policy. The law's reach stretches well beyond
California to require any person or company in the United States (and
conceivably the world) that operates websites collecting Personally Identifiable
Information from California consumers to post a conspicuous privacy policy on
its website stating exactly the information being collected and those
individuals or companies with whom it is being shared. - See more at:
http://consumercal.org/california-online-privacy-protection-act-caloppa/#sthash.0FdRbT51.dpuf

According to CalOPPA, we agree to the following:
Users can visit our site anonymously.
Once this privacy policy is created, we will add a link to it on our home page
or as a minimum, on the first significant page after entering our website.
Our Privacy Policy link includes the word 'Privacy' and can easily be found on
the page specified above.

You will be notified of any Privacy Policy changes:
      • On our Privacy Policy Page
Can change your personal information:
      • By emailing us
      • By logging in to your account

How does our site handle Do Not Track signals?
We honor Do Not Track signals and Do Not Track, plant cookies, or use
advertising when a Do Not Track (DNT) browser mechanism is in place.

Does our site allow third-party behavioral tracking?
It's also important to note that we do not allow third-party behavioral tracking

COPPA (Children Online Privacy Protection Act)

When it comes to the collection of personal information from children under the
age of 13 years old, the Children's Online Privacy Protection Act (COPPA) puts
parents in control. The Federal Trade Commission, United States' consumer
protection agency, enforces the COPPA Rule, which spells out what operators of
websites and online services must do to protect children's privacy and safety
online.


We do not specifically market to children under the age of 13 years old.
Do we let third-parties, including ad networks or plug-ins collect PII from
children under 13?

Fair Information Practices

The Fair Information Practices Principles form the backbone of privacy law in
the United States and the concepts they include have played a significant role
in the development of data protection laws around the globe. Understanding the
Fair Information Practice Principles and how they should be implemented is
critical to comply with the various privacy laws that protect personal
information.


In order to be in line with Fair Information Practices we will take the
following responsive action, should a data breach occur:
We will notify you via email
      • Within 7 business days

We also agree to the Individual Redress Principle which requires that
individuals have the right to legally pursue enforceable rights against data
collectors and processors who fail to adhere to the law. This principle requires
not only that individuals have enforceable rights against data users, but also
that individuals have recourse to courts or government agencies to investigate
and/or prosecute non-compliance by data processors.

CAN SPAM Act

The CAN-SPAM Act is a law that sets the rules for commercial email, establishes
requirements for commercial messages, gives recipients the right to have emails
stopped from being sent to them, and spells out tough penalties for violations.


We collect your email address in order to:
      • Send information, respond to inquiries, and/or other requests or
questions
      • Process orders and to send information and updates pertaining to orders.
      • Send you additional information related to your product and/or service
      • Market to our mailing list or continue to send emails to our clients
after the original transaction has occurred.

To be in accordance with CANSPAM, we agree to the following:
      • Not use false or misleading subjects or email addresses.
      • Identify the message as an advertisement in some reasonable way.
      • Include the physical address of our business or site headquarters.
      • Monitor third-party email marketing services for compliance, if one is
used.
      • Honor opt-out/unsubscribe requests quickly.
      • Allow users to unsubscribe by using the link at the bottom of each
email.

If at any time you would like to unsubscribe from receiving future emails, you
can email us at
      • Follow the instructions at the bottom of each email.
and we will promptly remove you from ALL correspondence.


Contacting Us

If there are any questions regarding this privacy policy, you may contact us
using the information below.


https://www.piperloucollection.com/
7868 Us Hwy Bus West
Clayton, NC 27520
United States
info@piperloucollection.com

Last Edited on 2017-11-10

UNBEATABLE SELECTION

Hand crafted designs by me!

EXPERT CUSTOMER SERVICE

We are always here to help.

EASY RETURNS

Simple & fast for you.

UNMATCHED QUALITY

We just can't be beat!

ENTER YOUR EMAIL FOR $10 OFF SENT TO YOUR INBOX!

When we have updates. You have updates!


×



NEED MORE HELP?


FOLLOW US ON SOCIAL!

 * 
 * 
 * 

SHIPPING

HELP

FAQ'S

RETURNS

SHOP

SHOP
 * SHOP ALL
 * BEST SELLERS
 * TUMBLERS
 * WINE CUPS
 * APPAREL
 * HATS

BRAND

BRAND
 * About Us
 * Customer Reviews
 * Join Our SMS List
 * VIP Customer Group
 * Box Of Awesome
 * Wholesale

HELP

HELP
 * Customer Support
 * My Account
 * Returns
 * Size Chart
 * What is AfterPay?

LEGAL

LEGAL
 * Return Policy
 * Terms of Service
 * Privacy Policy

 * American Express
 * Apple Pay
 * Diners Club
 * Discover
 * Meta Pay
 * Google Pay
 * JCB
 * Mastercard
 * PayPal
 * Shop Pay
 * Venmo
 * Visa

© 2024 Piper Lou Collection • ALL RIGHTS RESERVED

 * 
 * 
 * 

TERMS & CONDITIONS • TERMS OF USE • PRIVACY POLICY • COOKIE POLICY


"Close (esc)"

Privacy Policy



WANT A DEAL?

GET AN ITEM BELOW FOR CHEAP! 💵

HURRY! LIMITED QUANTITIES AVAILABLE 👇
$12 - Priority Processing (Ships Next Business Day)
Price $12.00
Add to Cart
$6 DEAL - Holiday Deals | Piper Lou Tye Dye Tumbler
Sale price $5.99 Original price $34.99
27oz Tumbler
Add to Cart
$6 DEAL - Holiday Deals | Piper Lou Carbon Fiber Tumbler
Sale price $5.99 Original price $34.99
27oz Tumbler
Add to Cart
 1. 

Powered by Rebuy




CART


Free Shipping
🎁 You are $50.00 away from a FREE GIFT

YOUR CART IS EMPTY!

Add your favorite items to your cart.

Shop Now



WANT TO UPGRADE YOUR ORDER!?

Mystery Tumbler
Sale price $12.95 Original price $37.99
Add
$12 - Priority Processing (Ships Next Business Day)
Price $12.00
Add
Upgraded Slider Lid (Premium)
Price $4.99
Add
Powered by Rebuy

Discount Code
Apply

SUBTOTAL:
$0.00

PROCEED TO CHECKOUT : →
or 4 interest-free installments of $0.00 by Selecting AfterPay at checkout



Your cart progress is 0%% complete. 🎁 You are $50.00 away from a FREE GIFT



Country/regionCanada (CAD $)Mexico (USD $)South Africa (USD $)United States (USD
$)LanguageEnglish日本語
by RoarTheme