Large diffs are not rendered by default.

@@ -119,7 +119,7 @@ h4{

.currency-picker{
border: 1px solid grey;
background: url(http://i62.tinypic.com/15xvbd5.png) no-repeat 86% 43%;
background: url(//cdn.shopify.com/s/files/1/0113/7222/t/18/assets/dropdown-arrow.png?16430886081012957079) no-repeat 86% 43%;
border-radius: 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
@@ -1005,6 +1005,7 @@ h4{
}
span {
font-size: 0.8em;
vertical-align: middle;
}
}

@@ -0,0 +1,24 @@
<form action="/cart/add" method="post" id="product-form" class="quickAdd" enctype="multipart/form-data">
{% assign hide_default_title = false %}

{% if product.variants.size == 1 and product.variants.first.title contains 'Default' %}
{% assign hide_default_title = true %}
{% endif %}
<div id="product-variants" class="{% if hide_default_title %} hidden{% endif %}">
<select id="product-select" name="id" class="hidden">
{% for variant in product.variants %}
<option {% if variant == product.selected_or_first_available_variant %} selected="selected" {% endif %} data-sku="{{ variant.sku }}" value="{{ variant.id }}">
{{ variant.title }} - {{ variant.price | money }}
</option>
{% endfor %}
</select>
</div><!-- Add Quantity Box before Add to Cart -->
<input for="quantity" min="1" type="number" id="quantity" name="quantity" value="1" />
<style>#quantity {width: 20px; border: 1px solid #333; margin-bottom: 5px; font-size: 14px; padding: 10px;}</style>
<!-- END Add Quantity Box before Add to Cart -->
{% if product.available%}
<input type="submit" value="{{ 'products.product.add_to_cart' | t }}" id="add" class="btn add-to-cart" />
{% else %}
<input type="submit" value="{{ 'products.product.sold_out' | t }}" id="add" class="btn add-to-cart disabled" disabled="disabled" style="opacity: 0.5;">
{% endif %}
</form>
@@ -77,6 +77,7 @@
{{ product.title }}
</h2>
<!-- {{product.vendor}}-{{product.type}} -->
<!-- {{ 'dropdown-arrow.png' | asset_url }} -->


<div class="spaceafter price" itemprop="offerDetails" itemscope itemtype="http://data-vocabulary.org/Offer">
@@ -126,12 +127,12 @@
</select>
</div>

{% for product.selected_variant %}
{% if variant.inventory_quantity == "0" %}
This product is unavailable
{% for variant in product.selected_or_first_available_variant %}
{% if variant.inventory_quantity == 0 %}
<p>show this text if unavail</p>
{% endif %}
{% endfor %}

{% if nocart == true %}
<div class="nocart">
Phone or email Order Only - Please contact info@shoplostfound.com / 647.348.2810
@@ -146,7 +147,6 @@
<input type="submit" name="add" id="add" value="Submit" class="button">
{% endif %}




</form>