/*
Theme Name:   	Storefront Child Theme
Theme URI:    	https://github.com/stuartduff/storefront-child-theme
Author:       	Stuart Duff
Author URI:     http://stuartduff.com
Template:     	storefront
Description:  	This is a blank child theme for WooThemes StoreFront theme
Version:      	1.0.0
License:      	GNU General Public License v2 or later
License URI:  	http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  	storefront
Tags:         	black, white, light, two-columns, left-sidebar, right-sidebar, responsive-layout, custom-background, custom-colors, custom-header, custom-menu, featured-images, full-width-template, threaded-comments, accessibility-ready
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
Storefront is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.
Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
FontAwesome License: SIL Open Font License - http://scripts.sil.org/OFL
Images License: GNU General Public License v2 or later
*/
/*
 * Add your own custom css below this text.
 */


 .col-full {
    max-width: 1440px;
 }

 .multi-variation-wrapper {
    border: 1px solid #ccc;
    margin-bottom: 20px;
 }

 .multi-variation-wrapper .multi-variation-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    margin: 0;
}
  
  .multi-variation-wrapper thead {
    background-color: #e0e7ff;
    color: #1e3a8a;
  }
  
  .multi-variation-wrapper th,
  .multi-variation-wrapper td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    text-align: left;
    vertical-align: middle; 
}
  
  .multi-variation-wrapper tbody tr:nth-child(even) {
    background-color: #f3f4f6;
  }
  
  .multi-variation-wrapper tbody tr:hover {
    background-color: #e5e7eb;
  }
  
  .multi-variation-wrapper .qty_wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .multi-variation-wrapper .qty_wrap button {
    background-color: #dbeafe;
    border: 1px solid #60a5fa;
    border-radius: 6px;
    width: 30px;
    height: 30px;
    padding: 0;
  }
  
  .multi-variation-wrapper .qty_wrap button svg {
    stroke:#1e3a8a;
  }

  .multi-variation-wrapper .qty_wrap input {
    width: 60px;
    padding: 6px;
    border: 1px solid #60a5fa;
    border-radius: 6px;
    text-align: center;
  }
  

  @media (max-width: 1366px) {
    .multi-variation-wrapper {
        overflow-x: auto;
    }

    .multi-variation-wrapper table tr th,
    .multi-variation-wrapper table tr td {
        white-space: nowrap;
    }


/* Custom Scrollbar */
.multi-variation-wrapper::-webkit-scrollbar {
    height: 8px;
  }
  
  .multi-variation-wrapper::-webkit-scrollbar-track {
    background: #f1f5f9; /* light gray */
    border-radius: 10px;
  }
  
  .multi-variation-wrapper::-webkit-scrollbar-thumb {
    background: #60a5fa; /* blue-400 */
    border-radius: 10px;
  }
  
  .multi-variation-wrapper::-webkit-scrollbar-thumb:hover {
    background: #3b82f6; /* blue-500 */
  }
  
  /* For Firefox */
  .multi-variation-wrapper {
    scrollbar-width: thin;
    scrollbar-color: #60a5fa #f1f5f9;
  }
  }