/** Shopify CDN: Minification failed

Line 8:7 Unexpected "text("
Line 116:48 Unexpected end of file

**/
i need the right color for my live chat button
Pasted text(20260831-215442).txt
Document
i want you to remove shop and track your order in my furtech header menu and add All Collections and All Product to my drop down and also remove FAQ from me About dropdown
fix all these 

You don’t actually need separate Custom CSS for these five sections because I already built the styling directly inside each .liquid file.

That means:

furtech-customer-reviews.liquid already contains its CSS
furtech-pet-first-use.liquid already contains its CSS
furtech-product-care.liquid already contains its CSS
furtech-sustainability.liquid already contains its CSS
furtech-shipping-returns.liquid already contains its CSS

So in Shopify, just paste each full section code into its own section file and do not add extra CSS unless you want to change the design.

If you want, I can also give you a separate Custom CSS file for all five sections combined so you can keep the Liquid files cleaner and control spacing, fonts, colors, mobile layout, borders, and image sizing from one place.

i need a custom css file for my product information

Yes. For the Product Information area itself—the main section containing the product title, price, description, variant selectors, quantity, Add to Cart, Buy Now, etc.—I can make you a dedicated FurTech CSS file.

Before I write it, I need the exact class names your theme uses, otherwise CSS for one Shopify theme may not affect yours.

Send me your current Product Information / Main Product .liquid file here. It is usually named something like:

main-product.liquid
product-information.liquid
product-info.liquid
or similar.

Once you send it, I’ll return one complete downloadable .css file matched to your actual code and FurTech colors, covering the entire Product Information section without changing your product functionality.

Pasted text(20260901-094441).txt
Document

Done. I matched the CSS to the actual Product Information structure you uploaded, including the .product-information, .product-details, product media container, Add to Cart, Buy Now, quantity controls, variants, accordions, thumbnails, and sticky Add to Cart classes already used in your section.

Download the complete FurTech Product Information CSS

It uses your FurTech palette: white background, #050505 / #111713 dark tones, and #D5F78F lime buttons. It also includes desktop, tablet, mobile, hover, focus, and reduced-motion styling.

Put the file in Online Store → Themes → Edit code → Assets as:

furtech-product-information.css

Then I can give you the one exact line of Liquid to add to your Product Information file so Shopify loads this CSS. 

furtech-product-information.css
Code

Library
/
furtech-product-information.css
999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* =========================================================
   FurTech Product Information
   Premium product-page styling
   Built for the current FurTech product-information section
   ========================================================= */


.product-information {
  --ft-bg: #FFFFFF;
  --ft-surface: #FFFFFF;
  --ft-dark: #050505;
  --ft-dark-2: #111713;
  --ft-text: #111111;
  --ft-muted: #666666;
  --ft-lime: #D5F78F;
  --ft-lime-2: #D4F58C;
  --ft-border: rgba(17, 17, 17, 0.12);
  --ft-border-dark: rgba(255, 255, 255, 0.12);
  --ft-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);


  background: var(--ft-bg);
  color: var(--ft-text);
}


/* Main layout */
.product-information .product-information__grid,