/*--------------------------------------------------------------------------------------------------
  ARKUSZ DLA LIST PRODUKTOW (lista w kategoriach, wynikach wyszukiwania, lista nowosci itp.)
--------------------------------------------------------------------------------------------------*/

/* wrapper listy produktow (w widoku kategorii oraz wynikach wyszukiwania */
#productListing {

}

/*--------------------------------------------------------------------------------------------------
  SORTOWANIE (MINI-FORMULARZ)
--------------------------------------------------------------------------------------------------*/

#sorter {
  overflow: hidden;
  margin-bottom: 20px;
}

#sorter label {
  display: block;
    float: left;
}

#sorter form {
  display: block;
  float: left;
  width: 50%;
}

#sorter form select {
  padding: 0;
  margin-left: 10px;
}

/*--------------------------------------------------------------------------------------------------
  TABELA PRODUKTOW
--------------------------------------------------------------------------------------------------*/

#productTable {
  margin: 20px 0;
  width: 100%;
}

/*--------------------------------------------------------------------------------------------------
  NAGLOWEK TABELI PRODUKTOW
--------------------------------------------------------------------------------------------------*/

/* wiersz naglowka ("obrazek", "nazwa", "cena") */
#productTable tr.heading th {
  border-bottom-width: 1px;
}

/* komorka naglowka - "obrazek" */
#productTable tr.heading th.column-0 {
  text-align: right;
  color: #FFFFFF;
  font-size: 0;
}

/* komorka naglowka - "nazwa" */
#productTable tr.heading th.column-1 {

}

/* komorka naglowka - "cena" */
#productTable tr.heading th.column-2 {
white-space: nowrap;
}

/* strzalki sortowania */
#productTable tr.heading th span {
  margin-left: 5px;
  display: inline-block;
  width: 18px;
  height: 11px;
  line-height: 11px;
  text-indent: -999px;
  overflow: hidden;
  background-image: url("../images/listing_sort_arrows.png");
  margin-bottom: -1px;
}

#productTable tr.heading th span.sortAscending {
  background-position: 18px 0;
}

#productTable tr.heading th a:hover span.sortAscending {
  background-position: 0 11px;
}

#productTable tr.heading th span.sortDescending {
  background-position: 0 0;
}

#productTable tr.heading th a:hover span.sortDescending {
  background-position: 18px 11px;
}


/*--------------------------------------------------------------------------------------------------
  WIERSZ PRODUKTU
--------------------------------------------------------------------------------------------------*/

/* wiersz produktu */
#productTable tr.product,

}

/* komorka z obrazkiem */
#productTable tr.product td.column-0 {
  text-align: right;
  padding: 15px 0 15px 0;
}

/* komorka z tytulem i opisem */
#productTable tr.product td.column-1 {
  padding: 15px 20px 15px 20px;
}

/* komorka z cena */
#productTable tr.product td.column-2 {
  width: 60px;
  text-align: center;
}

/*--------------------------------------------------------------------------------------------------
  DRUGA KOLUMNA (TYTUL, OPIS)
--------------------------------------------------------------------------------------------------*/

/* tytul */
#productTable tr.product td.column-1 h3 {
  text-align: center;
  font-family: "Times New Roman", serif;
  font-variant: small-caps;
  font-size: 1.15em;
}

/* opis */
#productTable tr.product td.column-1 div.listingDescription {
  text-align: left;
  margin: 10px 0 15px 0;
  font-style: italic;
}

/* etykietka "Autor:" */
#productTable tr.product td.column-1 span.bk_label {
  display: none;
}

/* autor */
#productTable tr.product td.column-1 span.authorsNamesProdList {
  display: none;
}

/* ISBN */
#productTable tr.product td.column-1 div.isbnmargin {
  display: none;
}

/*--------------------------------------------------------------------------------------------------
  TRZECIA KOLUMNA (CENA + DODAJ DO KOSZYKA)
--------------------------------------------------------------------------------------------------*/

/* cena (wlasciwie cala kolumna, bo nie ma osobnego znacznika dla ceny) */
#productTable tr.product td.column-2 {
  color: #7F7F7F;
  font-size: 0.9em;
  font-family: Georgia, serif;
}

/* normalna cena (tylko przy aktywnej promocji) */
#productTable tr.product td.column-2 .normalprice {
  text-decoration: line-through;
}

/* cena promocyjna */
#productTable tr.product td.column-2 .productSpecialPrice {
  display: block;
  color: #008000;
  font-weight: bold;
}

/* ile oszczedzasz */
#productTable tr.product td.column-2 .productPriceDiscount {
  color: #008000;
}

/* znaczniki nowej linii miedzy cena a linkiem */
#productTable tr.product td.column-2 br {
  display: none; /* niepotrzebne - ukrywamy */
}

/* dodaj do koszyka/wiecej informacji - odnosnik */
#productTable tr.product td.column-2 a {
  display: block;
  text-align: center;
}

/* dodaj do koszyka */
#productTable tr.product td.column-2 a .button_buy_now {
  margin: 15px auto 0 auto;
  display: block;
  width: 60px !important;
  height: 60px;
  background-image: url("../images/koszyk-60.png");
  background-position: 0 0;
  text-indent: -999px; /* ukrywamy tekst */
  cursor: hand;
  overflow: hidden;
}

#productTable tr.product td.column-2 a:hover .button_buy_now {
  background-position: -60px 0;
}

/*------------------------------------------------------------------------------------------------*/